/*
Theme Name: VAVarsity
Theme URI: https://vaconnect.co.za
Author: VAConnect
Author URI: https://vaconnect.co.za
Description: VAVarsity LMS theme — LearnDash-compatible, branded for VAConnect's in-house training platform. Shared header/footer, dynamic public Courses listing, and a Home/Contact/Courses/Login menu.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: vavarsity
*/

:root {
  --navy: #0A1628;
  --navy-90: #0D1D35;
  --navy-80: #142240;
  --teal: #00C9B7;
  --teal-hover: #00b3a2;
  --magenta: #E5007D;
  --cyan: #00A3E0;
  --grey-bg: #F5F5F5;
  --grey-body: #666666;
  --grey-light: #999999;
  --grey-border: #E0E0E0;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1120px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--grey-body);
  background: var(--white); overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; line-height: 1.12; letter-spacing: -0.3px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  background: var(--navy); box-shadow: 0 1px 0 rgba(255,255,255,0.04); }
.nav.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-svg { height: 44px; width: auto; display: block; flex-shrink: 0; }
.footer-brand .nav-logo-svg { height: 56px; }
@media (max-width: 768px) { .nav-logo-svg { height: 38px; } }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links li { list-style: none; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.55);
  transition: color var(--transition); padding-bottom: 2px;
  border-bottom: 2px solid transparent; }
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--white); }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { border-bottom-color: var(--teal); }
/* Login / CTA item */
.nav-links .nav-cta-item a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  background: var(--teal); padding: 8px 20px; border-radius: 6px;
  border-bottom: none; transition: background var(--transition); }
.nav-links .nav-cta-item a:hover { background: var(--teal-hover); color: var(--navy); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 1px; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 64px; left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    padding: 32px 24px 40px; gap: 24px;
    transform: translateY(-120%); transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 18px; }
  .nav-links .nav-cta-item a { font-size: 16px; padding: 12px 28px; text-align: center; width: 100%; display: block; }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px;
  padding: 16px 32px; border-radius: var(--radius); border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 0.2px; cursor: pointer;
  transition: all var(--transition); text-align: center; }
.btn-primary { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-hover); border-color: var(--teal-hover);
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,201,183,0.25); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }
.btn-sm { padding: 11px 22px; font-size: 14px; }
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* HERO (home) */
.hero {
  position: relative; overflow: hidden; background: var(--navy);
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 18% 35%, rgba(0,201,183,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 500px 500px at 82% 72%, rgba(0,163,224,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 800px 600px at 50% 50%, rgba(229,0,125,0.025) 0%, transparent 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 24px;
  border: 1px solid rgba(0,201,183,0.25);
  background: rgba(0,201,183,0.06);
  font-size: 13px; color: var(--teal); margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px var(--teal); }
.hero-headline {
  font-size: clamp(40px, 6vw, 68px);
  color: var(--white); margin-bottom: 24px; letter-spacing: -1px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-headline .accent { color: var(--teal); }
.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.55); max-width: 560px;
  margin: 0 auto 40px; line-height: 1.65;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both; }
.hero-stats { display: flex; justify-content: center; gap: clamp(32px, 6vw, 72px);
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeUp 0.8s 0.6s ease both; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.hero-stat.hs-teal .hero-stat-num { color: var(--teal); }
.hero-stat.hs-cyan .hero-stat-num { color: var(--cyan); }
.hero-stat.hs-magenta .hero-stat-num { color: var(--magenta); }

/* HERO (compact — contact / courses) */
.hero-c {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--white);
  padding: 160px 24px 80px; text-align: center;
}
.hero-c::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 18% 35%, rgba(0,201,183,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 500px 500px at 82% 72%, rgba(0,163,224,0.06) 0%, transparent 100%);
}
.hero-c::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-c-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-c-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.hero-c h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 18px; letter-spacing: -0.5px; }
.hero-c p { font-size: 17px; color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto; line-height: 1.65; }

/* SECTION UTILS */
.section { padding: clamp(80px, 12vw, 140px) 24px; }
.section-dark { background: var(--navy); color: var(--white); }
.section-grey { background: var(--grey-bg); }
.section-white { background: var(--white); }
.section-eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
.ey-teal { color: var(--teal); }
.ey-magenta { color: var(--magenta); }
.ey-cyan { color: var(--cyan); }
.section-heading { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 20px; letter-spacing: -0.5px; }
.section-heading.on-dark { color: var(--white); }
.section-heading.on-light { color: var(--navy); }
.section-lead { font-size: 17px; line-height: 1.7; max-width: 580px; margin-bottom: 48px; }
.section-dark .section-lead { color: rgba(255,255,255,0.55); }
.section-center { text-align: center; }
.section-center .section-lead { margin-left: auto; margin-right: auto; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PROOF BAR */
.proof-bar { background: var(--navy-90);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 36px 24px; }
.proof-bar-inner { max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.45); }
.proof-item strong { font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--white); }
.proof-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
@media (max-width: 600px) {
  .proof-divider { display: none; }
  .proof-bar-inner { flex-direction: column; gap: 12px; }
}

/* TRACKS GRID */
.tracks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
@media (max-width: 960px) { .tracks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tracks-grid { grid-template-columns: 1fr; } }
.track-card { padding: 32px 28px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--grey-border);
  transition: all var(--transition); position: relative; overflow: hidden; }
.track-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: transparent; }
.track-card::before { content: ''; position: absolute; left: 0; top: 0; right: 0;
  height: 3px; background: var(--teal); opacity: 0; transition: opacity var(--transition); }
.track-card:hover::before { opacity: 1; }
.track-card.t-magenta::before { background: var(--magenta); }
.track-card.t-cyan::before { background: var(--cyan); }
.track-icon { width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; }
.ti-teal { background: rgba(0,201,183,0.1); color: var(--teal); }
.ti-magenta { background: rgba(229,0,125,0.08); color: var(--magenta); }
.ti-cyan { background: rgba(0,163,224,0.08); color: var(--cyan); }
.track-card h4 { font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.track-card p { font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.track-meta { display: flex; gap: 16px; font-size: 12px;
  color: var(--grey-light); letter-spacing: 0.5px; text-transform: uppercase;
  border-top: 1px solid var(--grey-border); padding-top: 14px; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 36px 32px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(0,201,183,0.2); }
.why-card-num { font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 36px; color: var(--teal); line-height: 1; margin-bottom: 16px; display: inline-block; }
.why-card.w-magenta .why-card-num { color: var(--magenta); }
.why-card.w-cyan .why-card-num { color: var(--cyan); }
.why-card h4 { font-size: 19px; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.55); }

/* APPROACH STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; margin-top: 8px; counter-reset: step; }
.step { text-align: center; position: relative; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 56px; color: rgba(0,201,183,0.15); line-height: 1; display: block; margin-bottom: 16px; }
.step h4 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 15px; max-width: 260px; margin: 0 auto; line-height: 1.65; }
@media (min-width: 769px) {
  .step:not(:last-child)::after { content: ''; position: absolute;
    top: 28px; right: -20px; width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--teal), transparent); opacity: 0.3; }
}

/* COURSES GRID (home preview + courses archive) */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px; margin-top: 8px; }
.course { display: flex; flex-direction: column; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--grey-border);
  transition: all var(--transition); overflow: hidden; }
.course:hover { transform: translateY(-3px); border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05); }
.course-thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-90); }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-thumb-fallback { width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-80) 100%); }
.course-thumb-fallback svg { width: 56px; height: 56px; opacity: 0.85; }
.course-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.course-badge { align-self: flex-start; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--grey-light); background: var(--grey-bg);
  padding: 5px 10px; border-radius: 20px; margin-bottom: 14px; }
.course-badge.closed { color: var(--magenta); background: rgba(229,0,125,0.07); }
.course h5 { font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.course p { font-size: 14px; color: var(--grey-body); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.course-foot { display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--grey-border); }
.course-foot .view-link { font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; color: var(--teal); }
.course-foot .view-link:hover { color: var(--teal-hover); }
.course-empty { text-align: center; padding: 60px 24px; color: var(--grey-body); }

/* QUOTE */
.quote-block { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 80px; color: var(--teal); line-height: 1; margin-bottom: -20px; }
.quote-text { font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 30px); color: var(--white);
  line-height: 1.4; letter-spacing: -0.3px; margin-bottom: 28px; }
.quote-attr { font-size: 14px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }
.quote-attr strong { color: var(--white); font-weight: 600; font-family: 'Open Sans', sans-serif; }

/* FINAL CTA */
.final-cta { padding: clamp(80px, 12vw, 140px) 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-80) 100%);
  text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 100%, rgba(0,201,183,0.08), transparent 70%); }
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(32px, 4.5vw, 52px); color: var(--white); margin-bottom: 20px; letter-spacing: -0.5px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 36px; line-height: 1.65; }

/* CONTACT */
.contact-section { padding: clamp(60px, 9vw, 100px) 24px; background: var(--grey-bg); }
.contact-grid { max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.form-card { background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border); padding: 40px clamp(24px, 4vw, 48px);
  box-shadow: 0 8px 28px rgba(10,22,40,0.04); }
.form-card h2 { font-size: clamp(24px, 3vw, 32px); color: var(--navy); margin-bottom: 8px; letter-spacing: -0.3px; }
.form-card .form-lead { font-size: 15px; color: var(--grey-body); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.2px; }
.field label .req { color: var(--magenta); }
.field input, .field textarea { width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--navy); background: var(--white);
  border: 1px solid var(--grey-border); border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,183,0.15); }
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.vv-hp-wrap { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-card .btn-primary { padding: 14px 30px; font-size: 15px; }
.alert { padding: 14px 16px; border-radius: var(--radius); font-size: 14px; line-height: 1.55; margin-bottom: 22px; }
.alert-success { background: rgba(0,201,183,0.08); border: 1px solid rgba(0,201,183,0.25); color: #006d63; }
.alert-error { background: rgba(229,0,125,0.06); border: 1px solid rgba(229,0,125,0.22); color: #a3005a; }
.alert ul { margin: 6px 0 0 18px; }
.form-fineprint { font-size: 12px; color: var(--grey-light); margin-top: 14px; line-height: 1.5; }
.info-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; position: relative; overflow: hidden; }
.info-card::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 400px 300px at 100% 0%, rgba(0,201,183,0.12), transparent 70%); }
.info-card > * { position: relative; z-index: 1; }
.info-card h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; letter-spacing: -0.3px; }
.info-card .info-lead { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; line-height: 1.6; }
.info-row { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.info-row:first-of-type { border-top: 1px solid rgba(255,255,255,0.1); }
.info-label { font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.info-value { font-size: 15px; color: var(--white); line-height: 1.5; }
.info-value a { color: var(--white); border-bottom: 1px solid rgba(0,201,183,0.4); }
.info-value a:hover { border-bottom-color: var(--teal); }

/* GENERIC CONTENT (pages, posts, LearnDash single course/lesson/quiz) */
.vv-main { padding-top: 64px; min-height: 60vh; }
.vv-content-wrap { max-width: var(--max-w); margin: 0 auto; padding: 56px 24px 80px; }
.vv-content-wrap h1, .vv-content-wrap h2, .vv-content-wrap h3 { color: var(--navy); margin: 1.2em 0 0.5em; }
.vv-content-wrap h1 { font-size: clamp(30px, 4vw, 44px); margin-top: 0; }
.vv-content-wrap p { margin-bottom: 1em; }
.vv-content-wrap a { color: var(--teal); }
.vv-content-wrap a:hover { color: var(--teal-hover); }
.vv-content-wrap ul, .vv-content-wrap ol { margin: 0 0 1em 1.4em; }
.vv-content-wrap img { border-radius: var(--radius); margin: 1em 0; }
.vv-page-title { color: var(--navy); font-size: clamp(30px, 4vw, 44px); margin-bottom: 24px; }

/* FOOTER */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px 36px; color: var(--white); }
.footer-top { max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer-col h6 { font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.35);
  transition: color var(--transition); margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-w); margin: 44px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.2); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
