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

:root {
    --bg: #0a1628;
    --bg2: #0f1d32;
    --card: #142338;
    --card-hover: #1a2d48;
    --text: #b8c9de;
    --text-dim: #5e7a99;
    --white: #edf2f8;
    --violet: #7b9ad8;
    --violet2: #9bb4e4;
    --violet-dim: rgba(123, 154, 216, 0.1);
    --violet-glow: rgba(123, 154, 216, 0.25);
    --accent: #f2c94c;
    --accent-dim: rgba(242, 201, 76, 0.1);
    --accent-border: rgba(242, 201, 76, 0.25);
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(255, 255, 255, 0.12);
    --font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    --r: 12px;
    --tier1: #4ade80;
    --tier1-bg: rgba(74, 222, 128, 0.06);
    --tier1-border: rgba(74, 222, 128, 0.2);
    --tier2: #fbbf24;
    --tier2-bg: rgba(251, 191, 36, 0.06);
    --tier2-border: rgba(251, 191, 36, 0.2);
    --tier3: #a78bfa;
    --tier3-bg: rgba(167, 139, 250, 0.06);
    --tier3-border: rgba(167, 139, 250, 0.2);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.gradient-text {
    background: linear-gradient(135deg, #7b9ad8, #9bb4e4, #f2c94c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========== NAV =========== */
nav {
    position: fixed;
    top: 12px; left: 0; right: 0;
    z-index: 100;
    padding: 0 20px;
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 6px 0 16px;
    display: flex;
    align-items: center;
    height: 52px;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border2);
    border-radius: 100px;
    gap: 8px;
}

.logo {
    font-size: 0;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
    flex-shrink: 0;
}

.logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-highlight {
    color: var(--accent);
}

.nav-pills {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    padding: 3px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-pill svg {
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.nav-pill:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-pill:hover svg {
    opacity: 1;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #0a1628;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta svg {
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #f7d86c;
    box-shadow: 0 0 20px var(--accent-border);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu span {
    width: 20px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.2s;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(123,154,216,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-ticker {
    width: 100%;
    overflow: hidden;
    margin-bottom: 36px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ticker-icon {
    color: var(--violet);
    flex-shrink: 0;
    opacity: 0.7;
}

.ticker-num {
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border2);
    flex-shrink: 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #0a1628;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #f7d86c;
    box-shadow: 0 4px 24px var(--accent-border);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border2);
    color: var(--text);
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: var(--card-hover);
    color: var(--white);
}

/* =========== STATS =========== */
.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.stats-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.stat-pill {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}

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

/* =========== SECTIONS =========== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg2);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--violet);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

.section-header p {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-dim);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========== TIER LABELS =========== */
.tier-label {
    text-align: center;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
}

.tier-label:first-of-type {
    margin-top: 0;
}

.tier-1 {
    background: var(--tier1-bg);
    border: 1px solid var(--tier1-border);
    color: var(--tier1);
}

.tier-2 {
    background: var(--tier2-bg);
    border: 1px solid var(--tier2-border);
    color: var(--tier2);
}

.tier-3 {
    background: var(--tier3-bg);
    border: 1px solid var(--tier3-border);
    color: var(--tier3);
}

/* =========== CARDS =========== */
.card-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 8px;
}

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

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    transition: all 0.25s;
}

.card:hover {
    background: var(--card-hover);
    border-color: var(--border2);
}

.card-tier1 { border-left: 3px solid var(--tier1); }
.card-tier2 { border-left: 3px solid var(--tier2); }
.card-tier3 { border-left: 3px solid var(--tier3); }

.card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

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

.card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
}

.card-tags {
    margin-bottom: 12px;
}

.card-keywords {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.card-keywords li {
    background: var(--violet-dim);
    border: 1px solid rgba(123, 154, 216, 0.15);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    color: var(--violet2);
    font-weight: 500;
}

/* =========== DELIVERABLES =========== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.deliver-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    transition: all 0.25s;
}

.deliver-card:hover {
    background: var(--card-hover);
    border-color: var(--border2);
}

.deliver-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--violet-dim);
    border: 1px solid rgba(123, 154, 216, 0.15);
    border-radius: 10px;
    color: var(--violet2);
    margin-bottom: 16px;
}

.deliver-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.deliver-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 14px;
}

.deliver-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 500;
}

/* =========== DOCUMENTATION SERVICES =========== */
.docs-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

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

.doc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    transition: all 0.25s;
}

.doc-card:hover {
    background: var(--card-hover);
    border-color: var(--border2);
}

.doc-card-featured {
    position: relative;
    border-color: rgba(123, 154, 216, 0.2);
    background: linear-gradient(135deg, var(--card) 0%, rgba(123, 154, 216, 0.04) 100%);
}

.doc-badge {
    display: inline-block;
    background: var(--accent);
    color: #0a1628;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.doc-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.doc-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
}

.doc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--violet-dim);
    border: 1px solid rgba(123, 154, 216, 0.12);
    border-radius: 8px;
    color: var(--violet2);
    margin-bottom: 14px;
}

.doc-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.doc-includes span {
    background: var(--violet-dim);
    border: 1px solid rgba(123, 154, 216, 0.12);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--violet2);
    font-weight: 500;
}

/* =========== COUNTRY & UNIVERSITY CARDS =========== */
.country-section {
    margin-bottom: 48px;
}

.country-section:last-child {
    margin-bottom: 0;
}

.country-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--r);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.country-au { background: linear-gradient(135deg, rgba(0, 33, 65, 0.3) 0%, rgba(255, 205, 0, 0.05) 100%); }
.country-ca { background: linear-gradient(135deg, rgba(255, 0, 0, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%); }
.country-uk { background: linear-gradient(135deg, rgba(0, 36, 125, 0.15) 0%, rgba(200, 16, 46, 0.05) 100%); }

.country-flag-lg {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
}

.country-info {
    flex: 1;
}

.country-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}

.country-info p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
}

.country-stat {
    text-align: center;
    flex-shrink: 0;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.country-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.country-stat-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.uni-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.uni-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.uni-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.uni-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.uni-body h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.uni-students {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.uni-students span {
    font-size: 10px;
    color: var(--text-dim);
}

.uni-bar {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.uni-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--accent));
    border-radius: 2px;
}

.uni-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.uni-courses span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 9px;
    color: var(--text-dim);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.uni-card-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-style: dashed;
    border-color: var(--border2);
    cursor: pointer;
    gap: 6px;
}

.uni-card-more:hover {
    border-color: var(--accent);
    background: rgba(242, 201, 76, 0.04);
}

.uni-more-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.uni-more-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.uni-more-examples {
    font-size: 10px;
    color: var(--text-dim);
    line-height: 1.5;
    padding: 0 4px;
}

.uni-more-cta {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 4px;
}

/* =========== TIMELINE =========== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-icon-done {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a1628;
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--violet) 0%, var(--border) 100%);
    margin: 4px 0;
    min-height: 24px;
}

.timeline-content {
    padding: 4px 0 36px;
}

.timeline-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--violet);
    margin-bottom: 4px;
    display: block;
}

.timeline-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* =========== TESTIMONIALS =========== */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.review {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
}

.review-stars {
    color: #facc15;
    font-size: 12px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.review-uni {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* =========== CTA TERMINAL =========== */
.cta-section {
    padding: 80px 0;
}

.cta-terminal {
    max-width: 640px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
    background: #1a2d48;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #febc2e; }
.dot-green { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }

.terminal-title {
    font-size: 11px;
    color: var(--text-dim);
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.terminal-body {
    background: #0d1a2a;
    padding: 24px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 13px;
    line-height: 2;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.terminal-line-blank {
    height: 10px;
}

.t-prompt {
    color: var(--accent);
    font-weight: 700;
}

.t-cmd {
    color: var(--white);
    font-weight: 600;
}

.t-flag {
    color: var(--violet2);
}

.t-arg {
    color: #4ade80;
}

.t-comment {
    color: var(--text-dim);
}

.t-success {
    color: #4ade80;
    font-weight: 700;
}

.t-output {
    color: var(--text);
}

.terminal-cta {
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px dashed var(--border2);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-terminal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #0a1628;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    transition: all 0.2s;
}

.btn-terminal:hover {
    background: #f7d86c;
    box-shadow: 0 4px 20px var(--accent-border);
}

.terminal-hint {
    font-size: 11px;
    color: var(--text-dim);
    font-family: var(--font);
}

/* =========== FOOTER =========== */
footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    text-align: center;
}

footer p {
    font-size: 12px;
    color: var(--text-dim);
}

/* =========== FAQ =========== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-q::after {
    content: '+';
    font-size: 20px;
    color: var(--text-dim);
    transition: 0.2s;
    flex-shrink: 0;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
    color: var(--violet);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding-top: 12px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* =========== MOBILE =========== */
@media (max-width: 768px) {
    nav { top: 8px; }
    .nav-inner {
        border-radius: 16px;
        padding: 0 12px;
        position: relative;
    }
    .nav-pills { display: none; }
    .nav-pills.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(24px);
        border: 1px solid var(--border2);
        border-radius: 12px;
        padding: 8px;
        gap: 2px;
        z-index: 200;
    }
    .nav-pills.mobile-open .nav-pill {
        justify-content: flex-start;
        padding: 12px 12px;
        font-size: 14px;
        border-radius: 8px;
    }
    .nav-pills.mobile-open .nav-pill:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    .nav-cta { display: none; }
    .mobile-menu { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-desc { font-size: 15px; }

    .stats-inner { gap: 20px; }
    .stat-num { font-size: 22px; }
    .stat-divider { display: none; }

    .section { padding: 60px 0; }
    .section-header h2 { font-size: 24px; }

    .card-grid-2,
    .card-grid-3,
    .card-grid-4 { grid-template-columns: 1fr; }

    .timeline { max-width: 100%; }

    .deliverables-grid { grid-template-columns: 1fr; }
    .docs-main-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }

    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 24px; }

    .country-banner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .country-stat {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 12px;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .country-stat-num { font-size: 20px; }

    .uni-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .stats-inner { flex-direction: column; gap: 16px; }
    .uni-cards { grid-template-columns: 1fr; }
}
