/* ============================================================
   R-AI-KID — Landing Page Styles
   Design Tokens from: .skills/r-ai-kid-ui/SKILL.md
   Font: Baloo 2
   Primary: #6B6EF9
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6B6EF9;
    --primary-light: #8F91FB;
    --primary-dark: #5356D4;
    --primary-bg: #EEEFFE;
    --bg: #F7F8FC;
    --surface: #FFFFFF;
    --border: #E5E7EB;
    --divider: #F0F0F5;
    --text-primary: #1E1E2D;
    --text-secondary: #6B7280;
    --text-tertiary: #9CA3AF;
    --success: #10B981;
    --success-bg: #ECFDF5;
    --warning: #F59E0B;
    --warning-bg: #FFFBEB;
    --error: #EF4444;
    --error-bg: #FEF2F2;
    --info: #3B82F6;
    --info-bg: #EFF6FF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 4px 12px rgba(107, 110, 249, 0.3);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Baloo 2', cursive, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.2s;
}

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

.nav-cta {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107, 110, 249, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 110, 249, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(143, 145, 251, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge ion-icon {
    font-size: 16px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.store-badge {
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-svg {
    height: 48px;
    width: auto;
    display: block;
}

.store-svg-play {
    height: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: fit-content;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat .stat-icon {
    font-size: 22px;
    color: var(--primary);
}

.hero-stat strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-stat span {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--divider);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 1;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    bottom: -10%;
    left: 10%;
    background: radial-gradient(ellipse, rgba(107, 110, 249, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ---------- FEATURES STRIP ---------- */
.features-strip {
    padding: 24px 0;
    background: var(--surface);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.features-strip-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.strip-item ion-icon {
    font-size: 18px;
    color: var(--primary);
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-badge ion-icon {
    font-size: 14px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
    padding: 72px 0;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    max-width: 300px;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon ion-icon {
    font-size: 32px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 90px;
}

/* ---------- KEY FEATURES ---------- */
.features {
    padding: 72px 0;
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 20px 20px 24px;
    background: var(--bg);
    border-radius: var(--radius-xl);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--divider);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.feature-icon ion-icon {
    font-size: 22px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

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

/* ---------- APP SHOWCASE ---------- */
.app-showcase {
    padding: 72px 0;
}

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

.showcase-card {
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--divider);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.showcase-parent .showcase-label {
    background: var(--primary-bg);
    color: var(--primary);
}

.showcase-child .showcase-label {
    background: var(--success-bg);
    color: var(--success);
}

.showcase-phone {
    margin: 0 auto 24px;
    max-width: 280px;
}

.showcase-phone img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.showcase-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-features {
    text-align: left;
    max-width: 340px;
    margin: 0 auto;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.showcase-features li ion-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ---------- SAFETY SECTION ---------- */
.safety-section {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-content .section-badge {
    margin-bottom: 16px;
}

.safety-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.safety-content>p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.safety-layers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.safety-layer {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.safety-layer:hover {
    transform: translateX(6px);
}

.layer-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer-icon ion-icon {
    font-size: 24px;
}

.safety-layer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.safety-layer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Safety Visual — Animated Shield */
.safety-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-shield {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shield-ring-1 {
    width: 280px;
    height: 280px;
    border-color: rgba(107, 110, 249, 0.1);
    animation: pulseRing 3s ease-in-out infinite;
}

.shield-ring-2 {
    width: 210px;
    height: 210px;
    border-color: rgba(107, 110, 249, 0.2);
    animation: pulseRing 3s ease-in-out infinite 0.5s;
}

.shield-ring-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(107, 110, 249, 0.3);
    animation: pulseRing 3s ease-in-out infinite 1s;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.6;
    }
}

.shield-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.shield-center ion-icon {
    font-size: 36px;
    color: white;
}

/* ---------- PRICING ---------- */
.pricing {
    padding: 72px 0;
}

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

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    border: 1px solid var(--divider);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card-pro {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-primary);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--divider);
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 16px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li ion-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    font-family: 'Baloo 2', cursive;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-btn:hover {
    transform: translateY(-2px);
}

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

.pricing-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pricing-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.pricing-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(107, 110, 249, 0.4);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    padding: 80px 0;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-2xl);
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cta-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-stores {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 60px 0 0;
    background: var(--text-primary);
    color: #A1A3B5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
}

.footer-brand .nav-logo-icon {
    background: var(--primary);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    color: #A1A3B5;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 20px;
    color: #A1A3B5;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 38px;
    }

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

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .safety-visual {
        order: -1;
    }

    .safety-shield {
        width: 220px;
        height: 220px;
    }

    .shield-ring-1 {
        width: 200px;
        height: 200px;
    }

    .shield-ring-2 {
        width: 150px;
        height: 150px;
    }

    .shield-ring-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        padding: 20px 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        max-width: 320px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        margin: -10px 0;
    }

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

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

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

    .section-header h2 {
        font-size: 28px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-card h2 {
        font-size: 24px;
    }

    .cta-stores {
        flex-direction: column;
        align-items: center;
    }

    .features-strip-list {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }
}