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

:root {
    --bg-primary: #BF360C;
    --primary: #2f1000;
    --primary-light: #c75000;
    --accent: #FF6584;
    --white: #FFFFFF;
    --light-bg: #FFF3EC;
    --surface: #F3E7E0;
    --text-dark: #1A1A1A;
    --text-sub: #5C3A2E;
    --text-muted: #8A6A5A;
    --radius: 16px;
    --spacing: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #f9f7f4;
}

/* ─────────────────────────────────────────────────────────────
   FROZEN LOGO HEADER WITH FARM BACKDROP + CORN PLANT
   ───────────────────────────────────────────────────────────── */

.logo-header {
    position: sticky;
    top: 0;
    z-index: 200;
    width: 100%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

/* Header overlay only — no bg images in header */

/* Header: solid brand gradient, no farm image */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 16, 0, 0.95) 0%,
        rgba(191, 54, 12, 0.85) 100%
    );
    z-index: 2;
}


/* Logo row: corn plant + wordmark + music button */
.logo-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    width: 100%;
    max-width: 1200px;
}

/* Corn plant grows up on load */
.corn-wrap {
    flex-shrink: 0;
    animation: cornGrow 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both,
               cornSway 3s ease-in-out 2s infinite;
    transform-origin: bottom center;
}

.corn-svg {
    width: 70px;
    height: 140px;
    display: block;
    drop-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

@keyframes cornGrow {
    from { transform: scaleY(0) translateY(20px); opacity: 0; }
    to   { transform: scaleY(1) translateY(0);    opacity: 1; }
}

@keyframes cornSway {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(3deg); }
    75%  { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

/* Wordmark + tagline */
.main-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    animation: logoSlideIn 1s ease-out 0.5s both;
}

@keyframes logoSlideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Mini speech-bubble icon above wordmark */
.logo-speech-bubble {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 4px 10px;
    width: fit-content;
    margin-bottom: 2px;
}

.bubble-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    animation: bubblePulse 1.4s ease-in-out infinite;
}
.bubble-dot:nth-child(2) { animation-delay: 0.2s; }
.bubble-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bubblePulse {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50%       { opacity: 1;   transform: scale(1.1); }
}

.logo-wordmark {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    text-shadow: 0 3px 14px rgba(0,0,0,0.45);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

/* Music button in header */
.logo-header .music-toggle {
    margin-left: auto;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    flex-shrink: 0;
}
.logo-header .music-toggle:hover {
    background: rgba(255,255,255,0.3);
}

/* Frozen nav bar inside header */
.header-nav {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.header-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--white); }

@media (max-width: 768px) {
    .logo-header { height: 180px; }
    .logo-wordmark { font-size: 2rem; }
    .corn-svg { width: 50px; height: 100px; }
    .logo-container { gap: 1rem; padding: 0 1rem; }
    .header-nav { gap: 1.2rem; }
    .header-nav a { font-size: 0.85rem; }
    .logo-tagline { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   MUSIC TOGGLE (base styles, overridden in logo-header context)
   ───────────────────────────────────────────────────────────── */

.music-toggle {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--white);
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────── */

.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #A82803 100%);
    color: var(--white);
    padding: 4rem var(--spacing);
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

/* Farm images crossfade behind the right half of the hero (under the phone) */
.hero-bg-sunny,
.hero-bg-rainy {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    /* Fade: transparent on left, visible on right */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 30%, black 70%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, transparent 30%, black 70%, black 100%);
    opacity: 0.45;
    z-index: 0;
}

.hero-bg-sunny {
    background-image: url('images/sunnyday.jpg');
    animation: heroBgCrossfade 10s ease-in-out 1s infinite;
}

.hero-bg-rainy {
    background-image: url('images/rainyday.jpg');
    animation: heroBgCrossfade 10s ease-in-out 6s infinite;
    opacity: 0;
}

@keyframes heroBgCrossfade {
    0%   { opacity: 0; }
    20%  { opacity: 0.45; }
    80%  { opacity: 0.45; }
    100% { opacity: 0; }
}

/* Ensure hero content sits above the bg layers */
.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    font-size: 1.25rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    max-width: 320px;
    background: var(--white);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 9/19.5;
    overflow: hidden;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--surface) 100%);
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 3rem var(--spacing);
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .phone-mockup {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem var(--spacing);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .phone-mockup {
        max-width: 240px;
    }
}

/* ─────────────────────────────────────────────────────────────
   SOCIAL PROOF
   ───────────────────────────────────────────────────────────── */

.proof {
    background: var(--white);
    padding: 4rem var(--spacing);
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.proof h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-sub);
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────────────────
   FEATURES SECTION
   ───────────────────────────────────────────────────────────── */

.features {
    padding: 4rem var(--spacing);
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--surface);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 101, 132, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   BUILT FOR PARENTS
   ───────────────────────────────────────────────────────────── */

.built-for-parents {
    padding: 4rem var(--spacing);
    max-width: 1200px;
    margin: 3rem auto;
    background: transparent;
}

.built-for-parents h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    display: block;
}

.parents-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid transparent;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--white);
    border-left-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF4759 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────────── */

.how-it-works {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 101, 132, 0.1) 100%);
    padding: 4rem var(--spacing);
    margin: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ─────────────────────────────────────────────────────────────
   WHY SPEECHYTALK
   ───────────────────────────────────────────────────────────── */

.why-speechytalk {
    padding: 4rem var(--spacing);
    max-width: 1200px;
    margin: 0 auto;
}

.why-speechytalk h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.why-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-item p {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   ENTERPRISE SECTION
   ───────────────────────────────────────────────────────────── */

.enterprise {
    padding: 4rem var(--spacing);
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
    border-radius: var(--radius);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.enterprise h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.enterprise-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.enterprise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    text-align: center;
    transition: all 0.3s ease;
}

.enterprise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(47, 16, 0, 0.15);
}

.enterprise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.enterprise-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.enterprise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.enterprise-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--primary);
}

.enterprise-cta h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.enterprise-cta p {
    color: var(--text-sub);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────
   MULTILINGUAL SECTION
   ───────────────────────────────────────────────────────────── */

.multilingual {
    padding: 4rem var(--spacing);
    max-width: 1200px;
    margin: 0 auto;
}

.multilingual h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.multilingual-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.language-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.language-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--surface);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.language-card.current:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 16px rgba(255, 101, 132, 0.1);
}

.language-card.coming {
    opacity: 0.7;
    background: var(--light-bg);
}

.language-flag {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.language-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.language-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge.coming-badge {
    background: var(--text-muted);
}

.multilingual-benefits {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.multilingual-benefits h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit p {
    color: var(--text-sub);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────────────────
   PRICING SECTION
   ───────────────────────────────────────────────────────────── */

.pricing {
    padding: 4rem var(--spacing);
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--surface);
    position: relative;
}

.pricing-card.premium {
    background: linear-gradient(135deg, var(--primary) 0%, #4a2015 100%);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.pricing-card:not(.premium) h3 {
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
}

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

.offer {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-card.premium .offer {
    color: #FFD700;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.pricing-card.premium .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

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

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ─────────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────────── */

.final-cta {
    background: var(--bg-primary);
    color: var(--white);
    padding: 4rem var(--spacing);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta .cta-buttons {
    justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem var(--spacing) 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────
   UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .features h2,
    .proof h2,
    .why-speechytalk h2,
    .built-for-parents h2,
    .pricing h2,
    .how-it-works h2 {
        font-size: 1.5rem;
    }

    .features-grid,
    .why-grid,
    .testimonials,
    .parents-benefits {
        grid-template-columns: 1fr;
    }

    .pricing-card.premium {
        transform: scale(1);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.testimonial,
.why-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
