/* =========================================================
   FABXO — Homepage theme
   Layered on top of Bootstrap 5.3
   ========================================================= */

/* ---------- Design tokens (from fabxo-design-tokens.css) ---------- */
:root {
  --fabxo-navy: #0B2341;
  --fabxo-navy-deep: #07182E;
  --fabxo-aqua: #19C7D4;
  --fabxo-aqua-bright: #43D6E0;
  --fabxo-ice: #EAFBFD;
  --fabxo-aqua-soft: #CFF6F8;
  --fabxo-white: #FFFFFF;
  --fabxo-text: #334155;
  --fabxo-muted: #64748B;
  --fabxo-border: #DDEBF0;
  --fabxo-success: #20B486;
  --fabxo-warm: #FFB547;
  --fabxo-gradient: linear-gradient(135deg, #19C7D4 0%, #43D6E0 100%);
  --fabxo-font-heading: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  --fabxo-font-body: Inter, Arial, sans-serif;
  --fabxo-radius-card: 24px;
  --fabxo-radius-button: 999px;
  --fabxo-shadow-card: 0 18px 50px rgba(11, 35, 65, 0.10);

  /* Bootstrap overrides */
  --bs-body-font-family: var(--fabxo-font-body);
  --bs-body-color: var(--fabxo-text);
  --bs-body-bg: var(--fabxo-white);
  --bs-primary: var(--fabxo-aqua);
  --bs-link-color: var(--fabxo-aqua);
  --bs-link-hover-color: var(--fabxo-navy);
  --bs-border-color: var(--fabxo-border);
}

/* ---------- Base ---------- */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--fabxo-font-body);
  color: var(--fabxo-text);
  background: var(--fabxo-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo__word { font-family: var(--fabxo-font-heading); color: var(--fabxo-navy); }

img, picture, svg { max-width: 100%; }
img { height: auto; display: block; }

a { text-decoration: none; }

::selection { background: var(--fabxo-aqua-soft); color: var(--fabxo-navy); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--fabxo-navy); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--fabxo-aqua); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { max-width: 1240px; padding-left: 20px; padding-right: 20px; }

/* Bootstrap rows use negative margins; combined with the page's
   overflow-x:hidden this can add a few px of scroll width at some
   breakpoints. Constrain rows to their container. */
.row { --bs-gutter-x: 1.5rem; margin-left: calc(var(--bs-gutter-x) * -.5); margin-right: calc(var(--bs-gutter-x) * -.5); }
.container > .row { max-width: 100%; }

.visually-hidden-svg { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Sections stack, so top+bottom padding doubles up at every seam.
   Keep each side modest to avoid large white gaps between sections. */
.section { padding: 44px 0; position: relative; }
.section--tight { padding: 20px 0; }

/* ---------- Shared typography ---------- */
.eyebrow {
  text-align: center;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fabxo-aqua);
  margin: 0 0 10px;
}
.eyebrow--left { text-align: left; }

.section__title {
  text-align: center;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 36px;
}
.section__title--left { text-align: left; margin-bottom: 26px; }

.pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--fabxo-aqua-soft);
  border-radius: var(--fabxo-radius-button);
  background: #fff;
  color: var(--fabxo-aqua);
  font-size: 13px; font-weight: 600;
}

/* ---------- Icons ---------- */
.ico { width: 20px; height: 20px; flex: none; }
.ico--xs { width: 16px; height: 16px; }
.ico--lg { width: 30px; height: 30px; }
.ico--star { color: var(--fabxo-warm); width: 17px; height: 17px; }

/* ---------- Buttons ---------- */
.btn {
  --bs-btn-focus-box-shadow: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--fabxo-font-heading);
  font-size: 15px; font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--fabxo-radius-button);
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }

.btn--primary { background: var(--fabxo-aqua); color: #fff; box-shadow: 0 10px 24px rgba(25,199,212,.28); }
.btn--primary:hover, .btn--primary:focus { background: var(--fabxo-aqua-bright); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(25,199,212,.36); }

.btn--outline { background: #fff; color: var(--fabxo-navy); border-color: var(--fabxo-aqua); }
.btn--outline:hover, .btn--outline:focus { background: var(--fabxo-ice); color: var(--fabxo-navy); border-color: var(--fabxo-aqua); transform: translateY(-2px); }

.btn--ghost { background: #fff; color: var(--fabxo-navy); border-color: var(--fabxo-border); }
.btn--ghost:hover, .btn--ghost:focus { border-color: var(--fabxo-aqua); color: var(--fabxo-navy); }

.btn--navy { background: var(--fabxo-navy); color: #fff; }
.btn--navy:hover, .btn--navy:focus { background: var(--fabxo-navy-deep); color: #fff; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--fabxo-aqua); font-size: 13px; font-weight: 600;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { color: var(--fabxo-navy); gap: 10px; }

/* ---------- Announcement bar ---------- */
.announcebar {
  background: var(--fabxo-navy);
  color: #E4F3F8;
  font-size: 13px;
  padding: 9px 0;
}
.announcebar__msg,
.announcebar__help { display: inline-flex; align-items: center; gap: 8px; }
.announcebar .ico { width: 16px; height: 16px; color: var(--fabxo-aqua); }

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--fabxo-border);
  z-index: 1030;
}
.header.is-stuck { box-shadow: 0 8px 28px rgba(11,35,65,.08); }
.header .navbar { min-height: 76px; }

.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo img { height: 38px; width: auto; display: block; }
.footer .logo img { height: 40px; }

/* nav links */
.nav-main { gap: 4px; }
.nav-main .nav-link {
  font-size: 15px; font-weight: 500;
  color: var(--fabxo-navy);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.nav-main .nav-link:hover,
.nav-main .nav-link:focus,
.nav-main .nav-link.active,
.nav-main .show > .nav-link { color: var(--fabxo-aqua); background: transparent; }

.fabxo-dropdown {
  border: 1px solid var(--fabxo-border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--fabxo-shadow-card);
  min-width: 220px;
  margin-top: 8px;
}
.fabxo-dropdown .dropdown-item {
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 14.5px;
  color: var(--fabxo-text);
}
.fabxo-dropdown .dropdown-item:hover,
.fabxo-dropdown .dropdown-item:focus { background: var(--fabxo-ice); color: var(--fabxo-navy); }

/* hamburger */
.navtoggle { width: 44px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.navtoggle:focus { box-shadow: none; }
.navtoggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--fabxo-navy); margin: 0 auto; transition: .25s ease; }

/* offcanvas mobile menu */
.fabxo-offcanvas { width: min(320px, 86vw); border-left: 0; }
.fabxo-offcanvas .offcanvas-header { border-bottom: 1px solid var(--fabxo-border); padding: 18px 22px; }
.fabxo-offcanvas .offcanvas-body { padding: 22px; }

@media (max-width: 991.98px) {
  .fabxo-offcanvas .nav-main .nav-link { padding: 12px 4px; font-size: 16px; border-bottom: 1px solid var(--fabxo-border); border-radius: 0; }
  .fabxo-offcanvas .fabxo-dropdown { box-shadow: none; border: 0; background: var(--fabxo-ice); border-radius: 12px; }
  .fabxo-offcanvas .btn { width: 100%; }
}
@media (min-width: 992px) {
  .fabxo-offcanvas { position: static; transform: none !important; visibility: visible !important; background: transparent; width: auto; flex-grow: 1; }
  .fabxo-offcanvas .offcanvas-header { display: none; }
  .fabxo-offcanvas .offcanvas-body { padding: 0; display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 40px 0 0;
  background: linear-gradient(180deg, #fff 0%, #F6FDFE 60%, #fff 100%);
  overflow: hidden;
}
.hero__bubbles {
  position: absolute; left: -60px; top: 18%;
  width: 320px; opacity: .55; pointer-events: none;
}
.hero__copy { position: relative; z-index: 2; }

.hero__title {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 22px 0 18px;
}
.hero__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--fabxo-muted);
  max-width: 460px;
  margin: 0 0 26px;
}
.hero__cta { margin-bottom: 22px; }

.rating { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fabxo-muted); margin: 0; flex-wrap: wrap; }
.rating strong { color: var(--fabxo-navy); font-family: var(--fabxo-font-heading); font-size: 17px; font-weight: 800; }

/* hero media — the supplied PNG already carries the blob shape,
   the aqua outline and the "Pickup in 60 minutes" badge. */
.hero__media { position: relative; }
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 46px rgba(11,35,65,.14));
}

/* trust strip */
.trustbar {
  margin: 40px 0 0;
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(11,35,65,.06);
  padding: 22px 10px;
  position: relative; z-index: 2;
}
.trustbar__item {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 16px;
  color: var(--fabxo-aqua);
}
.trustbar__item span { display: flex; flex-direction: column; font-size: 13.5px; color: var(--fabxo-muted); line-height: 1.35; }
.trustbar__item strong { font-family: var(--fabxo-font-heading); font-size: 15px; font-weight: 700; color: var(--fabxo-navy); }

@media (min-width: 992px) {
  .trustbar__item { border-right: 1px solid var(--fabxo-border); }
  .trustbar > .row > div:last-child .trustbar__item,
  .trustbar__item:last-child { border-right: 0; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: #fff; }

.scard {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: var(--fabxo-radius-card);
  padding-bottom: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--fabxo-shadow-card); border-color: var(--fabxo-aqua-soft); }

.scard__thumb {
  aspect-ratio: 1 / 1;
  background: var(--fabxo-ice);
  overflow: hidden;
}
.scard__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.scard:hover .scard__thumb img { transform: scale(1.06); }

.scard__icon {
  width: 46px; height: 46px;
  margin: -23px auto 12px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--fabxo-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fabxo-aqua);
  position: relative; z-index: 2;
  box-shadow: 0 6px 16px rgba(11,35,65,.08);
}
.scard__icon svg { width: 23px; height: 23px; }

.scard__title {
  font-size: 15px; font-weight: 700;
  margin: 0 10px 10px;
  min-height: 40px;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { padding-top: 0; }
.how__panel {
  background: var(--fabxo-ice);
  border-radius: 28px;
  padding: 48px 28px 44px;
}
.how__panel .section__title { margin-bottom: 36px; }

.steps { position: relative; }
.step { text-align: center; position: relative; }

/* connector dots between steps (desktop) */
@media (min-width: 992px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px; left: calc(50% + 48px); right: calc(-50% + 48px);
    border-top: 2px dashed #B9DDE4;
  }
}

.step__circle {
  width: 76px; height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--fabxo-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fabxo-aqua);
  position: relative;
  box-shadow: 0 10px 24px rgba(11,35,65,.07);
  z-index: 2;
}
.step__num {
  position: absolute; top: -8px; left: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--fabxo-aqua);
  color: #fff;
  font-family: var(--fabxo-font-heading);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step__title { font-size: 15.5px; font-weight: 700; margin: 0 0 6px; }
.step__text { font-size: 13.5px; color: var(--fabxo-muted); margin: 0; max-width: 210px; margin-inline: auto; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: #fff; }

.pcard {
  display: flex; flex-direction: column; align-items: center;
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: var(--fabxo-radius-card);
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--fabxo-shadow-card); }

.pcard--featured {
  border: 2px solid var(--fabxo-aqua);
  box-shadow: var(--fabxo-shadow-card);
}
@media (min-width: 992px) { .pcard--featured { padding-top: 44px; padding-bottom: 40px; } }

.pcard__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--fabxo-aqua);
  color: #fff;
  font-family: var(--fabxo-font-heading);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--fabxo-radius-button);
  white-space: nowrap;
}

.pcard__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--fabxo-ice);
  display: flex; align-items: center; justify-content: center;
  color: var(--fabxo-aqua);
  margin-bottom: 16px;
}
.pcard__icon svg { width: 30px; height: 30px; }

.pcard__title { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.pcard__from { font-size: 12.5px; color: var(--fabxo-muted); margin: 0 0 2px; }
.pcard__price {
  font-family: var(--fabxo-font-heading);
  font-size: clamp(28px, 3.4vw, 34px); font-weight: 800;
  color: var(--fabxo-navy);
  margin: 0 0 18px;
}
.pcard__price span { font-size: 15px; font-weight: 600; color: var(--fabxo-muted); }

.pcard__list { list-style: none; padding: 0; margin: 0; text-align: left; width: 100%; max-width: 230px; }
.pcard__list li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  color: var(--fabxo-muted);
  margin-bottom: 9px;
}
.pcard__list li::before {
  content: "";
  position: absolute; left: 4px; top: 7px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--fabxo-aqua);
  border-bottom: 2px solid var(--fabxo-aqua);
  transform: rotate(-45deg);
}

.pricing__foot { margin-top: 32px; }

/* =========================================================
   APP BANNER
   ========================================================= */
.appband {
  position: relative;
  background: var(--fabxo-navy);
  border-radius: 24px;
  padding: 40px 34px;
  overflow: hidden;
}
.appband__c1, .appband__c2 { position: absolute; border-radius: 50%; pointer-events: none; }
.appband__c1 { width: 190px; height: 190px; right: 40px; top: -50px; background: rgba(255,255,255,.05); }
.appband__c2 { width: 130px; height: 130px; right: 100px; bottom: -40px; background: rgba(25,199,212,.55); }

.appband__copy { position: relative; z-index: 2; }
.appband__title { color: #fff; font-size: clamp(22px, 3vw, 30px); font-weight: 800; line-height: 1.2; margin: 0 0 10px; }
.appband__text { color: rgba(255,255,255,.72); font-size: 14.5px; margin: 0 0 22px; }

.store {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  padding: 9px 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.store:hover { transform: translateY(-2px); border-color: var(--fabxo-aqua); color: #fff; }
.store__ico { width: 24px; height: 24px; flex: none; }
.store span { display: flex; flex-direction: column; line-height: 1.15; }
.store small { font-size: 9px; text-transform: uppercase; letter-spacing: .05em; opacity: .8; }
.store strong { font-family: var(--fabxo-font-heading); font-size: 14px; font-weight: 700; }

/* real app mockup — bleeds slightly past the band, as in the reference */
.appband__phones {
  position: relative;
  margin: -78px 0 -58px;
  text-align: center;
}
.appband__phones img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 26px 46px rgba(0,0,0,.42));
}

/* =========================================================
   WHY CHOOSE FABXO
   ========================================================= */
.why { background: #fff; }
.why__media { border-radius: var(--fabxo-radius-card); overflow: hidden; box-shadow: var(--fabxo-shadow-card); }
.why__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 55% 50%; }

.features { display: flex; flex-direction: column; gap: 18px; }
.feature { display: flex; align-items: flex-start; gap: 16px; }
.feature__icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--fabxo-ice);
  display: flex; align-items: center; justify-content: center;
  color: var(--fabxo-aqua);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title { font-size: 15.5px; font-weight: 700; margin: 0 0 3px; }
.feature__text { font-size: 13.5px; color: var(--fabxo-muted); margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: #fff; padding-top: 34px; }

.fabxo-carousel .carousel-inner { padding-bottom: 8px; }

.tcard {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: var(--fabxo-radius-card);
  padding: 24px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--fabxo-shadow-card); }

.tcard__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fabxo-font-heading);
  font-size: 17px; font-weight: 700; color: #fff;
}
.avatar--1 { background: linear-gradient(135deg, #F0A6A6, #E88686); }
.avatar--2 { background: linear-gradient(135deg, #6FA8DC, #4C86BE); }
.avatar--3 { background: linear-gradient(135deg, #A78BC4, #8B6BB1); }
.avatar--4 { background: linear-gradient(135deg, #19C7D4, #0FA3AF); }
.avatar--5 { background: linear-gradient(135deg, #F5B971, #E89A45); }
.avatar--6 { background: linear-gradient(135deg, #6BC59B, #45A87B); }

.stars { display: inline-flex; gap: 2px; color: var(--fabxo-warm); }
.stars svg { width: 15px; height: 15px; }

.tcard__quote { font-size: 13.5px; color: var(--fabxo-text); margin: 0 0 16px; flex: 1; }
.tcard__name { font-family: var(--fabxo-font-heading); font-size: 14px; font-weight: 700; color: var(--fabxo-navy); margin: 0; }
.tcard__city { font-size: 12.5px; color: var(--fabxo-muted); margin: 0; }

.fabxo-indicators { position: static; margin: 26px 0 0; }
.fabxo-indicators [data-bs-target] {
  width: 9px; height: 9px; border-radius: 50%;
  background: #CBE3EA; border: 0; opacity: 1;
  margin: 0 5px;
  transition: width .25s ease, background .25s ease;
}
.fabxo-indicators .active { width: 26px; border-radius: 6px; background: var(--fabxo-aqua); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: #fff; overflow: hidden; }
.faq__b1, .faq__b2 { position: absolute; border-radius: 50%; border: 2px solid rgba(25,199,212,.22); pointer-events: none; }
.faq__b1 { width: 120px; height: 120px; left: 3%; top: 30%; }
.faq__b2 { width: 74px; height: 74px; right: 6%; bottom: 22%; }

.fabxo-accordion { max-width: 780px; margin: 0 auto; }
.fabxo-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.fabxo-accordion .accordion-button {
  font-family: var(--fabxo-font-heading);
  font-size: 15px; font-weight: 600;
  color: var(--fabxo-navy);
  background: #fff;
  padding: 17px 22px;
  box-shadow: none;
}
.fabxo-accordion .accordion-button:not(.collapsed) { background: var(--fabxo-ice); color: var(--fabxo-navy); }
.fabxo-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }

/* replace bootstrap chevron with a + / − sign */
.fabxo-accordion .accordion-button::after {
  background-image: none;
  width: 18px; height: 18px;
  position: relative;
  flex: none;
  background:
    linear-gradient(var(--fabxo-aqua), var(--fabxo-aqua)) center/100% 2px no-repeat,
    linear-gradient(var(--fabxo-aqua), var(--fabxo-aqua)) center/2px 100% no-repeat;
  transition: transform .25s ease;
}
.fabxo-accordion .accordion-button:not(.collapsed)::after {
  background:
    linear-gradient(var(--fabxo-aqua), var(--fabxo-aqua)) center/100% 2px no-repeat;
  transform: rotate(180deg);
}

.fabxo-accordion .accordion-body {
  padding: 4px 22px 20px;
  font-size: 14px;
  color: var(--fabxo-muted);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.ctaband {
  position: relative;
  background: var(--fabxo-gradient);
  border-radius: 20px;
  padding: 28px 34px;
  overflow: hidden;
}
.ctaband__bubbles { position: absolute; left: 4%; top: -30%; width: 200px; opacity: .5; pointer-events: none; }
.ctaband__badge {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fabxo-aqua);
  position: relative; z-index: 2;
}
.ctaband__badge svg { width: 32px; height: 32px; }
.ctaband__copy { position: relative; z-index: 2; }
.ctaband__title { color: #fff; font-size: clamp(19px, 2.4vw, 25px); font-weight: 800; margin: 0 0 4px; }
.ctaband__text { color: rgba(255,255,255,.9); font-size: 14px; }
.ctaband .btn { position: relative; z-index: 2; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--fabxo-navy); color: rgba(255,255,255,.7); padding: 52px 0 0; }
.footer__grid { padding-bottom: 34px; }
.footer__about { font-size: 13.5px; color: rgba(255,255,255,.68); margin: 16px 0 20px; max-width: 300px; }

.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.socials svg { width: 17px; height: 17px; }
.socials a:hover { background: var(--fabxo-aqua); transform: translateY(-2px); }

.footer__head { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.footer__note { font-size: 13.5px; color: rgba(255,255,255,.68); margin: 0 0 14px; }
.footer__list { margin: 0; }
.footer__list li { margin-bottom: 10px; }
.footer__list a { font-size: 13.5px; color: rgba(255,255,255,.7); transition: color .2s ease; }
.footer__list a:hover { color: var(--fabxo-aqua); }
.footer__list--icons a { display: inline-flex; align-items: center; gap: 10px; }
.footer__list--icons .ico { width: 17px; height: 17px; color: var(--fabxo-aqua); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0 24px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.footer__legal { gap: 22px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.6); }
.footer__legal a:hover { color: var(--fabxo-aqua); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE REFINEMENTS
   ========================================================= */

/* Large desktops */
@media (min-width: 1400px) {
  .hero { padding-top: 70px; }
}

/* Tablet landscape and below */
@media (max-width: 1199.98px) {
  .appband__c1, .appband__c2 { display: none; }
}

@media (max-width: 991.98px) {
  .section { padding: 52px 0; }
  .hero { padding-top: 30px; }
  .hero__copy { text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .rating { justify-content: center; }
  .hero__bubbles { display: none; }
  .hero__media { max-width: 540px; margin: 0 auto; }

  .how__panel { padding: 40px 20px 34px; }
  .why__copy { text-align: left; }
  .why__media { max-width: 620px; margin: 0 auto; }

  .appband { padding: 34px 24px; text-align: center; }
  .appband__copy { text-align: center; }
  .appband__stores { justify-content: center; }
  .appband__phones { margin: -20px 0 14px; }
  .appband__phones img { max-width: 280px; }

  .ctaband { padding: 30px 24px; }
  .ctaband__badge { margin-bottom: 6px; }

  .footer { padding-top: 40px; }
  .footer__about { max-width: none; }
}

/* Tablet portrait / large phones */
@media (max-width: 767.98px) {
  .section { padding: 44px 0; }
  .section__title { margin-bottom: 28px; }

  .logo img { height: 34px; }
  .announcebar { font-size: 12px; text-align: center; }

  .trustbar { margin-top: 30px; padding: 10px 4px; border-radius: 18px; }
  .trustbar__item { padding: 12px 8px; gap: 10px; }
  .trustbar__item span { font-size: 12.5px; }
  .trustbar__item strong { font-size: 13.5px; }
  .trustbar .col-6:nth-child(odd) .trustbar__item { border-right: 1px solid var(--fabxo-border); }
  .trustbar .col-6:nth-child(-n+2) .trustbar__item { border-bottom: 1px solid var(--fabxo-border); }

  .step__text { max-width: none; }

  .why__media img { aspect-ratio: 16 / 10; }

  .footer__bottom { text-align: center; }
}

/* Phones */
@media (max-width: 575.98px) {
  body { font-size: 15px; }
  .container { padding-left: 16px; padding-right: 16px; }

  .section { padding: 40px 0; }
  .section--tight { padding: 20px 0; }

  .hero { padding-top: 24px; }
  .hero__title { margin: 16px 0 14px; }
  .hero__cta { gap: 10px !important; }
  .hero__cta .btn { flex: 1 1 100%; }

  .btn { padding: 13px 22px; font-size: 14px; }

  .scard { border-radius: 18px; }
  .scard__title { font-size: 13.5px; min-height: 36px; }
  .scard__icon { width: 40px; height: 40px; margin-top: -20px; }
  .scard__icon svg { width: 20px; height: 20px; }
  .link-arrow { font-size: 12px; }

  .how__panel { padding: 34px 14px 28px; border-radius: 22px; }
  .step__circle { width: 64px; height: 64px; }
  .step__circle .ico--lg { width: 26px; height: 26px; }
  .step__title { font-size: 14px; }
  .step__text { font-size: 12.5px; }

  .pcard { padding: 30px 20px 26px; }

  .appband { border-radius: 20px; padding: 30px 18px; }
  .appband__phones { margin: -12px 0 10px; }
  .appband__phones img { max-width: 226px; }
  .store { padding: 8px 13px; }

  .fabxo-accordion .accordion-button { font-size: 14px; padding: 15px 16px; }
  .fabxo-accordion .accordion-body { padding: 2px 16px 17px; font-size: 13.5px; }

  .ctaband { border-radius: 18px; padding: 26px 18px; }
  .ctaband .btn { width: 100%; }

  .faq__b1, .faq__b2 { display: none; }

  .footer { padding-top: 36px; }
  .footer__legal { gap: 16px; }
}

/* Very small phones */
@media (max-width: 359.98px) {
  .logo img { height: 30px; }
  .appband__stores { flex-direction: column; }
  .store { width: 100%; }
}

/* =========================================================
   INTERIOR PAGES
   ========================================================= */

/* ---------- Page hero ---------- */
.pagehero {
  position: relative;
  background: linear-gradient(180deg, #F6FDFE 0%, #fff 100%);
  border-bottom: 1px solid var(--fabxo-border);
  padding: 40px 0 48px;
  overflow: hidden;
  text-align: center;
}
.pagehero__bubbles { position: absolute; left: -70px; top: 10%; width: 260px; opacity: .5; pointer-events: none; }
.pagehero .eyebrow { margin-bottom: 8px; }
.pagehero__title {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  position: relative; z-index: 2;
}
.pagehero__lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--fabxo-muted);
  max-width: 680px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

/* breadcrumb */
.crumb { font-size: 13px; color: var(--fabxo-muted); margin-bottom: 14px; position: relative; z-index: 2; }
.crumb a { color: var(--fabxo-aqua); }
.crumb a:hover { color: var(--fabxo-navy); }
.crumb span { margin: 0 8px; }
.crumb span[aria-current] { margin: 0; color: var(--fabxo-navy); font-weight: 600; }

/* ---------- Large service cards (services index) ---------- */
.scard__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.scard__body { padding: 0 18px; display: flex; flex-direction: column; flex: 1; }
.scard--lg { padding-bottom: 20px; }
.scard--lg .scard__title { margin: 16px 0 8px; min-height: 0; font-size: 17px; }
.scard__blurb { font-size: 13.5px; color: var(--fabxo-muted); margin: 0 0 10px; flex: 1; }
.scard__price { font-size: 13.5px; color: var(--fabxo-muted); margin: 0 0 12px; }
.scard__price strong { font-family: var(--fabxo-font-heading); font-size: 18px; color: var(--fabxo-navy); }

/* ---------- Prose ---------- */
.prose { font-size: 15px; color: var(--fabxo-muted); margin: 0 0 14px; }
.prose a { color: var(--fabxo-aqua); }
.prose a:hover { color: var(--fabxo-navy); }

/* ---------- Info cards ---------- */
.infocard {
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: var(--fabxo-radius-card);
  padding: 26px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.infocard:hover { transform: translateY(-4px); box-shadow: var(--fabxo-shadow-card); }
.infocard .feature__icon { margin-bottom: 14px; }

/* ---------- Stats ---------- */
.statgrid { margin-top: 24px; }
.stat {
  background: var(--fabxo-ice);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--fabxo-font-heading);
  font-size: 22px; font-weight: 800;
  color: var(--fabxo-navy);
  line-height: 1.1;
}
.stat span { font-size: 12.5px; color: var(--fabxo-muted); }

/* ---------- Price box (service detail) ---------- */
.pricebox {
  display: inline-flex; flex-direction: column;
  background: var(--fabxo-ice);
  border-radius: 16px;
  padding: 14px 24px;
  margin-top: 22px;
}
.pricebox__label { font-size: 12.5px; color: var(--fabxo-muted); }
.pricebox__value {
  font-family: var(--fabxo-font-heading);
  font-size: 30px; font-weight: 800; color: var(--fabxo-navy); line-height: 1.1;
}
.pricebox__value span { font-size: 15px; font-weight: 600; color: var(--fabxo-muted); }

.pcard__list--wide { max-width: none; }

/* ---------- Price tables ---------- */
.ptable {
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: var(--fabxo-radius-card);
  padding: 22px 24px 12px;
  height: 100%;
}
.ptable__head { font-size: 16px; font-weight: 700; margin: 0 0 12px; }
.ptable table { --bs-table-bg: transparent; margin: 0; }
.ptable th {
  font-family: var(--fabxo-font-body);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--fabxo-muted);
  border-bottom: 1px solid var(--fabxo-border);
  padding: 8px 0;
}
.ptable td {
  font-size: 14px; color: var(--fabxo-text);
  border-bottom: 1px solid var(--fabxo-border);
  padding: 11px 0;
}
.ptable tr:last-child td { border-bottom: 0; }
.ptable .num { text-align: right; font-weight: 600; color: var(--fabxo-navy); white-space: nowrap; }

.pricing__note {
  font-size: 13.5px; color: var(--fabxo-muted);
  text-align: center;
  max-width: 760px;
  margin: 28px auto 0;
}
.pricing__note a { color: var(--fabxo-aqua); }

/* ---------- Job cards ---------- */
.jobcard {
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: var(--fabxo-radius-card);
  padding: 24px 24px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.jobcard:hover { transform: translateY(-4px); box-shadow: var(--fabxo-shadow-card); }
.jobcard__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.jobcard__title { font-size: 17px; font-weight: 700; margin: 0; }
.jobcard__tag {
  flex: none;
  background: var(--fabxo-ice);
  color: var(--fabxo-aqua);
  font-size: 11.5px; font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--fabxo-radius-button);
}
.jobcard__meta { font-size: 13px; color: var(--fabxo-muted); margin: 8px 0 10px; display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Forms ---------- */
.formcard, .contactcard, .authcard {
  background: #fff;
  border: 1px solid var(--fabxo-border);
  border-radius: var(--fabxo-radius-card);
  padding: 30px 28px;
}
.formcard__title, .contactcard__title { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.formcard__note { font-size: 13.5px; color: var(--fabxo-muted); margin: 0 0 22px; }
.opt { color: var(--fabxo-muted); font-weight: 400; }

.form-label { font-size: 13.5px; font-weight: 600; color: var(--fabxo-navy); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1px solid var(--fabxo-border);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--fabxo-text);
}
.form-control:focus, .form-select:focus {
  border-color: var(--fabxo-aqua);
  box-shadow: 0 0 0 3px rgba(25,199,212,.16);
}
.form-check-input:checked { background-color: var(--fabxo-aqua); border-color: var(--fabxo-aqua); }
.form-check-input:focus { border-color: var(--fabxo-aqua); box-shadow: 0 0 0 3px rgba(25,199,212,.16); }
.form-check-label { font-size: 14px; color: var(--fabxo-muted); }

.formcard__ok {
  background: rgba(32,180,134,.10);
  border: 1px solid rgba(32,180,134,.35);
  color: #16805F;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  margin: 0;
}

.contactlist { list-style: none; padding: 0; margin: 0; }
.contactlist li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--fabxo-border); }
.contactlist li:last-child { border-bottom: 0; }
.contactlist strong { display: block; font-family: var(--fabxo-font-heading); font-size: 14.5px; color: var(--fabxo-navy); }
.contactlist a, .contactlist span { font-size: 14px; color: var(--fabxo-muted); }
.contactlist a:hover { color: var(--fabxo-aqua); }

/* ---------- Auth ---------- */
.authwrap { background: linear-gradient(180deg, #F6FDFE 0%, #fff 100%); }
.authcard { max-width: 460px; margin: 0 auto; }
.authcard__title { font-size: 24px; font-weight: 800; margin: 0 0 6px; text-align: center; }
.authcard__sub { font-size: 14px; color: var(--fabxo-muted); margin: 0 0 24px; text-align: center; }
.authcard__link { font-size: 13.5px; color: var(--fabxo-aqua); }
.authcard__foot { font-size: 14px; color: var(--fabxo-muted); text-align: center; margin: 22px 0 0; }
.authcard__foot a { color: var(--fabxo-aqua); font-weight: 600; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal__updated { font-size: 13px; color: var(--fabxo-muted); margin: 0 0 26px; }
.legal__h { font-size: 19px; font-weight: 700; margin: 30px 0 10px; }
.legal__h:first-of-type { margin-top: 0; }

@media (max-width: 575.98px) {
  .pagehero { padding: 28px 0 34px; }
  .formcard, .contactcard, .authcard { padding: 24px 18px; }
  .ptable { padding: 18px 18px 8px; }
  .jobcard { padding: 20px 18px; }
  .jobcard__top { flex-direction: column; }
}

/* =========================================================
   PICKUP MODAL — compact
   ========================================================= */
.fabxo-modal .modal-dialog {
  max-width: 460px;          /* narrow, focused card */
}

.fabxo-modal .modal-content {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(11, 35, 65, .28);
  overflow: hidden;
}

/* Header: aqua gradient strip, no separate sub-line block */
.fabxo-modal .modal-header {
  align-items: center;
  gap: 12px;
  background: var(--fabxo-gradient);
  border-bottom: 0;
  padding: 16px 20px;
}
.fabxo-modal .modal-title {
  font-family: var(--fabxo-font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1px;
  line-height: 1.2;
}
.fabxo-modal .modal-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .88);
  margin: 0;
  line-height: 1.3;
}
.fabxo-modal .btn-close {
  margin: 0;
  flex: none;
  filter: invert(1) grayscale(1) brightness(2);
  opacity: .9;
}
.fabxo-modal .btn-close:hover { opacity: 1; }
.fabxo-modal .btn-close:focus { box-shadow: 0 0 0 3px rgba(255, 255, 255, .4); }

.fabxo-modal .modal-body { padding: 18px 20px 4px; }

/* Tighter field rhythm inside the modal only */
.fabxo-modal .row { --bs-gutter-x: .75rem; --bs-gutter-y: 0; }
.fabxo-modal .form-label {
  font-size: 12px;
  margin-bottom: 4px;
}
.fabxo-modal .form-control,
.fabxo-modal .form-select {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 10px;
}
.fabxo-modal textarea.form-control { min-height: 0; }
.fabxo-modal .row > [class*="col-"] { margin-bottom: 10px; }
.fabxo-modal .invalid-feedback { font-size: 11.5px; margin-top: 3px; }

.fabxo-modal .formcard__ok {
  padding: 9px 12px;
  font-size: 12.5px;
  border-radius: 10px;
}

.fabxo-modal .modal-footer {
  border-top: 1px solid var(--fabxo-border);
  padding: 12px 20px;
  gap: 8px;
}
.fabxo-modal .modal-footer > * { margin: 0; }
.fabxo-modal .modal-footer .btn { padding: 9px 18px; font-size: 13.5px; }

/* the backdrop picks up the brand navy rather than plain black */
.modal-backdrop.show { background: var(--fabxo-navy-deep); opacity: .55; }

@media (max-width: 575.98px) {
  .fabxo-modal .modal-dialog { margin: 10px; max-width: none; }
  .fabxo-modal .modal-header { padding: 14px 16px; }
  .fabxo-modal .modal-body { padding: 16px 16px 2px; }
  .fabxo-modal .modal-footer { padding: 12px 16px; }
  .fabxo-modal .modal-footer .btn { flex: 1 1 auto; }
}
