/* ============================================================
   CAREER PLANET CONSULTANCY — DESIGN SYSTEM
   Dark/Light Mode | Performance Optimized | Mobile-First
   ============================================================ */

/* Google Fonts loaded via HTML link tag */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Brand Palette */
  --gold:        #C8A951;
  --gold-light:  #E4CC7A;
  --gold-dark:   #9A7D30;
  --gold-faint:  rgba(200,169,81,0.10);
  --gold-border: rgba(200,169,81,0.22);

  /* Light Mode Surfaces */
  --bg:          #F9F7F3;
  --surface:     #FFFFFF;
  --surface-2:   #F2EFE9;
  --border:      #E4DFD5;
  --text:        #1A1A2E;
  --text-2:      #4A4A6A;
  --text-3:      #7A7A9A;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.09);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.12);

  /* Layout */
  --max-w:       1240px;
  --nav-h:       72px;
  --radius:      14px;
  --radius-lg:   22px;

  /* Transitions */
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --t:           .35s var(--ease);
}

[data-theme="dark"] {
  --bg:          #0D0F1A;
  --surface:     #141625;
  --surface-2:   #1C1F33;
  --border:      rgba(255,255,255,.08);
  --text:        #F0EEE8;
  --text-2:      #A8A8C8;
  --text-3:      #6868A0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.25);
  --shadow-md:   0 8px 32px rgba(0,0,0,.35);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.50);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background var(--t), color var(--t);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.font-display { font-family: 'Cormorant Garamond', serif; }
h1,h2,h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  &::before { content:''; width:24px; height:1px; background:var(--gold); }
}
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-3); }

/* ── LAYOUT UTILITIES ── */
.wrapper { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 5%; }
.section--dark { background: #0D0F1A; color: #F0EEE8; }
[data-theme="dark"] .section--dark { background: #080A14; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600; letter-spacing: .03em;
  transition: var(--t); cursor: pointer; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0D0F1A;
  box-shadow: 0 4px 20px rgba(200,169,81,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,169,81,.5); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-faint); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 13px 20px;
}
.btn-ghost:hover { background: var(--gold-faint); }
.btn-sm { padding: 9px 20px; font-size: .8rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── NAVIGATION ── */
#nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(13,15,26,.92);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--t);
}
[data-theme="light"] #nav {
  background: rgba(249,247,243,.94);
  border-bottom: 1px solid var(--border);
}
#nav.scrolled { box-shadow: var(--shadow-md); }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 42px; height: 42px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700;
  color: #0D0F1A; letter-spacing: -.03em;
  flex-shrink: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-brand-text { line-height: 1.15; }
.nav-brand-text strong { display: block; font-size: .9rem; font-weight: 700; color: #F0EEE8; letter-spacing: .01em; }
[data-theme="light"] .nav-brand-text strong { color: var(--text); }
.nav-brand-text span { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: .83rem; font-weight: 500; color: rgba(240,238,232,.7);
  transition: var(--t);
}
[data-theme="light"] .nav-links a { color: var(--text-2); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: var(--gold-faint); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-faint); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); cursor: pointer;
}
.theme-toggle:hover { background: var(--gold-border); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #F0EEE8; border-radius: 2px; transition: var(--t);
}
[data-theme="light"] .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: #0D0F1A; z-index: 800;
  flex-direction: column; padding: 32px 5%;
  gap: 6px; overflow-y: auto;
}
[data-theme="light"] .mobile-nav { background: var(--bg); }
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 18px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 500; color: rgba(240,238,232,.8);
  transition: var(--t);
}
[data-theme="light"] .mobile-nav a { color: var(--text-2); }
.mobile-nav a:hover { color: var(--gold); background: var(--gold-faint); }
.mobile-nav .divider { height: 1px; background: rgba(255,255,255,.07); margin: 8px 0; }

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: #0D0F1A;
}
.hero-canvas {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,169,81,.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(30,20,60,.6) 0%, transparent 55%),
    linear-gradient(160deg, #0D0F1A 0%, #141625 55%, #0D0F1A 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: .03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-orb-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  right: -120px; top: 50%; transform: translateY(-50%);
  border: 1px solid rgba(200,169,81,.1); pointer-events: none;
}
.hero-orb-1::before {
  content: ''; position: absolute; inset: 60px; border-radius: 50%;
  border: 1px solid rgba(200,169,81,.07);
}
.hero-orb-1::after {
  content: ''; position: absolute; inset: 140px; border-radius: 50%;
  border: 1px solid rgba(200,169,81,.05);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 120px 5% 80px;
  display: grid; grid-template-columns: 55% 45%; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,169,81,.1); border: 1px solid rgba(200,169,81,.25);
  color: var(--gold-light); font-size: .7rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp .7s .1s both;
}
.hero-eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero h1 {
  color: #F0EEE8; margin-bottom: 20px;
  animation: fadeUp .7s .2s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(240,238,232,.6); line-height: 1.75; max-width: 480px;
  margin-bottom: 36px; animation: fadeUp .7s .3s both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .4s both; }
.hero-right { animation: fadeUp .7s .5s both; }
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(200,169,81,.14);
  border-radius: var(--radius-lg); padding: 36px; backdrop-filter: blur(10px);
}
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-bottom: 24px; }
.hero-stat { padding: 20px 0; text-align: center; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(200,169,81,.12); }
.hero-stat .n {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block; letter-spacing: -.03em;
}
.hero-stat .l {
  font-size: .65rem; color: rgba(240,238,232,.45); letter-spacing: .14em;
  text-transform: uppercase; display: block; margin-top: 4px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tag {
  background: rgba(200,169,81,.1); border: 1px solid rgba(200,169,81,.2);
  color: var(--gold-light); font-size: .72rem; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(240,238,232,.3); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  animation: fadeUp .7s .9s both;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 5% 72px;
  background: #0D0F1A; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(200,169,81,.10) 0%, transparent 65%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: .03;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; max-width: var(--max-w); margin: 0 auto; }
.page-hero .eyebrow { margin-bottom: 20px; color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: #F0EEE8; margin-bottom: 18px; }
.page-hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.05rem; color: rgba(240,238,232,.58); line-height: 1.75; max-width: 580px; }
.page-hero-stats { display: flex; gap: 48px; margin-top: 36px; flex-wrap: wrap; }
.phs .n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.phs .l { font-size: .65rem; color: rgba(240,238,232,.4); letter-spacing: .14em; text-transform: uppercase; display: block; margin-top: 4px; }

/* ── CARDS ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--t); position: relative; overflow: hidden;
}
.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-dark {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08);
  color: #F0EEE8;
}
.card-dark:hover { border-color: var(--gold-border); }
.card-accent-top::before {
  content: ''; position: absolute; top: 0; inset-inline: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transition: var(--t); transform-origin: left;
}
.card-accent-top:hover::before { transform: scaleX(1); }
.card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700;
  color: rgba(200,169,81,.12); line-height: 1; margin-bottom: 16px; display: block;
}
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-faint); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; flex-shrink: 0;
}

/* ── FEATURE LIST ── */
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid transparent;
  font-size: .88rem; font-weight: 500; color: var(--text-2);
  transition: var(--t);
}
.feat-item:hover { border-color: var(--gold-border); color: var(--text); background: var(--surface); }
.feat-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #0D0F1A;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; position: relative; margin-block: 14px;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; }
.marquee-track.fwd { animation: marquee 38s linear infinite; }
.marquee-track.rev { animation: marqueeRev 44s linear infinite; }
.pill {
  display: flex; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; color: var(--text-2);
  white-space: nowrap; flex-shrink: 0; transition: var(--t);
}
.pill:hover { border-color: var(--gold); color: var(--gold); }

/* ── COMPLIANCE LIST ── */
.comp-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  font-size: .88rem; font-weight: 500; color: rgba(240,238,232,.8);
  transition: var(--t); margin-bottom: 10px;
}
.comp-item:hover { border-color: var(--gold-border); background: var(--gold-faint); color: #F0EEE8; }
.comp-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #0D0F1A;
}

/* ── FOOTER ── */
.footer {
  background: #080A14; padding: 64px 5% 28px;
  border-top: 1px solid rgba(200,169,81,.1);
}
[data-theme="light"] .footer { background: #0D0F1A; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: .83rem; color: rgba(240,238,232,.35); line-height: 1.75; margin-top: 16px; max-width: 260px; }
.footer-brand .phone { color: var(--gold); font-size: .9rem; font-weight: 700; margin-top: 14px; display: block; }
.footer-col h5 { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a { font-size: .83rem; color: rgba(240,238,232,.4); transition: var(--t); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05); font-size: .75rem; color: rgba(240,238,232,.22); flex-wrap: wrap; gap: 12px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes marqueeRev { from{transform:translateX(-50%)} to{transform:translateX(0)} }
@keyframes spin     { to{transform:rotate(360deg)} }

/* ── IMAGE CONTAINERS ── */
.img-wrap { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.img-wrap svg { display: block; width: 100%; height: 100%; }
.img-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
}
.img-badge .n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: #0D0F1A; display: block; line-height: 1; }
.img-badge .l { font-size: .65rem; font-weight: 700; color: rgba(13,15,26,.65); letter-spacing: .1em; text-transform: uppercase; }

/* ── SECTION DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0D0F1A 0%, #141625 50%, #0D0F1A 100%);
  padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,81,.09) 0%, transparent 65%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #F0EEE8; margin-bottom: 16px; }
.cta-band p { color: rgba(240,238,232,.55); font-size: 1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── DARK CARD (used in dark sections) ── */
.dcard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 32px 28px; color: #F0EEE8;
  transition: var(--t); position: relative; overflow: hidden;
}
.dcard:hover { border-color: var(--gold-border); background: rgba(200,169,81,.05); transform: translateY(-3px); }
.dcard h3 { color: #F0EEE8; margin-bottom: 10px; }
.dcard p { color: rgba(240,238,232,.55); font-size: .88rem; line-height: 1.7; }

/* ── SKILL TAG ── */
.sk {
  display: inline-flex; align-items: center;
  background: rgba(200,169,81,.08); border: 1px solid rgba(200,169,81,.16);
  color: rgba(240,238,232,.75); font-size: .78rem; font-weight: 500;
  padding: 6px 14px; border-radius: 8px; margin: 4px; transition: var(--t);
}
.sk:hover { background: rgba(200,169,81,.14); color: var(--gold-light); }

/* ── CONTACT ITEMS ── */
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-faint); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.ci-label { font-size: .68rem; color: var(--gold); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px; }
.ci-value { font-size: .92rem; color: rgba(240,238,232,.85); font-weight: 500; }
.ci-value a { color: inherit; transition: var(--t); }
.ci-value a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-orb-1 { display: none; }
  .hero-right { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 44px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 5%; }
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { grid-template-columns: 1fr; gap: 0; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid rgba(200,169,81,.12); }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions, .cta-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: center; }
  .page-hero-stats { flex-direction: column; gap: 20px; }
}
