/* ========================================
   Velari — Healthcare Cybersecurity
   Editorial Consulting Design System
   v2.2 — Liquid Glass Nav
   ======================================== */

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

:root {
    --navy-50:  #f4f6f8; --navy-100: #e8ecef; --navy-950: #050a10; --navy-925: #070f17;
    --navy-900: #0a1620; --navy-850: #0d1d2a; --navy-800: #112433; --navy-750: #142b3d;
    --navy-700: #183347; --navy-650: #1c3b51; --navy-600: #20435b;
    --slate-50:  #f8fafc; --slate-100: #f1f5f9; --slate-150: #e9f0f7; --slate-200: #dfe7f0;
    --slate-300: #c5d0db; --slate-400: #94a3b8; --slate-500: #64748b; --slate-600: #475569;
    --slate-700: #334155; --slate-800: #1e293b;
    --gold: #c9a84c; --gold-light: #dcc076; --gold-dark: #a88a2e; --gold-muted: rgba(201, 168, 76, 0.08);
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --section-pad: 120px; --container-max: 1200px;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: var(--font-body); color: var(--slate-700); background: var(--white); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

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

/* ========================================
   LIQUID GLASS NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px 0;
    pointer-events: none;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
    border-radius: 28px;
    pointer-events: auto;
    transition: all 0.5s var(--ease);
    position: relative;
}

/* Liquid glass effect — initial (transparent, hero visible) */
.nav-inner {
    background: transparent;
}

.nav-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px) saturate(1.6);
    -webkit-backdrop-filter: blur(40px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    z-index: -1;
}

.nav.scrolled .nav-inner::before {
    opacity: 1;
}

/* Scrolled state — thicker liquid glass */
.nav.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.72);
}

.nav.scrolled .nav-inner::before {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(60px) saturate(1.8);
    -webkit-backdrop-filter: blur(60px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        inset 0 -1px 1px rgba(255, 255, 255, 0.2),
        0 12px 40px -8px rgba(10, 22, 32, 0.12),
        0 4px 12px rgba(10, 22, 32, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: color 0.4s var(--ease);
    position: relative;
    z-index: 1;
}

.nav.scrolled .logo {
    color: var(--navy-900);
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.25s var(--ease);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav.scrolled .nav-links a {
    color: var(--slate-600);
}

.nav.scrolled .nav-links a:hover {
    color: var(--navy-900);
    background: rgba(0, 0, 0, 0.04);
}

.nav-links a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.nav.scrolled .nav-links a.active {
    color: var(--gold-dark);
    background: var(--gold-muted);
}

.nav-cta {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
    gap: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    position: absolute;
}

.mobile-menu-btn span:nth-child(1) { transform: translateY(-7px); }
.mobile-menu-btn span:nth-child(2) { transform: translateY(0); }
.mobile-menu-btn span:nth-child(3) { transform: translateY(7px); }

.mobile-menu-btn.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.nav.scrolled .mobile-menu-btn span { background: var(--navy-900); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-950);
    overflow: hidden;
    padding: 160px 0 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(28, 59, 81, 0.4) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.trust-check {
    color: var(--gold);
    font-size: 0.85rem;
}

/* ========================================
   SECTIONS
   ======================================== */

.section { padding: var(--section-pad) 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy-900); }
.section-cream { background: var(--navy-50); }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header.light h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; color: var(--slate-500); max-width: 560px; }
.section-header.center p { margin-left: auto; margin-right: auto; }
.section-header.light p { color: rgba(255, 255, 255, 0.5); }

/* ========================================
   EDITORIAL SPLIT
   ======================================== */

.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.editorial-split.reverse { direction: rtl; }
.editorial-split.reverse > * { direction: ltr; }

.editorial-split h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.editorial-split p.lead {
    font-size: 1.1rem;
    color: var(--slate-600);
    line-height: 1.75;
}

.editorial-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.editorial-text p { color: var(--slate-500); margin-bottom: 0; }

.accent-line {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 24px;
}

/* ========================================
   STAT BAR
   ======================================== */

.stat-bar {
    display: flex;
    gap: 60px;
    padding: 48px 60px;
    background: var(--navy-50);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.stat-bar-item { flex: 1; }

.stat-bar-item .value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-bar-item .value.gold { color: var(--gold); }

.stat-bar-item .label {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* ========================================
   FEATURE BLOCKS
   ======================================== */

.feature-blocks { display: flex; flex-direction: column; gap: 28px; }

.feature-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-muted);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.feature-blocks-dark .feature-block {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-blocks-dark .feature-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-blocks-dark .feature-icon {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.feature-blocks-dark .feature-content h3 { color: var(--white); }
.feature-blocks-dark .feature-content p { color: rgba(255, 255, 255, 0.5); }

/* ========================================
   FEATURE LISTS
   ======================================== */

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.feature-list-dark {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list-dark li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.feature-list-dark li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--slate-150);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(10, 22, 32, 0.12), 0 8px 16px -4px rgba(10, 22, 32, 0.04);
    border-color: var(--slate-200);
}

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

.card-dark {
    background: var(--navy-850);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px;
    transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
    position: relative;
    overflow: hidden;
}

.card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.card-dark:hover {
    transform: translateY(-6px);
    background: var(--navy-800);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.4);
}

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

/* ========================================
   CHECK ITEMS
   ======================================== */

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--slate-150);
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--gold-muted);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.check-item span {
    font-size: 0.82rem;
    color: var(--slate-500);
}

/* ========================================
   PULL QUOTE
   ======================================== */

.pull-quote {
    padding: 32px 36px;
    background: var(--navy-900);
    border-radius: 12px;
    position: relative;
}

.pull-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
}

.pull-quote.dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================
   TAGS
   ======================================== */

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-muted);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 120px 0;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.cta-note a {
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    transition: border-color 0.2s;
}

.cta-note a:hover {
    border-color: var(--gold);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(201, 168, 76, 0.45);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.btn-lg { padding: 16px 36px; font-size: 0.98rem; }

/* ========================================
   FORMS
   ======================================== */

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate-700);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

input::placeholder, textarea::placeholder { color: var(--slate-400); }

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.js-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 280px;
    line-height: 1.7;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

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

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
    .nav-cta { display: none; }

    .nav-inner {
        height: 52px;
        padding: 0 20px;
        border-radius: 26px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(40px) saturate(1.6);
        -webkit-backdrop-filter: blur(40px) saturate(1.6);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 1001;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        color: var(--navy-900) !important;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid var(--slate-200);
        border-radius: 0;
    }

    .nav-links a:hover {
        background: none;
        color: var(--gold) !important;
    }

    .nav-links a.active {
        background: none;
        color: var(--gold) !important;
    }

    .mobile-menu-btn { display: flex; }

    .hero { min-height: auto; padding: 140px 0 80px; }
    .section { padding: 80px 0; }
    .container { padding: 0 24px; }
    .editorial-split { grid-template-columns: 1fr; gap: 48px; }
    .editorial-split.reverse { direction: ltr; }
    .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
    .stat-bar { flex-direction: column; gap: 32px; padding: 36px; }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .hero-cta-group { flex-direction: column; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .cta-buttons { flex-direction: column; }
}

@media (max-width: 600px) {
    .footer-nav { grid-template-columns: 1fr; }
    .feature-block { flex-direction: column; gap: 14px; }
}
