/* ═══════════════════════════════════════════
   TRIPLE M — STYLES
   Palette: Black · Gold · White
═══════════════════════════════════════════ */

:root {
  --black:      #090909;
  --dark-1:     #111111;
  --dark-2:     #1a1a1a;
  --dark-3:     #222222;
  --gold:       #c9a227;
  --gold-light: #e8c347;
  --gold-dim:   #7a621a;
  --white:      #f5f5f0;
  --white-dim:  #9a9a90;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Utility ─────────────────────────────── */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.text-gold { color: var(--gold); }
em { font-style: italic; color: var(--gold-light); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.35);
}
.btn--outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo img { height: 42px; width: auto; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta { font-size: 0.78rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Nav */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding-top: var(--nav-h);
  padding-bottom: 2rem;
  padding-inline: 2rem;
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 98;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav__mobile.open { transform: translateY(0); }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0; padding-top: 1rem; }
.nav__mobile ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav__mobile ul li:last-child { border-bottom: none; padding-top: 1.5rem; }
.nav__mobile a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 1rem 0;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn {
  display: block;
  text-align: center;
  width: 100%;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Subtle grid lines */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
}
.hero__headline {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.hero__line { display: block; overflow: hidden; }
.hero__line span, .hero__line { transform: translateY(110%); }
.hero__line--gold { color: var(--gold); }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 520px;
  opacity: 0;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero__badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  opacity: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}

/* Hero image */
.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
}
.hero__argie-headshot {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.hero__image-ring {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-wrap {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--black);
  animation: marqueeScroll 28s linear infinite;
}
.marquee-dot { color: rgba(0,0,0,0.4); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   PINNED SERVICES
══════════════════════════════════════════ */
.services-pin {
  height: 400vh;
  position: relative;
}
.services-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--dark-1);
}

/* Progress dots */
.services-pin__progress {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
}
.sp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  transition: background 0.3s, transform 0.3s;
}
.sp-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
}

/* Panels */
.sp-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) clamp(2rem, 5vw, 5rem) 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.sp-panel.active {
  opacity: 1;
  pointer-events: all;
}
.sp-panel--1 { background: var(--dark-1); }
.sp-panel--2 { background: var(--dark-2); }
.sp-panel--3 { background: var(--dark-3); }
.sp-panel--4 { background: var(--black); }

.sp-panel__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.sp-panel__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  width: 100%;
}
.sp-panel__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.0;
  margin-bottom: 1.2rem;
}
.sp-panel__desc {
  color: var(--white-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 440px;
}
.sp-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.sp-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-dim);
}
.sp-icon { font-size: 1rem; }

/* Visual panels */
.sp-panel__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

/* — Website mockup — */
.sp-visual-device {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
}
.sp-visual-device--laptop {
  width: 280px; height: 180px;
  top: 50%; left: 50%;
  transform: translate(-60%, -50%);
}
.sp-visual-device--phone {
  width: 100px; height: 170px;
  top: 50%; left: 50%;
  transform: translate(30%, -45%);
  border-radius: 12px;
  z-index: 2;
}
.device-screen { padding: 8px; height: 100%; }
.mock-nav {
  height: 10px;
  background: rgba(201,162,39,0.2);
  border-radius: 2px;
  margin-bottom: 8px;
}
.mock-nav--sm { height: 6px; margin-bottom: 5px; }
.mock-hero { padding: 8px 6px; }
.mock-headline {
  height: 14px; width: 75%;
  background: rgba(255,255,255,0.12);
  border-radius: 2px; margin-bottom: 6px;
}
.mock-headline--sm { height: 8px; width: 80%; margin-bottom: 4px; }
.mock-sub { height: 8px; width: 55%; background: rgba(255,255,255,0.06); border-radius: 2px; margin-bottom: 10px; }
.mock-btn {
  height: 12px; width: 35%;
  background: var(--gold);
  border-radius: 2px; opacity: 0.8;
}
.mock-btn--sm { height: 10px; width: 50%; background: var(--gold); border-radius: 2px; opacity: 0.8; }

/* — Brand grid — */
.sp-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  width: 280px; height: 260px;
}
.brand-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem;
  text-align: center;
}
.brand-card--1 { grid-row: 1 / 3; }
.brand-card__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand-card__sub {
  font-size: 0.5rem;
  color: var(--white-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-card__icon { font-size: 1.8rem; color: var(--gold); opacity: 0.7; }
.brand-card__play {
  font-size: 1rem;
  color: var(--white);
  background: var(--gold);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

/* — Blueprint book — */
.blueprint-book {
  perspective: 600px;
  transform: rotateY(-8deg);
}
.blueprint-book__cover {
  width: 200px;
  min-height: 280px;
  background: linear-gradient(135deg, #1a1505 0%, #2d2008 50%, #1a1505 100%);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.6), inset 0 0 40px rgba(201,162,39,0.05);
}
.blueprint-book__tag {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.blueprint-book__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
.blueprint-book__sub {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.blueprint-book__wheel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.wheel-spoke {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.2rem 0.4rem;
  border-radius: 100px;
}

/* Shared visual tag */
.sp-tag {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 100px;
  background: rgba(201,162,39,0.06);
}

.services-pin__spacer { height: 1px; background: var(--dark-3); }

/* ══════════════════════════════════════════
   BLUEPRINT SECTION
══════════════════════════════════════════ */
.blueprint-section {
  padding: 8rem 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.blueprint-section::before {
  content: 'BLUEPRINT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 18rem);
  color: rgba(201,162,39,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.blueprint-heading { margin-bottom: 0.5rem; }
.blueprint-sub {
  font-size: 1.15rem;
  color: var(--white-dim);
  font-style: italic;
  margin-bottom: 4rem;
}
.blueprint-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.bp-pillar {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--gold);
  background: rgba(201,162,39,0.04);
}
.bp-pillar__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.bp-pillar__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--white);
}
.bp-pillar__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}
.blueprint-cta-block {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  background: rgba(201,162,39,0.04);
}
.blueprint-cta-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--white);
}

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats-section {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.stats-marquee-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 14rem);
  color: rgba(201,162,39,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stat-item {
  padding: 2rem 1rem;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(201,162,39,0.15);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-dim);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.8rem;
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process-section {
  padding: 8rem 0;
  background: var(--dark-1);
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 4rem;
}
.process-step {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--gold);
  background: rgba(201,162,39,0.03);
  border-radius: 0 0 4px 4px;
}
.process-connector {
  width: 2px;
  height: 2px;
  margin-top: 2px;
  background: var(--gold-dim);
  align-self: start;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,162,39,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.process-step__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section {
  padding: 8rem 0;
  background: var(--dark-2);
}
.about-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-heading { margin-bottom: 1.5rem; }
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold-light);
  line-height: 1.3;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 1.5rem;
  font-style: normal;
}
.about-body {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-body strong { color: var(--white); }
.about-body:last-of-type { margin-bottom: 2rem; }

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}
.about-image-accent {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 160px; height: 160px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  opacity: 0.3;
  z-index: 1;
}
.about-image-tag {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 100px;
  background: var(--dark-2);
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section {
  padding: 8rem 0;
  background: var(--black);
}
.faq-list {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 720px;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
  padding: 8rem 0;
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.closer-heading { font-size: clamp(3.5rem, 8vw, 7rem); line-height: 0.92; }
.closer-sub {
  font-size: 1.1rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-top: 1.5rem;
  max-width: 400px;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: var(--white-dim);
  text-align: center;
  margin-top: 0.5rem;
  opacity: 0.6;
}

/* Direct contact — spans both grid columns, sits below the form */
.contact-direct {
  grid-column: 1 / -1;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,162,39,0.15);
  text-align: center;
}
.contact-direct__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.7;
}
.contact-direct__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
  margin-top: 1.5rem;
}
.contact-direct__item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
}
.contact-direct__item:hover { color: var(--gold); }
.contact-direct__icon { font-size: 1.3rem; line-height: 1; }
.contact-direct__text { text-align: left; }
.contact-direct__key {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.contact-direct__val {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: 3rem 2rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer__brand img { height: 36px; width: auto; margin: 0 auto 0.5rem; }
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.footer__contact a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold); }
.footer__contact-sep { color: rgba(154,154,144,0.4); }
.footer__copy {
  font-size: 0.72rem;
  color: rgba(154,154,144,0.5);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   $997 PACKAGE SECTION
══════════════════════════════════════════ */
.package-section {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
}
.package-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

/* Hero block */
.pkg-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
}
.pkg-headline { margin-bottom: 1.2rem; }
.pkg-sub-headline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-dim);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.pkg-desc {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* Outcomes row */
.pkg-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.pkg-outcome {
  background: var(--dark-2);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.pkg-outcome:hover {
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-4px);
}
.pkg-outcome__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.pkg-outcome__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.pkg-outcome__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* Details: included + value stack side by side */
.pkg-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}
.pkg-block-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* Checklist */
.pkg-included { background: var(--dark-1); border-radius: 12px; padding: 2.5rem; }
.pkg-checklist { display: flex; flex-direction: column; gap: 1.25rem; }
.pkg-check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pkg-check-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}
.pkg-check-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pkg-check-text strong {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}
.pkg-check-text span {
  font-size: 0.83rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* Value stack */
.pkg-value-stack { background: var(--dark-1); border-radius: 12px; padding: 2.5rem; }
.pkg-value-rows { display: flex; flex-direction: column; gap: 0; }
.pkg-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pkg-value-label {
  font-size: 0.88rem;
  color: var(--white-dim);
}
.pkg-value-amount {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.pkg-value-divider {
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim));
  margin: 0.5rem 0;
  border-radius: 1px;
}
.pkg-value-row--total {
  border-bottom: none;
}
.pkg-value-row--total .pkg-value-label,
.pkg-value-row--total .pkg-value-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white-dim);
}
.pkg-value-row--price {
  background: rgba(201,162,39,0.08);
  border-radius: 8px;
  padding: 1rem 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(201,162,39,0.25);
  border-bottom: 1px solid rgba(201,162,39,0.25);
}
.pkg-value-row--price .pkg-value-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.pkg-value-row--price .pkg-value-amount {
  font-size: 1.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  color: var(--gold);
}

/* Monthly continuation */
.pkg-monthly {
  background: var(--dark-2);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.pkg-monthly::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.pkg-monthly__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}
.pkg-monthly__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.pkg-monthly__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.pkg-monthly__price {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white-dim);
}
.pkg-monthly__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.75;
}
.pkg-monthly__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.pkg-monthly__list li {
  font-size: 0.9rem;
  color: var(--white-dim);
  padding-left: 1.25rem;
  position: relative;
}
.pkg-monthly__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Final CTA */
.pkg-final-cta {
  text-align: center;
  background: var(--dark-1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  padding: 4rem 3rem;
}
.pkg-final-cta__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.pkg-final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* FAQ group label */
.faq-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 2rem 0 0.5rem;
  border-top: 1px solid var(--dark-3);
  margin-top: 1rem;
  opacity: 0.8;
}

/* ══════════════════════════════════════════
   MOBILE — ≤ 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: calc(var(--nav-h) + 2rem) 4rem;
    gap: 3rem;
  }
  .hero__ctas { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__image-wrap { order: -1; }
  .hero__argie-headshot { width: min(75%, 300px); margin: 0 auto; }
  .hero__image-ring { display: none; }
  .hero__scroll-indicator { display: none; }

  .services-pin { height: auto; }
  .services-pin__sticky {
    position: relative;
    height: auto;
    top: auto;
  }
  .sp-panel {
    position: relative;
    opacity: 1;
    pointer-events: all;
    padding: 4rem 1.5rem;
    border-bottom: 1px solid var(--dark-3);
  }
  .sp-panel__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .sp-panel__visual { min-height: 200px; }
  .sp-visual-img { max-height: 280px; }
  .tripplem-process-visual-img { max-height: 140px; }
  .services-pin__progress { display: none; }

  .blueprint-pillars { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(201,162,39,0.15); }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-connector { display: none; }

  .about-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .about-image-tag { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-direct { margin-top: 2.5rem; padding-top: 2rem; }
  .contact-direct__items { flex-direction: column; align-items: center; gap: 1.25rem; }

  .section-heading { font-size: clamp(2.2rem, 8vw, 3rem); }

  /* Package section mobile */
  .pkg-outcomes { grid-template-columns: 1fr; }
  .pkg-details { grid-template-columns: 1fr; gap: 2rem; }
  .pkg-monthly__body { grid-template-columns: 1fr; gap: 1.5rem; }
  .pkg-final-cta { padding: 2.5rem 1.5rem; }

  .btn { font-size: 0.75rem; padding: 0.75rem 1.4rem; letter-spacing: 0.04em; }
  .btn--lg { font-size: 0.78rem; padding: 0.85rem 1.6rem; }
}

@media (max-width: 480px) {
  .blueprint-pillars { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero__headline { font-size: clamp(4rem, 16vw, 6rem); }
  .nav { padding: 0 1.2rem; }
}

/* ── Service panel real images ── */
.sp-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sp-panel__visual {
  overflow: hidden;
  border-radius: 12px;
}
.sp-panel__visual:hover .sp-visual-img {
  transform: scale(1.02);
  box-shadow: 0 24px 72px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,162,39,0.3);
}

/* ── Process section visual ── */
.tripplem-process-visual-wrap {
  margin: 3rem 0 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.tripplem-process-visual-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark-1) 0%, transparent 15%, transparent 85%, var(--dark-1) 100%);
  pointer-events: none;
}
.tripplem-process-visual-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.85;
}

/* ── Scroll-triggered classes ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }


/* ══════════════════════════════════════════
   GOHIGHLEVEL — PANEL MOCKUP
══════════════════════════════════════════ */
.sp-panel__visual--3 {
  background: linear-gradient(160deg, rgba(201,162,39,0.07), rgba(9,9,9,0.6));
  border: 1px solid rgba(201,162,39,0.15);
  padding: 1.25rem 1.25rem 3.5rem;
}
.ghl-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.9rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.ghl-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ghl-mock__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.ghl-mock__title {
  margin-left: 0.6rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.ghl-mock__pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.ghl-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.55rem 0.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  min-height: 116px;
}
.ghl-col__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.15rem;
}
.ghl-col__head b { color: var(--gold); }
.ghl-card {
  height: 20px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  border-left: 2px solid rgba(255,255,255,0.15);
}
.ghl-card--dim { background: rgba(255,255,255,0.04); }
.ghl-card--gold {
  background: rgba(201,162,39,0.18);
  border-left-color: var(--gold);
}
.ghl-mock__flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  padding: 0.7rem 0.5rem 0.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ghl-node {
  flex: 1;
  text-align: center;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0.4rem 0.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  white-space: nowrap;
}
.ghl-node--gold {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
.ghl-arrow {
  font-size: 0.7rem;
  color: var(--gold-dim);
  flex: 0 0 auto;
}

/* ══════════════════════════════════════════
   GOHIGHLEVEL SECTION
══════════════════════════════════════════ */
.ghl-section {
  padding: 8rem 0;
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}
.ghl-section::before {
  content: 'HIGHLEVEL';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 18rem);
  color: rgba(201,162,39,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.ghl-section .section-container { position: relative; z-index: 1; }
.ghl-heading { margin-bottom: 0.5rem; }
.ghl-sub {
  font-size: 1.15rem;
  color: var(--white-dim);
  font-style: italic;
  margin-bottom: 4rem;
}
.ghl-intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}
.ghl-intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.ghl-intro__text p {
  color: var(--white-dim);
  font-size: 1.02rem;
  line-height: 1.8;
}
.ghl-intro__text p + p { margin-top: 1.1rem; }
.ghl-intro__text strong { color: var(--white); }
.ghl-replaces {
  padding: 2rem 1.75rem;
  border-top: 2px solid var(--gold);
  background: rgba(201,162,39,0.04);
}
.ghl-replaces__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.ghl-replaces li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--white-dim);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ghl-replaces li span {
  color: var(--gold);
  font-size: 0.75rem;
  flex: 0 0 auto;
}
.ghl-replaces li:last-child { border-bottom: none; }
.ghl-replaces__foot {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.ghl-modules__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.ghl-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.ghl-module {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.ghl-module:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.35);
  background: rgba(201,162,39,0.05);
}
.ghl-module__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.ghl-module__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.ghl-module__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}
.ghl-who {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 4rem;
}
.ghl-who__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  flex: 0 0 auto;
}
.ghl-who__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ghl-chip {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-dim);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 100px;
  background: rgba(201,162,39,0.05);
}
.ghl-cta-block {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  background: rgba(201,162,39,0.04);
}
.ghl-cta-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--white);
}
.ghl-cta-headline strong { color: var(--gold); }

/* ── GoHighLevel responsive ── */
@media (max-width: 900px) {
  .ghl-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .ghl-modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ghl-section { padding: 5rem 0; }
  .ghl-sub { font-size: 1rem; margin-bottom: 2.5rem; }
  .ghl-intro { margin-bottom: 3.5rem; }
  .ghl-replaces { padding: 1.75rem 1.35rem; }
  .ghl-modules { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
  .ghl-module { padding: 1.6rem 1.35rem; }
  .ghl-who {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .ghl-cta-block { padding: 2.25rem 1.35rem; }
  .sp-panel__visual--3 { padding: 1rem 1rem 3rem; min-height: 0; }
  .ghl-mock__pipeline { grid-template-columns: repeat(2, 1fr); }
  .ghl-mock__flow { flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
  .ghl-node { flex: 0 0 auto; padding: 0.4rem 0.7rem; }
  .ghl-arrow { display: none; }
}
@media (max-width: 480px) {
  .ghl-who__chips { gap: 0.45rem; }
  .ghl-chip { font-size: 0.72rem; padding: 0.4rem 0.8rem; }
}

/* ── Nav breathing room now that GHL Training is a link ── */
@media (min-width: 769px) and (max-width: 1080px) {
  .nav__links { gap: 1.4rem; }
  .nav__links a { font-size: 0.74rem; letter-spacing: 0.05em; }
  .nav__cta { font-size: 0.7rem; padding: 0.7rem 1.1rem; }
  .nav__brand-name { display: none; }
}
