* {
    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: flex-start;
    justify-content: center;
    padding-left: 2rem;
    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: brand block + music button */
.logo-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    padding-left: 0;       /* shift whole logo left */
    width: 100%;
    max-width: 1200px;
}

/* Brand block: corn plant sits behind wordmark */
.logo-brand {
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
}

/* Corn plant grows up on load — absolute, behind text */
.corn-wrap {
    position: absolute;
    left: -20px;
    bottom: 0;
    z-index: 1;
    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 — sits on top of corn plant */
.main-logo-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-left: 50px; /* indent so corn peeks out from left */
    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: 3.75rem;
    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.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.75);
    color: var(--white);
    transform: translateY(-1px);
}

@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 {
    display: none;
}

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

.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #A82803 100%);
    color: var(--white);
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    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: 0 1 30%;
    min-width: 260px;
    max-width: 380px;
}

.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;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    gap: 1rem;
}

/* FREE to download badge — pinned upper-left of hero below the sticky header */
.free-download-badge {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0900;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.5), 0 0 0 3px rgba(255,215,0,0.3);
    animation: badgePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.free-badge-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 0 0 rgba(255,68,68,0.6);
    animation: pulseDot 1.5s ease-in-out 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(255,68,68,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(255,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,68,68,0); }
}

@keyframes badgePop {
    from { opacity: 0; transform: scale(0.8) translateY(-8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.phone-mockup {
    width: 100%;
    max-width: 320px;
    background: var(--white);
    border-radius: 40px;
    padding: 12px;
    aspect-ratio: 9/19.5;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    transform-origin: left center;
    box-shadow:
        /* right-side depth shadow */
        18px 32px 80px rgba(0,0,0,0.55),
        8px 16px 30px rgba(0,0,0,0.35),
        /* left highlight edge (light source from left) */
        inset 3px 0 8px rgba(255,255,255,0.6),
        /* top highlight */
        inset 0 2px 6px rgba(255,255,255,0.5);
}

/* App screen replica inside phone mockup */
.app-screen {
    width: 100%;
    height: 100%;
    background: #BF360C;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 8px 8px;
    gap: 6px;
}

.app-title-card {
    background: #BF360C;
    border-radius: 14px;
    padding: 8px 8px 4px;
    flex-shrink: 0;
}

.app-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.app-letters {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    letter-spacing: -0.3px;
}

.app-corn {
    width: 22px;
    height: 44px;
    flex-shrink: 0;
}

.app-subtitle-text {
    font-size: 8px;
    color: rgba(255,255,255,0.75);
    text-align: center;
    margin-top: 2px;
}

.app-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    flex: 1;
    overflow: hidden;
}

.app-tile {
    background: #fff;
    border-radius: 14px;
    border: 3px solid #2A2A45;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 4px;
}


.app-tile-animal {
    width: 80%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.22));
}

.app-tile-tag {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    text-align: center;
    border-radius: 8px;
    padding: 2px 4px;
    font-size: 7px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .free-download-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
        top: 1rem;
        left: 1rem;
    }

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

    .hero-visual {
        align-items: center;
    }

    .phone-mockup {
        max-width: 280px;
        transform: perspective(1200px) rotateY(0deg) rotateX(2deg);
    }
}

@media (max-width: 768px) {
    .logo-header {
        padding-left: 1rem;
        height: 160px;
    }

    .logo-wordmark {
        font-size: 2.4rem;
    }

    /* Hero: single column, text only — hide phone mockup */
    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 3.5rem 1.25rem 2.5rem;
        gap: 1.2rem;
        min-height: auto;
    }

    /* Farm background: softer on mobile */
    .hero-bg-sunny,
    .hero-bg-rainy {
        opacity: 0.2;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
    }

    /* FREE badge: pill style matching desktop, left-aligned */
    .free-download-badge {
        position: relative;
        top: auto;
        left: auto;
        display: inline-flex;
        font-size: 0.88rem;
        padding: 8px 16px;
        margin-bottom: 0.5rem;
        border-radius: 12px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

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

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    /* Hide phone mockup on mobile — HTML replica doesn't scale */
    .hero-visual {
        display: none;
    }
}

@media (max-width: 960px) {
    .hero-visual {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────
   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-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.testimonial-use-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.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(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border-top: 4px solid var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 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-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.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 24px rgba(0, 0, 0, 0.10);
    border-top: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(191, 54, 12, 0.15);
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.step-premium-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(191, 54, 12, 0.08);
    border-radius: 8px;
    padding: 6px 10px;
    line-height: 1.4;
}

.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-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.language-grid li {
    background: var(--white);
    border: 2px solid var(--surface);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-align: center;
}

.language-grid li span {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.language-grid li em {
    display: block;
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

.language-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 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(290px, 1fr));
    gap: 2rem;
    max-width: 1120px;
    margin: 0 auto;
    align-items: start;
}

/* Secondary price line (yearly) under the headline monthly price */
.price-alt {
    font-size: 0.95rem;
    font-weight: 600;
    margin: -0.5rem 0 0.75rem;
    color: rgba(0, 0, 0, 0.65);
}

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

/* Honest statement of what the free tier stops doing once the trial ends */
.plan-limit-note {
    margin-top: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-sub);
}

.features-list li.feature-off {
    opacity: 0.75;
}

.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-subheading {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #FFD700;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1rem;
}

.footer-method-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.footer-method-list li {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    line-height: 1.65;
    padding-left: 1rem;
    border-left: 2px solid #FFD700;
}

.footer-method-list li strong {
    color: #fff;
    display: block;
    margin-bottom: 0.2rem;
}

.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;
}

/* ─────────────────────────────────────────────────────────────
   PRIVACY BADGE
   ───────────────────────────────────────────────────────────── */

.privacy-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 8px 14px;
    backdrop-filter: blur(6px);
    max-width: 280px;
}

.privacy-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.privacy-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.privacy-text strong {
    font-size: 0.78rem;
    color: #fff;
    letter-spacing: 0.3px;
}

.privacy-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .privacy-badge {
        display: none;
    }
}

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