/* =============================================================
   AIRBIK — home.css  |  Brand theme: #e84c3d
   ============================================================= */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand palette */
  --ab-red:        #e84c3d;
  --ab-red-dk:     #c73426;
  --ab-red-lt:     #fdf2f1;
  --ab-red-pale:   #fce8e6;

  /* Neutrals */
  --ab-dark:       #1c1c2e;   /* near-black for headings        */
  --ab-body:       #333340;   /* comfortable body text          */
  --ab-muted:      #757585;   /* secondary / caption text       */
  --ab-border:     #e8e8ee;
  --ab-bg-off:     #f7f7fa;   /* light section alternate        */
  --ab-bg-cream:   #fdf8f7;   /* warm off-white for FAQ band    */
  --ab-white:      #ffffff;

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Radii */
  --radius-xl:  24px;
  --radius-lg:  16px;
  --radius-md:  12px;
  --radius-sm:   8px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.12);
  --shadow-red:  0 8px 28px rgba(232,76,61,.30);

  /* Type scale */
  --fs-xs-pill: 1.2rem;
  --fs-xs:   1.5rem;   /* 14px  — footnotes only          */
  --fs-sm:   1.5rem;       /* 16px  — labels, pills           */
  --fs-body: 1.0625rem;  /* 17px  — all paragraph / list    */
  --fs-md:   1.5rem;    /* 18px  — lead, buttons, tabs     */
  --fs-lg:   2rem;     /* 21px  — card headings           */
  --fs-xl:   2.5rem;    /* 25px  — section sub-heads       */
  --fs-2xl:  clamp(1.75rem, 2.8vw, 2.5rem);   /* section titles  */
  --fs-3xl:  clamp(2.4rem,  5vw,   4.2rem);   /* hero headline   */
}

/* ── BASE ───────────────────────────────────────────────────── */
.ab-page * { box-sizing: border-box; }
.ab-page {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ab-body);
  line-height: 1.65;
}

/* ── TYPEAHEAD (existing behaviour preserved) ──────────────── */
.homeSearch {
  background-color: var(--ab-white);
  border-radius: var(--radius-md);
  border: 2px solid var(--ab-border);
  padding: 4px;
}
.homeSearch .twitter-typeahead { width: 100%; }
.homeSearch .tt-menu {
  background-color: var(--ab-white);
  width: 100%;
  border: 1px solid var(--ab-border);
  border-radius: var(--radius-md);
  margin-top: 4px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.homeSearch .tt-suggestion {
  padding: 11px 16px;
  font-size: var(--fs-body);
  cursor: pointer;
}
.homeSearch .tt-suggestion:hover { background-color: var(--ab-red-lt); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.ab-hero {
  background: var(--ab-red);
  /* Rich layered gradient so it's not a flat red slab */
  background: linear-gradient(135deg, #c73426 0%, #e84c3d 45%, #f0614e 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
}

/* Subtle halftone-dot overlay for texture */
.ab-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Warm glow in bottom-right corner */
.ab-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,150,.18) 0%, transparent 65%);
  bottom: -180px; right: -100px;
  pointer-events: none;
}

.ab-hero .container { position: relative; z-index: 2; }

.ab-hero__grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

/* Eyebrow pill */
.ab-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: var(--fs-xs-pill);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 10px;
}
.ab-hero__eyebrow i { font-size: .85em; opacity: .9; }

/* Headline */
.ab-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
/* Italic "anything" — Fraunces has a beautiful italic */
.ab-hero__title em {
  font-style: italic;
  opacity: .92;
}

.ab-hero__subtitle {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin: 0 0 10px;
  max-width: 520px;
}

/* Trust pills */
.ab-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ab-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 40px;
}
.ab-trust-pill i { font-size: var(--fs-xs); }

/* ═══════════════════════════════════════════════════════════
   SEARCH CARD  (hero right column)
   ═══════════════════════════════════════════════════════════ */
.ab-search-card {
  background: var(--ab-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px 36px;
  box-shadow: 0 32px 64px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}

/* Red accent bar at top of card */
.ab-search-card::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 4px;
  background: var(--ab-red);
  border-radius: 0 0 4px 4px;
}

.ab-search-card__label {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ab-dark);
  margin-bottom: 6px;
  margin-top: 8px;
}
.ab-search-card__sub {
  font-size: var(--fs-xs);
  color: var(--ab-muted);
  margin-bottom: 20px;
}

/* Input */
.ab-search-card .form-control {
  border: 2px solid var(--ab-border);
  border-radius: var(--radius-md);
  height: 56px;
  font-size: var(--fs-body);
  padding: 0 18px;
  font-family: var(--font-body);
  color: var(--ab-dark);
  transition: border-color .2s, box-shadow .2s;
  box-shadow: none;
  width: 100%;
}
.ab-search-card .form-control:focus {
  border-color: var(--ab-red);
  box-shadow: 0 0 0 3px rgba(232,76,61,.12);
  outline: none;
}
.ab-search-card .form-group { margin-bottom: 0; }

/* Primary button */
.ab-btn-primary {
  display: block;
  width: 100%;
  background: var(--ab-red);
  color: #fff;
  border: none;
  height: 56px;
  border-radius: var(--radius-md);
  font-size: var(--fs-md);
  font-weight: 700;
  font-family: var(--font-body);
  margin-top: 14px;
  cursor: pointer;
  letter-spacing: .01em;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.ab-btn-primary:hover {
  background: var(--ab-red-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* Divider */
.ab-sc-divider {
  text-align: center;
  color: var(--ab-muted);
  font-size: var(--fs-xs);
  margin: 10px 0;
  position: relative;
}
.ab-sc-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--ab-border);
}
.ab-sc-divider span {
  position: relative;
  background: var(--ab-white);
  padding: 0 12px;
}

/* Ghost button */
.ab-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  background: transparent;
  border: 2px solid var(--ab-dark);
  border-radius: var(--radius-md);
  color: var(--ab-dark);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.ab-btn-ghost:hover,
.ab-btn-ghost:focus {
  background: var(--ab-dark);
  color: #fff;
  text-decoration: none;
}

.ab-search-card__footnote {
  text-align: center;
  margin: 16px 0 0;
  font-size: var(--fs-xs);
  color: var(--ab-muted);
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════ */
.ab-section        { padding: 30px 0; }
.ab-section--gray  { background: var(--ab-bg-off); }
.ab-section--cream { background: var(--ab-bg-cream); }

.ab-section-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--ab-dark);
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}

/* Red underline accent on section titles */
.ab-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--ab-red);
  border-radius: 4px;
  margin: 14px auto 0;
}

.ab-section-sub {
  text-align: center;
  color: var(--ab-muted);
  font-size: var(--fs-xs);	
  max-width: 600px;
  margin: 0px 0px 30px 0px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   RENTER / LISTER TABS  (Segmented control like Discover/Podcast)
   ═══════════════════════════════════════════════════════════ */

.ab-tabs-wrap .nav-tabs{
  /* track */
  border: 1px solid rgba(28,28,46,.12);
  background: rgba(28,28,46,.06);
  border-radius: 999px;
  padding: 6px;
  margin: 0 auto 40px;
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 760px;

  /* remove bootstrap tab line */
  border-bottom: none;

  /* soft “inset” feel */
  box-shadow: inset 0 2px 6px rgba(0,0,0,.08);
}

.ab-tabs-wrap .nav-tabs > li{
  flex: 1 1 0;
  margin: 0;
}

.ab-tabs-wrap .nav-tabs > li > a{
  /* button */
  border: none !important;
  margin: 0 !important;
  border-radius: 999px;
  padding: 14px 16px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-md);

  color: var(--ab-muted);
  background: transparent;

  transition: background .18s, color .18s, box-shadow .18s, transform .18s;
}

.ab-tabs-wrap .nav-tabs > li > a i{
  opacity: .85;
}

.ab-tabs-wrap .nav-tabs > li > a:hover,
.ab-tabs-wrap .nav-tabs > li > a:focus{
  color: var(--ab-dark);
  background: rgba(255,255,255,.55);
  outline: none;
}

/* Active = raised pill */
.ab-tabs-wrap .nav-tabs > li.active > a,
.ab-tabs-wrap .nav-tabs > li.active > a:hover,
.ab-tabs-wrap .nav-tabs > li.active > a:focus{
  background: var(--ab-white);
  color: var(--ab-dark);

  /* “lift” */
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  transform: translateY(-1px);

  /* tiny brand hint */
  border: 1px solid rgba(232,76,61,.20) !important;
}

.ab-tabs-wrap .nav-tabs > li.active > a i{
  color: var(--ab-red);
  opacity: 1;
}

/* Mobile tuning */
@media (max-width: 767px){
  .ab-tabs-wrap .nav-tabs{
    max-width: 100%;
    padding: 6px;
  }
  .ab-tabs-wrap .nav-tabs > li > a{
    padding: 12px 12px;
    font-size: 1rem;
    gap: 8px;
  }
}

/* ============================================================
   TAB CONTENT FORMATTING (restore: red check bullets + big CTA)
   Keep this even if you use segmented-control tabs above
   ============================================================ */

.ab-tabs-wrap .tab-content{
  padding: 36px 40px 40px;
  border-top: 1px solid var(--ab-border);
}

/* left accent stripe + spacing */
.ab-tab-body{
  border-left: 3px solid var(--ab-red);
  padding-left: 28px;
}

/* heading */
.ab-tab-body h2{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--ab-dark);
  margin: 0 0 24px;
  line-height: 1.25;
}

/* list becomes “rows” with red check icon */
.ab-tab-body ul{
  list-style: none !important;
  padding: 0;
  margin: 0 0 32px;
}

.ab-tab-body ul li{
  list-style: none !important;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--ab-border);
  font-size: 14px;
  color: var(--ab-body);
  line-height: 1.6;
}

.ab-tab-body ul li:last-child{ border-bottom: none; }

.ab-tab-body ul li::before{
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--ab-red)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M7.5 13.5L4 10l1.4-1.4 2.1 2.1 5.1-5.1L14 7z'/%3E%3C/svg%3E")
    center/cover;
}

/* CTA becomes a real button again */
.ab-tab-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ab-red);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.ab-tab-cta i{ color: inherit; }

.ab-tab-cta:hover,
.ab-tab-cta:focus{
  background: var(--ab-red-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* Mobile polish */
@media (max-width: 600px){
  .ab-tabs-wrap .tab-content{ padding: 24px 20px 28px; }
  .ab-tab-body{ padding-left: 18px; }
  .ab-tab-body h2{ font-size: 1.25rem; margin-bottom: 18px; }
  .ab-tab-body ul li{ font-size: 13px; padding: 11px 0; }

  /* big full-width button like your good screenshot */
  .ab-tab-cta{
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    font-size: 14px;
  }
}
/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — 3-STEP CARDS
   ═══════════════════════════════════════════════════════════ */
.ab-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.ab-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% - 12px);
  right: calc(33.33% - 12px);
  height: 2px;
  background: linear-gradient(90deg, #fce8e6, var(--ab-red), #fce8e6);
  border-radius: 2px;
  z-index: 0;
}

.ab-step {
  background: var(--ab-white);
  border-radius: var(--radius-lg);
  padding: 10px 10px 10px 10px;
  border: 1.5px solid var(--ab-border);
  position: relative; z-index: 1;
  text-align: center;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ab-step:hover {
  border-color: var(--ab-red-pale);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.ab-step__num {
  width: 58px; height: 58px;
  margin: 0 auto 24px;
  background: var(--ab-red);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
}
.ab-step h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ab-dark);
  margin: 0 0 12px;
}
.ab-step p {
  font-size: var(--fs-xs);
  color: var(--ab-muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   USE CASES GRID
   ═══════════════════════════════════════════════════════════ */
.ab-uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ab-use-card {
  background: var(--ab-white);
  border-radius: var(--radius-lg);
  padding: 10px;
  border: 1.5px solid var(--ab-border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ab-use-card:hover {
  border-color: var(--ab-red);
  box-shadow: 0 8px 24px rgba(232,76,61,.10);
  transform: translateY(-4px);
}
.ab-use-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  background: var(--ab-red-lt);
  color: var(--ab-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background .2s, color .2s;
}
.ab-use-card:hover .ab-use-icon {
  background: var(--ab-red);
  color: #fff;
}
.ab-use-card h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ab-dark);
  line-height: 1.3;
}
.ab-use-card p {
  font-size: var(--fs-xs);
  color: var(--ab-muted);
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.ab-faq { max-width: 740px; margin: 0 auto; }
.ab-faq-item { border-bottom: 1px solid var(--ab-border); }
.ab-faq-item:first-child { border-top: 1px solid var(--ab-border); }

.ab-faq-q {
  display: flex;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--ab-dark);
  user-select: none;
  line-height: 1.35;
  transition: color .2s;
}
.ab-faq-q:hover { color: var(--ab-red); }

.ab-faq-ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--ab-red-lt);
  color: var(--ab-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.ab-faq-chevron {
  margin-left: auto;
  color: var(--ab-muted);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .25s;
}
.ab-faq-item.ab-open .ab-faq-chevron { transform: rotate(180deg); }
.ab-faq-item.ab-open .ab-faq-q       { color: var(--ab-red); }
.ab-faq-item.ab-open .ab-faq-ico     { background: var(--ab-red); color: #fff; }

.ab-faq-a {
  font-size: var(--fs-xs);
  color: var(--ab-body);
  line-height: 1.8;
  padding: 0 0 24px 58px;
  display: none;
}
.ab-faq-item.ab-open .ab-faq-a { display: block; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA BAND
   ═══════════════════════════════════════════════════════════ */
.ab-cta-band {
  background: var(--ab-dark);
  border-radius: var(--radius-xl);
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Red glow blobs */
.ab-cta-band::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,76,61,.35) 0%, transparent 65%);
  top: -120px; right: -80px;
  pointer-events: none;
}
.ab-cta-band::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,76,61,.20) 0%, transparent 65%);
  bottom: -80px; left: -40px;
  pointer-events: none;
}

.ab-cta-band h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 700;
  margin: 0 0 18px;
  position: relative; z-index: 1;
  line-height: 1.2;
}
.ab-cta-band p {
  color: rgba(255,255,255,.70);
  font-size: var(--fs-xs);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 44px;
  position: relative; z-index: 1;
}
.ab-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.ab-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ab-red);
  color: #fff;
  padding: 17px 36px;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.ab-cta-primary:hover,
.ab-cta-primary:focus {
  background: var(--ab-red-dk);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.ab-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.40);
  padding: 17px 36px;
  border-radius: var(--radius-md);
  font-size: var(--fs-md);
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.ab-cta-outline:hover,
.ab-cta-outline:focus {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ab-hero__grid { grid-template-columns: 1fr 400px; gap: 48px; }
}

@media (max-width: 991px) {
  .ab-hero__grid     { grid-template-columns: 1fr; gap: 44px; }
  .ab-hero           { padding: 30px 0 30px; }
  .ab-hero__subtitle { max-width: 100%; }
  .ab-steps          { grid-template-columns: 1fr 1fr; }
  .ab-steps::before  { display: none; }
  .ab-uses           { grid-template-columns: 1fr 1fr; }
  .ab-cta-band       { padding: 60px 40px; }
  .ab-section        { padding: 30px 0; }
}

@media (max-width: 767px) {
  :root {
    --fs-body: 1rem;
    --fs-md:   1.075rem;
    --fs-lg:   2rem;
  }
  .ab-hero           { padding: 30px 0 30px; }
  .ab-hero__grid     { gap: 36px; }
  .ab-uses           { grid-template-columns: 1fr; }
  .ab-steps          { grid-template-columns: 1fr; }
  .ab-section        { padding: 30px 0; }
  .ab-section-sub    { margin-bottom: 30px; }
  .ab-cta-band       { padding: 48px 28px; border-radius: var(--radius-lg); }
  .ab-tabs-wrap .nav-tabs > li > a { padding: 13px 18px; font-size: 1rem; }
  .ab-tab-body h2    { font-size: 1.45rem; }
  .ab-faq-q          { font-size: var(--fs-sm); }
  .ab-faq-a          { padding-left: 0; }
  /* Mobile: How it works — number left, text right */
  .ab-step {
    text-align: left;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    row-gap: 2px;
    align-items: start;
  }

  .ab-step__num {
    margin: 0;               /* removes the auto-centering */
    grid-row: 1 / span 2;    /* lets the number span h3 + p */
  }

  .ab-step h3 { margin: 4px 0 6px; }
  .ab-step p  { margin: 0; }
}

@media (max-width: 480px) {
  .ab-search-card      { padding: 32px 22px 28px; }
  .ab-hero__eyebrow    { font-size: var(--fs-xs-pill); padding: 6px 13px; }
  .ab-cta-btns         { flex-direction: column; }
  .ab-cta-primary,
  .ab-cta-outline      { justify-content: center; width: 100%; }
  .ab-use-card 		   { flex-direction: row; }
}


/* ============================================================
   FIXES: remove extra red accent lines
   ============================================================ */

/* 1) Remove the INNER red stripe inside the tab content */
.ab-tabs-wrap .tab-content .ab-tab-body{
  border-left: none !important;
  /* keep spacing without the stripe */
  padding-left: 28px; /* change to 18px if you want it tighter */
}

/* 2) Remove the red vertical line on the LEFT of the active tab pill */
.ab-tabs-wrap .nav-tabs > li.active > a{
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* Safety: if a pseudo-element is drawing that red marker/divider */
.ab-tabs-wrap .nav-tabs > li > a::before,
.ab-tabs-wrap .nav-tabs > li > a::after{
  content: none !important;
  display: none !important;
}

.ab-tabs-wrap .nav-tabs > li.active > a{
  border: 0 !important;
}