/* ═══════════════════════════════════════════════════════════════
   REVIEW REVIVAL — Luxury Reputation Management
   Elegant, refined aesthetic inspired by premium brand design
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Palette */
  --navy:       #0d1b2a;
  --navy-light: #142236;
  --charcoal:   #1e2a3a;
  --gold:       #c9a96e;
  --gold-light: #e0c898;
  --gold-pale:  #f5eed8;
  --champagne:  #f9f5ec;
  --white:      #ffffff;
  --off-white:  #f8f7f5;
  --text-dark:  #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-light: #7a7a7a;
  --text-ghost: rgba(255,255,255,0.65);
  --border:     rgba(201,169,110,0.25);
  --border-light: rgba(201,169,110,0.15);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --section-py: 7rem;
  --container:  1160px;
  --radius:     2px;
  --radius-md:  6px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-spaced { padding: var(--section-py) 0; }

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-champagne { background: var(--champagne); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-header.light h2 { color: var(--white); }

.section-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 1.25rem auto 0;
  line-height: 1.8;
}

.section-header.light .section-sub { color: var(--text-ghost); }

.divider-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.6;
}

.divider-line.gold { opacity: 1; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.25);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Staggered delay for grid children */
.pain-grid .fade-in:nth-child(2),
.services-grid .fade-in:nth-child(2),
.benefits-grid .fade-in:nth-child(2),
.testimonials-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }

.pain-grid .fade-in:nth-child(3),
.services-grid .fade-in:nth-child(3),
.benefits-grid .fade-in:nth-child(3),
.testimonials-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

.pain-grid .fade-in:nth-child(4),
.services-grid .fade-in:nth-child(4),
.benefits-grid .fade-in:nth-child(4),
.testimonials-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.services-grid .fade-in:nth-child(5),
.benefits-grid .fade-in:nth-child(5),
.testimonials-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }

.services-grid .fade-in:nth-child(6),
.benefits-grid .fade-in:nth-child(6),
.testimonials-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  padding: 1rem 0;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.logo-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:not(.nav-cta):hover { color: var(--gold); }

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: var(--radius);
  transition: all 0.25s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
  padding: 7rem 2rem 0;
}

/* Subtle background texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative thin lines */
#hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.1) 30%, rgba(201,169,110,0.1) 70%, transparent 100%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 110%, rgba(201,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.15s var(--ease) both;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  font-weight: 300;
  animation: fadeUp 0.9s 0.3s var(--ease) both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.45s var(--ease) both;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 5rem;
  width: 100%;
  max-width: 900px;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  animation: fadeUp 0.9s 0.6s var(--ease) both;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--gold);
  opacity: 0.8;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  animation: fadeIn 1.5s 1.2s var(--ease) both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── TRUST STRIP ────────────────────────────────────────────── */
#trust-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 2.25rem 0;
}

.trust-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-logo {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}

.trust-logo i { font-size: 1rem; }
.trust-logo:hover { opacity: 1; }

/* ─── PAIN POINTS ────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5px;
  background: rgba(0,0,0,0.06);
  border: 1.5px solid rgba(0,0,0,0.06);
}

.pain-card {
  background: var(--off-white);
  padding: 2.5rem 2rem;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.pain-card:hover { background: var(--white); }

.pain-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(201,169,110,0.04);
}

.pain-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pain-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.pain-stat {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}

.service-card:hover { background: rgba(255,255,255,0.06); }

.service-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding-left: 1rem;
  position: relative;
  letter-spacing: 0.02em;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

/* ─── IMPACT ─────────────────────────────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.impact-chart-wrap {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 2rem;
}

.chart-caption {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.03em;
  font-style: italic;
}

.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.impact-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.impact-stat-item:last-child { border-bottom: none; padding-bottom: 0; }

.impact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.9rem;
}

.impact-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.impact-text span {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── ROI CALCULATOR ─────────────────────────────────────────── */
.calculator-wrap {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.calc-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}

.input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.15);
  overflow: hidden;
  transition: border-color 0.2s;
}

.input-wrap:focus-within { border-color: var(--gold); }

.input-prefix {
  padding: 0.65rem 0.85rem;
  background: var(--off-white);
  border-right: 1px solid rgba(0,0,0,0.1);
  font-size: 0.9rem;
  color: var(--text-mid);
}

.input-wrap input {
  border: none;
  outline: none;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  width: 100%;
  background: transparent;
  color: var(--text-dark);
}

.slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-wrap input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 2px;
  background: rgba(0,0,0,0.12);
  outline: none;
  border-radius: 1px;
}

.slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.2s;
}

.slider-wrap input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3); }

.slider-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 52px;
  text-align: right;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 2.5rem;
}

.result-card {
  background: var(--off-white);
  padding: 1.75rem;
  text-align: center;
  transition: background 0.3s;
}

.result-card.highlight { background: var(--navy); }
.result-card.highlight .result-label { color: rgba(255,255,255,0.55); }
.result-card.highlight .result-note { color: rgba(255,255,255,0.4); }

.result-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.result-value {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.result-value.negative { color: #c0392b; }
.result-value.positive { color: var(--gold); }
.result-value.accent { color: var(--gold); }

.result-note {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}

.calc-chart-wrap {
  margin-bottom: 1.5rem;
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-left: 2px solid var(--border);
}

.calc-cta { display: block; width: fit-content; margin: 0 auto; }

/* ─── PROCESS ────────────────────────────────────────────────── */
.process-steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  gap: 0 2rem;
  position: relative;
  padding-bottom: 3.5rem;
}

.process-step:last-child { padding-bottom: 0; }

.step-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  padding-top: 0.15rem;
  text-align: right;
}

.step-connector {
  width: 1px;
  background: linear-gradient(to bottom, var(--border) 0%, transparent 100%);
  margin: 0 auto;
  position: relative;
}

.step-connector::before {
  content: '';
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.process-step:last-child .step-connector { background: none; }

.step-content {
  padding-top: 0.1rem;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ─── BENEFITS ───────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.benefit-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, background 0.3s;
}

.benefit-card:hover {
  border-color: rgba(201,169,110,0.2);
  background: rgba(255,255,255,0.03);
}

.benefit-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(0,0,0,0.06);
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
}

.testimonial-card:hover { background: var(--off-white); }

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

.testimonial-card footer {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.testimonial-card footer strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.testimonial-card footer span {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,169,110,0.12);
  border: 1.5px solid rgba(201,169,110,0.12);
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
  background: var(--navy);
  transform: scaleY(1.02);
  z-index: 2;
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.pricing-tier {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-tier { color: var(--white); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.price-from {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.pricing-card.featured .price-from { color: rgba(255,255,255,0.45); }

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.pricing-card.featured .price-amount { color: var(--gold); }

.price-period {
  font-size: 0.8rem;
  color: var(--text-light);
}

.pricing-card.featured .price-period { color: rgba(255,255,255,0.45); }

.pricing-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.75rem;
}

.pricing-card.featured .pricing-divider { background: rgba(201,169,110,0.35); }

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.83rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); }

.pricing-features li.muted { opacity: 0.4; }

.pricing-features li i {
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-features li.muted i { color: var(--text-light); }

.pricing-card .btn { margin-top: auto; text-align: center; justify-content: center; }

.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform 0.3s, background 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}

.faq-answer.open { max-height: 400px; padding-bottom: 1.5rem; }

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field.full-width { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.88rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-field select option { background: var(--navy); color: var(--white); }

.form-field textarea { resize: vertical; min-height: 110px; }

.form-submit { align-self: flex-start; min-width: 240px; justify-content: center; }

.form-success {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: #080f18;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── FLOATING CTA ───────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.floating-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(201,169,110,0.55);
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .pricing-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-py: 5rem; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,42,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
    backdrop-filter: blur(16px);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }

  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }

  .calc-results { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .process-step { grid-template-columns: 60px 1px 1fr; }
  .step-number { font-size: 2rem; }

  .footer-links { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
  .calculator-wrap { padding: 2rem 1.5rem; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 0.9rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}
