/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Safaricom-inspired green palette */
    --green-50: #e8f5e9;
    --green-100: #c8e6c9;
    --green-200: #a5d6a7;
    --green-300: #81c784;
    --green-400: #66bb6a;
    --green-500: #00A859;
    --green-600: #009648;
    --green-700: #007E3A;
    --green-800: #1B5E20;
    --green-900: #0d3d14;

    /* Neutral palette */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-950: #020617;

    /* Accent colors */
    --blue-500: #0288D1;
    --purple-500: #7B1FA2;
    --orange-500: #E65100;
    --red-500: #C62828;
    --teal-500: #00897B;

    /* Surfaces */
    --bg-primary: #050d09;
    --bg-secondary: #0a1a10;
    --bg-card: rgba(10, 26, 16, 0.6);
    --bg-card-hover: rgba(0, 168, 89, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Text */
    --text-primary: #f0fdf4;
    --text-secondary: #86efac;
    --text-muted: #6b9c7e;
    --text-white: #ffffff;

    /* Borders */
    --border-subtle: rgba(0, 168, 89, 0.12);
    --border-hover: rgba(0, 168, 89, 0.3);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 168, 89, 0.15);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

/* ===== Background Particles ===== */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--green-500);
    opacity: 0;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 0;
    backdrop-filter: blur(20px);
    background: rgba(5, 13, 9, 0.85);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--green-500) !important;
    color: var(--text-white) !important;
    padding: 8px 20px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    background: var(--green-600) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 168, 89, 0.3);
}

.nav-cta::after {
    display: none !important;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 168, 89, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-300);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-200) 50%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-subtitle strong {
    color: var(--green-300);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 20px rgba(0, 168, 89, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.4s var(--ease-out);
}

.btn-secondary:hover {
    background: rgba(0, 168, 89, 0.08);
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-icon-right {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn-secondary:hover .btn-icon-right {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ===== Phone Mockup ===== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(180deg, #1a2e22 0%, #0d1f14 100%);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 
        0 0 0 2px rgba(0, 168, 89, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #071210 0%, #0a1a10 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-header {
    display: flex;
    justify-content: center;
    padding: 12px 0 8px;
}

.phone-notch {
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 0 0 16px 16px;
}

.phone-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 16px;
}

.phone-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 168, 89, 0.3);
}

.phone-app-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.phone-deals {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
}

.mini-deal {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    animation: deal-slide-in 0.6s var(--ease-out) backwards;
}

.mini-deal:nth-child(1) { animation-delay: 0.6s; }
.mini-deal:nth-child(2) { animation-delay: 0.8s; }
.mini-deal:nth-child(3) { animation-delay: 1.0s; }
.mini-deal:nth-child(4) { animation-delay: 1.2s; }

@keyframes deal-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
}

.mini-deal-icon {
    font-size: 1.1rem;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 168, 89, 0.12);
    top: -50px;
    right: -80px;
    animation: glow-pulse 4s ease-in-out infinite;
}

.glow-2 {
    width: 200px;
    height: 200px;
    background: rgba(2, 136, 209, 0.08);
    bottom: -40px;
    left: -60px;
    animation: glow-pulse 5s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

/* ===== Animations ===== */
.animate-fade-in {
    animation: fade-in 0.8s var(--ease-out) backwards;
}

.animate-slide-up {
    animation: slide-up 0.8s var(--ease-out) backwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fade-in {
    from { opacity: 0; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 168, 89, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Features Grid ===== */
.features {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--green-500)), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 168, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease-out);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent, var(--green-500));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(0, 168, 89, 0.15);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

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

/* ===== Deals Section ===== */
.deals-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(0, 168, 89, 0.02), transparent);
}

.deals-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.deal-tab {
    padding: 10px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.deal-tab:hover {
    background: rgba(0, 168, 89, 0.08);
    border-color: var(--border-hover);
    color: var(--text-secondary);
}

.deal-tab.active {
    background: var(--green-500);
    border-color: var(--green-500);
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(0, 168, 89, 0.3);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.deal-card {
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s var(--ease-out);
    animation: deal-fade-in 0.4s var(--ease-out) backwards;
}

.deal-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.deal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deal-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.deal-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.deal-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-400);
    white-space: nowrap;
}

@keyframes deal-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ===== Download Section ===== */
.download-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.download-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.06), rgba(0, 168, 89, 0.02));
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 60px;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.1), transparent 70%);
    pointer-events: none;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 168, 89, 0.25);
}

.download-info h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.download-info p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.app-meta {
    display: flex;
    gap: 32px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.download-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    border-radius: 18px;
    color: var(--text-white);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 168, 89, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.download-btn:active {
    transform: translateY(0) scale(0.98);
}

.download-btn-icon svg {
    width: 28px;
    height: 28px;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
}

.download-btn-label {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.download-btn-sub {
    font-size: 0.78rem;
    opacity: 0.7;
    font-weight: 500;
}

.download-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 320px;
}

.info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-contact {
    display: flex;
    gap: 24px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-phone {
    color: var(--green-400);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--green-300);
}

.footer-contact strong {
    color: var(--text-white);
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

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

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

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

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .download-card {
        padding: 32px 24px;
    }

    .download-btn {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 8px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .app-meta {
        flex-direction: column;
        gap: 12px;
    }
}
