/* ============================================================
   BTG.CSS — Built To Grow Survey System  v2
   ============================================================ */

/* ── SURVEY HERO INTRO ───────────────────────────────────── */

.btg-hero-intro {
  background: #000;
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btg-hero-intro::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.btg-hero-intro-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.btg-hero-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #D4A853);
  margin-bottom: 32px;
}

.btg-hero-intro-kicker::before,
.btg-hero-intro-kicker::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent, #D4A853);
  opacity: 0.5;
  flex-shrink: 0;
}

.btg-hero-intro h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(24px, 4vw, 54px);
  line-height: 1.18;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 auto;
  max-width: 820px;
}

.btg-hero-intro h1 em {
  font-style: normal;
  color: var(--accent, #D4A853);
}

.btg-hero-intro-divider {
  width: 56px;
  height: 2px;
  background: var(--accent, #D4A853);
  margin: 44px auto 0;
  opacity: 0.65;
}

/* ── SURVEY QUIZ SECTION ──────────────────────────────────── */

.btg-survey-wrap {
  background: #0a0a0a;
  padding: 56px 24px 80px;
}

.btg-quiz-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Progress bar */
.btg-progress-bar-wrap {
  margin-bottom: 52px;
}

.btg-progress-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.btg-progress-bar-fill {
  height: 100%;
  background: var(--accent, #D4A853);
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 7.7%;
}

.btg-progress-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 10px;
  text-align: right;
}

/* Steps */
.btg-step { display: none; }

.btg-step.active {
  display: block;
  animation: btgFadeUp 0.35s ease both;
}

@keyframes btgFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btg-step-title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(22px, 3.2vw, 40px);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 40px;
  line-height: 1.25;
}

.btg-step-question {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin: 0 0 10px;
}

.btg-step-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ── OPTION CARDS ─────────────────────────────────────────── */

.btg-options {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.btg-options--row {
  flex-direction: row;
  gap: 14px;
  align-items: stretch;
}

.btg-options--row .btg-option { flex: 1; }

.btg-option {
  display: block;
  position: relative;
  cursor: pointer;
}

.btg-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.btg-option-label {
  display: flex;
  align-items: center;
  padding: 17px 22px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  min-height: 56px;
  gap: 16px;
}

/* Custom radio dot */
.btg-option-label::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

/* Q1 row layout */
.btg-options--row .btg-option-label {
  flex-direction: column;
  text-align: center;
  padding: 36px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 140px;
  justify-content: center;
  gap: 10px;
}

.btg-options--row .btg-option-label::before {
  margin: 0 auto;
}

/* Hover */
.btg-option:hover .btg-option-label {
  background: #1c1c1c;
  border-color: rgba(212,168,83,0.25);
  color: rgba(255,255,255,0.85);
}

/* Selected */
.btg-option input[type="radio"]:checked ~ .btg-option-label {
  background: rgba(212,168,83,0.09);
  border-color: rgba(212,168,83,0.65);
  color: #fff;
}

.btg-option input[type="radio"]:checked ~ .btg-option-label::before {
  background: var(--accent, #D4A853);
  border-color: var(--accent, #D4A853);
  box-shadow: inset 0 0 0 4px #0a0a0a;
}

/* ── TEXTAREA / INPUTS ────────────────────────────────────── */

.btg-textarea-wrap { margin-bottom: 16px; }

.btg-textarea {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 16px 20px;
  resize: vertical;
  min-height: 96px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}

.btg-textarea:focus { border-color: var(--accent, #D4A853); }

.btg-text-input {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 16px 20px;
  box-sizing: border-box;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}

.btg-text-input:focus { border-color: var(--accent, #D4A853); }

.btg-textarea::placeholder,
.btg-text-input::placeholder { color: rgba(255,255,255,0.22); }

.btg-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */

.btg-btn-next {
  display: block;
  width: 100%;
  margin: 24px auto 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent, #D4A853);
  padding: 20px 44px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btg-btn-next:hover { opacity: 0.88; }

.btg-btn-submit {
  display: block;
  width: 100%;
  margin: 22px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent, #D4A853);
  padding: 22px 36px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btg-btn-submit:hover { opacity: 0.88; }

/* ── Q13 TESTIMONIALS ─────────────────────────────────────── */

.btg-testimonials {
  margin-top: 64px;
  padding-top: 72px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.btg-testimonials-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  color: rgba(255,255,255,0.75);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 auto 36px;
  max-width: 640px;
}

.btg-testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* White card design — photos pop, text is legible */
.btg-testi-card {
  background: #fff;
  overflow: hidden;
}

.btg-testi-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.55) contrast(0.9) saturate(1.1);
}

.btg-testi-card-body {
  padding: 16px 16px 18px;
}

.btg-testi-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}

.btg-testi-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0;
  line-height: 1.45;
}

.btg-testi-company {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0;
  line-height: 1.4;
}

/* ── MEET CHRIS (survey step 13) ─────────────────────────── */

.btg-meet-chris {
  margin-top: 72px;
  padding-top: 64px;
  padding-bottom: 56px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.btg-meet-chris-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 3.5vw, 46px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 48px;
}

.btg-meet-chris-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
  text-align: left;
  position: relative;
  left: -24px;
}

.btg-meet-chris-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.btg-meet-chris-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}

.btg-meet-chris-body p { margin-bottom: 20px; }

.btg-meet-press {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: nowrap;
  gap: 28px;
}

.btg-meet-press span {
  white-space: nowrap;
}

/* ── RESULT PAGE ──────────────────────────────────────────── */

.btg-result-video {
  background: #000;
  padding: 160px 24px 12px;
  text-align: center;
}

.btg-result-video-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.btg-result-video video,
.btg-result-video-player {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #111;
}

.btg-score-section {
  background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
  padding: 24px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btg-score-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,168,83,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.btg-score-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  position: relative;
}

.btg-score-number {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: clamp(80px, 14vw, 130px);
  color: var(--accent, #D4A853);
  line-height: 1;
  position: relative;
}

.btg-score-denom {
  font-size: 0.35em;
  color: rgba(255,255,255,0.2);
  vertical-align: super;
}

.btg-score-descriptor {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  letter-spacing: 0.04em;
  position: relative;
}

.btg-solution-key {
  background: #0a0a0a;
  padding: clamp(48px, 6vw, 72px) 24px 80px;
}

.btg-solution-key-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 44px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.btg-advice-block {
  display: none;
  max-width: 820px;
  margin: 0 auto 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.btg-advice-block.show { display: block; }

.btg-advice-question {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--accent, #D4A853);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent, #D4A853);
}

.btg-advice-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  padding-left: 23px;
}

.btg-advice-text p { margin-bottom: 18px; }

.btg-no-issues {
  display: none;
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 56px 48px;
  background: rgba(212,168,83,0.05);
  border: 1px solid rgba(212,168,83,0.15);
}

.btg-no-issues.show { display: block; }

.btg-no-issues p {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.btg-hire-cta {
  background: #000;
  padding: 100px 24px;
  text-align: center;
}

.btg-hire-cta h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3.5vw, 46px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.btg-hire-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ── ENTRY PAGE ───────────────────────────────────────────── */

.btg-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.btg-hero-photo { overflow: hidden; }

.btg-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.btg-hero-copy {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}

.btg-hero-inner { max-width: 520px; }

.btg-hero-inner h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.btg-hero-inner h1 em {
  font-style: normal;
  color: var(--accent, #D4A853);
}

.btg-cta-section {
  background: #f5f5f5;
  padding: 60px 24px;
  text-align: center;
}

.btg-cta-section p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

@keyframes btgBtnGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(212,168,83,0.35), 0 4px 14px rgba(0,0,0,0.25); }
  50%  { box-shadow: 0 0 38px rgba(212,168,83,0.70), 0 6px 22px rgba(212,168,83,0.3); }
}

.btg-cta-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(110deg, #C4922A 0%, #E8C46A 38%, #D4A853 62%, #B8882A 100%);
  padding: 22px 56px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  animation: btgBtnGlow 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btg-cta-btn::after {
  content: ' \2192';
}

.btg-cta-btn:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 10px 40px rgba(212,168,83,0.75);
  opacity: 1;
}

/* ── ENTRY BANNER (full-width uncropped image) ────────────── */

.btg-entry-banner {
  background: #000;
  line-height: 0;
}

.btg-entry-banner img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

/* ── ENTRY SPLIT (photo left + copy right) ───────────────── */

.btg-entry-split {
  background: #fff;
}

.btg-entry-split-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.btg-entry-split-photo {
  position: sticky;
  top: 108px;
}

.btg-entry-split-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.btg-entry-split-copy {
  padding: 108px 64px 72px 64px;
}

/* ── ENTRY (INTRO) PAGE ───────────────────────────────────── */

.btg-entry-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.btg-entry-photo {
  overflow: hidden;
  position: relative;
}

.btg-entry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.btg-entry-headline {
  background: #000;
  display: flex;
  align-items: center;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}

.btg-entry-headline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.btg-entry-headline-inner { position: relative; }

.btg-entry-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent, #D4A853);
  margin-bottom: 28px;
}

.btg-entry-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent, #D4A853);
  opacity: 0.5;
  flex-shrink: 0;
}

.btg-entry-headline h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.18;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Entry body — white section */
.btg-entry-body {
  background: #fff;
  padding: 80px 24px;
}

.btg-entry-body-inner {
  max-width: 740px;
  margin: 0 auto;
}

.btg-entry-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 36px;
  line-height: 1.3;
}

.btg-entry-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #444;
  line-height: 1.85;
}

.btg-entry-copy p { margin-bottom: 20px; }

.btg-entry-bullets {
  list-style: none;
  padding: 36px 0 0;
  margin: 40px 0 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.btg-entry-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.4;
}

.btg-entry-bullets li::before {
  content: '✓';
  color: var(--accent, #D4A853);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.btg-entry-cta-wrap {
  text-align: center;
  padding: 52px 0 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 44px;
}

.btg-entry-cta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: #222;
  margin-bottom: 24px;
  line-height: 1.4;
}

.btg-entry-fine-print {
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #aaa;
  font-style: italic;
  line-height: 1.7;
}

.btg-entry-social-proof {
  margin-top: 48px;
  padding: 28px 36px;
  background: #0a0a0a;
  border-left: 4px solid var(--accent, #D4A853);
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.6;
}

/* ── SURVEY MASTHEAD (white band above dark quiz) ──────────── */

.btg-survey-masthead {
  background: #fff;
  padding: 160px 24px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btg-survey-masthead-inner {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.btg-survey-masthead-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #D4A853);
  margin-bottom: 20px;
}

.btg-survey-masthead-kicker::before,
.btg-survey-masthead-kicker::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent, #D4A853);
  opacity: 0.4;
  flex-shrink: 0;
}

.btg-survey-masthead h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #111;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.btg-survey-masthead-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* ── SOLUTION KEY — LIGHT VARIANT ─────────────────────────── */

.btg-solution-key--light {
  background: #f9f9f9;
}

.btg-solution-key--light .btg-solution-key-heading {
  color: #111;
  border-bottom-color: rgba(0,0,0,0.08);
}

.btg-solution-key--light .btg-advice-block {
  border-bottom-color: rgba(0,0,0,0.08);
}

.btg-solution-key--light .btg-advice-text {
  color: #444;
}

.btg-solution-key--light .btg-no-issues {
  background: rgba(212,168,83,0.05);
  border-color: rgba(212,168,83,0.2);
}

.btg-solution-key--light .btg-no-issues p {
  color: #444;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 700px) {
  .btg-hero { grid-template-columns: 1fr; }
  .btg-hero-photo { min-height: 280px; }
  .btg-hero-copy { padding: 44px 24px; }
  .btg-options--row { flex-direction: column; }
  .btg-testi-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .btg-inputs-row { grid-template-columns: 1fr; }
  .btg-hero-intro { padding: 120px 24px 52px; }
  .btg-entry-hero { grid-template-columns: 1fr; }
  .btg-entry-photo { min-height: 300px; }
  .btg-entry-headline { padding: 48px 24px; }
  .btg-entry-body { padding: 56px 24px; }
  .btg-entry-split-inner { grid-template-columns: 1fr; }
  .btg-entry-split-photo { height: 420px; }
  .btg-entry-split-copy { padding: 52px 24px; }
  .btg-survey-masthead { padding: 120px 24px 32px; }
  .btg-meet-chris-inner { grid-template-columns: 1fr; left: 0; max-width: 100%; }
}

/* ── SCROLL ARROW ─────────────────────────────────────────── */

.btg-scroll-arrow {
  background: #000;
  text-align: center;
  padding: 6px 0 8px;
}

.btg-scroll-arrow svg {
  display: inline-block;
  animation: btgBounce 1.8s ease-in-out infinite;
}

@keyframes btgBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}

/* ── PROMO PANELS (Club 28 + Next Level) ─────────────────── */

.btg-promo {
  background: #000;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: clamp(64px, 7vw, 100px) 0;
}

.btg-promo-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0 0 clamp(40px, 5vw, 64px);
  padding: 0 24px;
}

.btg-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.btg-promo-panel {
  padding: clamp(28px, 2.5vw, 40px) clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  background: #0d0a06;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7), 0 0 40px rgba(212,175,55,0.08);
}

.btg-promo-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.btg-promo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  flex: 1;
}

.btg-promo-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
  padding: 14px 28px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  margin-top: 24px;
}

.btg-promo-btn:hover {
  background: #c49a30;
  border-color: #c49a30;
  transform: translateY(-2px);
}

.btg-promo-btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btg-promo-btn--ghost:hover {
  background: rgba(212,168,83,0.08);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .btg-promo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .btg-promo-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}
