/* ════════════════════════════════════════════════════════════════════
   Home page only — sections that don't appear elsewhere
════════════════════════════════════════════════════════════════════ */

/* Dot grid on plain-dark sections */
#hero, #clients, #services, #equity, #pcm-detail, #work, #our-work {
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}
#hero { background-color: var(--bg); }

/* ── HERO ────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 92vh;
  min-height: 580px;
  background-color: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.hero-bg-img picture,
.hero-bg-img picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 820px;
  width: 100%;
  padding: 0 2rem;
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 1.6rem; }
.hero-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sig { display: inline-flex; align-items: flex-end; gap: 2px; height: 10px; }
.sig span { display: block; width: 2px; background: var(--gold); border-radius: 1px; }
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-heading .y { color: var(--gold); }
.hero-sub { font-size: 1rem; font-weight: 400; color: var(--muted); margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.corner-label { position: absolute; bottom: 2rem; z-index: 20; }
.corner-label.c-left  { left: 2.2rem; }
.corner-label.c-right { right: 2.2rem; }
.corner-label picture img,
.corner-label img { height: 36px; width: auto; object-fit: contain; }

/* ── CLIENTS ─────────────────────────────────────────────────────── */
#clients { background-color: var(--bg); padding: 60px 24px; }
#clients h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.logo-grid-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.lg-row { display: grid; border-bottom: 1px solid rgba(255,255,255,0.06); }
.lg-row:last-child { border-bottom: none; }
.lg-row-4 { grid-template-columns: repeat(4,1fr); }
.lg-row-5 { grid-template-columns: repeat(5,1fr); }
.lg-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  min-height: 96px;
  transition: background .2s;
}
.lg-cell:last-child { border-right: none; }
.lg-cell:hover { background: rgba(255,255,255,0.04); }
.lg-cell picture img,
.lg-cell img {
  width: 120px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  opacity: 0.8;
  filter: brightness(1);
  transition: opacity .2s, filter .2s;
}
.lg-cell:hover picture img,
.lg-cell:hover img { opacity: 1; filter: brightness(1.1); }

/* ── SERVICES ────────────────────────────────────────────────────── */
#services { background-color: var(--bg); padding: 80px 24px; }
#services h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 40px;
}
.services-visual { display: flex; justify-content: center; margin-bottom: 48px; }
.services-visual picture img,
.services-visual img { max-width: 760px; width: 100%; }

.trending-badge {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
  user-select: none;
  filter: drop-shadow(0 3px 10px rgba(255,210,0,0.25));
}
.tb-face {
  background: #FFD200;
  border-radius: 5px;
  padding: 7px 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.45), inset 0 -1.5px 0 rgba(0,0,0,0.08);
}
.tb-stripes {
  position: absolute;
  right: 28px; top: 0;
  height: 100%;
  display: flex;
  gap: 5px;
  align-items: stretch;
  pointer-events: none;
}
.tb-stripe { height: 100%; background: rgba(255,255,255,0.7); }
.tb-stripe:nth-child(1) { width: 7px; }
.tb-stripe:nth-child(2) { width: 12px; }
.tb-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.tb-depth {
  position: absolute;
  bottom: -4px; left: 2px;
  width: 100%; height: 4px;
  background: #B89400;
  border-radius: 0 0 5px 5px;
}
.tb-side {
  position: absolute;
  right: -4px; top: 2px;
  width: 4px; height: 100%;
  background: #D4AA00;
  border-radius: 0 5px 5px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 17px;
  padding: 28px 28px 22px;
  transition: background .25s, border-color .25s, transform .25s;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.service-card:hover {
  background: #030A2C;
  border-color: rgba(251,187,33,0.3);
  transform: translateY(-3px);
}
.service-card .card-icon,
.service-card picture .card-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
}
.service-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.4; flex: 1; }
.service-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
  letter-spacing: 0.02em;
}
.service-card .card-cta .arrow { display: inline-block; transition: transform .25s; }
.service-card:hover .card-cta { opacity: 1; transform: translateY(0); }
.service-card:hover .card-cta .arrow { transform: translateX(4px); }

/* ── PROBLEM ─────────────────────────────────────────────────────── */
#problem {
  position: relative;
  padding: 80px 24px 60px;
  background-image: url('/assets/img/hero/speaker.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.problem-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.problem-kicker {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 2.2;
  color: #FEFEFE;
}
.problem-kicker em { font-style: normal; }
.problem-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #FEFEFE;
  margin-bottom: 16px;
}
.problem-body p { font-size: 1.1rem; color: var(--muted); }
.problem-arrow { margin: 40px auto; max-width: 700px; }
.problem-arrow picture img,
.problem-arrow img { width: 100%; height: auto; }

/* ── BRAND EQUITY ───────────────────────────────────────────────── */
#equity {
  background-color: var(--bg);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.equity-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  min-height: 320px;
}
.equity-hand { flex-shrink: 0; display: flex; align-items: center; width: 26vw; max-width: 340px; }
.equity-hand img { width: 100%; height: auto; display: block; }
.equity-hand-left  { justify-content: flex-start; transform: translateX(-80px); opacity: 0; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease; }
.equity-hand-right { justify-content: flex-end;  transform: translateX(80px);  opacity: 0; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease; }
#equity.hands-visible .equity-hand-left  { transform: translateX(0); opacity: 1; }
#equity.hands-visible .equity-hand-right { transform: translateX(0); opacity: 1; transition-delay: 0.12s; }
.equity-center { flex: 1; text-align: center; padding: 0 24px; position: relative; z-index: 2; }
.equity-center h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 auto 14px;
  max-width: 480px;
}
.equity-center p {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.2vw, 1.15rem);
  font-weight: 400;
  color: #FEFEFE;
  letter-spacing: -0.3px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}
.equity-center p b { font-weight: 700; }

/* ── PCM ─────────────────────────────────────────────────────────── */
#pcm { background: var(--bg-2); padding: 80px 24px; }
.pcm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.pcm-left { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.pcm-left h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #FEFEFE;
  margin-bottom: 20px;
}
.pcm-left p { font-size: 1.1rem; color: var(--muted); line-height: 1.5; }
.pcm-left p span.red  { color: #f94449; font-weight: 700; }
.pcm-left p span.gold { color: var(--gold); font-weight: 700; }
.pcm-right { margin: -80px 0; overflow: hidden; }
.pcm-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.pcm-subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 20px;
  margin-top: -8px;
}

#pcm-detail { background-color: var(--bg); padding: 0 24px 80px; }
.pcm-box {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #666;
  border-top: none;
  border-radius: 0 0 79px 79px;
  background: #000;
  padding: 60px 80px 80px;
}
.pcm-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.pcm-col-label { font-size: 1rem; color: var(--muted); font-weight: 400; margin-bottom: 6px; }
.pcm-col-value { font-size: 1.1rem; font-weight: 600; color: var(--muted); }
.pcm-col-value.highlight { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px; line-height: 1.4; color: var(--gold); }
.pcm-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 20px 0; }

.pcm-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.pcm-step { display: flex; gap: 16px; align-items: flex-start; }
.pcm-step picture img,
.pcm-step img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.pcm-step-title { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.5px; color: var(--muted); margin-bottom: 6px; }
.pcm-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; letter-spacing: -0.3px; }

.pcm-formula { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
.pcm-formula-item { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; color: #fff; text-align: center; }
.pcm-formula-item.muted { color: var(--muted); }
.pcm-formula-item.op { color: var(--muted); font-size: 1.6rem; }

/* ── CASE STUDIES (Mission Log) ─────────────────────────────────── */
#work {
  background-color: var(--bg);
  padding: 80px 24px;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30,20,80,0.6) 0%, transparent 70%);
  background-size: 20px 20px, 100% 100%;
  overflow: visible;
}
.missions-header { text-align: center; margin-bottom: 48px; }
.missions-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.missions-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}
.missions-title span { color: var(--gold); }

.planet-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.planet-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.planet-tab:hover { border-color: rgba(251,187,33,0.4); color: #fff; }
.planet-tab.active {
  background: linear-gradient(135deg, rgba(251,187,33,0.15), rgba(251,187,33,0.05));
  border-color: var(--gold);
  color: var(--gold);
}
.planet-tab .tab-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(251,187,33,0.15);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
}
.planet-tab.active .tab-num { background: var(--gold); color: #000; }

.mission-panels { position: relative; }
.mission-panel { display: none; animation: panelIn .4s cubic-bezier(0.4, 0, 0.2, 1); }
.mission-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.planet-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 28px;
  margin-bottom: 32px;
}
.planet-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.planet-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.planet-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.planet-logo-text {
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.planet-brief { font-size: 0.82rem; color: var(--muted); line-height: 1.5; flex: 1; }

.mission-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.mission-stats-2 { grid-template-columns: repeat(2, 1fr); }
.stat-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, border-width .2s;
  border: 2px solid rgba(255,255,255,0.08);
}
.stat-card:hover { background: rgba(255,255,255,0.05); }
.stat-card.c-purple { border-color: rgba(168,85,247,0.35); }
.stat-card.c-red    { border-color: rgba(239,68,68,0.35); }
.stat-card.c-green  { border-color: rgba(34,197,94,0.35); }
.stat-card.c-blue   { border-color: rgba(59,130,246,0.35); }
.stat-card.c-gold   { border-color: rgba(251,187,33,0.35); }
.stat-card.c-purple:hover { border-color: rgba(168,85,247,0.65); }
.stat-card.c-red:hover    { border-color: rgba(239,68,68,0.65); }
.stat-card.c-green:hover  { border-color: rgba(34,197,94,0.65); }
.stat-card.c-blue:hover   { border-color: rgba(59,130,246,0.65); }
.stat-card.c-gold:hover   { border-color: rgba(251,187,33,0.65); }

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stat-chip.c-purple { background: rgba(168,85,247,0.15); color: #c084fc; border: 1px solid rgba(168,85,247,0.3); }
.stat-chip.c-red    { background: rgba(239,68,68,0.15);  color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.stat-chip.c-green  { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.stat-chip.c-blue   { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.stat-chip.c-gold   { background: rgba(251,187,33,0.12); color: var(--gold); border: 1px solid rgba(251,187,33,0.25); }
.stat-big {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.4; margin-bottom: 20px; }
.mini-chart { width: 100%; height: 60px; display: block; }
.chart-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.chart-dot { fill: var(--gold); r: 3; opacity: 0; transition: opacity .3s ease 1s; }
.chart-axis { stroke: rgba(255,255,255,0.08); stroke-width: 1; }
.chart-label { fill: rgba(255,255,255,0.3); font-size: 7px; font-family: var(--font-body); }
.stat-card.animated .chart-line { stroke-dashoffset: 0; }
.stat-card.animated .chart-dot  { opacity: 1; }

/* ── OUR WORK (video carousel) ──────────────────────────────────── */
#our-work {
  background-color: #000;
  padding: 80px 0;
  overflow: hidden;
}
#our-work .ow-header { text-align: center; padding: 0 24px; margin-bottom: 40px; }
#our-work .ow-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
#our-work .ow-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}
.ow-track-wrap { position: relative; padding: 0 40px; max-width: 1280px; margin: 0 auto; }
.ow-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(10,10,20,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.ow-side-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.ow-side-btn:hover svg { stroke: #000; }
.ow-side-btn svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.8);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s;
}
.ow-side-prev { left: -6px; }
.ow-side-next { right: -6px; }
.ow-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}
.ow-track:active { cursor: grabbing; }
.ow-track::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .ow-side-prev { left: 0; }
  .ow-side-next { right: 0; }
}
.ow-card {
  flex: 0 0 calc(31% - 8px);
  min-width: 0;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
@media (max-width: 768px) { .ow-card { flex: 0 0 80vw; } }
.ow-card:hover { border-color: rgba(251,187,33,0.3); transform: translateY(-3px); }
.ow-card-thumb { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.ow-card-thumb .lite-yt { border-radius: 0; }
.ow-card-body { padding: 14px 18px 18px; }
.ow-card-client {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ow-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
#testimonials {
  position: relative;
  padding: 80px 24px 0;
  background-image: url('/assets/img/hero/speaker.webp');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,4,20,0.82) 0%, rgba(1,4,20,0.92) 100%);
}
.testimonials-inner { position: relative; z-index: 2; }
.testimonials-inner .kicker { text-align: center; font-size: 1.1rem; color: var(--muted); margin-bottom: 8px; }
.testimonials-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 40px;
}

.carousel-container { position: relative; padding: 0 56px; margin-bottom: 64px; }
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track { display: flex; will-change: transform; align-items: stretch; }
.carousel-slide { flex-shrink: 0; padding: 0 8px; box-sizing: border-box; }
.carousel-slide picture img,
.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  pointer-events: none;
  user-select: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: background .2s, box-shadow .2s;
  cursor: pointer;
  flex-shrink: 0;
}
.carousel-btn:hover { background: #e0a800; box-shadow: 0 4px 16px rgba(0,0,0,0.35); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-btn svg {
  width: 20px; height: 20px;
  stroke: #333;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── CTA ─────────────────────────────────────────────────────────── */
#cta {
  position: relative;
  z-index: 2;
  margin: 40px 24px 0;
}
.cta-box {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  border-bottom: none;
  border-radius: 111px 111px 0 0;
  background: var(--bg-2);
  padding: 80px 60px;
  text-align: center;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-box p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-weight: 400;
}
.cta-box p b { font-weight: 700; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .pcm-inner { grid-template-columns: 1fr; }
  .pcm-right { display: none; }
  .pcm-box { padding: 40px; border-radius: 0 0 47px 47px; }
  .pcm-steps { grid-template-columns: 1fr; }
  .equity-hand { width: 18vw; }
}
@media (max-width: 768px) {
  .logo-grid-wrap {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
  }
  .lg-row { display: contents; }
  .lg-cell {
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 80px;
  }
  .lg-cell:nth-child(3n) { border-right: none; }

  /* Mobile hero — fit content, swap to dedicated mobile background */
  #hero {
    height: auto;
    min-height: 70svh;
    padding: 96px 20px 48px;
  }
  .hero-content { padding: 0 1rem; }
  .hero-badge   { margin-bottom: 1.1rem; }
  .hero-heading {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.18;
    margin-bottom: 0.85rem;
  }
  /* Let the heading wrap naturally instead of breaking after "Engine" */
  .hero-heading br { display: none; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.4rem; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 20px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.6rem; }
  .hero-btns .btn { width: 100%; max-width: 280px; }
  .pcm-columns { grid-template-columns: 1fr; }
  .carousel-container { padding: 0 48px; }
  .cta-box { padding: 50px 28px; border-radius: 47px 47px 0 0; }
  .corner-label { display: none; }
  .pcm-formula-item { font-size: 1rem; }
  .mission-stats   { grid-template-columns: 1fr; }
  .mission-stats-2 { grid-template-columns: 1fr; }
  .planet-header   { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .logo-grid-wrap { grid-template-columns: repeat(2, 1fr) !important; }
  .lg-cell:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .lg-cell:nth-child(2n) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .carousel-container { padding: 0 44px; }
}
