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

:root {
    --primary-color: #ffffff;  /* White for buttons on green bg */
    --primary-hover: #f9fafb;   /* Light gray-white for hover */
    --text-dark: #2c3e2c;       /* Deep green-gray for text */
    --text-light: #4a5f4a;      /* Softer green for secondary text */
    --bg-light: #e8f0ea;        /* Light sage green background */
    --bg-white: #f5f9f6;        /* Very light green-white */
    --bg-green: #7c9885;        /* Sage green for sections */
    --bg-green-dark: #6b8574;   /* Darker sage green */
    --accent: #d4a574;          /* Warm tan/beige accent */
    --border: #d4e4d7;          /* Light green border */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

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

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: var(--bg-white);
    padding: 5px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--bg-green);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: var(--bg-light);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-green) 0%, var(--bg-green-dark) 100%);
    color: white;
}

.headline {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.sub-headline {
    font-size: clamp(20px, 3vw, 24px);
    color: #f0f7f2;
    font-weight: 600;
    margin-bottom: 20px;
}

.support-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: white;
    color: var(--bg-green);
    box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.cta-button.primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 255, 255, 0.4);
}

.cta-button.secondary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(212, 165, 116, 0.3);
}

.cta-button.secondary:hover {
    background: #c4955f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(212, 165, 116, 0.4);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

.why-matters {
    background: var(--bg-light);
}

.what-you-get {
    background: var(--bg-green);
    color: white;
    text-align: center;
}

.about {
    background: var(--bg-light);
}

.final-cta {
    background: linear-gradient(135deg, #7c9885 0%, #8fa799 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
}

.trust-text {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Headings */
h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.what-you-get h2 {
    color: white;
}

/* Pain Points */
.pain-points {
    max-width: 700px;
    margin: 0 auto;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.bullet {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
    margin-top: -2px;
}

.point p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Benefits */
.benefits {
    max-width: 700px;
    margin: 0 auto 40px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.check {
    color: #f0f7f2;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
}

.clarity-promise {
    text-align: center;
    font-size: 20px;
    color: white;
    margin: 40px auto;
    max-width: 600px;
}

.what-you-get .cta-button {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.credential:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon {
    font-size: 28px;
    flex-shrink: 0;
}

.credential p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Sticky Mobile CTA */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

.cta-button.sticky {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    background: var(--bg-green);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .final-cta {
        padding: 80px 0 100px;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .sub-headline {
        font-size: 20px;
    }
    
    .support-text {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .cta-button.large {
        font-size: 18px;
        padding: 16px 32px;
    }
    
    h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .point p,
    .benefit p {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credential {
        padding: 20px;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
}

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .container > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero .headline {
    animation-delay: 0.1s;
}

.hero .sub-headline {
    animation-delay: 0.2s;
}

.hero .support-text {
    animation-delay: 0.3s;
}

.hero .cta-button {
    animation-delay: 0.4s;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.cta-button.primary {
    animation: pulse 2s infinite;
}