    :root {
      --brandFrom: #025fbc;
      --brandTo: #06a2dd;
      --ink: #020617;
      --bg: #f6f8fb;
      --card: #ffffff;
      --muted: #64748b;
      --line: #e2e8f0;
      --radius-lg: 24px;
      --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);
    }

    html,
    body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    main {
      min-height: calc(100vh - var(--header-h, 88px));
    }

    .wrap {
      width: 100%;
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (max-width: 768px) {
      .wrap {
        padding: 0 16px;
      }
    }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      z-index: 0;
      background:
        radial-gradient(900px 420px at 15% -10%, rgba(255, 255, 255, 0.16), transparent 60%),
        linear-gradient(135deg, var(--brandFrom), var(--brandTo));
      color: #f9fafb;
      padding: 72px 0 150px;
      overflow: hidden;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .hero-copy {
      flex: 1 1 55%;
    }

    .hero-kicker {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 14px;
      font-weight: 600;
      opacity: .9;
      margin-bottom: 16px;
    }

    .hero-title {
      font-size: 54px;
      line-height: 1.1;
      font-weight: 700;
      margin: 0 0 24px;
    }

    .hero-title .accent {
      color: #e0f2fe;
    }

    .hero-subtitle {
      font-size: 16px;
      line-height: 1.5;
      color: #e2e8f0;
      margin: 0 0 18px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 12px 26px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
    }

    .btn-primary {
      background: #0f172a;
      color: #f9fafb;
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
    }

    .btn-ghost {
      background: rgba(15, 23, 42, 0.14);
      color: #e2e8f0;
      border: 1px solid rgba(248, 250, 252, 0.24);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.22);
    }

    .hero-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      font-size: 14px;
      color: #cbd5f5;
      margin-top: 35px;
    }

    .hero-trust-pill {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.32);
      border: 1px solid rgba(148, 163, 184, 0.6);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-trust-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #22c55e;
    }

    /* Hero phone + floating cards */
    .hero-visual {
      flex: 1 1 40%;
      display: flex;
      justify-content: flex-end;
      position: relative;
      padding-right: 12px;
    }

.phone-mock {
  position: relative;
  width: 260px;
  height: 520px;
  border-radius: 38px;
  background: #020617; /* solid bezel */
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.65);
  overflow: hidden; /* keep everything inside the device shape */
}

/* (speaker bar is handled by .phone-notch + screen indicator below;
   we don't need ::before/::after on the shell anymore) */
.phone-mock::before,
.phone-mock::after {
  content: none;
}
.phone-outline {
  position: absolute;
  inset: 10px; /* was 14px — thinner bezels */
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 0%, #f9fafb 0, #e5f2ff 45%, #e2ecff 80%);
  box-shadow:
    inset 0 0 0 1px rgba(148, 163, 184, 0.35),
    0 10px 25px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

/* home indicator on the screen */
.phone-outline::after {
  content: "";
  position: absolute;
  bottom: 10px; /* tuck a bit closer to the edge */
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.9);
  box-shadow: 0 0 4px rgba(15, 23, 42, 0.4);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 16px;
  border-radius: 999px;
  background: #020617;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.6);
}
.phone-pill {
  position: absolute;
  top: 46px;
  left: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
}

.phone-pill-label {
  font-size: 11px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-pill-chip {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #0f172a;
  font-weight: 600;
  white-space: nowrap;
}
.phone-list {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 92px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* Individual cards */
.phone-card {
  border-radius: 18px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.phone-card-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.20);
}

.phone-card-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.phone-card-title {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}

.phone-card-sub {
  font-size: 10px;
  color: #64748b;
}

/* chips + price */
.phone-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.phone-chip {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(2, 95, 188, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #0f172a;
}

.phone-price {
  font-size: 10px;
  color: #0f172a;
  font-weight: 600;
  margin-left: auto;
}
.hero-floating-card {
  position: absolute;
  border-radius: 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.98);
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 190px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(10px);
}

.hero-floating-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #0f172a;
  opacity: 0.7;
}

.hero-floating-main {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}

.hero-floating-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: #475569;
}

.hero-floating-pill {
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(2, 95, 188, 0.08), rgba(6, 162, 221, 0.16));
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #0f172a;
}

.hero-floating-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 4px;
  display: inline-block;
}


    .hero-floating-card--top {
      right: 255px;
      top: 70px;
    }

    .hero-floating-card--bottom {
      right: 225px;
      bottom: 70px;
    }

    .hero-floating-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #a5b4fc;
    }

    .hero-floating-main {
      font-size: 12px;
      font-weight: 600;
    }

    .hero-floating-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      font-size: 10px;
      color: #cbd5f5;
    }

    .hero-floating-pill {
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    .hero-floating-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #22c55e;
      margin-right: 4px;
      display: inline-block;
    }

    /* Hero search bar (search-first, app-like) */
.hero-search {
  margin-top: 24px;
}

.hero-search-inner {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 0px 10px 2px;
  margin-top: 10px;
}

/* Reuse .search-field but restyle for dark hero */
.hero-search .search-field {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 0 20px;
  background: transparent;
  box-shadow: none;
}

.hero-search .search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: #020617;
}

.hero-search .search-input::placeholder {
  color: #94a3b8;
}

/* Keep the button as a strong pill */
.hero-search-hints {
  margin-top: 10px;
  font-size: 12px;
  color: #e5e7eb;
  opacity: 0.95;
}

/* Icon inside hero search field */
.hero-search-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: #64748b;
}

.hero-search-icon svg {
  width: 100%;
  height: 100%;
}

/* ---------- SEARCH TRAY (overlapping) ---------- */
.search-tray-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding-bottom: 40px;
}

.search-tray-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.search-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 4px;
}

.search-title {
  font-size: 20px;
  font-weight: 700;
}

.search-sub {
  font-size: 14px;
  color: var(--muted);
}

/* main row: “big” Airbnb-style search */
.search-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.search-field {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  background: #f9fafb;
  font-size: 13px;
  color: var(--muted);
  box-shadow: 0 1px 0 rgba(148, 163, 184, 0.25);
}

.search-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #64748b;
  background: #e5f3ff;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  color: #0f172a;
}

.search-input::placeholder {
  color: #94a3b8;
}

/* “Try these” pill row under the main search */
.search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.search-chip-row strong {
  color: #0f172a;
  font-weight: 600;
}

.search-chip {
  border-radius: 999px;
  padding: 6px 10px;
  background: linear-gradient(
    135deg,
    rgba(2, 95, 188, 0.08),
    rgba(6, 162, 221, 0.12)
  );
  font-size: 11px;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 0;
  outline: none;
  font: inherit;
}

.search-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0ea5e9;
}

/* Make this form work with any existing "tb-search" logic */
.tb-search {
  margin: 0;
}


    /* ---------- SECTIONS ---------- */
    .section {
      padding: 50px 0;
    }
/* Browse section as rounded panel overlapping hero */
.section--browse {
  position: relative;
  z-index: 1;
  margin-top: -70px;          /* pulls it up into the hero */
  padding-top: 80px;
  border-radius: 50px 50px 0 0;
  background: var(--bg);
}

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .section-header-main {
      padding-bottom: 20px;
    }

    .section-kicker {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #6b7280;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .section-title {
      position: relative;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 0.01em;
      margin: 0;
    }

    .section-sub {
      font-size: 14px;
      color: var(--muted);
      margin: 7px 0 0;
    }

    .section-actions {
      font-size: 13px;
      color: #0f172a;
      white-space: nowrap;
    }

    .section-actions a {
      color: #0f172a;
      text-decoration: none;
    }

    .section-actions a:hover {
      text-decoration: underline;
    }

/* ---------- CATEGORY GRID (home categories) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Card shell */
.category-card {
  border-radius: 20px;
  background: var(--card);
  padding: 18px 18px 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(2, 95, 188, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition:
    transform .12s ease,
    box-shadow .12s ease,
    border-color .12s ease,
    background .12s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  border-color: rgba(2, 95, 188, 0.22);
  background: #f8fafc;
}

/* Icon row */
.category-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28);
}

/* Per-category gradients */
.category-card--vendors .category-icon-circle {
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
}
.category-card--venues .category-icon-circle {
  background: linear-gradient(135deg, #0f766e, #22c55e);
}
.category-card--rentals .category-icon-circle {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.category-card--catering .category-icon-circle {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

/* SVG icons */
.category-icon-circle svg {
  width: 30px;
  height: 30px;
}

/* Text stack */
.category-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 4px;
}

.category-sub {
  font-size: 14px;
  color: var(--muted);
}

/* Optional tiny “Browse →” hint */
.category-cta {
  margin-top: 10px;
  font-size: 14px;
  color: #0f172a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: .9;
}

.category-cta span {
  font-size: 13px;
}

/* Hide old list/chip styles if they exist */
.category-list,
.category-chip,
.category-chip-dot,
.category-dot,
.category-tags,
.category-tag {
  display: none;
}

/* ---------- LISTING CARDS (horizontal scroll) ---------- */
.scroll-row {
  display: flex;
  flex-wrap: nowrap;              /* keep everything on one row */
  gap: 14px;
  overflow-x: auto;               /* horizontal scroll when too wide */
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar {
  height: 6px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}

.listing-card {
  scroll-snap-align: start;
  flex: 0 0 260px;                /* fixed card width so they line up */
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2, 95, 188, 0.10);
  display: flex;
  flex-direction: column;
}

    /* show at most 6 cards */
    .scroll-row .listing-card:nth-child(n+7) {
      display: none;
    }

    .listing-thumb-wrap {
      position: relative;
      padding-top: 68%;
      overflow: hidden;
    }

    .listing-thumb-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .25s ease;
    }

    .listing-card:hover .listing-thumb-wrap img {
      transform: scale(1.03);
    }

    .listing-pill {
      position: absolute;
      left: 10px;
      bottom: 10px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      background: rgba(15, 23, 42, 0.78);
      color: #e5e7eb;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .listing-body {
      padding: 10px 12px 12px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .listing-title {
      font-size: 14px;
      font-weight: 600;
    }

    .listing-sub {
      font-size: 12px;
      color: var(--muted);
    }

    .listing-meta-row {
      margin-top: 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: #64748b;
      gap: 6px;
    }

    .rating-pill {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 8px;
      border-radius: 999px;
      background: #f1f5f9;
    }

    .rating-star {
      font-size: 11px;
      color: #facc15;
    }

    .price-pill {
      font-weight: 600;
      color: #0f172a;
    }

/* ---------- STEPS / HOW IT WORKS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.step-card {
  background: var(--card);
  border-radius: 20px;
  padding: 16px 16px 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* numbered badge at the top-left of each card */
.step-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brandFrom), var(--brandTo));
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
  margin-bottom: 4px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
}

.step-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* responsive: stack cards on mobile */
/* responsive: stack cards on mobile – tighter spacing */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px; /* slightly smaller gap between cards */
  }

  .step-card {
    padding: 12px 14px 12px;  /* less top/bottom padding */
    min-height: auto;         /* let card shrink to content */
  }

  .step-badge {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-bottom: 2px;       /* less space under the badge */
  }

  .step-title {
    font-size: 14px;
    margin: 10px 0 4px;        /* tighten around title */
  }

  .step-text {
    font-size: 13px;
    line-height: 1.4;         /* slightly tighter lines */
    margin: 0;                /* remove extra paragraph margin */
  }
}

/* ---------- PLANNER CTA ---------- */
.planner-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 12px;
}

/* Left card */
.planner-card {
  background: var(--card);
  border-radius: 26px;
  padding: 22px 22px 20px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(2, 95, 188, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
}

/* title now class-based */
.planner-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
}

/* bullets */
.planner-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 7px;
  font-size: 14px;
  color: var(--muted);
}

.planner-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.planner-dot {
  margin-top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brandFrom), var(--brandTo));
  flex-shrink: 0;
}

/* buttons row */
.planner-cta-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* make ghost button look active on white card */
.planner-card .btn-ghost {
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.10);
}

.planner-card .btn-ghost:hover {
  background: #e5f1ff;
}

/* Right “app preview” card */
.planner-visual {
  position: relative;
  border-radius: 26px;
  padding: 22px;
  background: radial-gradient(420px 260px at 0% 0%, rgba(248, 250, 252, 0.12), transparent 60%),
              linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  color: #e5e7eb;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.8);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* pill + text */
.planner-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 13px;
  margin-bottom: 8px;
}

.planner-pill-badge {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #a3e635);
  color: #0f172a;
  font-weight: 600;
}

.planner-mini {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.planner-caption {
  font-size: 13px;
  color: #94a3b8;
}

/* mobile layout */
@media (max-width: 768px) {
  .planner-section {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
  }

  .planner-card,
  .planner-visual {
    border-radius: 22px;
    padding: 18px 16px 18px;
    min-height: 0;
  }

  .planner-cta-row .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .planner-title {
    font-size: 16px;
  }

  .planner-mini {
    font-size: 13px;
  }

  .planner-caption {
    font-size: 12px;
  }

}

    /* ---------- BOTTOM CTA (APP) ---------- */
.cta-band {
  padding: 32px 0 90px;
}

.cta-inner {
  border-radius: 26px;
  background:
    radial-gradient(720px 380px at 10% -20%, rgba(248, 250, 252, 0.28), transparent 60%),
    linear-gradient(135deg, var(--brandFrom), var(--brandTo));
  color: #f9fafb;
  padding: 32px 32px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

.cta-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
}

.cta-sub {
  font-size: 14px;
  color: #e2e8f0;
  margin: 0 0 14px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-note {
  font-size: 12px;
  color: #dbeafe;
  margin-top: 8px;
}

/* store badges */
.store-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  min-width: 190px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.65);
  cursor: pointer;
}

.store-pill span:last-child {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 1024px) {
      body {
        padding-bottom: 80px;
        /* room for real mbTabbar */
      }

      .hero {
        padding-top: 40px;
        padding-bottom: 10px;
      }

      .hero-inner {
        gap: 28px;
      }

      .hero-floating-card--top,
      .hero-floating-card--bottom {
        right: 220px;
      }

      .cta-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 60px 10px 160px 10px;
      }

      .hero-inner {
        flex-direction: column;
        gap: 24px;
      }

      .hero-copy {
        max-width: 100%;
      }

      .hero-title {
        font-size: 32px;
      }

      .hero-subtitle {
        font-size: 14px;
      }

      .hero-ctas {
        width: 100%;
        gap: 8px;
      }

      /* Hide hero trust row on mobile */
      .hero-trust-row {
        display: none;
      }

      .hero-ctas .btn {
        flex: 1 1 auto;
        justify-content: center;
      }

      /* Hero search: allow full width on smaller screens */
      .hero-search {
        margin-top: 28px;
        max-width: 640px;
      }

      /* Label inside hero search button */
      .search-btn-label {
        display: inline;
      }

      /* 🔹 Hide phone mock + right-hand visual on mobile */
      .hero-visual {
        display: none;
      }

      /* you can keep the phone-mock + floating-card rules below,
        they just won't be used on mobile because hero-visual is hidden */
      .phone-mock {
        width: 220px;
        height: 440px;
      }

      .hero-floating-card {
        display: none;
      }

      .category-icon-circle {
        width: 40px;
        height: 40px;
      }
      .search-tray-wrapper {
        margin-top: -22px;
        padding-bottom: 32px;
      }

      .search-tray-card {
        border-radius: 24px;
        padding: 20px 16px 22px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
      }

      .search-form-row {
        gap: 10px;
      }

      .search-field {
        padding: 10px 14px;
      }

      .section {
        padding: 26px 0;
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .section-title {
        font-size: 18px;
      }

      .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .listing-card {
        flex: 0 0 220px;
      }

      /* Popular section: horizontal card scroller using shared card layout */
      .scroll-row.cards-grid {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding: 4px 0 6px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
      }

      .scroll-row.cards-grid::-webkit-scrollbar {
        display: none;
      }

      .scroll-row.cards-grid > .card {
        flex: 0 0 clamp(260px, 28vw, 320px);
        max-width: clamp(260px, 28vw, 320px);
        scroll-snap-align: start;
      }

      .steps-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .planner-section {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 18px;
      }

      .planner-cta-row .btn {
        flex: 1 1 auto;
        justify-content: center;
      }

      .cta-inner {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 16px;
      }

      .cta-title {
        font-size: 22px;
      }

      .cta-band .btn {
        flex: 1 1 auto;
        justify-content: center;
      }

      /* stack store badges nicely on mobile */
      .store-pills {
        justify-content: flex-start;
      }
    }

      /* Popular strip – fixed 5 cards with matching size on desktop */
      .scroll-row.cards-grid.cards-grid--popular {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
        overflow: visible; /* no horizontal scroll on desktop */
      }

      .scroll-row.cards-grid.cards-grid--popular > .card {
        height: 100%;
      }

      /* Make sure media keeps the same ratio across all cards */
      .scroll-row.cards-grid.cards-grid--popular .card-media img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 16 / 9;
        object-fit: cover;
      }
    @media (max-width: 480px) {
      .hero-title {
        font-size: 28px;
      }

      .search-title {
        font-size: 15px;
      }

      .search-sub {
        font-size: 12px;
      }

      .section-title {
        font-size: 19px;
      }

      .category-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .wrap { padding: 0px 20px 80px 20px;}

        /* Smaller popular cards on mobile */
      .scroll-row.cards-grid.cards-grid--popular > .card {
        flex: 0 0 210px;
        max-width: 210px;
      }

      .scroll-row.cards-grid.cards-grid--popular .card-media img {
        aspect-ratio: 4 / 3;
      }

      .scroll-row.cards-grid.cards-grid--popular .card-body {
        padding: 10px 12px 12px;
      }

      .scroll-row.cards-grid.cards-grid--popular .card-title {
        font-size: 15px;
      }

      .scroll-row.cards-grid.cards-grid--popular .card-location {
        font-size: 13px;
      }

      .scroll-row.cards-grid.cards-grid--popular .card-footer {
        padding-top: 6px;
      }

      .store-pill {
        display: none;
      }

    }

    /* === HERO FLOATING CARDS — LIGHT THEME OVERRIDES ================== */

.hero-floating-card {
  background: rgba(255, 255, 255, 0.98);
  color: #0f172a;
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(10px);
}

.hero-floating-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748b;      /* darker, legible on white */
  font-weight: 600;
}

.hero-floating-main {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;      /* main line = full ink */
}

.hero-floating-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: #475569;      /* mid gray, good contrast */
}

.hero-floating-pill {
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(2, 95, 188, 0.08),
    rgba(6, 162, 221, 0.16)
  );
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #0f172a;      /* make button text dark */
  font-weight: 600;
}

.hero-floating-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 4px;
  display: inline-block;
}
/* Desktop: 5 even cards, no scroll */
.scroll-row.cards-grid.cards-grid--popular {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  overflow: visible;
}

/* Tablet / mobile: horizontal scroller */
@media (max-width: 1024px) {
  .scroll-row.cards-grid.cards-grid--popular {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .scroll-row.cards-grid.cards-grid--popular > .card {
    flex: 0 0 clamp(260px, 70vw, 320px);
    scroll-snap-align: start;
  }
}
/* ===== FULL-WIDTH FIX FOR MOBILE/TABLET ===== */

/* Make sure the page itself can never be narrower than the viewport */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* also stops any tiny horizontal scroll from padding */
}

/* Ensure our main sections always span full width */
main,
.hero,
.section,
.cta-band {
  width: 100%;
  max-width: 100%;
}

/* Wrap should not make the page narrower or overflow on small screens */
.wrap {
  max-width: 1350px;
  margin: 0 auto;
  padding: 20px 20px 0px 20px;         /* a bit tighter on mobile */
  box-sizing: border-box;  /* padding stays inside width */
}

/* Global box-sizing guard (prevents “mystery” overflow from child elements) */
*, *::before, *::after {
  box-sizing: border-box;
}

