/* =============================================================
   FUZED ENTERPRISES — 2025
   Fonts loaded via <link> in <head> — no @import here
============================================================= */

/* ─── ROOT ─── */
:root {
  --gold:        #f3c623;
  --gold-dark:   #d4a811;
  --gold-glow:   rgba(243,198,35,0.18);
  --gold-border: rgba(243,198,35,0.30);
  --black:       #070b13;
  --dark:        #0c1220;
  --surface:     #111827;
  --surface-2:   #16213a;
  --text:        #e6eaf2;
  --muted:       #8a97b0;
  --border:      #1d2c44;
  --radius:      8px;
  --shadow:      0 8px 32px rgba(0,0,0,0.45);
  --gold-shadow: 0 4px 20px rgba(243,198,35,0.28);
  --max:         1140px;
  --fd: 'Oswald', system-ui, sans-serif;
  --fb: 'DM Sans', system-ui, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  font-family: var(--fb);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── TYPE ─── */
h1, h2, h3, h4 {
  font-family: var(--fd); font-weight: 700; line-height: 1.1;
  letter-spacing: 0.02em; color: #fff;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
p { color: var(--muted); line-height: 1.75; }
p + p { margin-top: 0.9rem; }

/* ─── LAYOUT ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 5rem 0; }
.section.alt  { background: var(--surface); }
.section.dark { background: var(--dark); }

/* ─── HEADER ─── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,11,19,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px; gap: 1rem;
  position: relative;
}
.brand img { height: 42px; width: auto; }

/* ─── NAV ─── */
.nav {
  display: flex; gap: 1.75rem; align-items: center;
  font-family: var(--fd); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.nav > a { transition: color .2s; }
.nav > a:hover,
.nav > a.active { color: var(--gold); }

/* ─── SERVICES DROPDOWN ─── */
.nav-dropdown { position: relative; list-style: none; }

.nav-dropdown > summary {
  cursor: pointer; list-style: none;
  font-family: var(--fd); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
  user-select: none;
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { content: "▾"; font-size: 0.75em; transition: transform .2s; }
.nav-dropdown[open] > summary::after { transform: rotate(180deg); }
.nav-dropdown > summary:hover { color: var(--gold); }

/* When a child link is active: glow the parent Summary */
.nav-dropdown:has(a.active) > summary {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(243,198,35,0.55);
}

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.75rem); left: 50%;
  transform: translateX(-50%);
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.5rem 0;
  min-width: 220px; list-style: none; margin: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.55); z-index: 200;
}
.nav-dropdown-menu li a {
  display: block; padding: 0.6rem 1.25rem;
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  color: var(--gold); background: rgba(255,255,255,.04);
}

/* Active dropdown item — gold highlight + left glow bar */
.nav-dropdown-menu li a.active {
  color: var(--gold);
  background: rgba(243,198,35,0.1);
  border-left: 3px solid var(--gold);
  padding-left: calc(1.25rem - 3px);
  text-shadow: 0 0 10px rgba(243,198,35,0.4);
}

/* Mobile: flatten dropdown */
@media (max-width: 860px) {
  .nav-dropdown > summary::after { display: none; }
  .nav-dropdown[open] .nav-dropdown-menu,
  .nav-dropdown .nav-dropdown-menu {
    position: static; transform: none; box-shadow: none; border: none;
    background: transparent; padding: 0 0 0 1rem; min-width: unset;
  }
  .nav-dropdown-menu li a { padding: 0.4rem 0; }
  .nav-dropdown-menu li a.active {
    border-left: none; padding-left: 0; background: transparent;
    text-shadow: none;
  }
}

/* ─── CALL BUTTON ─── */
.btn-call {
  background: var(--gold); color: #0c1220;
  font-family: var(--fd); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.6rem 1.2rem; border-radius: var(--radius);
  white-space: nowrap; box-shadow: var(--gold-shadow);
  transition: background .2s, transform .15s;
}
.btn-call:hover { background: var(--gold-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 1.5rem; padding: 0.35rem 0.5rem; line-height: 1;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: var(--radius); font-family: var(--fd); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 1.75rem; font-size: 1rem;
  transition: all .2s; cursor: pointer; border: none; line-height: 1;
}
.btn-primary { background: var(--gold); color: #0c1220; box-shadow: var(--gold-shadow); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ─── KICKER ─── */
.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-glow); border: 1px solid var(--gold-border); color: var(--gold);
  font-family: var(--fd); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 999px; margin-bottom: 1.25rem;
}

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden; background: var(--dark);
  padding: clamp(3.5rem, 9vh, 7rem) 0 clamp(5rem, 12vh, 9rem);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(243,198,35,.05) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 5%  90%, rgba(29,79,145,.14) 0%, transparent 55%);
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; background: var(--black);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center; position: relative; z-index: 1;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: clamp(1rem,1.5vw,1.2rem); color: #adb9cc !important; max-width: 52ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.trust-item .ti { color: var(--gold); }
.hero-media {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--border);
}
.hero-media img { width: 100%; height: auto; display: block; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(7,11,19,.88); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.7rem 1rem; font-size: 0.85rem; color: var(--muted);
}
.hero-badge strong {
  display: block; font-family: var(--fd); color: var(--gold); font-size: 1.25rem; line-height: 1;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.75rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--fd); font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.35rem; }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--gold); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.55); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card h3 a { color: #fff; transition: color .2s; }
.service-card h3 a:hover { color: var(--gold); }
.service-card p { font-size: 0.95rem; }

/* ─── BEFORE/AFTER ─── */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.ba-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images figure { position: relative; overflow: hidden; }
.ba-images figure img { width: 100%; height: 190px; object-fit: cover; display: block; }
.ba-label {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: rgba(0,0,0,.78); color: #fff;
  font-family: var(--fd); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem; border-radius: 4px;
}
.ba-label.after { background: var(--gold); color: #0c1220; }
.ba-cap { padding: 1rem 1.25rem; }
.ba-cap strong { display: block; font-family: var(--fd); letter-spacing: .04em; color: var(--text); margin-bottom: 0.2rem; }
.ba-cap span { font-size: 0.88rem; color: var(--muted); }

/* ─── PROCESS STEPS ─── */
.process-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2.5rem; counter-reset: steps;
}
.process-step { position: relative; padding-top: 4rem; }
.process-step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--fd); font-size: 4rem; font-weight: 700;
  color: rgba(243,198,35,.12); line-height: 1;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.95rem; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; }
.review-stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.95rem; color: var(--muted); font-style: italic; margin-bottom: 1.1rem; }
.review-author { font-family: var(--fd); font-size: 0.95rem; color: var(--text); letter-spacing: .04em; }
.review-source { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

/* ─── FAQ ─── */
.faq-list { display: grid; gap: 0.75rem; }
details.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .2s;
}
details.faq-item[open] { border-color: var(--gold-border); }
summary.faq-q {
  cursor: pointer; padding: 1.2rem 1.5rem;
  font-family: var(--fd); font-size: 1.05rem; font-weight: 600; color: #fff;
  letter-spacing: .03em; list-style: none;
  display: flex; justify-content: space-between; align-items: center; user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after { content: '+'; color: var(--gold); font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
details[open] summary.faq-q::after { content: '−'; }
.faq-a { padding: 0 1.5rem 1.2rem; color: var(--muted); font-size: 0.95rem; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, #0c1220 0%, #141f38 50%, #0c1220 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(243,198,35,.05), transparent);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-sub { max-width: 50ch; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── AREAS ─── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 0.75rem; list-style: none; }
.areas-grid li {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; text-align: center;
  font-family: var(--fd); font-size: 0.9rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text); transition: border-color .2s, color .2s;
}
.areas-grid li:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PILL LINKS ─── */
.pill-links { display: flex; flex-wrap: wrap; gap: 0.65rem; list-style: none; }
.pill-links a {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 0.55rem 1.2rem; font-size: 0.88rem; font-family: var(--fd);
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted); transition: all .2s;
}
.pill-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.gallery-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.55); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; }
.gallery-cap { padding: 0.9rem 1rem; }
.gallery-cap strong { display: block; font-family: var(--fd); font-size: 1rem; color: var(--text); letter-spacing: .04em; margin-bottom: 0.2rem; }
.gallery-cap span { font-size: 0.88rem; color: var(--muted); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--dark); padding: 5rem 0 6rem;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(29,79,145,.1), transparent);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: var(--black);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .ph-sub { max-width: 700px; margin: 0 auto 2rem; font-size: 1.1rem; color: #adb9cc !important; }
.page-hero .ph-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── SECTION HEADER ─── */
.sh { margin-bottom: 3rem; }
.sh .kicker { margin-bottom: 0.75rem; }
.sh h2 { margin-bottom: 0.75rem; }
.sh .sh-sub { max-width: 55ch; font-size: 1.05rem; }

/* ─── SPLIT ─── */
.split-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }

/* ─── CHECK LIST ─── */
.check-list { list-style: none; display: grid; gap: 0.65rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.98rem; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 700; margin-top: 0.05em; flex-shrink: 0; }

/* ─── INFO CARD ─── */
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.info-card h3 { margin-bottom: 1rem; font-size: 1.2rem; }

/* ─── ABOUT COMPONENTS ─── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.about-story { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.about-story p { font-size: 1.02rem; }
.fci { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.55rem; }
.fci a:hover { color: var(--gold); }

/* ─── FOOTER ─── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 38px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 28ch; }
.footer-soc { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.soc-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: 7px;
  font-size: 0.85rem; font-weight: 700; font-family: var(--fd);
  color: var(--muted); transition: all .2s;
}
.soc-link:hover { border-color: var(--gold); color: var(--gold); }
.fh { font-family: var(--fd); font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: 1.1rem; }
.fl { list-style: none; display: grid; gap: 0.5rem; }
.fl a { font-size: 0.9rem; color: var(--muted); transition: color .2s; }
.fl a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between;
  font-size: 0.85rem; color: var(--muted);
}

/* ─── SCROLL ANIMATIONS ─── */
[data-anim] { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-anim][data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim][data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim][data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim][data-anim-delay="4"] { transition-delay: 0.4s; }
[data-anim].anim-in { opacity: 1; transform: none; }

/* ─── BREADCRUMB ─── */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 0.65rem 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.3rem; align-items: center; font-size: 0.82rem; color: var(--muted); }
.breadcrumb li + li::before { content: '›'; margin-right: 0.3rem; color: var(--border); }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:last-child { color: var(--text); }

/* ─── RATING BADGE ─── */
.rating-badge { display: inline-flex; align-items: center; gap: 0.65rem; background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 0.65rem 1.1rem; }
.rb-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.rb-score { font-family: var(--fd); font-size: 1.25rem; font-weight: 700; color: #fff; line-height: 1; }
.rb-count { font-size: 0.82rem; color: var(--muted); }
.rb-sep { color: var(--border); }

/* ─── PROOF STRIP ─── */
.proof-strip { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.proof-strip-inner { display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.proof-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); white-space: nowrap; }
.proof-item strong { color: var(--text); font-family: var(--fd); font-size: 1rem; }

/* ─── CALLOUT HIGHLIGHT ─── */
.callout-highlight { border-left: 4px solid var(--gold); background: rgba(243,198,35,.05); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.callout-highlight p { color: var(--text); margin: 0; font-size: 0.98rem; }

/* ─── AREA CALLOUT ─── */
.area-callout { background: linear-gradient(135deg, var(--dark) 0%, var(--surface-2) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.area-callout h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin-top: 0.75rem; }
.area-tags li { background: rgba(243,198,35,.08); border: 1px solid var(--gold-border); border-radius: 999px; padding: 0.3rem 0.8rem; font-size: 0.82rem; color: var(--gold); font-family: var(--fd); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--gold); padding: 0.85rem 1rem; text-align: center; box-shadow: 0 -4px 20px rgba(0,0,0,.4); }
.sticky-cta a { font-family: var(--fd); font-weight: 700; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; color: #0c1220; }
@media (max-width: 640px) { .sticky-cta { display: block; } body { padding-bottom: 56px; } }

/* ─── RESPONSIVE ─── */
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .split-2 { grid-template-columns: 1.15fr 0.85fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--dark); border-bottom: 1px solid var(--border);
    padding: 1.5rem; gap: 1rem; z-index: 99;
  }
  .nav-toggle { display: block; }
  .hero { padding: 2.5rem 0 4.5rem; }
  .page-hero { padding: 3.5rem 0 5rem; }
}
@media (max-width: 640px) {
  .hero-actions, .ph-actions { flex-direction: column; }
  .hero-actions .btn, .ph-actions .btn { width: 100%; max-width: 320px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section { padding: 3.5rem 0; }
}
