/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,168,76,0.3) 100%);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black);
}

:root {
  --nav-height: 60px;
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --gold-pale: #F5EAC8;
  --black: #060606;
  --black-soft: #0E0E0E;
  --dark: #141414;
  --charcoal: #1C1C1C;
  --white: #F9F5EE;
  --white-dim: rgba(249,245,238,0.65);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NOISE 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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 20px;
  left: 40px;
  right: 40px;
  z-index: 1400;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(32px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 2px 8px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.nav-logo img {
  display: block;
  height: 42px;
  width: auto;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-eyebrow {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.85);
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-eyebrow.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  border-radius: inherit;
  transform: translateX(-100%);
  transition: transform 0.75s ease;
  z-index: 0;
}

.nav-cta:hover::before,
.nav-cta:focus::before {
  transform: translateX(0);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

/* HERO */
.hero {
  min-height: 100vh;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(6, 6, 6, 0), rgba(6, 6, 6, 0));
  z-index: 1;
}

.hero > :not(.hero-video) {
  position: relative;
  z-index: 2;
}

.hero-eyebrow,
.hero-title,
.hero-divider,
.hero-sub,
.hero-cta-group {
  z-index: 3;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 3;
}

/* radial glow center */
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* side glows */
.hero-glow-left,
.hero-glow-right {
  position: absolute;
  width: 1000px;
  height: 800px;
  pointer-events: none;
}

/* .hero-glow-left {
  left: -100px;
  top: 30%;
  transform: translateY(-50%);
  background: radial-gradient(circle at left center, rgba(201, 168, 76, 0.267) 0%, transparent 40%);
}

.hero-glow-right {
  right: -100px;
  top: 90%;
  transform: translateY(-50%);
  background: radial-gradient(circle at right center, rgba(201,168,76,0.13) 0%, transparent 40%);
} */

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  max-width: 680px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.75s;
}

@keyframes chevron-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.hero-chevron {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.85s;
}

.hero-chevron svg {
  animation: chevron-bounce 2.2s ease-in-out infinite;
  opacity: 0.75;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
}

.hero-cta-group .btn-primary,
.hero-cta-group .btn-ghost {
  width: 280px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero-cta-group .btn-ghost {
  border-width: 3px;
}

/* Border glow animation */
@keyframes border-spin {
  from { --border-angle: 0deg; }
  to   { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn-glow {
  --glow-color: #C9A84C;
  animation: border-spin 2.8s linear infinite;
  background-image: conic-gradient(
    from var(--border-angle),
    transparent 75%,
    var(--glow-color) 88%,
    #fff9e6 92%,
    var(--glow-color) 96%,
    transparent 100%
  );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-color: transparent !important;
}

.btn-primary.btn-glow {
  background-image:
    linear-gradient(var(--gold), var(--gold)),
    conic-gradient(
      from var(--border-angle),
      transparent 75%,
      var(--glow-color) 88%,
      #fff9e6 92%,
      var(--glow-color) 96%,
      transparent 100%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn-ghost.btn-glow {
  background-image:
    linear-gradient(transparent, transparent),
    conic-gradient(
      from var(--border-angle),
      transparent 75%,
      var(--glow-color) 88%,
      #fff9e6 92%,
      var(--glow-color) 96%,
      transparent 100%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 3px solid var(--gold);
  border-radius: 999px;
  padding: 18px 40px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary span { position: relative; z-index: 1; white-space: nowrap; }

@keyframes arrow-loop {
  0%   { transform: translateX(0);     opacity: 1; }
  35%  { transform: translateX(12px);  opacity: 0; }
  36%  { transform: translateX(-12px); opacity: 0; }
  70%  { transform: translateX(0);     opacity: 1; }
  100% { transform: translateX(0);     opacity: 1; }
}

@keyframes glint {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(320%)  skewX(-18deg); }
}

.btn-arrow {
  display: inline-block;
  white-space: nowrap;
}

/* Glint pseudo-element — only on the last CTA btn */
.cta-final .btn-primary {
  position: relative;
  overflow: hidden;
}

.cta-final .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.28) 50%,
    transparent 80%
  );
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
  z-index: 2;
}

.cta-final .btn-primary:hover,
.cta-final .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.35), 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-final .btn-primary:hover::after,
.cta-final .btn-primary:focus::after {
  animation: glint 1.4s ease forwards;
}

.cta-final .btn-primary:hover .btn-arrow,
.cta-final .btn-primary:focus .btn-arrow {
  animation: arrow-loop 2.2s ease infinite;
}

.btn-primary.btn-glow:hover,
.btn-primary.btn-glow:focus {
  background-image:
    linear-gradient(var(--gold), var(--gold)),
    conic-gradient(
      from var(--border-angle),
      var(--glow-color) 0%,
      #fff9e6 15%,
      var(--glow-color) 30%,
      transparent 50%,
      var(--glow-color) 70%,
      #fff9e6 85%,
      var(--glow-color) 100%
    );
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.12) 100%
  );
  backdrop-filter: blur(32px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-top: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 18px 36px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.25),
    inset 0 1.5px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.btn-ghost:hover {
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.3) 0%,
    rgba(255,255,255,0.1) 40%,
    rgba(255,255,255,0.2) 100%
  );
  border-top-color: rgba(255,255,255,0.65);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.4),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* SOCIAL PROOF STRIP */
.proof-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.proof-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 6px;
}

.proof-sep {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.25);
}

/* SECTIONS */
section { padding: 100px 60px; }

.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  max-width: 700px;
}

.section-title em { font-style: italic; color: var(--gold); }

/* PROBLEM SECTION */
.problem {
  background: #ffffff;
  position: relative;
}

.problem .section-title {
  color: #111111;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-content .section-title { max-width: 100%; }

.problem-body {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-top: 28px;
  line-height: 1.8;
}

.pain-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-left: 2px solid rgba(201,168,76,0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pain-item:hover {
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.pain-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.6;
}

/* METHOD SECTION */
.method {
  background: var(--black);
  display: block;
  max-width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.method > * {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.method-header {
  text-align: center;
  margin-bottom: 46px;
}

.method-header .section-title { margin: 0 auto; text-align: center; max-width: 700px; }

.pillars {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0;
  overflow: visible;
}

.pillar {
  background: var(--charcoal);
  padding: 24px 36px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 18px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  transition: opacity 0.65s ease, transform 0.65s ease;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
}

.pillar.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
  min-height: 220px;
}

.pillar.is-active .pillar-number {
  font-size: 2.7rem !important;
  color: var(--gold) !important;
  opacity: 1 !important;
  text-shadow: 0 0 12px rgba(201,168,76,0.16);
  margin-bottom: 14px !important;
  display: block !important;
}

.pillar.is-active .pillar-title {
  font-size: 1.6rem !important;
  color: var(--white);
  margin-bottom: 14px !important;
  line-height: 1.3;
  display: block !important;
  opacity: 1 !important;
  max-height: none !important;
  transform: none !important;
}

.pillar.is-active .pillar-body {
  font-size: 0.95rem !important;
  color: var(--white-dim);
  line-height: 1.8;
  display: block !important;
  opacity: 1 !important;
  max-height: none !important;
  transform: none !important;
}

.method-dots {
  position: absolute;
  right: calc(50% - 390px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.method-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.55);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.method-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.pillar-number {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1;
}

.pillar-title {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.3;
}

.pillar-body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
}

/* FOR WHO */
.forwhom {
  background: var(--charcoal);
}

.forwhom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.check-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-mark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  color: var(--gold);
}

.check-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.5;
}

.quote-block {
  padding: 48px;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  background: rgba(201,168,76,0.03);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.6;
}

.quote-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-author {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-role {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  margin-top: 4px;
}

/* RESULTS */
.results {
  background: var(--black-soft);
}

.results-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.results-header { margin-bottom: 64px; }

.result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  padding: 40px 32px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  background: var(--black);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.1s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
  overflow: hidden;
}

/* spotlight layer */
.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201,168,76,0.1) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

/* border glow layer */
.result-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201,168,76,0.55),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
}

.result-card:hover::before,
.result-card:hover::after {
  opacity: 1;
}

.result-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.2);
}

.result-card > * {
  position: relative;
  z-index: 1;
}

.result-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.result-metric {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.result-metric em { color: var(--gold); font-style: normal; }

.result-desc {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--black);
  height: calc(100vh - var(--nav-height));
  height: calc(100svh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 54px 0 18px;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.testimonials-header {
  margin-bottom: 32px;
  padding: 0 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 24px 0 40px;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 660px;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.85);
  opacity: 0.45;
  margin: 0 20px;
}

.carousel-slide.active {
  transform: scale(1);
  opacity: 1;
}

.slide-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  overflow: hidden;
  gap: 12px;
  background: rgba(201,168,76,0.03);
}

.slide-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  border: 2px solid rgba(201,168,76,0.45);
}

.slide-content {
  padding: 36px 40px 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.slide-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.slide-quote {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 28px;
  opacity: 0.4;
}

.slide-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: #111111;
  line-height: 1.85;
  margin-bottom: 28px;
}

.slide-divider {
  width: 32px;
  height: 1px;
  background: rgba(201,168,76,0.4);
  margin: 0 auto;
}

.slide-name {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}

.slide-role {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s, border-color 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* CTA FINAL */
.cta-final {
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.cta-final-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-final .section-title {
  text-align: center;
  margin: 0 auto 20px;
}

.cta-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white-dim);
  margin-top: 14px;
  margin-bottom: 48px;
}

.cta-disclaimer {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(249,245,238,0.3);
  margin-top: 24px;
}

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(249,245,238,0.3);
}

.footer-dev-link {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-dev-link:hover {
  opacity: 0.7;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root { --nav-height: 72px; }
  nav { top: 10px; left: 16px; right: 16px; padding: 0 20px; --nav-height: 48px; }
  .nav-eyebrow { display: none !important; }
  .btn-arrow { display: none; }
  section { padding: 72px 24px; }
  .problem-grid, .forwhom-inner, .result-cards { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 140px 24px 80px; }
  .method {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .testimonials {
    height: auto;
    padding: 36px 0 12px;
    overflow: visible;
  }
  .testimonials-header { 
    padding: 0 24px; 
    margin-bottom: 24px;
  }
  .carousel-viewport {
    padding: 18px 0 26px;
    min-height: auto;
    overflow: hidden;
  }
  .carousel-slide {
    flex: 0 0 88vw;
    grid-template-columns: 100px 1fr;
    min-height: auto;
    margin: 0 12px;
  }
  .slide-photo {
    padding-top: 36px;
  }
  .slide-photo img {
    width: 68px;
    height: 68px;
  }
  .slide-content {
    padding: 36px 24px 36px 20px;
  }
  .slide-content::before {
    display: none;
  }
  .pillars {
    min-height: 280px;
    padding-right: 0;
    padding-bottom: 26px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .method-dots {
    position: static;
    margin: 0;
    transform: none;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
  }
  .pillar.is-active { min-height: 200px; padding: 20px 24px; max-width: 100%; flex: 1; }
  .pillar.is-active .pillar-number { font-size: 2.2rem !important; }
  .pillar.is-active .pillar-title { font-size: 1.3rem !important; }
  .pillar.is-active .pillar-body { font-size: 0.85rem !important; }
  .btn-primary { max-width: calc(100% - 48px); box-sizing: border-box; }
  .cta-final .btn-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    max-width: 100%;
    text-align: center;
    padding: 18px 24px;
  }
  .cta-final .btn-primary span {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
  .proof-strip { padding: 24px; gap: 36px; }
  .proof-sep { display: none; }
  footer { flex-direction: column; gap: 16px; text-align: center; }

}
