/* ============ AdaptLend — modern, sleek, minimal ============ */

:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --ink: #101413;
  --muted: #5c645f;
  --line: #e5e7e2;
  --accent: #0e5f45;
  --accent-soft: #ecf4ef;
  --dark: #0c100f;
  --dark-muted: #9ba8a1;
  --gold: #c9a227;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.03em; font-weight: 600; }
h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.nowrap { white-space: nowrap; }

button { font: inherit; cursor: pointer; }
svg { display: block; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: inherit;
}
.btn-primary {
  background: var(--dark);
  color: #fff;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-lg { padding: 16px 30px; font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(251, 251, 249, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo, .footer-logo, .form-brand {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.logo span, .form-brand span { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 28px; }

/* ---------- Hero ---------- */
.hero { padding: 104px 0 96px; }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 72px);
  font-weight: 650;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  max-width: 560px;
  margin-bottom: 72px;
  font-size: 19px;
  color: var(--muted);
}
.situations-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
}
.situation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  text-align: left;
}
.situation-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  transition: border-color 0.15s, transform 0.15s;
}
.situation-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.situation-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.situation-icon svg { width: 21px; height: 21px; }
.situation-title { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.situation-desc { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ---------- Rates ---------- */
.rates { background: var(--dark); color: #fff; padding: 104px 0; }
.rates-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.rates h2 { color: #fff; }
.rates-copy p { font-size: 17px; color: var(--dark-muted); margin-bottom: 32px; }
.rates-copy strong { color: #fff; }
.rates-points { list-style: none; display: grid; gap: 16px; font-size: 16px; }
.rates-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--dark-muted); }
.rates-points li strong { color: #fff; }
.rates-points svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.rates-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: 16px;
  padding: 36px;
}
.rates-card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.steps { list-style: none; display: grid; gap: 22px; margin-bottom: 32px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.steps li strong { color: var(--ink); font-weight: 600; }
.step-num {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.rates-card .btn { width: 100%; text-align: center; }
.no-pressure { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ---------- Brokers ---------- */
.brokers { padding: 104px 0; }
.brokers h2 { max-width: 620px; }
.section-sub { max-width: 560px; margin-bottom: 56px; color: var(--muted); font-size: 17px; }
.broker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}
.broker-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.broker-avatar {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.broker-card h3 { font-size: 19px; margin-bottom: 10px; }
.broker-creds { margin-bottom: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}
.broker-bio { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; }
.broker-stat {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.broker-stat strong { color: var(--ink); }

/* ---------- Reviews ---------- */
.reviews { padding: 0 0 104px; }
.reviews h2 { max-width: 640px; margin-bottom: 40px; }
.review-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.review-stat {
  flex: 1;
  padding: 22px 28px;
  border-left: 1px solid var(--line);
}
.review-stat:first-child { border-left: none; padding-left: 0; }
.review-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.review-stat span { font-size: 13px; color: var(--muted); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.stars svg { width: 15px; height: 15px; }
.review-card blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 18px;
  flex: 1;
}
.review-card figcaption { font-size: 13px; color: var(--muted); }
.review-card figcaption strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; }

/* ---------- Guides grid (homepage) ---------- */
.guides { padding: 0 0 104px; }
.guides h2 { max-width: 640px; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.guide-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.guide-card-title { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.guide-card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq { padding: 0 0 104px; }
.faq h2 { margin-bottom: 40px; }
.faq-list { border-top: 1px solid var(--line); max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-indicator {
  position: relative;
  width: 14px; height: 14px;
  flex: 0 0 auto;
}
.faq-indicator::before, .faq-indicator::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform 0.2s;
}
.faq-indicator::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.faq-indicator::after { top: 0; left: 6px; width: 1.5px; height: 14px; }
.faq details[open] .faq-indicator::after { transform: scaleY(0); }
.faq details p { color: var(--muted); font-size: 16px; padding: 0 40px 24px 0; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 104px 0 120px; text-align: center; border-top: 1px solid var(--line); }
.final-cta h2 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 32px; }
.final-cta .no-pressure a { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: var(--dark-muted);
  padding: 56px 0;
  font-size: 13px;
}
.footer-logo { color: #fff; margin-bottom: 20px; }
.footer-logo span { color: var(--dark-muted); }
.footer-legal { max-width: 720px; margin-bottom: 14px; line-height: 1.6; }
.footer-eho { display: flex; align-items: center; gap: 8px; }
.footer-eho svg { width: 18px; height: 18px; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 72px 0 96px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: clamp(32px, 4.4vw, 44px); margin-bottom: 10px; }
.legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.legal-page h2 { font-size: 20px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { font-size: 15.5px; line-height: 1.7; color: var(--ink); margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; margin-bottom: 12px; }
.legal-page a { color: var(--accent); }
.site-footer a { color: inherit; }

/* ---------- Guide pages ---------- */
.guide-page { padding: 56px 0 96px; }
.guide-page .container { max-width: 760px; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.crumb a { color: var(--muted); }
.guide-page h1 { font-size: clamp(30px, 4.4vw, 42px); margin-bottom: 14px; }
.byline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.guide-page h2 { font-size: 22px; margin: 42px 0 14px; }
.guide-page h3 { font-size: 17px; margin: 26px 0 10px; }
.guide-page p, .guide-page li { font-size: 16.5px; line-height: 1.75; color: var(--ink); margin-bottom: 14px; }
.guide-page ul, .guide-page ol { padding-left: 24px; margin-bottom: 14px; }
.guide-page a { color: var(--accent); }
.guide-page .lead { font-size: 18px; }
.note-box {
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--accent);
  margin: 20px 0;
}
.cta-banner {
  background: var(--dark);
  border-radius: 14px;
  padding: 30px 32px;
  margin: 44px 0;
}
.cta-banner h3 { color: #fff; font-size: 20px; margin: 0 0 8px; }
.cta-banner p { color: var(--dark-muted); font-size: 15px; margin-bottom: 18px; }
.guide-faq details { border-bottom: 1px solid var(--line); }
.guide-faq details:first-of-type { border-top: 1px solid var(--line); }
.guide-faq summary {
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq details p { color: var(--muted); font-size: 15.5px; padding: 0 32px 18px 0; }
.guide-related { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.guide-related p { font-size: 14px; color: var(--muted); }

/* ---------- Calculator ---------- */
.calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin: 28px 0;
}
.calc .field-row { margin-bottom: 14px; }
.calc label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.calc input {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.calc input:focus { outline: none; border-color: var(--accent); }
.calc-result {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 10px;
  background: var(--accent-soft);
}
.calc-result strong { font-size: 30px; letter-spacing: -0.02em; color: var(--accent); display: block; }
.calc-result span { font-size: 14px; color: var(--ink); }

/* ---------- Footer guide links ---------- */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 22px;
  font-size: 13px;
}
.footer-links a { color: var(--dark-muted); }

/* ============ Match form overlay ============ */
.form-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  overflow-y: auto;
}
.form-shell { max-width: 680px; margin: 0 auto; padding: 24px 28px 72px; }
.form-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 24px;
}
.form-close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-close:hover { border-color: var(--ink); }
.form-close svg { width: 16px; height: 16px; }
.form-progress {
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 48px;
}
.form-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.form-step-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}
.affirmation {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 28px;
}
.affirmation svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 3px; }
.form-question {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 650;
  margin-bottom: 10px;
}
.form-hint { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

.option-list { display: grid; gap: 10px; }
.option-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.15s;
}
.option-btn:hover { border-color: var(--ink); }
.option-btn .opt-icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.option-btn .opt-icon svg { width: 19px; height: 19px; }
.option-btn .opt-sub { display: block; font-size: 13px; font-weight: 400; color: var(--muted); }

.form-nav { margin-top: 32px; display: flex; align-items: center; gap: 20px; }
.back-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.15s;
}
.back-btn:hover { color: var(--ink); }

/* contact step */
.contact-grid { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.label-note { font-weight: 400; color: var(--muted); }
.field-note { font-size: 12.5px; color: var(--muted); margin-top: 7px; }

/* address autocomplete */
.ac-anchor { position: relative; }
.ac-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(16, 20, 19, 0.10);
  overflow: hidden;
  z-index: 20;
}
.ac-item {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 15px;
  font-size: 14px;
  text-align: left;
  color: var(--ink);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: var(--accent-soft); }
.contact-field input, .contact-field select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s;
}
.contact-field input:focus, .contact-field select:focus {
  outline: none;
  border-color: var(--accent);
}
/* consent */
.consent { display: flex; align-items: flex-start; gap: 11px; padding-top: 4px; }
.consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent label {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.consent a { color: var(--muted); }

.form-error { color: #b3402e; font-size: 14px; margin-top: 12px; display: none; }
.form-error.visible { display: block; }
.submit-note { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* celebration */
.result-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.celebrate { text-align: center; padding: 56px 0 24px; }
.celebrate .result-kicker { animation: rise 0.5s ease-out 0.1s both; }
.celebrate-badge {
  width: 78px;
  height: 78px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  animation: pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.celebrate-badge svg { width: 36px; height: 36px; }
.celebrate-check {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: draw 0.45s ease-out 0.35s forwards;
}
.celebrate-title {
  font-size: clamp(30px, 4.6vw, 44px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  animation: rise 0.5s ease-out 0.18s both;
}
.celebrate-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 24px;
  animation: rise 0.5s ease-out 0.28s both;
}
.hl {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 6px;
  white-space: nowrap;
}
.celebrate-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 999px;
  padding: 11px 20px;
  animation: rise 0.5s ease-out 0.38s both;
}
.celebrate-note svg { width: 15px; height: 15px; flex: 0 0 auto; }
.celebrate-nav { justify-content: center; animation: rise 0.5s ease-out 0.7s both; }

.celebrate-reviews { margin-top: 44px; animation: rise 0.5s ease-out 0.55s both; }
.celebrate-reviews-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}
.celebrate-review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 10px;
  text-align: left;
}
.celebrate-review .stars { margin-bottom: 10px; }
.celebrate-review .stars svg { width: 13px; height: 13px; }
.celebrate-review blockquote { font-size: 14.5px; line-height: 1.6; margin-bottom: 10px; }
.celebrate-review figcaption { font-size: 12.5px; color: var(--muted); }
.celebrate-review figcaption strong { color: var(--ink); font-weight: 600; }

@keyframes pop { from { transform: scale(0.4); opacity: 0; } }
@keyframes rise { from { transform: translateY(14px); opacity: 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 120;
}
.confetti i {
  position: absolute;
  top: -3vh;
  display: block;
  animation: confetti-fall var(--dur) cubic-bezier(0.3, 0.5, 0.5, 1) var(--delay) forwards;
  opacity: 0;
}
@keyframes confetti-fall {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate3d(var(--sway), 108vh, 0) rotate(var(--rot)); opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .rates-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 72px 0 64px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .rates, .brokers { padding: 72px 0; }
  .faq { padding-bottom: 72px; }
  .final-cta { padding: 72px 0 88px; }
}
