/* ══════════════════════════════════════════════════════════════
   GasheAI V8.4 — Landing Page "Ethiopian Highlands"
   ══════════════════════════════════════════════════════════════ */

:root {
    /* Brand Palette */
    --brand-dark: #051a0a;
    --brand-green: #013d1f;
    --brand-gold: #FCDD09;
    --brand-red: #DA121A;
    --brand-text: #f1f5f9;
    --brand-muted: #9cb3a0;

    /* Gradients */
    --gradient-hero: linear-gradient(145deg, #051a0a 0%, #013d1f 60%, #012a15 100%);
    --gradient-gold: linear-gradient(135deg, #FCDD09 0%, #ffd700 100%);
    --gradient-glass: rgba(1, 61, 31, 0.4);

    /* Typography */
    --font-main: 'Inter', -apple-system, sans-serif;

    /* Effects */
    --shadow-glow: 0 0 30px rgba(252, 221, 9, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--brand-dark);
    color: var(--brand-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; }
ul { list-style: none; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes shine {
    to { background-position: 200% center; }
}
@keyframes float {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(30px, -30px) scale(1.1); }
}
@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes pill-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Scroll-triggered animations */
.card, .step-card, .highlight-main-card, .highlight-mini-card, .grade-card, .pricing-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.card.animate-in, .step-card.animate-in, .highlight-main-card.animate-in,
.highlight-mini-card.animate-in, .grade-card.animate-in, .pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger delay for grid items */
.card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3) { transition-delay: 0.2s; }
.card:nth-child(4) { transition-delay: 0.3s; }
.card:nth-child(5) { transition-delay: 0.4s; }
.card:nth-child(6) { transition-delay: 0.5s; }
.card:nth-child(7) { transition-delay: 0.6s; }
.card:nth-child(8) { transition-delay: 0.7s; }
.card:nth-child(9) { transition-delay: 0.8s; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(5, 26, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.nav-logo-icon {
    width: 32px; height: 32px; max-width: 32px; max-height: 32px;
    object-fit: contain; border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(252, 221, 9, 0.4));
}
.nav-logo-text { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* V8.1: Version badge in navbar */
.nav-version-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(252, 221, 9, 0.15);
    color: var(--brand-gold);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(252, 221, 9, 0.3);
    letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--brand-muted);
    position: relative;
}
.nav-links a:hover { color: var(--brand-gold); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--brand-gold);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 12px; }
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    gap: 8px;
}
.btn-lg { padding: 14px 32px; font-size: 1.05rem; border-radius: 14px; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--brand-gold); color: var(--brand-gold); }
.btn-primary {
    background: var(--gradient-gold);
    color: #051a0a;
    box-shadow: 0 4px 15px rgba(252, 221, 9, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(252, 221, 9, 0.4); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    transition: transform 0.3s ease-out;
}
.hero-orb--1 { width: 600px; height: 600px; background: rgba(0, 128, 0, 0.2); top: -10%; right: -5%; animation: float 10s infinite alternate; }
.hero-orb--2 { width: 400px; height: 400px; background: rgba(252, 221, 9, 0.1); bottom: -5%; left: -5%; animation: float 10s infinite alternate; animation-delay: -5s; }
.hero-orb--3 { width: 300px; height: 300px; background: rgba(99, 102, 241, 0.08); top: 40%; left: 50%; animation: float 8s infinite alternate; animation-delay: -3s; }

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(252, 221, 9, 0.1);
    border: 1px solid rgba(252, 221, 9, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--brand-gold);
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
    position: relative;
}
.badge-dot { width: 8px; height: 8px; background: var(--brand-gold); border-radius: 50%; box-shadow: 0 0 10px var(--brand-gold); position: relative; z-index: 1; }
.badge-pulse {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--brand-gold);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s 0.2s ease both;
}
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--brand-gold) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}
.brand-highlight {
    background: linear-gradient(135deg, #FCDD09, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--brand-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-subtitle strong { color: #fff; }

.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s 0.6s ease both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    animation: fadeInUp 0.8s 0.8s ease both;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--brand-gold); display: inline; }
.stat-label { font-size: 0.9rem; color: var(--brand-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 4px; }

/* V8.1: Feature Pills */
.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    animation: fadeInUp 0.8s 1s ease both;
}
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-text);
    cursor: default;
    transition: all 0.3s;
}
.feature-pill:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}
.pill-animate { animation: pill-float 3s ease-in-out infinite; }
.pill-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS (Shared)
   ══════════════════════════════════════════════════════════════ */
.section { padding: 100px 24px; position: relative; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-label { color: var(--brand-gold); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.section-desc { color: var(--brand-muted); font-size: 1.1rem; line-height: 1.7; }

.grid-container { max-width: 1200px; margin: 0 auto; display: grid; gap: 24px; }

/* ══════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════ */
.features-section { background: radial-gradient(circle at 50% 0%, #013d1f 0%, var(--brand-dark) 70%); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* V8.1: Enhanced Feature Cards */
.feature-card { position: relative; }
.feature-card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(252, 221, 9, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.feature-card:hover .feature-card-glow { opacity: 1; }

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: rgba(252, 221, 9, 0.1);
    color: var(--brand-gold);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature icon colors */
.feature-icon-gold { filter: drop-shadow(0 0 12px rgba(252, 221, 9, 0.3)); }
.feature-icon-green { filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.3)); }
.feature-icon-blue { filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.3)); }
.feature-icon-purple { filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.3)); }
.feature-icon-orange { filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.3)); }
.feature-icon-cyan { filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.3)); }
.feature-icon-pink { filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.3)); }
.feature-icon-teal { filter: drop-shadow(0 0 12px rgba(20, 184, 166, 0.3)); }
.feature-icon-indigo { filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.3)); }

.card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 221, 9, 0.2);
    box-shadow: var(--shadow-card);
    background: rgba(255,255,255,0.04);
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.card-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.card-desc { color: var(--brand-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */
.how-it-works-section { background: var(--brand-dark); }
.steps-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step-card { text-align: center; padding: 40px 32px; position: relative; }
.step-number {
    width: 64px; height: 64px;
    background: var(--gradient-gold);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(252, 221, 9, 0.3);
    position: relative;
}
.step-connector {
    display: none;
}
@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .step-card:not(:last-child) .step-connector {
        display: block;
        position: absolute;
        top: 56px;
        right: -12px;
        width: calc(100% - 64px - 64px + 24px);
        height: 2px;
        background: repeating-linear-gradient(90deg, rgba(252, 221, 9, 0.2) 0px, rgba(252, 221, 9, 0.2) 6px, transparent 6px, transparent 12px);
    }
}

/* ══════════════════════════════════════════════════════════════
   HIGHLIGHT SECTION
   ══════════════════════════════════════════════════════════════ */
.highlight-section {
    background: radial-gradient(ellipse at 30% 50%, rgba(252, 221, 9, 0.03) 0%, var(--brand-dark) 70%);
}
.highlight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.highlight-main-card {
    background: rgba(252, 221, 9, 0.03);
    border: 1px solid rgba(252, 221, 9, 0.15);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.highlight-main-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-gold);
}
.highlight-main-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 16px rgba(252, 221, 9, 0.4));
}
.highlight-main-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.highlight-main-card > p {
    color: var(--brand-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.highlight-list li {
    color: var(--brand-muted);
    font-size: 0.92rem;
    padding-left: 24px;
    position: relative;
}
.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-gold);
    font-weight: 700;
}

.highlight-side-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.highlight-mini-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s;
}
.highlight-mini-card:hover {
    border-color: rgba(252, 221, 9, 0.2);
    transform: translateX(8px);
    background: rgba(255,255,255,0.04);
}
.mini-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 221, 9, 0.06);
    border-radius: 12px;
}
.highlight-mini-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.highlight-mini-card p {
    font-size: 0.88rem;
    color: var(--brand-muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   GRADES / SUBJECTS
   ══════════════════════════════════════════════════════════════ */
.grades-section { background: radial-gradient(circle at 50% 0%, #013d1f 0%, var(--brand-dark) 70%); }
.grades-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grade-card { text-align: center; }
.grade-card:hover { transform: translateY(-5px) scale(1.02); }
.grade-card-featured {
    border-color: rgba(252, 221, 9, 0.3);
    background: rgba(252, 221, 9, 0.03);
}
.grade-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: var(--brand-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}
.grade-num-circle {
    width: 80px; height: 80px;
    background: rgba(252, 221, 9, 0.1);
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-gold);
    margin: 0 auto 20px;
    transition: all 0.3s;
}
.grade-card:hover .grade-num-circle {
    background: var(--brand-gold);
    color: var(--brand-dark);
    box-shadow: var(--shadow-glow);
}
.grade-subjects {
    margin-top: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   PRICING PLANS
   ══════════════════════════════════════════════════════════════ */
.pricing-section { background: radial-gradient(circle at 50% 0%, #013d1f 0%, var(--brand-dark) 70%); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.pricing-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 32px 32px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 221, 9, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.pricing-card-popular {
    border-color: rgba(252, 221, 9, 0.4);
    background: rgba(252, 221, 9, 0.04);
    transform: scale(1.05);
    z-index: 2;
}
.pricing-card-popular:hover { transform: scale(1.05) translateY(-6px); }
.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-header { margin-bottom: 24px; }
.pricing-name { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pricing-billing { font-size: 0.85rem; color: var(--brand-muted); }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-size: 1.1rem; font-weight: 700; color: var(--brand-gold); }
.pricing-price { font-size: 3.2rem; font-weight: 800; color: #fff; line-height: 1; }
.pricing-period { font-size: 0.95rem; color: var(--brand-muted); }
.pricing-savings { font-size: 0.82rem; color: var(--brand-gold); font-weight: 600; margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--brand-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-feature-included::before { content: '✓'; color: var(--brand-gold); font-weight: 700; flex-shrink: 0; }
.pricing-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid var(--brand-gold);
    background: transparent;
    color: var(--brand-gold);
    transition: all 0.3s;
}
.pricing-btn:hover { background: var(--brand-gold); color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(252, 221, 9, 0.3); }
.pricing-btn-primary { background: var(--gradient-gold); color: var(--brand-dark); border-color: transparent; }
.pricing-btn-primary:hover { box-shadow: 0 8px 25px rgba(252, 221, 9, 0.4); }

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════════ */
.about-section { background: var(--brand-dark); }
.about-content { max-width: 1200px; margin: 0 auto; }
.about-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-text p { color: var(--brand-muted); line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s;
}
.highlight-item:hover { border-color: rgba(252, 221, 9, 0.2); transform: translateY(-4px); }
.highlight-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.highlight-item h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.highlight-item p { font-size: 0.88rem; color: var(--brand-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 100px 24px;
    text-align: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: glow-pulse 4s ease-in-out infinite;
}
.cta-orb--1 { width: 500px; height: 500px; background: rgba(252, 221, 9, 0.08); top: -30%; right: 10%; }
.cta-orb--2 { width: 400px; height: 400px; background: rgba(0, 128, 0, 0.08); bottom: -30%; left: 10%; animation-delay: -2s; }
.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.15rem;
    color: var(--brand-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    background: #010d05;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo-icon { width: 24px; height: 24px; max-width: 24px; max-height: 24px; object-fit: contain; border-radius: 6px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-version {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(252, 221, 9, 0.15);
    color: var(--brand-gold);
    padding: 2px 8px;
    border-radius: 4px;
}
.footer-description { color: var(--brand-muted); font-size: 0.92rem; line-height: 1.7; max-width: 320px; }

.footer-column-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand-gold); margin-bottom: 20px; }
.footer-column-links li { margin-bottom: 12px; }
.footer-column-links a { color: var(--brand-muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-column-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.copyright { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-flag { font-size: 1.4rem; }

/* ══════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════ */
.hidden { display: none !important; }

/* Mobile Nav */
.mobile-nav {
    position: fixed; inset: 0;
    background: rgba(5, 26, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 24px;
    opacity: 0; visibility: hidden;
    transition: 0.3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-size: 1.5rem; font-weight: 600; color: #fff; }
.mobile-nav .btn { width: 80%; max-width: 300px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
    .highlight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-stats { flex-direction: row; gap: 24px; flex-wrap: wrap; justify-content: center; }
    .hero-actions { flex-direction: column; }
    .section { padding: 60px 16px; }
    .section-title { font-size: 2rem; }

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

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card-popular { transform: none; }
    .pricing-card-popular:hover { transform: translateY(-6px); }

    .footer-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-description { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .highlight-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 2rem; }
    .hero-feature-pills { gap: 6px; }
    .feature-pill { font-size: 0.75rem; padding: 5px 12px 5px 5px; }
    .pill-icon { width: 24px; height: 24px; font-size: 0.75rem; }
}

@media (max-width: 400px) {
    .navbar { padding: 0 12px; height: 60px; }
    .nav-logo { font-size: 1.2rem; }
    .nav-logo-icon { width: 24px; height: 24px; max-width: 24px; max-height: 24px; }
    .nav-version-badge { display: none; }
    .hero { padding: 100px 16px 60px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
    .hero-stats { gap: 16px; margin-top: 40px; padding-top: 24px; }
    .stat-num { font-size: 1.8rem; }
    .stat-label { font-size: 0.75rem; }
    .section { padding: 48px 12px; }
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.95rem; }
    .section-header { margin-bottom: 36px; }
    .pricing-card { padding: 28px 20px 24px; }
    .pricing-price { font-size: 2.4rem; }
    .card { padding: 24px 20px; }
    .footer-bottom { padding: 16px 12px; }
    .hero-feature-pills { gap: 4px; }
    .feature-pill { font-size: 0.7rem; padding: 4px 10px 4px 4px; }
    .pill-icon { width: 22px; height: 22px; font-size: 0.7rem; }
}
