/* ══════════════════════════════════════════════════════════════
         THEME OVERRIDE — Black / White / Green only
         Replaces all blue (--fp-primary-*) with black or green
      ══════════════════════════════════════════════════════════════ */
:root {
  --fp-primary-50: rgba(16, 185, 129, 0.07);
  --fp-primary-100: rgba(16, 185, 129, 0.12);
  --fp-primary-200: rgba(16, 185, 129, 0.22);
  --fp-primary-600: #10b981; /* green accent */
  --fp-primary-700: #059669;
  --fp-primary-800: #111111; /* near-black */
  --fp-primary-900: #000000;
}

/* ── Announcement Bar ── */
.fp-announce {
  background: #111111;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1031;
}
.fp-announce a {
  color: var(--fp-accent-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fp-announce a:hover {
  opacity: 0.85;
}
.fp-announce-sep {
  margin: 0 12px;
  opacity: 0.3;
}

/* ── Mega dropdown — dynamic top via JS var ── */
.fp-mega-dropdown {
  top: var(--fp-mega-top, var(--fp-nav-height)) !important;
}

/* ── Mega menu device links (plain, compact — like iSmash) ── */
.fp-mega-device-link {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fp-neutral-600);
  text-decoration: none;
  padding: 4px 0;
  line-height: 1.4;
  transition: color var(--fp-transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fp-mega-device-link:hover {
  color: var(--fp-primary-600);
}

/* ══════════════════════════════════════════════════════════════
         HERO — iSmash-inspired: full-height, visual-first, minimal copy
      ══════════════════════════════════════════════════════════════ */
.fp-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 55%, #000000 100%);
  position: relative;
  overflow: hidden;
  min-height: calc(90vh - 100px); /* full-height feel */
  display: flex;
  align-items: center;
}
/* Grid texture */
.fp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
/* Right-side radial glow that bleeds into visual area */
.fp-hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(
    ellipse,
    rgba(16, 185, 129, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.fp-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 70px 0 60px;
}

/* ── Eyebrow badge ── */
.fp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.fp-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--fp-accent-500);
  border-radius: 50%;
  animation: fp-pulse 2s infinite;
}
@keyframes fp-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* ── Headline — bigger, bolder ── */
.fp-hero-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.fp-hero-h1 .fp-hero-accent {
  background: linear-gradient(90deg, var(--fp-accent-400) 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Sub-copy — short, punchy ── */
.fp-hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 480px;
}

/* ── Device type pills ── */
.fp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 36px;
}
.fp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
}
.fp-hero-pill:hover {
  background: rgba(96,165,250,.1);
  border-color: rgba(96,165,250,.35);
  color: #10b981;
}
.fp-hero-pill i {
  font-size: 14px;
}

/* ── Button Refinements ── */
.btn-cta {
  background: linear-gradient(160deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.28);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-cta:hover,
.btn-cta:focus-visible {
  background: linear-gradient(160deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}
.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 1px 6px rgba(16, 185, 129, 0.22);
}
/* Slimmer lg button */
.btn-lg {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 10px;
}
/* Nav book button — compact & refined */
.fp-nav-actions .btn-cta {
  padding: 9px 20px;
  font-size: 0.875rem;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(16, 185, 129, 0.22);
}

/* ── CTA ── */
.fp-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.fp-hero-cta-ghost {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.fp-hero-cta-ghost:hover {
  color: #fff;
}

/* ── Trust row ── */
.fp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.fp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.fp-hero-trust-item i {
  color: var(--fp-accent-400);
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════════
         HERO RIGHT VISUAL — CSS device scene
      ══════════════════════════════════════════════════════════════ */
.fp-hero-visual-wrap {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Big blurred circle behind everything */
.fp-hero-visual-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.15) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* Phone mockup */
.fp-hero-phone {
  position: relative;
  width: 200px;
  height: 400px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(-6deg);
  z-index: 3;
  overflow: hidden;
  flex-shrink: 0;
}
/* Cracked screen overlay */
.fp-hero-phone-crack {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.06) 38.5%,
      transparent 39%,
      transparent 45%,
      rgba(255, 255, 255, 0.04) 45.5%,
      transparent 46%,
      transparent 55%,
      rgba(255, 255, 255, 0.05) 55.5%,
      transparent 56%
    ),
    linear-gradient(
      65deg,
      transparent 20%,
      rgba(255, 255, 255, 0.04) 20.5%,
      transparent 21%,
      transparent 40%,
      rgba(255, 255, 255, 0.06) 40.5%,
      transparent 41%
    );
  border-radius: 34px;
  pointer-events: none;
}
/* Spider crack lines via clip-path SVG pattern */
.fp-hero-phone-crack::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 30%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 30%,
    transparent 60%
  );
  border-radius: 50%;
}
/* Phone notch */
.fp-hero-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  z-index: 5;
}
/* Phone screen content */
.fp-hero-phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  background: linear-gradient(160deg, #1a1a2e 0%, #0d0d0d 60%, #000000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px 16px;
}
.fp-hero-phone-screen-icon {
  font-size: 40px;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.5));
}
.fp-hero-phone-screen-text {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.4;
}
.fp-hero-phone-screen-bar {
  width: 80%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.fp-hero-phone-screen-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: var(--fp-accent-500);
  border-radius: 3px;
}
/* Floating badges around the phone */
.fp-hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 4;
  animation: fp-float 4s ease-in-out infinite;
}
@keyframes fp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.fp-hero-float-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.fp-hero-float-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.fp-hero-float-badge-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
}
/* Badge positions */
.fp-hero-float-badge--1 {
  top: 14%;
  left: -8%;
  animation-delay: 0s;
}
.fp-hero-float-badge--2 {
  top: 40%;
  right: -12%;
  animation-delay: 1.3s;
}
.fp-hero-float-badge--3 {
  bottom: 14%;
  left: -2%;
  animation-delay: 0.7s;
}
/* Hide right visual on mobile */
@media (max-width: 991px) {
  .fp-hero-visual-wrap {
    display: none;
  }
  .fp-hero {
    min-height: unset;
    overflow-x: clip;
  }
  .fp-hero::after {
    display: none;
  } /* remove glow that causes horizontal scroll */
  .fp-hero-inner {
    padding: 48px 0 28px;
  }
  .fp-hero-cta {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .fp-hero-h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
  .fp-hero-sub {
    font-size: 1rem;
  }
  .fp-hero-pills {
    gap: 6px;
    margin: 18px 0 28px;
  }
  /* Hide 4th+ category pill on mobile — max 3 shown */
  .fp-hero-pill:nth-child(n+4) {
    display: none;
  }
  .fp-hero-pill {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* ── Stats Strip (below hero) ── */
/* ── Stats Strip ── */
.fp-stats-strip {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.fp-stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-stat-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
}
.fp-stat-pill:last-child {
  border-right: none;
}
.fp-stat-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.fp-stat-pill-icon.amber {
  background: #fffbeb;
  color: #d97706;
}
.fp-stat-pill-icon.blue {
  background: rgba(96,165,250,.1);
  color: #10b981;
}
.fp-stat-pill-icon.green {
  background: rgba(96,165,250,.1);
  color: #10b981;
}
.fp-stat-pill-icon.purple {
  background: #f5f3ff;
  color: #7c3aed;
}
.fp-stat-pill-val {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.fp-stat-pill-lbl {
  font-size: 0.6875rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
}

/* Mobile — horizontal scroll, single row */
@media (max-width: 767px) {
  .fp-stats-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fp-stats-strip::-webkit-scrollbar {
    display: none;
  }
  .fp-stats-strip-inner {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
  }
  .fp-stat-pill {
    padding: 12px 16px;
    flex: 0 0 auto;
  }
  .fp-stat-pill-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .fp-stat-pill-val {
    font-size: 0.9375rem;
  }
  .fp-stat-pill-lbl {
    font-size: 0.625rem;
  }
}

@media (max-width: 575px) {
  /* Account button — flush with edge */
  .fp-nav-actions {
    padding-right: 0;
    margin-right: -4px;
  }
  .fp-nav-account {
    padding-right: 0;
  }
}

/* ── Device Categories ── */
.fp-cat-card {
  background: #fff;
  border: 2px solid var(--fp-neutral-200);
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.fp-cat-card:hover {
  border-color: var(--fp-primary-500);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}
.fp-cat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fp-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: var(--fp-primary-600);
  transition: background 0.18s;
}
.fp-cat-card:hover .fp-cat-icon {
  background: var(--fp-primary-100);
}
.fp-cat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-neutral-900);
  margin-bottom: 4px;
}
.fp-cat-meta {
  font-size: 0.8125rem;
  color: var(--fp-neutral-500);
}
.fp-cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fp-primary-600);
  margin-top: 12px;
}

/* ── Section base ── */
.fp-section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .fp-section {
    padding: 52px 0;
  }
}

/* ── Section header ── */
.fp-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.fp-section-header.fp-section-header--left {
  text-align: left;
}
@media (max-width: 767px) {
  .fp-section-header {
    margin-bottom: 36px;
  }
}

/* ── How it works ── */
.fp-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111111;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}
.fp-step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--fp-primary-200),
    var(--fp-primary-100)
  );
}
@media (max-width: 767px) {
  .fp-step-connector {
    display: none;
  }
}

/* ── Service pricing cards ── */
.fp-service-card {
  background: #fff;
  border: 1.5px solid var(--fp-neutral-200);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition:
    box-shadow 0.18s,
    border-color 0.18s,
    transform 0.18s;
  display: flex;
  flex-direction: column;
}
.fp-service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  border-color: var(--fp-primary-200);
  transform: translateY(-2px);
}
.fp-service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--fp-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--fp-primary-600);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.fp-service-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-neutral-900);
  margin-bottom: 6px;
}
.fp-service-card-desc {
  font-size: 0.875rem;
  color: var(--fp-neutral-500);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

/* ── Popular Services — horizontal scroll on mobile ── */
@media (max-width: 767px) {
  .fp-services-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -12px;
    margin-right: -12px;
    padding: 4px 12px 12px;
  }
  .fp-services-scroll-wrap::-webkit-scrollbar { display: none; }
  .fp-services-scroll-wrap .row {
    gap: 0;
  }
  .fp-service-col {
    flex: 0 0 240px !important;
    width: 240px !important;
    max-width: 240px !important;
    padding-right: 12px !important;
  }
  .fp-service-col:last-child {
    padding-right: 0 !important;
  }
  .fp-service-card {
    height: 100%;
  }
}
.fp-service-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--fp-neutral-100);
}
.fp-service-from {
  font-size: 0.8125rem;
  color: var(--fp-neutral-500);
}
.fp-service-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fp-primary-600);
}

/* ── Why choose us ── */
.fp-why-section {
  background: var(--fp-neutral-50);
}
.fp-why-card {
  background: #fff;
  border: 1px solid var(--fp-neutral-200);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
}
.fp-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.fp-why-icon.blue {
  background: var(--fp-primary-100);
  color: var(--fp-primary-600);
}
.fp-why-icon.green {
  background: var(--fp-accent-100);
  color: var(--fp-accent-600);
}
.fp-why-icon.orange {
  background: #fff7ed;
  color: #c2410c;
}
.fp-why-icon.purple {
  background: #ede9fe;
  color: #6d28d9;
}

/* ── Stats row ── */
.fp-stats-section {
  background: #111111;
  padding: 60px 0;
}
.fp-stat-item {
  text-align: center;
}
.fp-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.fp-stat-number .fp-stat-accent {
  color: var(--fp-accent-400);
}
.fp-stat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.fp-stats-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* ── Testimonials ── */
.fp-testimonial {
  background: #fff;
  border: 1px solid var(--fp-neutral-200);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fp-testimonial-stars {
  color: #fcd34d;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.fp-testimonial-quote {
  font-size: 0.9375rem;
  color: var(--fp-neutral-700);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.fp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fp-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--fp-primary-600);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fp-neutral-900);
}
.fp-testimonial-service {
  font-size: 0.8125rem;
  color: var(--fp-neutral-500);
}
.fp-testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--fp-accent-600);
  font-weight: 600;
  margin-top: 3px;
}

/* ── Reviews — horizontal scroll on mobile ── */
@media (max-width: 767px) {
  .fp-reviews-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding: 4px 16px 12px;
  }
  .fp-reviews-row::-webkit-scrollbar {
    display: none;
  }
  .fp-reviews-row > [class*="col-"] {
    flex: 0 0 82vw !important;
    max-width: 82vw !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .fp-reviews-row > [class*="col-"]:first-child {
    padding-left: 0 !important;
  }
  .fp-testimonial {
    height: auto;
  }

  /* Blog — horizontal scroll on mobile */
  .fp-blog-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding: 4px 16px 12px;
  }
  .fp-blog-row::-webkit-scrollbar {
    display: none;
  }
  .fp-blog-row > [class*="col-"] {
    flex: 0 0 78vw !important;
    max-width: 78vw !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .fp-blog-row > [class*="col-"]:first-child {
    padding-left: 0 !important;
  }

  /* Repairs You Can Trust — horizontal scroll on mobile */
  .fp-why-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding: 4px 16px 12px;
  }
  .fp-why-row::-webkit-scrollbar {
    display: none;
  }
  .fp-why-row > [class*="col-"] {
    flex: 0 0 72vw !important;
    max-width: 72vw !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .fp-why-row > [class*="col-"]:first-child {
    padding-left: 0 !important;
  }
}

/* ── Locations ── */
.fp-location-card {
  background: #fff;
  border: 1.5px solid var(--fp-neutral-200);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition:
    box-shadow 0.18s,
    border-color 0.18s;
}
.fp-location-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  border-color: var(--fp-primary-300);
}
.fp-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--fp-accent-50);
  border: 1px solid var(--fp-accent-200);
  border-radius: var(--fp-radius-full);
  color: var(--fp-accent-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  margin-bottom: 12px;
}

/* ── Blog ── */
.fp-blog-card {
  background: #fff;
  border: 1px solid var(--fp-neutral-200);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.18s,
    transform 0.18s;
}
.fp-blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.fp-blog-img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
  background: var(--fp-neutral-100);
}
.fp-blog-img-placeholder {
  width: 100%;
  height: 188px;
  background: linear-gradient(
    135deg,
    var(--fp-primary-100) 0%,
    var(--fp-primary-50) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-primary-300);
  font-size: 48px;
}
.fp-blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fp-blog-cat {
  display: inline-block;
  background: var(--fp-primary-100);
  color: var(--fp-primary-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--fp-radius-full);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.fp-blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-neutral-900);
  line-height: 1.45;
  margin-bottom: 10px;
  text-decoration: none;
}
.fp-blog-title:hover {
  color: var(--fp-primary-600);
  text-decoration: none;
}
.fp-blog-excerpt {
  font-size: 0.875rem;
  color: var(--fp-neutral-500);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.fp-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--fp-neutral-400);
  border-top: 1px solid var(--fp-neutral-100);
  padding-top: 14px;
  margin-top: auto;
}

/* ── CTA Band ── */
/* fp-cta-band styles moved to style.css */

/* ── FAQ ── */
.fp-faq-section {
  background: var(--fp-neutral-50);
}
.fp-faq .accordion-button {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fp-neutral-900);
  background: #fff;
  padding: 18px 22px;
  box-shadow: none;
}
.fp-faq .accordion-button:not(.collapsed) {
  color: var(--fp-primary-600);
  background: var(--fp-primary-50);
  box-shadow: none;
}
.fp-faq .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.fp-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' fill='%2364748B'/%3E%3C/svg%3E");
}
.fp-faq .accordion-item {
  border: 1px solid var(--fp-neutral-200);
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 10px;
}
.fp-faq .accordion-item:last-child {
  margin-bottom: 0;
}
.fp-faq .accordion-body {
  font-size: 0.9375rem;
  color: var(--fp-neutral-600);
  line-height: 1.65;
  padding: 4px 22px 20px;
  background: #fff;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  /* Announcement bar — single line, no wrap */
  .fp-announce {
    font-size: 0.75rem;
    padding: 7px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fp-announce-sep {
    margin: 0 6px;
  }
  /* Hide star icon on mobile to save space */
  .fp-announce .bi-stars {
    display: none;
  }

  /* CTA buttons — compact on mobile */
  .fp-hero-cta .btn-cta {
    padding: 9px 20px !important;
    font-size: 0.875rem !important;
    min-height: 40px !important;
  }

  .fp-hero-sub {
    max-width: 100%;
  }
  .fp-hero-trust {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    padding-top: 20px;
  }
  .fp-hero-trust-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    font-size: 0.6875rem;
    padding: 0 4px;
  }
  .fp-hero-trust-item i {
    font-size: 16px;
  }
  /* stat cards removed from hero — now in stats strip below */
  .fp-cta-band {
    padding: 56px 0;
  }
  .fp-stats-section {
    padding: 48px 0;
  }
  .fp-stats-divider {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
         MOBILE BOTTOM NAVIGATION (PWA / App-style)
         Visible only on mobile (≤ 767px).
         Replaces hamburger as primary mobile nav.
      ══════════════════════════════════════════════════════════════ */
.fp-bottom-nav {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1045;
  background: #fff;
  border-top: 1px solid var(--fp-neutral-200);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  /* Respect iPhone home indicator / notch safe area */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.fp-bottom-nav-inner {
  display: flex;
  align-items: stretch;
  height: 58px;
}

/* Individual tab item */
.fp-bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--fp-neutral-400);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  gap: 3px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s;
  padding: 6px 2px 4px;
}
.fp-bnav-item i {
  font-size: 21px;
  line-height: 1;
  transition: transform 0.15s;
}
.fp-bnav-item:active i {
  transform: scale(0.88);
}
/* Active tab */
.fp-bnav-item.is-active {
  color: var(--fp-primary-600);
}
/* Active indicator bar at top of tab */
.fp-bnav-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2.5px;
  background: var(--fp-primary-600);
  border-radius: 0 0 3px 3px;
}

/* ── Centre "Book" FAB tab ── */
.fp-bnav-item--book {
  /* Lift slightly above the bar */
  margin-top: -12px;
  padding-top: 0;
  justify-content: flex-start;
  gap: 4px;
  color: var(--fp-neutral-400);
}
.fp-bnav-book-fab {
  width: 50px;
  height: 50px;
  background: var(--fp-accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.45),
    0 1px 4px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  flex-shrink: 0;
}
.fp-bnav-book-fab i {
  font-size: 22px;
  color: #fff;
  transition: transform 0.15s;
}
.fp-bnav-item--book:active .fp-bnav-book-fab {
  background: var(--fp-accent-600);
  transform: scale(0.92);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.fp-bnav-item--book:active .fp-bnav-book-fab i {
  transform: none;
}
.fp-bnav-item--book span {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--fp-accent-600);
  margin-top: 0;
}

/* ── "More" tab opens drawer ── */
.fp-bnav-item--more {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fp-font-sans);
}
.fp-bnav-item--more.is-active {
  color: var(--fp-primary-600);
}

/* ── Badge on Account tab (future: notification count) ── */
.fp-bnav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  min-width: 16px;
  height: 16px;
  background: #ef4444;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  line-height: 1;
}

/* ── Show on mobile only ── */
@media (max-width: 767px) {
  .fp-bottom-nav {
    display: block;
  }
  /* Push page content up so bottom nav doesn't cover footer */
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }
  html {
    overflow-x: hidden;
  }
  /* Hide top-right hamburger — bottom nav handles mobile navigation */
  .fp-hamburger {
    display: none !important;
  }
  /* Tighten header on mobile since no hamburger */
  .fp-header-inner {
    padding: 0 4px 0 0;
  }
  /* Remove account button's own right padding so it sits flush */
  .fp-nav-account {
    padding-right: 0;
  }
}

/* ── Dark-background blue overrides (bright blue for dark hero section) ── */
.fp-hero-pill:hover { background: rgba(96,165,250,.1); border-color: rgba(96,165,250,.35); color: #34d399; }
.fp-hero-pill i     { color: #34d399; }
