:root {
  --forest: #1a1a1a;
  --forest-deep: #0a0a0a;
  --forest-soft: #2a2a2a;
  --cream: #faf7f2;
  --cream-warm: #f0e9dc;
  --cream-deep: #e3d9c5;
  --brass: #ff6b1a;
  --brass-bright: #ff8540;
  --brass-deep: #c84d00;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --burgundy: #8b1a00;
  --line-light: rgba(250, 247, 242, 0.15);
  --line-dark: rgba(26, 26, 26, 0.12);
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========= TOP BAR ========= */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 12px;
  padding: 10px 0;
  letter-spacing: 0.05em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-item strong { color: var(--brass-bright); font-weight: 700; }
.topbar-divider { color: var(--brass); opacity: 0.4; }

/* ========= HEADER ========= */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--line-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(245, 239, 223, 0.96);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.phone-icon-h {
  width: 38px;
  height: 38px;
  background: var(--forest);
  color: var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.phone-text-h {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.phone-label-h {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.phone-num-h {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.header-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.header-cta:hover {
  background: var(--brass-deep);
  transform: translateY(-1px);
}

/* ========= HERO ========= */
.hero {
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 85, 0.15), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 50, 0.06), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.hero-eyebrow::after {
  width: 60px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--forest);
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 500;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
}

.feature-bullets {
  list-style: none;
  margin-bottom: 36px;
}
.feature-bullets li {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.bullet-mark {
  width: 26px;
  height: 26px;
  background: var(--forest);
  color: var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--brass);
}
.hero-stat-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--brass-bright);
  flex-shrink: 0;
}
.hero-stat-text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

/* ========= FORM CARD ========= */
.form-card {
  background: var(--cream);
  border: 1px solid var(--brass);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  box-shadow:
    0 1px 2px rgba(30, 58, 50, 0.05),
    0 12px 32px rgba(30, 58, 50, 0.12);
}
.form-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--brass);
  border-radius: 12px;
  transform: translate(8px, 8px);
  z-index: -1;
  opacity: 0.4;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 3px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.form-card::before { content: 'Free Author Consultation'; }

.form-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.form-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--brass);
}
.form-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin-bottom: 6px;
}
.form-card .form-sub {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: italic;
}

.field-group { margin-bottom: 14px; }
.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--forest);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field-input,
.field-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line-dark);
  border-radius: 6px;
  font-family: var(--body);
  font-size: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s;
}
.field-input:focus,
.field-select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(200, 164, 85, 0.15);
}
.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
}
.field-textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--body);
  line-height: 1.5;
}
.field-input.error, .field-select.error { border-color: var(--burgundy); }
.field-error {
  color: var(--burgundy);
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
  display: none;
}
.field-error.show { display: block; }

.radio-inline {
  display: flex;
  gap: 8px;
}
.radio-card {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.radio-card input { position: absolute; opacity: 0; }
.radio-card .card-content {
  border: 1.5px solid var(--line-dark);
  border-radius: 6px;
  padding: 11px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  background: var(--cream);
}
.radio-card input:checked + .card-content {
  border-color: var(--forest);
  background: var(--cream-warm);
  box-shadow: 0 0 0 3px rgba(200, 164, 85, 0.2);
}

.btn-form {
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.btn-form::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 223, 0.2), transparent);
  transition: left 0.5s;
}
.btn-form:hover {
  background: var(--brass-deep);
}
.btn-form:hover::after { left: 100%; }

.form-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}

.form-success {
  /* display: none; */
  text-align: center;
  padding: 32px 0;
}
.form-success.active { display: block; }
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--forest);
  color: var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 16px;
}
.form-success h4 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--forest);
}
.form-success p { color: var(--ink-soft); font-size: 14px; }

/* ========= STATS COUNTER ========= */
.stats-section {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--line-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--brass-bright);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 239, 223, 0.7);
  font-weight: 600;
}

/* ========= SECTION BASE ========= */
.section { padding: 100px 0; }
.section-warm { background: var(--cream-warm); }
.section-deep { background: var(--forest); color: var(--cream); }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.section-deep .section-eyebrow { color: var(--brass-bright); }
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--forest);
}
.testimonial-section .section-title {
    color: var(--cream);
}
.section-deep .section-title { color: var(--cream); }
.section-title em { font-style: italic; color: var(--brass-deep); font-weight: 500; }
.section-deep .section-title em { color: var(--brass-bright); }
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 600px;
}
.section-deep .section-sub { color: rgba(245, 239, 223, 0.7); }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ========= SERVICES ========= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 58, 50, 0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--cream-warm);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--forest);
}
.service-num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--brass-deep);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  color: var(--forest);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--brass-deep); }

/* ========= JOURNEY (Process) ========= */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.journey-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 80px;
  right: 80px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--brass) 0, var(--brass) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.journey-num {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border: 2px solid var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  color: var(--forest);
}
.journey-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--brass);
  border-radius: 50%;
}
.journey-step h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.journey-step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ========= COMPARISON ========= */
.compare-table {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 58, 50, 0.08);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line-dark);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.header-row {
  background: var(--forest);
  color: var(--cream);
}
.compare-row.header-row .compare-cell {
  padding: 28px 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
}
.compare-cell {
  padding: 22px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.compare-cell.feat {
  font-weight: 600;
  background: var(--cream-warm);
  border-right: 1px solid var(--line-dark);
}
.compare-cell.us {
  background: rgba(200, 164, 85, 0.1);
  border-right: 1px solid var(--line-dark);
  font-weight: 500;
  position: relative;
}
.compare-cell.us::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--brass);
}
.compare-row.header-row .compare-cell.us {
  background: var(--brass-deep);
  color: var(--cream);
}
.compare-row.header-row .compare-cell.us::before { background: var(--brass-bright); }
.compare-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
}
.compare-cell .yes { color: #2d8659; font-weight: 800; margin-right: 8px; font-size: 16px; }
.compare-cell .no { color: var(--burgundy); font-weight: 800; margin-right: 8px; font-size: 16px; }
.compare-cell strong { color: var(--brass-deep); font-weight: 700; }
.compare-cell.us strong { color: var(--brass-deep); }

/* ========= TESTIMONIALS (Marquee) ========= */
.testimonial-section {
  padding: 100px 0;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '"';
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  font-size: 700px;
  font-weight: 600;
  color: var(--brass);
  opacity: 0.06;
  top: -160px;
  right: -60px;
  line-height: 1;
  pointer-events: none;
}

.test-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 64px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
/*.marquee-track {*/
/*  display: flex;*/
/*  gap: 24px;*/
/*  animation: marqueeScroll 60s linear infinite;*/
/*  width: max-content;*/
/*}*/
/*.marquee-track:hover { animation-play-state: paused; }*/
/*@keyframes marqueeScroll {*/
/*  from { transform: translateX(0); }*/
/*  to { transform: translateX(calc(-50% - 12px)); }*/
/*}*/

.test-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 64px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.test-card {
  flex: 0 0 380px;
  background: rgba(245, 239, 223, 0.05);
  border: 1px solid var(--line-light);
  /* padding: 32px; */
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10px;
}
.test-card:hover {
  border-color: var(--brass);
  background: rgba(200, 164, 85, 0.06);
}
.test-stars {
  color: var(--brass-bright);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
.test-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--cream);
  font-weight: 500;
  min-height: 135px;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 48px;
  height: 48px;
  background: var(--brass);
  color: var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}
.test-name { font-weight: 600; font-size: 15px; color: var(--cream); }
.test-role { font-size: 12px; color: rgba(245, 239, 223, 0.6); margin-top: 2px; }
.test-book {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--brass-bright);
  margin-top: 4px;
}

/* ========= FAQ ========= */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--brass); }
.faq-item.active { border-color: var(--brass); background: var(--cream); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
}
.faq-q h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 600;
  transition: all 0.3s;
}
.faq-item.active .faq-icon {
  background: var(--brass);
  color: var(--forest);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.active .faq-a {
  max-height: 280px;
  padding: 0 28px 22px;
}

/* ========= FINAL CTA ========= */
.final-cta {
  padding: 120px 0;
  background: var(--cream-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(200, 164, 85, 0.2), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(30, 58, 50, 0.08), transparent 60%);
}
.final-cta::after {
  content: 'B';
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  font-size: 480px;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1;
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--forest);
}
.final-cta h2 em { font-style: italic; color: var(--brass-deep); font-weight: 500; }
.final-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.6;
}
.btn-final {
  background: var(--forest);
  color: var(--cream);
  padding: 20px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-final:hover {
  background: var(--brass-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(30, 58, 50, 0.2);
}

/* ========= FOOTER ========= */
footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 56px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-text {
  font-size: 13px;
  color: rgba(245, 239, 223, 0.5);
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(245, 239, 223, 0.4);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-style: italic;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px;padding-top: 30px !important; }
  .form-card { position: static; }
  .form-card::before {
      position: relative;
      top: 0px;
      right: 0px;
      left: 0px;
      margin: 0 auto;
      display: flex;
      display: -webkit-flex;
      width: 150px;
    }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--line-light); padding-bottom: 32px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { padding-top: 32px; }
  .service-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; gap: 48px; }
  .journey-grid::before { display: none; }
  .compare-row { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .compare-cell { padding: 14px 12px; font-size: 13px; }
  .compare-row.header-row .compare-cell { padding: 18px 12px; font-size: 14px; }
  .test-card { flex: 0 0 320px; padding: 28px; }
  .test-marquee { -webkit-mask-image: none; mask-image: none; }
  .header-phone .phone-text-h { display: none; }
  .header-phone { gap: 0; }
  .topbar-divider { display: none; }
  .topbar-inner { gap: 12px; }
}
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .hero { padding: 40px 0 60px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line-light); padding: 28px 16px; }
  .stat-item:last-child { border-bottom: none; }
  .compare-row {
    grid-template-columns: 1fr;
    border-bottom: 6px solid var(--forest);
  }
  .compare-cell { padding: 12px 16px; }
  .compare-cell.feat { font-size: 14px; }
  .compare-cell.us { padding-left: 20px; }
  .test-card { flex: 0 0 280px; }
  .header-cta { padding: 10px 16px; font-size: 12px; }
  .brand-tag { display: none; }
  .form-card { padding: 28px 22px; }
  .hero-stat-card { padding: 18px; }
  .hero-stat-num { font-size: 36px; }
}
