/* ==========================================================================
   FUNNEL.CSS -- Ad Snipper 3-Page Ad Funnel
   Page 1: Landing (page-1-landing-white)
   Page 2: Booking (page-2-booking)
   Page 3: Confirmation (page-3-confirmation)
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. VARIABLES & RESET
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../../fonts/HelveticaNowDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../../fonts/HelveticaNowDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../../fonts/HelveticaNowDisplay-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

:root {
  --blue: #1766FF;
  --blue-hover: #0F52D9;
  --blue-muted: #1766FF;
  --blue-glow: rgba(23, 102, 255, 0.25);
  --blue-tint: rgba(23, 102, 255, 0.08);
  --blue-border: rgba(23, 102, 255, 0.25);
  --bg-base: #FAFBFC;
  --bg-deeper: #F1F4F8;
  --bg-elevated: #FFFFFF;
  --border: #E2E8F0;
  --heading: #0D1117;
  --body: #2D3748;
  --muted: #64748B;
  --success: #059669;
  --warn: #B45309;
  --danger: #DC2626;
  --font-display: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


/* --------------------------------------------------------------------------
   2. BODY & LAYOUT
   -------------------------------------------------------------------------- */

html, body { background: var(--bg-base); }

body {
  font-family: var(--font-display);
  color: var(--body);
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.page {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* --------------------------------------------------------------------------
   3. NOISE OVERLAY
   -------------------------------------------------------------------------- */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* --------------------------------------------------------------------------
   4. NAV
   Shared nav shell, then page-specific right-hand elements:
     Page 1 -- .btn-primary CTA
     Page 2 -- .nav-trust
     Page 3 -- .nav-status
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* Page 1: primary CTA in nav */
.btn-primary {
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 200ms ease;
}
.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 24px var(--blue-glow);
  transform: translateY(-1px);
}
.btn-xl {
  font-size: 17px;
  padding: 17px 36px;
}

/* Page 2: trust badges in nav */
.nav-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}
.nav-trust strong {
  color: var(--heading);
  font-weight: 600;
}
.nav-trust .sep {
  color: var(--border);
}

/* Page 3: status badge in nav */
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--success);
  font-weight: 500;
}
.nav-status .dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}


/* --------------------------------------------------------------------------
   5. SCARCITY BAR  (Page 1 & 2)
   -------------------------------------------------------------------------- */

.scarcity-bar {
  background: linear-gradient(90deg, rgba(180, 83, 9, 0.08) 0%, rgba(180, 83, 9, 0.03) 50%, rgba(180, 83, 9, 0.08) 100%);
  border-bottom: 1px solid rgba(180, 83, 9, 0.18);
  padding: 10px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--warn);
  font-weight: 600;
}
.scarcity-bar .pulse {
  width: 7px;
  height: 7px;
  background: var(--warn);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.12);
  vertical-align: middle;
}


/* --------------------------------------------------------------------------
   6. OVERLINE & PILLS
   -------------------------------------------------------------------------- */

.overline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 22px;
}

/* Page 1: blue pill */
.hero .pill {
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  color: var(--blue-muted);
}
.pill .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

/* Page 3: green confirmation pill */
.hero .pill {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--success);
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* Page 1 override -- blue pill (use body class if both pages coexist) */
.page-landing .hero .pill {
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  color: var(--blue-muted);
  padding: 6px 16px;
  margin-bottom: 22px;
}


/* --------------------------------------------------------------------------
   7. BUTTONS & FORMS  (Page 1 lead form, shared components)
   -------------------------------------------------------------------------- */

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  position: relative;
}
.form-card-head {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.form-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 10px;
}
.form-card-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}
.form-card-h {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.form-card-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--body);
  letter-spacing: 0.02em;
}
.field .req {
  color: var(--blue);
}
.field input,
.field select,
.field textarea {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--heading);
  font-family: var(--font-display);
  transition: all 200ms ease;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 102, 255, 0.18);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238B949E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--font-display);
}
.form-submit {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  box-shadow: 0 12px 28px var(--blue-glow);
  transition: all 200ms ease;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px var(--blue-glow);
}
.form-foot {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}
.form-foot strong {
  color: var(--success);
  font-weight: 600;
}
.fnl-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--danger);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 4px;
}


/* --------------------------------------------------------------------------
   8. SECTIONS  (shared .section, .section-shade, .section-base, .section-head)
   -------------------------------------------------------------------------- */

.section {
  padding: 80px 40px;
}
.section-shade {
  background: var(--bg-deeper);
}
.section-base {
  background: var(--bg-base);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 14px;
}
.section-head h2 .blue {
  color: var(--blue);
}
.section-head p {
  font-size: 17px;
  color: var(--body);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}


/* --------------------------------------------------------------------------
   9. FOOTER  (shared across all 3 pages)
   -------------------------------------------------------------------------- */

.footer {
  padding: 24px 40px;
  background: var(--bg-deeper);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--body);
}


/* --------------------------------------------------------------------------
   10. PAGE 1: LANDING
       Hero, hero-grid, shortlist card, ticker, savings table,
       engineer cards, final CTA, form-card-wide
   -------------------------------------------------------------------------- */

/* -- Hero -- */
.hero {
  padding: 70px 40px 70px;
  background: radial-gradient(ellipse at top center, #E8EFFF 0%, var(--bg-base) 65%);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-center h1 {
  margin-left: auto;
  margin-right: auto;
}
.hero-center .lead {
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-wrap {
  margin: 8px 0 22px;
  display: flex;
  justify-content: center;
}
.hero-center .hero-trust-row {
  justify-content: center;
}
.hero h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 22px;
}
.hero h1 .blue {
  color: var(--blue);
}
.hero h1 .strike {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
}
.hero .lead {
  font-size: 19px;
  color: var(--body);
  line-height: 1.5;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero .lead strong {
  color: var(--heading);
  font-weight: 600;
}
.hero-ctas {
  display: none;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.hero-trust-row .check {
  color: var(--success);
  font-weight: 700;
  margin-right: 6px;
}

/* -- Shortlist card -- */
.shortlist {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  position: relative;
}
.shortlist-ribbon {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--warn);
  color: #1A0E00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.shortlist-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.shortlist-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 8px;
}
.shortlist-title .ico {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 5px;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.shortlist-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 9px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.shortlist-tag .dot {
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
}
.mini-eng {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.mini-eng:last-of-type {
  margin-bottom: 14px;
}
.mini-eng.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 102, 255, 0.1);
}
.mini-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.mini-av.a1 { background: rgba(91, 155, 255, 0.2); color: var(--blue-muted); }
.mini-av.a2 { background: rgba(16, 185, 129, 0.2); color: var(--success); }
.mini-av.a3 { background: rgba(245, 158, 11, 0.2); color: var(--warn); }
.mini-eng-info { flex: 1; }
.mini-eng-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
}
.mini-eng-role {
  font-size: 11px;
  color: var(--muted);
}
.mini-eng-rate {
  text-align: right;
  flex-shrink: 0;
}
.mini-eng-rate .rate {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-muted);
}
.mini-eng-rate .rate small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.mini-eng-rate .tier {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.shortlist-foot {
  padding: 14px;
  background: var(--blue);
  border-radius: 10px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 8px 24px var(--blue-glow);
}
.shortlist-foot-text {
  font-size: 13px;
  line-height: 1.3;
}
.shortlist-foot-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 1px;
}
.shortlist-foot-arrow {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* -- Ticker -- */
.ticker-wrap {
  padding: 28px 40px;
  background: var(--bg-deeper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ticker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  opacity: 0.6;
}
.ticker-item {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* -- Savings table -- */
.savings-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.savings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}
.savings-table th {
  text-align: left;
  padding: 16px 22px;
  background: var(--bg-base);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}
.savings-table th:last-child {
  background: var(--blue);
  color: white;
  text-align: right;
}
.savings-table td {
  padding: 16px 22px;
  font-size: 15px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
}
.savings-table tr:last-child td {
  border-bottom: none;
}
.savings-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--success);
  font-size: 16px;
}
.savings-table tr.you td {
  background: rgba(23, 102, 255, 0.08);
  font-weight: 600;
}
.savings-table tr.you td:first-child {
  color: var(--heading);
}
.savings-table .source {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.savings-table .source small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.savings-foot {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}
.savings-foot strong {
  color: var(--heading);
  font-weight: 600;
}

/* -- Engineer cards -- */
.engineers-head {
  max-width: 1200px;
  margin: 0 auto 36px;
  text-align: center;
}
.engineers-head h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 12px;
}
.engineers-head p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}
.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all 200ms ease;
}
.card:hover {
  border-color: rgba(23, 102, 255, 0.5);
  box-shadow: 0 0 24px rgba(23, 102, 255, 0.1);
  transform: translateY(-2px);
}
.card-tier {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  object-fit: cover;
}
.avatar.a1 { background: rgba(23, 102, 255, 0.12); color: var(--blue); }
.avatar.a2 { background: rgba(5, 150, 105, 0.12); color: var(--success); }
.avatar.a3 { background: rgba(180, 83, 9, 0.12); color: var(--warn); }
.card-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.card-role {
  font-size: 13px;
  color: var(--muted);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.tag {
  background: var(--bg-deeper);
  border: 1px solid var(--border);
  color: var(--body);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 5px;
}
.card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 14px;
}
.card-rate {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.card-rate small {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-status .pulse {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}
.card-cta {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 200ms ease;
}
.card-cta:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 20px var(--blue-glow);
}
.cards-note {
  max-width: 1200px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* -- Final CTA -- */
.final-cta {
  padding: 90px 40px;
  background: radial-gradient(ellipse at center, #E8EFFF 0%, var(--bg-base) 70%);
  text-align: center;
}
.final-cta h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 .blue {
  color: var(--blue);
}
.final-cta p {
  font-size: 18px;
  color: var(--body);
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.final-cta-foot {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.final-cta-foot .check {
  color: var(--success);
  font-weight: 700;
}
.final-cta-foot .sep {
  color: var(--border);
}

/* -- Bottom-of-page form variant (wider, two-column) -- */
.form-card-wide {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
}
.form-card-wide .form-card-h {
  font-size: 28px;
}
.form-card-wide .form-card-sub {
  font-size: 15px;
}


/* --------------------------------------------------------------------------
   11. PAGE 2: BOOKING
       Hero, booking grid, expect-card, savings-mini,
       cal-card, cal-embed, guarantee stack
   -------------------------------------------------------------------------- */

/* Page 2 hero overrides */
.page-booking .hero {
  padding: 50px 40px 32px;
  text-align: center;
}
.page-booking .hero h1 {
  font-size: 48px;
  line-height: 1.05;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}
.page-booking .hero p.lead {
  font-size: 17px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}
/* Page 2 overline (inline-block in hero context) */
.page-booking .hero .overline {
  display: inline-block;
  margin-bottom: 14px;
}

/* -- Booking grid -- */
.booking {
  padding: 40px 40px 80px;
  background: var(--bg-base);
}
.booking-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* -- Expect card (sidebar) -- */
.expect-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  position: sticky;
  top: 24px;
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
}
.expect-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.expect-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.expect-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.expect-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.expect-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.expect-check {
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.expect-item strong {
  display: block;
  font-size: 14px;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 2px;
}
.expect-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* -- Savings mini (inside expect card) -- */
.savings-mini {
  background: rgba(23, 102, 255, 0.08);
  border: 1px solid var(--blue-border);
  border-radius: 10px;
  padding: 14px;
}
.savings-mini-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.savings-mini-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.savings-mini-num .green {
  color: var(--success);
}
.savings-mini-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* -- Calendly card -- */
.cal-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
}
.cal-embed {
  width: 100%;
  height: 720px;
  border: none;
  border-radius: 10px;
  background: var(--bg-base);
}

/* -- Guarantee stack -- */
.guarantee-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.guarantee-tile {
  background: var(--bg-elevated);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 16px -4px rgba(15, 23, 42, 0.06);
}
.guarantee-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-text {
  flex: 1;
}
.guarantee-text strong {
  display: block;
  font-size: 15px;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 4px;
}
.guarantee-text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.guarantee-foot {
  max-width: 920px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
}
.guarantee-foot .sep {
  color: var(--border);
  margin: 0 10px;
}


/* --------------------------------------------------------------------------
   12. PAGE 3: CONFIRMATION
       Hero (green gradient), booking-info, cal-add, main grid,
       WhatsApp card, timeline, savings-card, prep-card
   -------------------------------------------------------------------------- */

/* Page 3 hero overrides -- green gradient */
.page-confirmation .hero {
  padding: 60px 40px 36px;
  text-align: center;
  background: radial-gradient(ellipse at top center, #E0F2EB 0%, var(--bg-base) 65%);
}
.page-confirmation .hero h1 {
  font-size: 50px;
  line-height: 1.05;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}
.page-confirmation .hero p.lead {
  font-size: 17px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 26px;
}

/* -- Hero check icon -- */
.hero-check {
  width: 56px;
  height: 56px;
  background: var(--success);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 0 32px rgba(16, 185, 129, 0.5);
}

/* -- Booking info bar -- */
.booking-info {
  display: inline-flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 24px;
  gap: 28px;
  align-items: center;
  box-shadow: 0 8px 16px -4px rgba(15, 23, 42, 0.06);
}
.info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.info-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}
.info-sep {
  width: 1px;
  height: 26px;
  background: var(--border);
}

/* -- Calendar add bar -- */
.cal-add {
  padding: 22px 40px;
  background: var(--bg-deeper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cal-add-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cal-add-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.cal-add-text p {
  font-size: 13px;
  color: var(--muted);
}
.cal-add-btns {
  display: flex;
  gap: 8px;
}
.cal-add-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--body);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
}
.cal-add-btn:hover {
  border-color: var(--blue);
  color: var(--heading);
}

/* -- Main section & grid -- */
.main {
  padding: 50px 40px 70px;
  background: var(--bg-base);
}
.main-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

/* -- Shared section headings inside main -- */
.sec-h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 10px;
}
.sec-sub {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* -- WhatsApp card -- */
.wa-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(5, 150, 105, 0.3);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
}
.wa-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}
.wa-overline {
  color: var(--success) !important;
}
.wa-num-box {
  background: var(--bg-base);
  border: 1px dashed rgba(16, 185, 129, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
}
.wa-num {
  font-size: 22px;
  color: var(--heading);
  letter-spacing: -0.01em;
  font-weight: 700;
}
.wa-copy-btn {
  background: var(--success);
  color: white;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.wa-foot {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.wa-foot strong {
  color: var(--body);
}

/* -- Timeline -- */
.timeline {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
}
.timeline-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.timeline-item:first-child {
  padding-top: 0;
}
.timeline-num {
  width: 28px;
  height: 28px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  color: var(--blue-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.timeline-content {
  flex: 1;
}
.timeline-time {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.timeline-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* -- Right stack -- */
.right-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -- Savings card -- */
.savings-card {
  background: linear-gradient(135deg, rgba(23, 102, 255, 0.10) 0%, rgba(23, 102, 255, 0.03) 100%);
  border: 1px solid var(--blue-border);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 12px 24px -8px rgba(23, 102, 255, 0.08), 0 4px 8px -2px rgba(23, 102, 255, 0.04);
}
.savings-overline {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.savings-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.savings-card h3 .green {
  color: var(--success);
}
.savings-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* -- Prep card -- */
.prep-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
}
.prep-overline {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.prep-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.prep-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.prep-list {
  list-style: none;
}
.prep-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.prep-list li:first-child {
  border-top: none;
  padding-top: 0;
}
.prep-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}


/* --------------------------------------------------------------------------
   13. RESPONSIVE
   -------------------------------------------------------------------------- */

/* -- 900px -- */
@media (max-width: 900px) {

  /* Page 1: hero grid -> single column, centered text */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-center h1 {
    font-size: 40px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-trust-row {
    justify-content: center;
  }

  /* Page 1: engineer cards -> single column */
  .cards {
    grid-template-columns: 1fr;
  }

  /* Page 1: savings table -> smaller font */
  .savings-table th,
  .savings-table td {
    font-size: 13px;
    padding: 12px 14px;
  }
  .savings-table td:last-child {
    font-size: 14px;
  }

  /* Page 1: form rows -> single column */
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  /* Page 2: booking grid -> single column, sidebar above cal */
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .expect-card {
    position: static;
  }

  /* Page 2: guarantee grid -> single column */
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  /* Page 3: main grid -> single column */
  .main-grid {
    grid-template-columns: 1fr;
  }

  /* Page 3: cal-add -> stack vertically, center */
  .cal-add-wrap {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cal-add-btns {
    justify-content: center;
  }

  /* Section head sizing */
  .section-head h2 {
    font-size: 36px;
  }
  .engineers-head h2 {
    font-size: 34px;
  }
  .final-cta h2 {
    font-size: 36px;
  }
}

/* -- 700px -- */
@media (max-width: 700px) {

  /* Section padding reduction */
  .section {
    padding: 50px 20px;
  }
  .final-cta {
    padding: 50px 20px;
  }

  /* Heading sizes */
  .hero h1,
  .hero-center h1 {
    font-size: 32px;
  }
  .page-booking .hero h1 {
    font-size: 32px;
  }
  .page-confirmation .hero h1 {
    font-size: 32px;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .engineers-head h2 {
    font-size: 28px;
  }
  .final-cta h2 {
    font-size: 28px;
  }

  /* Remove <br> in headings so text flows naturally on mobile */
  .hero h1 br,
  .final-cta h2 br {
    display: none;
  }

  /* Hero padding */
  .hero {
    padding: 40px 20px;
  }
  .page-booking .hero {
    padding: 36px 20px 24px;
  }
  .page-confirmation .hero {
    padding: 40px 20px 28px;
  }

  /* Nav: shrink CTA button on mobile */
  .nav-inner {
    padding: 0 20px;
  }
  .nav-inner .btn-primary {
    font-size: 12px;
    padding: 8px 14px;
    white-space: nowrap;
  }
  .logo img {
    height: 22px;
  }

  /* Nav trust badges (Page 2) -- simplify */
  .nav-trust {
    font-size: 11px;
    gap: 8px;
  }
  .nav-trust .sep {
    display: none;
  }

  /* Booking info -> stack vertically */
  .booking-info {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    align-items: flex-start;
  }
  .info-sep {
    display: none;
  }

  /* Ticker */
  .ticker {
    flex-wrap: wrap;
    gap: 24px;
  }

  /* Shortlist ribbon -- hide if space tight */
  .shortlist-ribbon {
    display: none;
  }

  /* Scarcity bar */
  .scarcity-bar {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* Savings table -- horizontal scroll on mobile */
  .savings-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .savings-table {
    min-width: 560px;
  }

  /* Hero lead text */
  .hero .lead {
    font-size: 16px;
  }

  /* Hero trust row */
  .hero-trust-row {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  /* Booking section padding */
  .booking {
    padding: 30px 20px 50px;
  }

  /* Footer padding */
  .footer {
    padding: 20px 20px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Cal-add */
  .cal-add {
    padding: 18px 20px;
  }
  .cal-add-btns {
    flex-wrap: wrap;
  }

  /* Main section */
  .main {
    padding: 36px 20px 50px;
  }

  /* WhatsApp number box */
  .wa-num-box {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    text-align: center;
  }
}

/* -- 500px -- */
@media (max-width: 500px) {

  /* Further padding reduction */
  .section {
    padding: 40px 16px;
  }
  .final-cta {
    padding: 40px 16px;
  }
  .hero {
    padding: 32px 16px;
  }
  .page-booking .hero {
    padding: 28px 16px 20px;
  }
  .page-confirmation .hero {
    padding: 32px 16px 24px;
  }

  /* Heading sizes */
  .hero h1,
  .hero-center h1 {
    font-size: 26px;
  }
  .page-booking .hero h1 {
    font-size: 26px;
  }
  .page-confirmation .hero h1 {
    font-size: 26px;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .engineers-head h2 {
    font-size: 24px;
  }
  .final-cta h2 {
    font-size: 24px;
  }
  .sec-h2 {
    font-size: 22px;
  }

  /* Form card padding */
  .form-card {
    padding: 20px;
  }
  .form-card-wide {
    padding: 20px;
  }

  /* WhatsApp number */
  .wa-num {
    font-size: 18px;
  }

  /* Nav */
  .nav {
    height: 56px;
  }
  .nav-inner {
    padding: 0 16px;
  }
  .nav-inner .btn-primary {
    font-size: 11px;
    padding: 7px 12px;
  }
  .logo img {
    height: 20px;
  }
  .nav-trust {
    display: none;
  }
  .nav-status {
    font-size: 11px;
  }

  /* Savings table */
  .savings-table th,
  .savings-table td {
    font-size: 12px;
    padding: 10px 10px;
  }
  .savings-table td:last-child {
    font-size: 13px;
  }

  /* Ticker */
  .ticker {
    gap: 16px;
  }
  .ticker-item {
    font-size: 14px;
  }
  .ticker-wrap {
    padding: 20px 16px;
  }

  /* Booking */
  .booking {
    padding: 24px 16px 40px;
  }

  /* Scarcity */
  .scarcity-bar {
    padding: 8px 16px;
    font-size: 11px;
    line-height: 1.4;
  }

  /* Ticker label */
  .ticker-label {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  /* Hero check (Page 3) */
  .hero-check {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  /* Pill */
  .pill {
    font-size: 9px;
    padding: 4px 10px;
    gap: 6px;
  }

  /* Cal embed height */
  .cal-embed {
    height: 560px;
  }

  /* Shortlist */
  .shortlist {
    padding: 16px;
  }

  /* Expect card */
  .expect-card {
    padding: 20px;
  }

  /* Main */
  .main {
    padding: 28px 16px 40px;
  }

  /* Footer */
  .footer {
    padding: 16px 16px;
  }

  /* Cal add */
  .cal-add {
    padding: 14px 16px;
  }

  /* Guarantee tile */
  .guarantee-tile {
    padding: 16px;
  }

  /* All single column -- enforce */
  .hero-grid,
  .booking-grid,
  .main-grid,
  .cards,
  .guarantee-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  /* btn-xl size down */
  .btn-xl {
    font-size: 15px;
    padding: 14px 28px;
  }

  /* Lead text */
  .hero .lead {
    font-size: 16px;
  }

  /* Pill */
  .pill {
    font-size: 10px;
    padding: 4px 12px;
  }

  /* Savings card */
  .savings-card {
    padding: 20px;
  }
  .savings-card h3 {
    font-size: 24px;
  }

  /* Prep card */
  .prep-card {
    padding: 18px;
  }

  /* Timeline */
  .timeline {
    padding: 18px;
  }

  /* Booking info */
  .booking-info {
    padding: 12px 16px;
    gap: 10px;
  }

  /* Final CTA foot */
  .final-cta-foot {
    flex-direction: column;
    gap: 8px;
  }
  .final-cta-foot .sep {
    display: none;
  }
}
