@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --ink-900: #0d1b2a;
  --ink-800: #1a2d42;
  --ink-700: #243d57;
  --ink-600: #2e5070;
  --ink-400: #5a7a96;
  --ink-200: #b8cdd9;
  --ink-100: #ddeaf2;
  --ink-50:  #f0f6fa;
  --white:   #ffffff;
  --gold-500: #d4a017;
  --gold-400: #e8b430;
  --gold-300: #f5c842;
  --gold-100: #fdf3d0;
  --surface:  #ffffff;
  --surface-2: #f5f9fc;
  --border:   #d6e6f0;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.07);
  --shadow-md: 0 6px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.13);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --space-1: clamp(4px, 0.5vw, 6px);
  --space-2: clamp(8px, 1vw, 12px);
  --space-3: clamp(12px, 1.5vw, 18px);
  --space-4: clamp(16px, 2vw, 24px);
  --space-5: clamp(24px, 3vw, 36px);
  --space-6: clamp(32px, 4vw, 48px);
  --space-7: clamp(48px, 6vw, 72px);
  --space-8: clamp(64px, 8vw, 96px);
  --space-9: clamp(80px, 10vw, 128px);
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ink-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-500);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 3.8vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
h4 { font-size: clamp(17px, 1.8vw, 22px); }

p {
  color: var(--ink-700);
  max-width: 68ch;
}

strong { color: var(--ink-900); font-weight: 600; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75em 1.6em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold-500);
  color: var(--ink-900);
  border-color: var(--gold-500);
  box-shadow: 0 4px 16px rgba(212,160,23,0.30);
}

.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--ink-900);
  box-shadow: 0 6px 24px rgba(212,160,23,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--ink-200);
}

.btn-outline:hover {
  border-color: var(--ink-600);
  color: var(--ink-600);
  background: var(--ink-50);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-lg {
  font-size: clamp(15px, 1.6vw, 17px);
  padding: 0.85em 2em;
  border-radius: var(--radius-md);
}

/* ─── HEADER / NAV ────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  gap: var(--space-4);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(4px, 2vw, 28px);
  list-style: none;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right a {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  color: var(--ink-700);
  padding: 4px 0;
  position: relative;
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--ink-900);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 1px;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-logo-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-logo-wordmark span {
  color: var(--gold-500);
}

.nav-logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1;
}

.nav-cta-item .btn {
  padding: 0.5em 1.2em;
  font-size: 14px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ─── MOBILE NAV ──────────────────────────────────── */

@media (max-width: 860px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .nav-logo {
    justify-self: start;
  }

  .nav-burger {
    justify-self: end;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: var(--space-4) 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    display: block;
    padding: 11px clamp(20px, 5vw, 64px);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-800);
    border-bottom: 1px solid var(--ink-50);
  }

  .mobile-nav a:last-child {
    margin-top: var(--space-3);
    border-bottom: none;
  }

  .site-header {
    position: relative;
  }
}

/* ─── FOOTER ──────────────────────────────────────── */

.site-footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding-top: var(--space-8);
  padding-bottom: var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-logo-wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer-logo-wordmark span {
  color: var(--gold-400);
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-200);
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: var(--ink-100);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--ink-900);
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: 14px;
  color: var(--ink-200);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-5);
}

.footer-copy {
  font-size: 13px;
  color: var(--ink-400);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--ink-400);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── HERO ────────────────────────────────────────── */

.hero-section {
  background: linear-gradient(150deg, var(--ink-900) 0%, var(--ink-800) 55%, var(--ink-700) 100%);
  padding: var(--space-9) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 70vw;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 50vw;
  max-width: 500px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46,80,112,0.5) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  width: fit-content;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-100);
  line-height: 1.7;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.hero-trust-stars {
  color: var(--gold-400);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-trust-text {
  font-size: 13px;
  color: var(--ink-200);
}

.hero-image-slot {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
  background: var(--ink-700);
}

.hero-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-image-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-image-badge-text strong {
  display: block;
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 700;
}

.hero-image-badge-text span {
  font-size: 12px;
  color: var(--ink-400);
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-slot {
    aspect-ratio: 16/9;
  }
}

/* ─── GENERIC CONTENT SECTION ─────────────────────── */

.content-section {
  padding: var(--space-8) 0;
}

.content-section--alt {
  background: var(--surface-2);
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-3);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--ink-900);
  margin-bottom: var(--space-4);
  max-width: 18ch;
}

.section-lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink-600);
  font-weight: 400;
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: var(--space-5);
}

.section-body {
  color: var(--ink-700);
  line-height: 1.75;
  max-width: 68ch;
}

.section-body p + p {
  margin-top: 1em;
}

.section-intro {
  max-width: 60ch;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

/* ─── CARDS / FEATURE GRID ────────────────────────── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-300);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-bottom: var(--space-1);
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-900);
  line-height: 1.25;
}

.card-text {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.7;
  max-width: 36ch;
}

/* ─── STATS ROW ───────────────────────────────────── */

.stats-section {
  padding: var(--space-8) 0;
  background: var(--ink-900);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}

@media (max-width: 720px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  padding: var(--space-5);
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-200);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 18ch;
}

/* ─── CTA BAND ────────────────────────────────────── */

.cta-section {
  padding: var(--space-8) 0;
}

.cta-band {
  background: linear-gradient(135deg, var(--ink-800) 0%, var(--ink-900) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  min-width: 240px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ink-200);
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── FAQ ─────────────────────────────────────────── */

.faq-section {
  padding: var(--space-8) 0;
  background: var(--surface-2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  cursor: pointer;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--ink-900);
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 var(--space-5) 0;
  font-size: 15px;
  color: var(--ink-600);
  line-height: 1.75;
  max-width: 68ch;
}

/* ─── PRICING CARDS ───────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500), var(--shadow-md);
  background: linear-gradient(160deg, #fffdf5 0%, var(--white) 100%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--ink-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.pricing-price-amount {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink-900);
}

.pricing-price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-600);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-price-period {
  font-size: 14px;
  color: var(--ink-400);
}

.pricing-desc {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
}

.pricing-features li {
  font-size: 14px;
  color: var(--ink-700);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: 0;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.testimonials-section {
  padding: var(--space-8) 0;
  background: var(--surface-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.7;
  font-style: italic;
  max-width: 100%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink-100);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  display: block;
}

.testimonial-role {
  font-size: 12px;
  color: var(--ink-400);
  display: block;
}

/* ─── FORM ────────────────────────────────────────── */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-900);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7em 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-200);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── PROCESS STEPS ───────────────────────────────── */

.steps-section {
  padding: var(--space-8) 0;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  z-index: 0;
}

@media (max-width: 720px) {
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row::before { display: none; }
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--gold-100);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
}

.step-text {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  max-width: 26ch;
}

/* ─── UTILITIES ───────────────────────────────────── */

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-center .section-heading { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.gold { color: var(--gold-500); }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-6) 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
img,svg,video{max-width:100%;height:auto}
html{-webkit-text-size-adjust:100%}
*{box-sizing:border-box}
