/* ==========================================================================
   EduKunja marketing site — pure CSS, no build step
   Brand: navy (from the app's theme_color system), surface #f5f7fa
   ========================================================================== */

:root {
    /* brand blue — from the EduKunja logo */
    --navy-50:  #eaf1fb;
    --navy-100: #d0e0f5;
    --navy-200: #a6c4ea;
    --navy-300: #72a0da;
    --navy-400: #427cc9;
    --navy-500: #2360b4;
    --navy-600: #1a56a8;
    --navy-700: #16478c;
    --navy-800: #14509c;   /* primary brand shade (logo blue) */
    --navy-900: #0e3363;

    /* brand green — from the EduKunja logo */
    --brand-green: #3fa535;
    --brand-green-dark: #2f7d28;
    --brand-green-tint: #e7f5e4;

    --surface: #f5f7fa;
    --card: #ffffff;
    --ink: #17233a;
    --ink-soft: #55627a;
    --line: #e2e8f1;

    --green: #22c55e;
    --pink: #ec4899;
    --purple: #8b5cf6;
    --yellow: #eab308;
    --blue: #3b82f6;
    --red: #ef4444;

    --radius: 14px;
    --shadow-card: 0 1px 3px rgba(16, 24, 40, 0.06), 0 1px 2px rgba(16, 24, 40, 0.04);
    --shadow-lift: 0 20px 45px -20px rgba(22, 35, 58, 0.35);
    --pad: clamp(20px, 4vw, 88px);
    --readable: 1500px;   /* inner cap for long text rows only */
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--navy-800); }

h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { color: var(--ink-soft); }

.container { width: 100%; margin: 0 auto; padding: 0 var(--pad); }
/* opt-in inner cap so hero copy / prose don't stretch to silly line lengths */
.container.narrow { max-width: var(--readable); }

section { padding: 84px 0; }

.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--navy-500);
    background: var(--navy-50);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy-800); color: #fff; }
.btn-primary:hover { background: var(--navy-900); color: #fff; box-shadow: var(--shadow-lift); }
.btn-ghost { background: #fff; color: var(--navy-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy-300); color: var(--navy-900); }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-light:hover { background: rgba(255,255,255,0.24); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 247, 250, 0.85);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .wordmark { line-height: 1; }
.brand .edu { color: var(--navy-800); }
.brand .kunja { color: var(--brand-green); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.only-mobile { display: none; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    width: 42px; height: 42px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: '';
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    position: relative;
    transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---- Hero -------------------------------------------------------------- */
.hero {
    padding: 88px 0 72px;
    background:
        radial-gradient(1100px 480px at 80% -10%, rgba(61, 92, 150, 0.16), transparent 60%),
        radial-gradient(900px 420px at 0% 10%, rgba(139, 92, 246, 0.09), transparent 55%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}
.hero h1 { margin-bottom: 20px; max-width: 15ch; }
.hero p.lead { font-size: 1.15rem; max-width: 42ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.88rem; color: var(--ink-soft); }
.hero-note a { font-weight: 600; }

.hero-panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lift);
    padding: 18px;
}
.hero-panel .panel-bar { display: flex; gap: 6px; padding: 4px 4px 14px; }
.hero-panel .panel-bar i { width: 10px; height: 10px; border-radius: 999px; background: var(--line); display: block; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.mini-stat { background: var(--navy-50); border-radius: 10px; padding: 12px; }
.mini-stat .k { font-size: 0.72rem; color: var(--navy-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.mini-stat .v { font-size: 1.15rem; font-weight: 800; color: var(--navy-900); }
.mini-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.mini-row .who { font-weight: 600; }
.tag { font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.tag.paid { background: #e7f8ee; color: #157f3e; }
.tag.due { background: #fdecec; color: #c0392b; }
.tag.partial { background: #fef6e0; color: #a97b06; }

/* ---- Logos / trust bar ----------------------------------------------- */
.trust { padding: 40px 0; border-bottom: 1px solid var(--line); }
.trust p { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; align-items: center; }
.trust-row span { font-weight: 700; color: var(--navy-300); font-size: 1.05rem; letter-spacing: -0.01em; }
.trust-ird { text-align: center; margin-top: 24px; margin-bottom: 0; font-size: 0.9rem; color: var(--ink-soft); text-transform: none; letter-spacing: normal; font-weight: 400; }
.trust-ird .ird-badge { margin-right: 9px; vertical-align: middle; }

/* ---- IRD verified badge -------------------------------------------- */
.ird-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.01em;
    color: var(--brand-green-dark);
    background: var(--brand-green-tint);
    border: 1px solid #cfe8c9;
    padding: 6px 12px; border-radius: 999px;
    white-space: nowrap;
}
.ird-badge svg { width: 14px; height: 14px; flex: none; }
.site-footer .ird-badge {
    color: #cdecc8;
    background: rgba(63, 165, 53, 0.16);
    border-color: rgba(63, 165, 53, 0.4);
    margin-top: 14px;
}

/* ---- Feature grid --------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.feature-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-card);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.feature-card .ico {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: grid; place-items: center;
    background: var(--navy-50);
    color: var(--navy-700);
    margin-bottom: 16px;
}
.feature-card .ico svg { width: 22px; height: 22px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.94rem; }

.tint-green .ico { background: #e7f8ee; color: #157f3e; }
.tint-purple .ico { background: #f1ecfd; color: #6d3fd1; }
.tint-blue .ico { background: #e8f0fd; color: #2563eb; }
.tint-pink .ico { background: #fdeaf4; color: #be2a75; }
.tint-yellow .ico { background: #fdf4d9; color: #9a7406; }

/* ---- Alt section (dark) ------------------------------------------- */
.band-dark {
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    color: #fff;
}
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: rgba(255,255,255,0.75); }
.band-dark .section-head p { color: rgba(255,255,255,0.75); }

/* ---- Steps ------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; counter-reset: step; max-width: 1600px; margin: 0 auto; }
.step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 24px;
}
.step .n {
    counter-increment: step;
    font-size: 0.8rem; font-weight: 700;
    width: 30px; height: 30px;
    border-radius: 8px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.14);
    margin-bottom: 14px;
}
.step .n::before { content: counter(step); }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; }

/* ---- Split feature rows --------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    margin-bottom: 88px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}
.split:last-child { margin-bottom: 0; }
.split.flip .split-media { order: -1; }
.split h2 { margin-bottom: 16px; }
.split ul { list-style: none; margin-top: 20px; }
.split ul li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-soft); }
.split ul li::before {
    content: '';
    position: absolute; left: 0; top: 7px;
    width: 18px; height: 18px;
    background: var(--navy-50);
    border-radius: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231e2f4d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.split-media {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 20px;
}

/* fake table used as a screenshot stand-in */
.faux-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.faux-table th, .faux-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.faux-table th { color: var(--ink-soft); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.faux-table td { color: var(--ink); }
.faux-caption { font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 180px; padding: 12px 6px 0; }
.bar-chart .bar { flex: 1; background: linear-gradient(var(--navy-400), var(--navy-700)); border-radius: 6px 6px 0 0; }
.bar-labels { display: flex; gap: 12px; padding: 8px 6px 0; }
.bar-labels span { flex: 1; text-align: center; font-size: 0.7rem; color: var(--ink-soft); }

/* ---- Stat strip --------------------------------------------- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; max-width: 1400px; margin: 0 auto; }
.stat-strip .v { font-size: 2.4rem; font-weight: 800; color: var(--navy-800); letter-spacing: -0.03em; }
.stat-strip .k { font-size: 0.9rem; color: var(--ink-soft); margin-top: 4px; }

/* ---- Pricing comparison table ---------------------------- */
.compare-wrap {
    max-width: 1080px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
}
.compare {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.compare th, .compare td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.compare thead th { vertical-align: bottom; padding: 22px 20px 20px; }
.compare thead th:first-child { width: 34%; }
.compare .plan-badge {
    display: inline-block;
    background: var(--navy-800); color: #fff;
    font-size: 0.64rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.compare .plan-name { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.compare .plan-price { font-size: 1.55rem; font-weight: 800; color: var(--navy-800); margin: 6px 0 2px; letter-spacing: -0.02em; }
.compare .plan-price small { font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; }
.compare .plan-meta { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 14px; }
.compare thead .btn { width: 100%; justify-content: center; padding: 10px 14px; font-size: 0.88rem; }

.compare tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
}
.compare tbody td { font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }

.compare .row-group th {
    background: var(--surface);
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em;
    font-weight: 700; color: var(--navy-600);
    padding: 9px 20px;
}
.compare .yes svg { width: 19px; height: 19px; color: var(--brand-green-dark); vertical-align: middle; }
.compare .no { color: var(--navy-200); font-weight: 700; }

.compare .col-featured { background: var(--navy-50); }
.compare thead th.col-featured { border-top: 3px solid var(--navy-800); }

.compare-foot {
    max-width: 1080px;
    margin: 14px auto 0;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.compare-foot li { margin-left: 18px; margin-bottom: 4px; }

.callout {
    max-width: 1080px;
    margin: 26px auto 0;
    background: var(--navy-50);
    border: 1px solid var(--navy-100);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 0.95rem; color: var(--ink);
}
.callout svg { width: 22px; height: 22px; color: var(--navy-700); flex: none; margin-top: 2px; }
.callout strong { color: var(--navy-800); }

/* ---- FAQ ------------------------------------------------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%;
    background: none; border: none;
    text-align: left;
    padding: 22px 40px 22px 0;
    font-size: 1.03rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    position: relative;
}
.faq-q::after {
    content: '+';
    position: absolute; right: 6px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem; font-weight: 400;
    color: var(--navy-500);
}
.faq-item.open .faq-q::after { content: '\2013'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding-bottom: 22px; font-size: 0.96rem; }

/* ---- CTA ---------------------------------------------- */
.cta-band {
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    color: #fff;
    border-radius: 20px;
    padding: clamp(40px, 6vw, 72px);
    text-align: center;
    box-shadow: var(--shadow-lift);
    max-width: 1100px;
    margin: 0 auto;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 46ch; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact form ---------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; max-width: 1200px; margin: 0 auto; }
.contact-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-card);
}
.contact-card .ico {
    width: 44px; height: 44px; border-radius: 11px;
    display: grid; place-items: center;
    background: var(--navy-50); color: var(--navy-700);
    margin-bottom: 14px;
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card .k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-500); font-weight: 700; }
.contact-card .v { font-size: 1.05rem; color: var(--ink); font-weight: 600; margin-top: 4px; word-break: break-word; }
.contact-card .v a { color: var(--ink); }
.contact-card .v a:hover { color: var(--navy-700); }
.contact-card p { font-size: 0.92rem; margin-top: 8px; }

.chat-note {
    max-width: 1200px;
    margin: 32px auto 0;
    background: var(--brand-green-tint);
    border: 1px solid #cfe8c9;
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 0.95rem; color: var(--ink);
}
.chat-note svg { width: 22px; height: 22px; color: var(--brand-green-dark); flex: none; margin-top: 2px; }
form.card-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-card);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--navy-400);
    box-shadow: 0 0 0 3px var(--navy-50);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; color: var(--green); display: none; }

/* ---- Page hero (inner pages) ---------------------- */
.page-hero { padding: 64px 0 40px; text-align: center; }
.page-hero p { max-width: 52ch; margin: 14px auto 0; font-size: 1.05rem; }

/* ---- About ------------------------------------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin: 40px 0 14px; }
.prose p { margin-bottom: 16px; }

.lead-para {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--ink);
    text-align: center;
}
.lead-para strong { color: var(--navy-700); }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin: 0 auto; max-width: 1400px; }
.value-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-card); }
.value-card .ico { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: var(--navy-50); color: var(--navy-700); margin-bottom: 14px; }
.value-card .ico svg { width: 21px; height: 21px; }
.value-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.value-card p { font-size: 0.93rem; }

/* build-stage grid */
.stage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; max-width: 1500px; margin: 0 auto; }
.stage-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.stage-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(var(--navy-500), var(--brand-green));
}
.stage-card .stage-kicker {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--navy-600); margin-bottom: 12px;
}
.stage-card .stage-kicker span {
    width: 24px; height: 24px; border-radius: 7px;
    background: var(--navy-50); color: var(--navy-700);
    display: grid; place-items: center; font-size: 0.8rem;
}
.stage-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.stage-card p { font-size: 0.92rem; }

/* two-column plain text block */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 80px);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}
.about-split h2 { margin-bottom: 14px; }
.about-split p { margin-bottom: 14px; }
.about-panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.about-panel h3 { font-size: 1.05rem; margin-bottom: 14px; }
.about-panel ul { list-style: none; }
.about-panel ul li {
    position: relative; padding-left: 28px; margin-bottom: 12px;
    font-size: 0.95rem; color: var(--ink-soft);
}
.about-panel ul li::before {
    content: '';
    position: absolute; left: 0; top: 6px;
    width: 16px; height: 16px; border-radius: 5px;
    background: var(--brand-green-tint);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%232f7d28' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}

/* ---- Footer ----------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; margin: 0 auto 40px; max-width: 1400px; }
.site-footer .brand { margin-bottom: 12px; }
.site-footer .brand .mark { background: #fff; border-radius: 9px; padding: 4px; box-sizing: border-box; }
.site-footer .brand .edu { color: #fff; }
.site-footer .brand .kunja { color: #7ec776; }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col a, .footer-col .foot-plain { display: block; color: rgba(255,255,255,0.65); font-size: 0.92rem; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---- Responsive ------------------------------ */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .split, .contact-grid, .about-split { grid-template-columns: 1fr; gap: 32px; }
    .split.flip .split-media { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    section { padding: 60px 0; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        padding: 8px var(--pad) 16px;
        z-index: 60;
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-links.open .only-mobile { display: block; }
    .nav-links.open .only-mobile a { color: var(--navy-800); font-weight: 700; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 40px 24px; }
    .mini-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
    .brand { font-size: 1.05rem; gap: 8px; }
    .brand .mark { width: 32px; height: 32px; }
    .nav-cta .btn { padding: 9px 13px; font-size: 0.85rem; }
}
