* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #005944;
    --mint-gray: #CFE5DE;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --shadow-sm: 0 2px 8px rgba(0, 89, 68, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 89, 68, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 89, 68, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo svg {
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

.nav-desktop {
    display: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-desktop a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--emerald);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--emerald);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #004736;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.menu-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--emerald);
}

.cta-button-mobile {
    background: var(--emerald);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.hero {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-button-large {
    background: var(--emerald);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button-large:hover {
    background: #004736;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.hero-shape {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--mint-gray) 0%, rgba(207, 229, 222, 0.3) 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.7;
}

.features {
    padding: 100px 0;
    background: var(--white);
}

.features h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--emerald);
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.feature-card {
    background: var(--mint-gray);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--mint-gray) 100%);
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--emerald);
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.01em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--mint-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--emerald);
    box-shadow: var(--shadow-md);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--emerald);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--emerald);
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.01em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--mint-gray);
    padding: 48px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--emerald);
    color: var(--white);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--emerald);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 16px;
}

.pricing-card.featured h3 {
    color: var(--white);
}

.pricing-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 32px;
    min-height: 50px;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--emerald);
}

.pricing-card.featured .price .amount {
    color: var(--white);
}

.price .currency {
    font-size: 18px;
    color: var(--text-gray);
}

.pricing-card.featured .price .currency {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-cta {
    width: 100%;
    background: var(--emerald);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-cta {
    background: var(--white);
    color: var(--emerald);
}

.pricing-cta:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--mint-gray) 100%);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.contact p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.footer {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--mint-gray);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer p {
    color: var(--emerald);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--emerald);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--mint-gray);
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 150;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-notice p {
    color: var(--emerald);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-accept {
    background: var(--emerald);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #004736;
    transform: scale(1.05);
}

.legal-content {
    padding: 100px 0;
    min-height: 70vh;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.legal-content article {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--emerald);
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--emerald);
    font-weight: 600;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero {
        padding: 140px 0 120px;
    }

    .hero h1 {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }

    .hero {
        padding: 160px 0 140px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .features h2,
    .testimonials h2,
    .pricing h2,
    .contact h2 {
        font-size: 32px;
    }

    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 32px;
    }

    .legal-content h1 {
        font-size: 36px;
    }

    .legal-content h2 {
        font-size: 24px;
    }
}
