/* ===================================================
   VINDEX GLOBAL — Main Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────── */
:root {
  --bg-base:       #07070F;
  --bg-surface:    #0D0D1A;
  --bg-raised:     #121224;
  --bg-hover:      #181830;

  --gold:          #C9963F;
  --gold-light:    #E2B765;
  --gold-dim:      #8A6428;
  --gold-glow:     rgba(201,150,63,0.12);

  --text-primary:  #F0EFE8;
  --text-secondary:#9996B0;
  --text-muted:    #55526A;
  --text-inverse:  #07070F;

  --border:        rgba(255,255,255,0.06);
  --border-gold:   rgba(201,150,63,0.25);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:     0 16px 60px rgba(0,0,0,0.6);
  --shadow-gold:   0 0 40px rgba(201,150,63,0.15);

  --nav-height:    72px;
  --max-width:     1200px;
  --section-pad:   clamp(80px, 10vw, 140px);

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── NOISE TEXTURE OVERLAY ─────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY SCALE ───────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 18px; line-height: 1.7; }
.body-md { font-size: 16px; line-height: 1.7; }
.body-sm { font-size: 14px; line-height: 1.6; }

/* ─── UTILITY ────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ─── REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: opacity 0.2s ease;
}
.nav__logo:hover { opacity: 0.8; }
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 18px; height: 18px; fill: var(--bg-base); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--text-primary); }
.nav__link.active::after { width: 100%; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── MOBILE MENU TOGGLE ─────────────────────────── */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-base);
  padding: 40px clamp(20px, 5vw, 60px);
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}
.nav__mobile-link:hover { color: var(--text-primary); }
.nav__mobile-cta {
  margin-top: 32px;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,150,63,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
}
.btn-secondary:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 11px 22px;
}
.btn-ghost:hover {
  background: var(--bg-raised);
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.btn:hover svg { transform: translateX(2px); }

/* ─── GOLD DIVIDER LINE ──────────────────────────── */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 16px;
}
.gold-line.center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 60px;
}

/* ─── SECTION HEADER ─────────────────────────────── */
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header.center { text-align: center; }
.section-header .label { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-secondary);
  max-width: 520px;
}
.section-header.center p { margin: 0 auto; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  opacity: 0.5;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,150,63,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,80,200,0.06) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 120px) 0;
  max-width: 900px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  margin-bottom: 32px;
  background: var(--gold-glow);
}
.hero__label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__label span { font-size: 12px; font-weight: 500; color: var(--gold-light); letter-spacing: 0.05em; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.hero__scroll:hover { opacity: 0.7; }
.hero__scroll span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); }
.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% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── STATS BAR ──────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 4vw, 48px) 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 clamp(20px, 3vw, 48px);
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat:first-child { border-left: none; padding-left: 0; text-align: left; }
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__number span { color: var(--gold); }
.stat__label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── PROBLEM SECTION ────────────────────────────── */
.problem {
  padding: var(--section-pad) 0;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.problem__left { position: sticky; top: calc(var(--nav-height) + 40px); }
.problem__right { padding-top: 8px; }
.problem__item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.problem__item:first-child { border-top: 1px solid var(--border); }
.problem__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.problem__icon svg { width: 18px; height: 18px; }
.problem__text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.problem__text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── SERVICES SECTION ───────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-surface);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  transition: background 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { background: var(--bg-raised); }
.service-card:hover::before { opacity: 1; }
.service-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-hover);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all 0.3s ease;
}
.service-card:hover .service-card__icon {
  background: var(--gold-glow);
  border-color: var(--gold);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.2;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-hover);
  border: 1px solid var(--border);
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}
.service-card:hover .tag { border-color: var(--border-gold); color: var(--text-secondary); }

/* ─── WHY VINDEX ─────────────────────────────────── */
.why {
  padding: var(--section-pad) 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}
.why__visual {
  position: relative;
}
.why__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
.why__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, var(--gold-glow), transparent 60%);
  pointer-events: none;
}
.why__card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.why__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.why__metric:last-child { border-bottom: none; padding-bottom: 0; }
.why__metric-label { font-size: 13px; color: var(--text-secondary); }
.why__metric-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.why__metric-track {
  width: 120px;
  height: 4px;
  background: var(--bg-hover);
  border-radius: 2px;
  overflow: hidden;
}
.why__metric-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transition: width 1.5s var(--ease-out);
  width: 0;
}
.why__metric-fill.animated { /* width set by inline style */ }
.why__metric-value { font-size: 13px; font-weight: 500; color: var(--gold-light); min-width: 36px; text-align: right; }
.why__float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-raised);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-gold);
}
.why__float-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.why__float-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.why__points { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.why__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why__point-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.why__point-check svg { width: 12px; height: 12px; }
.why__point-text h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.why__point-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── INDUSTRIES ─────────────────────────────────── */
.industries {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.industries__marquee-wrap {
  margin-top: 48px;
  position: relative;
}
.industries__marquee-wrap::before,
.industries__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.industries__marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}
.industries__marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-surface), transparent);
}
.industries__track {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.industries__track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.3s ease;
}
.industry-pill:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
  background: var(--bg-hover);
}
.industry-pill__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ─── PROCESS SECTION ────────────────────────────── */
.process {
  padding: var(--section-pad) 0;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
}
.process__step {
  background: var(--bg-surface);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: background 0.3s ease;
}
.process__step:hover { background: var(--bg-raised); }
.process__step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.process__step:hover .process__step-num { color: var(--gold); }
.process__step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.process__step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,150,63,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__border {
  position: absolute;
  inset: 40px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.3;
}
.cta-section__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vw, 80px) 0;
}
.cta-section__inner h2 {
  margin-bottom: 16px;
}
.cta-section__inner p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 17px;
  line-height: 1.7;
}
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(60px, 6vw, 80px) 0 32px;
  background: var(--bg-surface);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 60px;
}
.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.footer__social-link:hover {
  background: var(--gold-glow);
  border-color: var(--border-gold);
  color: var(--gold);
}
.footer__social-link svg { width: 15px; height: 15px; }
.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--text-primary); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 13px; color: var(--text-muted); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s ease; }
.footer__bottom-links a:hover { color: var(--text-secondary); }

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,150,63,0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.01) 40px,
      rgba(255,255,255,0.01) 41px
    );
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-secondary); max-width: 540px; font-size: 18px; line-height: 1.7; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { font-size: 13px; color: var(--text-muted); }
.breadcrumb .current { font-size: 13px; color: var(--text-secondary); }

/* ─── SERVICES PAGE ──────────────────────────────── */
.services-full {
  padding: var(--section-pad) 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row__num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 16px;
}
.service-row h2 {
  margin-bottom: 16px;
}
.service-row p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-row__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.service-row__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.service-row__feature::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23C9963F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.service-row__visual {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-row__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at top right, var(--gold-glow), transparent 70%);
}
.service-visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--bg-raised);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.service-visual-icon svg { width: 40px; height: 40px; }

/* ─── PLATFORMS GRID ─────────────────────────────── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.platform-item:hover { border-color: var(--border-gold); color: var(--text-primary); }
.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── CONTACT PAGE ───────────────────────────────── */
.contact-section {
  padding: var(--section-pad) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__text h4 { font-size: 15px; font-weight: 500; margin-bottom: 3px; }
.contact-info__text p { font-size: 13px; color: var(--text-secondary); }
.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 48px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,150,63,0.08);
}
.form-group select option { background: var(--bg-raised); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── SUCCESS / ERROR STATES ─────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.form-success__icon svg { width: 28px; height: 28px; }
.form-success h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 15px; }

/* ─── PRICING MODEL NOTE ─────────────────────────── */
.pricing-note {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-top: 32px;
  align-items: flex-start;
}
.pricing-note__icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pricing-note__icon svg { width: 18px; height: 18px; }
.pricing-note p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.pricing-note strong { color: var(--gold-light); }

/* ─── ABOUT PAGE ─────────────────────────────────── */
.about-story {
  padding: var(--section-pad) 0;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 100px);
  align-items: center;
}
.about-story p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s ease;
}
.value-card:hover { border-color: var(--border-gold); }
.value-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-dim);
  margin-bottom: 16px;
  line-height: 1;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
  .stat { border-right: none; text-align: center; }
  .stat:first-child { text-align: center; padding-left: clamp(20px, 3vw, 48px); }

  .problem__grid { grid-template-columns: 1fr; }
  .problem__left { position: static; }

  .services__grid { grid-template-columns: 1fr; }

  .why__grid { grid-template-columns: 1fr; }
  .why__float { display: none; }

  .process__steps { grid-template-columns: 1fr; }

  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .about-story__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .cta-section__border { inset: 20px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-section__actions { flex-direction: column; }
  .cta-section__actions .btn { width: 100%; justify-content: center; }
}

/* ===================================================
   CONVERSION UPGRADE — New Sections
   =================================================== */

/* ─── TRUST BADGE IN HERO ────────────────────────── */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  background: rgba(201,150,63,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero__trust-item strong { color: var(--gold-light); font-weight: 600; }
.hero__trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border-gold);
}

/* ─── WHO WE HELP ────────────────────────────────── */
.who {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.who__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  cursor: default;
}
.who__card:hover {
  border-color: var(--border-gold);
  background: var(--bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.who__card-icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-hover);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.who__card:hover .who__card-icon { background: var(--gold-glow); }
.who__card-text h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.who__card-text p {
  font-size: 12px;
  color: var(--text-muted);
}
.who__bottom {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.who__bottom p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
}
.who__bottom strong { color: var(--text-primary); }

/* ─── PLATFORMS ──────────────────────────────────── */
.platforms-section {
  padding: var(--section-pad) 0;
}
.platforms-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.platform-card {
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.platform-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.platform-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-raised);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.platform-card:hover::after { opacity: 1; }
.platform-card__logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-hover);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.platform-card:hover .platform-card__logo {
  background: var(--gold-glow);
  border-color: var(--border-gold);
}
.platform-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.platform-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.platform-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 4px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.platforms-section__callout {
  margin-top: 40px;
  padding: 32px 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.platforms-section__callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(201,150,63,0.05), transparent 60%);
  pointer-events: none;
}
.platforms-section__callout p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.platforms-section__callout em { color: var(--gold-light); font-style: italic; }

/* ─── PROOF & AUTHORITY ──────────────────────────── */
.proof {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,150,63,0.05), transparent 70%);
  pointer-events: none;
}
.proof__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.proof__number-item {
  background: var(--bg-surface);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  text-align: center;
  transition: background 0.3s ease;
  position: relative;
}
.proof__number-item:hover { background: var(--bg-raised); }
.proof__number-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.proof__number-item:hover::after { opacity: 1; }
.proof__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.proof__num span { color: var(--gold); }
.proof__num-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.proof__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.proof__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-raised);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.proof__badge:hover { color: var(--text-primary); background: var(--bg-hover); }
.proof__badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.proof__badge-icon svg { width: 14px; height: 14px; }

/* ─── LEAD MAGNETS ───────────────────────────────── */
.lead-magnets {
  padding: var(--section-pad) 0;
}
.lead-magnets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.magnet-card {
  padding: 32px 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.magnet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.magnet-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.magnet-card:hover::before { opacity: 1; }
.magnet-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-raised);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.magnet-card:hover .magnet-card__icon { background: var(--gold-glow); }
.magnet-card__icon svg { width: 24px; height: 24px; }
.magnet-card__body { position: relative; z-index: 1; flex: 1; }
.magnet-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.magnet-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}
.magnet-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ─── OUTCOME-FOCUSED SERVICES ───────────────────── */
.outcome-services {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcome-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.outcome-card {
  background: var(--bg-surface);
  padding: clamp(24px, 3vw, 36px);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.outcome-card:hover { background: var(--bg-raised); }
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.outcome-card:hover::before { opacity: 1; }
.outcome-card__problem {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.outcome-card__result {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}
.outcome-card__result em { color: var(--gold-light); font-style: italic; }
.outcome-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.outcome-card__service {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.outcome-card__service::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

/* ─── FLOATING CTA BAR ───────────────────────────── */
.cta-bar {
  padding: clamp(28px, 4vw, 40px) 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.03) 20px,
    rgba(0,0,0,0.03) 21px
  );
}
.cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-bar__text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--bg-base);
  line-height: 1.2;
}
.cta-bar__text p {
  font-size: 14px;
  color: rgba(7,7,15,0.65);
  margin-top: 4px;
}
.cta-bar__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-dark {
  background: var(--bg-base);
  color: var(--gold);
  font-weight: 600;
  border: none;
}
.btn-dark:hover {
  background: var(--bg-surface);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-outline-dark {
  background: transparent;
  color: var(--bg-base);
  border: 1.5px solid rgba(7,7,15,0.3);
  font-weight: 500;
}
.btn-outline-dark:hover {
  background: rgba(7,7,15,0.1);
  border-color: var(--bg-base);
}

/* ─── RESPONSIVE ADDITIONS ───────────────────────── */
@media (max-width: 1024px) {
  .who__grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-section__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__numbers { grid-template-columns: 1fr; }
  .lead-magnets__grid { grid-template-columns: 1fr; }
  .outcome-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .who__grid { grid-template-columns: 1fr 1fr; }
  .platforms-section__grid { grid-template-columns: 1fr; }
  .platforms-section__callout { grid-template-columns: 1fr; }
  .outcome-services__grid { grid-template-columns: 1fr; }
  .cta-bar__inner { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__trust-divider { display: none; }
  .magnet-card { flex-direction: column; }
  .who__bottom { flex-direction: column; }
  .proof__badges { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .who__grid { grid-template-columns: 1fr; }
}

/* ─── TOOLS DROPDOWN ─────────────────────────────── */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
  position: relative;
}
.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.nav__dropdown:hover .nav__dropdown-toggle,
.nav__dropdown-toggle:focus { color: var(--text-primary); outline: none; }
.nav__dropdown:hover .nav__dropdown-toggle::after { width: 100%; }
.nav__dropdown-toggle svg {
  width: 12px; height: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown:focus-within .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  padding-top: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s var(--ease-out);
  z-index: 100;
}
.nav__dropdown-menu-inner {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  transition: transform 0.2s var(--ease-out);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.nav__dropdown:hover .nav__dropdown-menu-inner,
.nav__dropdown:focus-within .nav__dropdown-menu-inner {
  transform: translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
  text-decoration: none;
}
.nav__dropdown-item:hover { background: var(--bg-hover); }
.nav__dropdown-item-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-hover);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.nav__dropdown-item:hover .nav__dropdown-item-icon { background: var(--gold-glow); }
.nav__dropdown-item-icon svg { width: 15px; height: 15px; }
.nav__dropdown-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1px;
}
.nav__dropdown-item-text span {
  font-size: 11px;
  color: var(--text-muted);
}
