/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafaf9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    background: #2d6a4f;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: #1f4d38;
    transform: translateY(-1px);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-package, .btn-primary-large, .btn-primary-small {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary, .btn-primary-large, .btn-primary-small {
    background: #2d6a4f;
    color: #fff;
}

.btn-primary:hover, .btn-primary-large:hover, .btn-primary-small:hover {
    background: #1f4d38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.btn-primary-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
}

.btn-primary-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background: transparent;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
}

.btn-secondary:hover {
    background: #2d6a4f;
    color: #fff;
}

.btn-package {
    width: 100%;
    background: #2d6a4f;
    color: #fff;
    text-align: center;
    margin-top: 1.5rem;
}

.btn-package:hover {
    background: #1f4d38;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f4f3 0%, #fafaf9 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tagline {
    color: #2d6a4f;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #222;
}

.highlight {
    color: #2d6a4f;
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* AI Displacement Section (Green Background) */
.ai-displacement {
    padding: 4rem 0;
    background: #2d6a4f;
    color: #fff;
}

.ai-displacement h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ai-displacement p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.ai-displacement p:last-child {
    margin-bottom: 0;
}

/* Who We Help Section */
.who-we-help {
    padding: 5rem 0;
    background: #fff;
}

.who-we-help h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.industry-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d6a4f;
}

.industry-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.industry-card p {
    color: #555;
    line-height: 1.6;
}

/* Approach Section */
.approach {
    padding: 5rem 0;
    background: #f0f4f3;
}

.approach h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-column {
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-column.bad {
    background: #fff;
    border: 2px solid #e5e5e5;
}

.comparison-column.good {
    background: #2d6a4f;
    color: #fff;
}

.comparison-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-column.bad h3 {
    color: #666;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    padding: 0.875rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.comparison-column.bad li {
    color: #666;
}

.comparison-column.bad li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #d9534f;
    font-weight: 700;
}

.comparison-column.good li {
    color: #fff;
    opacity: 0.95;
}

.comparison-column.good li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: #fff;
}

.packages h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #e5e5e5;
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card.featured {
    border: 3px solid #2d6a4f;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2d6a4f;
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.package-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.625rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓ ";
    color: #2d6a4f;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: #f0f4f3;
}

.process h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #222;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2d6a4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #222;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

/* Promise Section (Green Background) */
.promise {
    padding: 4rem 0;
    background: #2d6a4f;
    color: #fff;
    text-align: center;
}

.promise h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.promise p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.promise-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    font-weight: 600;
    font-size: 1.05rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #222;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-note {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f0f4f3;
}

.faq h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #222;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem 1.5rem;
    color: #555;
    line-height: 1.7;
    background: #fafaf9;
}

/* About Small Section */
.about-small {
    padding: 3rem 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.about-small h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.about-small p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-small a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
}

.about-small a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1.25rem;
    }

    .logo-img {
        height: 28px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
        flex: 0 1 auto;
    }

    .promise-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
