/* ════════════════════════════════════════════════════════
   BizzBuzz — Shared Design System
   bizzbuzz.css
   All shared styles: tokens, nav, footer, modals, legal
════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --base: 16px;
  --red:      #d30000;
  --red-dark: #a80000;
  --red-soft: #fff0f0;
  --navy:     #174fae;
  --navy-dark:#0d3280;
  --navy-soft:#dbe4ff;
  --bg:       #f4f6fb;
  --surface:  #ffffff;
  --ink:      #0f1923;
  --ink2:     #374151;
  --muted:    #6b7280;
  --border:   #e2e8f0;
  --border2:  #cbd5e1;
  --radius-sm:8px;
  --radius:   14px;
  --radius-lg:22px;
  --shadow-sm:0 1px 3px rgba(0,0,0,0.06),0 1px 2px rgba(0,0,0,0.04);
  --shadow:   0 4px 16px rgba(0,0,0,0.07),0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:0 12px 40px rgba(0,0,0,0.1),0 2px 8px rgba(0,0,0,0.05);
}
html { font-size: var(--base); }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem clamp(1rem,4vw,2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-left {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  object-fit: cover;
}
.logo-desktop {
  width: clamp(60px,8.2vw,80px);
  height: clamp(60px,8.2vw,80px);
  border-radius: clamp(15px,2.1vw,21px);
}
.logo-mobile {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.nav-links {
  display: flex; align-items: center; gap: clamp(0.25rem,1.5vw,1rem);
}
.nav-link {
  font-size: clamp(0.82rem,1.05vw,0.94rem); font-weight: 700;
  color: var(--navy); padding: 0.4rem 0.65rem; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.nav-link:hover { color: var(--navy-dark); background: var(--bg); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.btn-nav-ghost {
  padding: 0.48rem clamp(0.75rem,1.5vw,1.1rem);
  border-radius: 999px; border: 1.5px solid var(--border);
  background: transparent; color: var(--navy);
  font-family: 'Outfit',sans-serif; font-size: clamp(0.94rem,1.2vw,1.06rem);
  font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-nav-ghost:hover { background: #dbe4ff; border-color: #dbe4ff; color: var(--navy); }
.btn-nav-ghost:active { background: #dbe4ff; border-color: #dbe4ff; color: var(--navy); }

.btn-nav-primary {
  padding: 0.52rem clamp(0.85rem,1.8vw,1.35rem);
  border-radius: 999px;
  background: var(--red); color: #fff;
  font-family: 'Outfit',sans-serif; font-size: clamp(0.94rem,1.2vw,1.06rem);
  font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap;
  border: none; outline: none; box-shadow: none;
  -webkit-appearance: none; appearance: none;
}
.btn-nav-primary:hover { background: #be0000; }
.btn-nav-primary:active { background: #be0000; }
.btn-nav-primary:focus { outline: none; box-shadow: none; }
.btn-nav-primary:focus-visible { outline: none; box-shadow: none; }
@media(max-width:560px) {
  .nav-links { display: none; }
  .btn-nav-ghost { display: none; }
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2563eb 100%);
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,2.5rem);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 900; letter-spacing: -0.03em; color: #fff;
  margin-bottom: 0.75rem;
}
.cta-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400; color: #fbbf24;
}
.cta-sub {
  font-size: clamp(0.96rem,1.4vw,1.1rem);
  color: rgba(255,255,255,0.65); line-height: 1.65;
  margin-bottom: clamp(1.75rem,3vw,2.5rem);
}
.cta-actions {
  display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap;
}
.btn-cta-primary {
  padding: 0.88rem 2.25rem; border-radius: 999px;
  background: var(--red); color: #fff;
  font-family: 'Outfit',sans-serif; font-weight: 700;
  font-size: clamp(0.96rem,1.35vw,1.08rem);
  cursor: pointer; transition: background 0.2s; border: none; outline: none; box-shadow: none;
  -webkit-appearance: none; appearance: none;
}

.btn-cta-primary:hover { background: #be0000; }
.btn-cta-primary:active { background: #be0000; }
.btn-cta-primary:focus { outline: none; box-shadow: none; }
.btn-cta-primary:focus-visible { outline: none; box-shadow: none; }
.cta-available {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: clamp(1.25rem,1.75vw,1.5rem);
  color: #ffffff;
  margin-bottom: 0.6rem;
  margin-top: 1.75rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.cta-available-em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #fbbf24;
}
.cta-badges {
  display: flex; gap: 1.25rem; justify-content: center;
  flex-wrap: nowrap; margin-top: 1.5rem; align-items: center;
}
.cta-badges a {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  line-height: 0;
}
.cta-badges img {
  height: clamp(40px,5.5vw,53px); width: auto; display: block;
  border-radius: 0;
  opacity: 0.5; transition: opacity 0.2s, transform 0.2s;
}
.cta-badges img:hover { opacity: 0.5; }
.btn-cta-ghost {
  padding: 0.88rem 2.25rem; border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; font-family: 'Outfit',sans-serif; font-weight: 600;
  font-size: clamp(0.96rem,1.35vw,1.08rem);
  cursor: pointer; transition: all 0.2s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.18); }

/* ─── FOOTER ─── */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: clamp(1.25rem,2.5vw,1.75rem) clamp(1rem,4vw,2.5rem);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-social {
  display: flex; align-items: center; gap: 0.45rem;
}
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 27px; height: 27px; border-radius: 6px;
  background: #111827;
  transition: background 0.2s;
}

.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-logo img {
  width: 32px; height: 32px; border-radius: 8px; object-fit: cover;
}
.footer-brand {
  font-weight: 800; font-size: 1rem; color: var(--ink);
}
.footer-brand span { color: var(--red); }
.footer-links {
  display: flex; gap: clamp(0.75rem,2vw,1.5rem); flex-wrap: wrap;
  margin-top: -13px;
}
.footer-links a {
  font-size: 0.83rem; font-weight: 500; color: var(--navy); transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.nav-wordmark {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: clamp(1.05rem,1.5vw,1.25rem);
  color: var(--navy); letter-spacing: -0.01em;
  line-height: 1; user-select: none;
}
.nav-wordmark span { color: var(--red); }
.footer-copy {
  font-size: 0.93rem; color: var(--ink);
}
.footer-geo {
  font-size: 0.8rem; color: var(--muted); margin-bottom: 0.2rem; margin-top: 11px;
}
.footer-right {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
}


/* ─── WAITLIST MODAL ─── */
.wl-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(15,25,35,0.65);
  backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding: clamp(3.5rem,6vh,5rem) 1rem 1rem;
}
.wl-overlay.open { display: flex; }
.wl-modal {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 95%; max-width: 680px;
  padding: clamp(1.75rem,4vw,2.5rem);
  position: relative; animation: wl-pop 0.22s ease;
}
@keyframes wl-pop {
  from { opacity:0; transform:translateY(-16px); }
  to   { opacity:1; transform:translateY(0); }
}
.wl-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.1rem; transition: background 0.15s;
}
.wl-close:hover { background: var(--border); }
.wl-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 0.4rem;
}
.wl-title {
  font-size: clamp(1.3rem,2.5vw,1.55rem); font-weight: 900;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 0.35rem;
}
.wl-sub {
  font-size: 0.94rem; color: var(--muted); line-height: 1.55;
  margin-bottom: 1.4rem;
}
.wl-field { margin-bottom: 0.9rem; }
.wl-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--ink2); margin-bottom: 0.35rem;
}
.wl-label .wl-req { color: var(--red); margin-left: 2px; }
.wl-input {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border2); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  color: var(--ink); background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
}
.wl-input:focus { border-color: var(--navy); background: var(--surface); }
.wl-check-row {
  display: flex; align-items: flex-start; gap: 0.65rem;
  margin-bottom: 1.35rem; cursor: pointer;
}
.wl-check-row input[type=checkbox] {
  margin-top: 3px; accent-color: var(--navy);
  width: 15px; height: 15px; flex-shrink: 0;
}
.wl-check-label {
  font-size: 0.88rem; color: var(--ink2); line-height: 1.45; cursor: pointer;
}
.wl-submit {
  width: 100%; padding: 0.82rem 1.5rem;
  border-radius: 999px; border: none;
  background: var(--red); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.wl-submit:hover { background: var(--red-dark); }
/* success state */
.wl-success {
  display: none; text-align: center; padding: 1rem 0 0.5rem;
}
.wl-success-icon {
  font-size: 2.5rem; margin-bottom: 0.75rem;
}
.wl-success-title {
  font-size: 1.3rem; font-weight: 900; color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 0.4rem;
}
.wl-success-msg {
  font-size: 0.93rem; color: var(--muted); line-height: 1.55;
  margin-bottom: 1.25rem;
}
.wl-success-close {
  display: inline-block;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
  background: var(--navy-soft); border-radius: 999px;
  padding: 0.4rem 1.1rem; cursor: pointer;
  border: none; font-family: 'Outfit', sans-serif;
}
.wl-success-close:hover { background: #c7d5f8; }
/* mobile modal */
@media(max-width:480px) {
  .wl-modal { padding: 1.5rem 1.2rem; border-radius: 18px; }
}

/* ─── FOOTER CENTRED ≤1081px ─── */
@media(max-width:1081px) {
  .footer-inner { flex-direction: column; align-items: center; gap: 0.85rem; text-align: center; }
  .footer-links { justify-content: center; margin-top: 0; }
  .footer-right { align-items: center; }
}

/* ─── MOBILE LAYOUT ≤768px ─── */
@media(max-width:768px) {

  /* ── Mobile Nav ── */
  .nav {
    padding: 0.6rem 1rem;
    position: sticky; top: 0; z-index: 100;
  }
  .logo-desktop { display: none; }
  .logo-mobile { display: block; }
  .nav-logo { gap: 0; }
  .nav-wordmark { font-size: 1.1rem; }
  .nav-links { display: none; }
  .btn-nav-ghost { display: none; }
  .btn-nav-primary {
    font-size: 0.88rem;
    padding: 0.46rem 0.9rem;
  }

  /* ── Mobile Hero ── */
  .hero {
    flex-direction: column;
    min-height: unset;
    background: linear-gradient(170deg, var(--navy-dark) 0%, var(--navy) 60%, #2563eb 100%);
  }
  .hero-copy {
    width: 100%;
    padding: 2rem 1.25rem 1.5rem;
    min-height: unset;
    align-items: flex-start;
  }
  .hero-eyebrow {
    font-size: 0.78rem;
    padding: 0.28rem 0.7rem;
    margin-bottom: 1rem;
  }
  .hero-h1 {
    font-size: clamp(2rem,7vw,2.6rem);
    margin-bottom: 0.85rem;
  }
  .hero-sub {
    font-size: 0.96rem;
    margin-bottom: 1.1rem;
    max-width: 100%;
  }
  .btn-hero-primary {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
  }
  .hero-map { display: none; }
  .promo-card-anchor { display: none; }

  /* ── Mobile Partners ── */
  .partners { padding: 1.5rem 1rem; }
  .partners-title { font-size: 1rem; }
  .partner-card { width: 80px; }
  .partner-name { font-size: 0.68rem; }

  /* ── Mobile Deals ── */
  .deals { padding: 1.75rem 1rem 2.5rem; }
  .section-title { font-size: 1.2rem; }
  .deals-grid { grid-template-columns: 1fr; gap: 0.65rem; }
  .deal-biz { font-size: 0.96rem; }
  .deal-desc { font-size: 0.88rem; }

  /* ── Mobile CTA Band ── */
  .cta-band { padding: 2.5rem 1.25rem; }
  .cta-title { font-size: clamp(1.5rem,6vw,2rem); }
  .cta-sub { font-size: 0.93rem; margin-bottom: 1.4rem; }
  .btn-cta-primary {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }
  .cta-badges { flex-direction: row; gap: 0.75rem; margin-top: 1.1rem; }
  .cta-available { font-size: 1.1rem; margin-top: 1.4rem; }

  /* ── Mobile Footer ── */
  .footer { padding: 1.25rem 1rem; }
  .footer-inner { flex-direction: column; align-items: center; gap: 0.85rem; text-align: center; }
  .footer-links { justify-content: center; gap: 0.75rem; margin-top: 0; }
  .footer-social { gap: 0.55rem; }
  .footer-right { align-items: center; }

  /* ── Mobile Modal ── */
  .wl-overlay { align-items: flex-start; padding: 2.5rem 0.75rem 1rem; }
  .wl-modal {
    border-radius: var(--radius-lg);
    width: 95%;
    max-width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 1.75rem 1.25rem 2rem;
    animation: wl-slide 0.22s ease;
  }
  @keyframes wl-slide {
    from { transform: translateY(-16px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
  }
}

/* ─── ACTIVE NAV LINK ─── */
.nav-link-active { color: var(--ink) !important; background: var(--bg); }

/* ─── LEGAL PAGES ─── */
.legal-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #2563eb 100%);
  padding: clamp(3rem,6vw,5rem) clamp(1rem,5vw,4rem);
  text-align: center; position: relative; overflow: hidden;
}
.legal-hero::before {
  content:''; position:absolute; inset:0; opacity:0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px; pointer-events:none;
}
.legal-hero-inner { position:relative; z-index:1; max-width:680px; margin:0 auto; }
.legal-eyebrow {
  display:inline-flex; align-items:center; gap:0.45rem;
  background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2);
  border-radius:999px; padding:0.3rem 0.8rem;
  font-size:0.82rem; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; color:rgba(255,255,255,0.85);
  margin-bottom:1.1rem;
}
.legal-h1 {
  font-size:clamp(2rem,4.5vw,3rem); font-weight:900;
  letter-spacing:-0.03em; color:#fff; margin-bottom:0.6rem; line-height:1.05;
}
.legal-date {
  font-size:0.88rem; color:rgba(255,255,255,0.5); margin-top:0.5rem;
}
.legal-body {
  max-width:760px; margin:0 auto;
  padding:clamp(3rem,6vw,5rem) clamp(1rem,4vw,2.5rem);
}
.legal-section { margin-bottom:clamp(2rem,4vw,3rem); }
.legal-section-title {
  font-size:clamp(1rem,1.6vw,1.2rem); font-weight:800;
  color:var(--ink); margin-bottom:0.65rem; letter-spacing:-0.01em;
  padding-bottom:0.4rem; border-bottom:2px solid var(--border);
}
.legal-section-num {
  color:var(--navy); font-weight:900; margin-right:0.4rem;
}
.legal-p {
  font-size:clamp(0.92rem,1.2vw,1rem); color:var(--ink2);
  line-height:1.75; margin-bottom:0.85rem;
}
.legal-p:last-child { margin-bottom:0; }
.legal-p a { color:var(--navy); font-weight:600; }
.legal-p a:hover { text-decoration:underline; }
.legal-ul {
  list-style:none; padding:0; margin:0.5rem 0 0.85rem;
  display:flex; flex-direction:column; gap:0.45rem;
}
.legal-ul li {
  font-size:clamp(0.92rem,1.2vw,1rem); color:var(--ink2);
  line-height:1.65; padding-left:1.2rem; position:relative;
}
.legal-ul li::before {
  content:'—'; position:absolute; left:0;
  color:var(--navy); font-weight:700;
}
.legal-callout {
  background:var(--navy-soft); border-radius:var(--radius);
  border-left:4px solid var(--navy);
  padding:1rem 1.25rem; margin:1.25rem 0;
}
.legal-callout p {
  font-size:0.92rem; color:var(--navy); font-weight:600; line-height:1.55; margin:0;
}
.legal-contact {
  background:var(--surface); border:1.5px solid var(--border);
  border-radius:var(--radius-lg); padding:1.5rem 1.75rem;
  margin-top:2rem; text-align:center;
}
.legal-contact-label {
  font-size:0.82rem; font-weight:700; letter-spacing:0.07em;
  text-transform:uppercase; color:var(--muted); margin-bottom:0.35rem;
}
.legal-contact-email {
  font-size:1.05rem; font-weight:700; color:var(--navy);
}
@media(max-width:768px) {
  .legal-hero { padding:2.5rem 1.25rem; }
  .legal-body { padding:2rem 1rem 3rem; }
}

/* ─── LET US KNOW MODAL ─── */
.luw-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(15,25,35,0.65);
  backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding: clamp(3.5rem,6vh,5rem) 1rem 1rem;
}
.luw-overlay.open { display: flex; }
.luw-modal {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 95%; max-width: 480px;
  padding: clamp(1.75rem,4vw,2.5rem);
  position: relative; animation: luw-pop 0.22s ease;
}
@keyframes luw-pop {
  from { opacity:0; transform:translateY(-16px); }
  to   { opacity:1; transform:translateY(0); }
}
.luw-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.1rem; transition: background 0.15s;
}
.luw-close:hover { background: var(--border); }
.luw-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem;
}
.luw-title {
  font-size: clamp(1.2rem,2.2vw,1.45rem); font-weight: 900;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 0.35rem;
}
.luw-sub {
  font-size: 0.92rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.35rem;
}
.luw-field { margin-bottom: 0.9rem; }
.luw-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--ink2); margin-bottom: 0.35rem;
}
.luw-label .luw-req { color: var(--red); margin-left: 2px; }
.luw-opt { font-size: 0.78rem; color: var(--muted); font-weight: 400; margin-left: 4px; }
.luw-input {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border2); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  color: var(--ink); background: var(--bg);
  transition: border-color 0.15s; outline: none;
}
.luw-input:focus { border-color: var(--navy); background: var(--surface); }
.luw-helper { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }
.luw-submit {
  width: 100%; padding: 0.82rem 1.5rem;
  border-radius: 999px; border: none;
  background: var(--navy); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s; margin-top: 0.35rem;
}
.luw-submit:hover { background: var(--navy-dark); }
.luw-success {
  display: none; text-align: center; padding: 1rem 0 0.5rem;
}
.luw-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.luw-success-title { font-size: 1.2rem; font-weight: 900; color: var(--ink); letter-spacing:-0.02em; margin-bottom: 0.4rem; }
.luw-success-msg { font-size: 0.93rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.25rem; }
.luw-success-close {
  display: inline-block; font-size: 0.88rem; font-weight: 600; color: var(--navy);
  background: var(--navy-soft); border-radius: 999px;
  padding: 0.4rem 1.1rem; cursor: pointer;
  border: none; font-family: 'Outfit', sans-serif;
}
.luw-success-close:hover { background: #c7d5f8; }
@media(max-width:480px) {
  .luw-overlay { padding: 2.5rem 0.75rem 1rem; }
  .luw-modal { width: 95%; padding: 1.5rem 1.2rem; border-radius: 18px; }
}
/* ─── MOBILE MENU ─── */

/* Only exists on mobile — hidden completely on desktop */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90; /* below nav (100) so nav stays on top */
  background: rgba(15,25,35,0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.mobile-menu-overlay.open {
  background: rgba(15,25,35,0.55);
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(82vw, 300px);
  height: 100vh;
  background: var(--surface);
  z-index: 95; /* above overlay, below nav */
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  box-shadow: 4px 0 32px rgba(15,25,35,0.18);
  display: flex;
  flex-direction: column;
}
.mobile-menu-drawer.open {
  transform: translateX(0);
}

/* Spacer so menu content starts below the nav bar */
.mobile-menu-spacer {
  height: 70px; /* matches mobile nav height */
  flex-shrink: 0;
}

.mobile-menu-inner {
  flex: 1;
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Section labels */
.mobile-menu-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.85rem 0.5rem 0.4rem;
  margin-top: 0.5rem;
}
.mobile-menu-section-label:first-child {
  margin-top: 0;
}

/* Menu links */
.mobile-menu-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.75rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: var(--bg);
  color: var(--navy-dark);
}
.mobile-menu-link.active {
  background: var(--navy-soft);
  color: var(--navy-dark);
}

/* Legal links — smaller */
.mobile-menu-link.legal {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.mobile-menu-link.legal:hover {
  color: var(--ink2);
}

/* Divider */
.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0.5rem;
}

/* Join Waitlist CTA inside menu */
.mobile-menu-cta {
  margin-top: auto;
  padding: 1.25rem 0.5rem 0;
}
.mobile-menu-cta button {
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-cta button:hover { background: var(--red-dark); }



/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.15s;
}
.hamburger:hover { background: var(--bg); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
/* Open state — animate to X */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:768px) {
  .hamburger { display: flex; }
  .nav-left { gap: 0.3rem; }
}

/* ════════════════════════════════════════════════════════
   INDEX PAGE — Page-specific styles
   Derived from bizzbuzz-mock4-v2.html design reference
════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: clamp(375px,53vh,550px);
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #2563eb 100%);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ── Hero left: copy panel ── */
.hero-copy {
  position: relative;
  z-index: 10;
  width: clamp(300px,44%,560px);
  padding: clamp(1.5rem,4vw,3.5rem) clamp(1.5rem,4vw,3rem) clamp(1.5rem,4vw,3.5rem) clamp(1.5rem,5vw,4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-size: clamp(0.88rem,1.1vw,0.98rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: clamp(1.2rem,2.5vw,1.8rem);
  width: fit-content;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-green 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}
.hero-h1 {
  font-size: clamp(1.8rem,3.5vw,3rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: clamp(1rem,2vw,1.4rem);
}
.hero-h1-light { font-weight: 400; }
.hero-h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #fbbf24;
}
.hero-sub {
  font-size: clamp(0.98rem,1.4vw,1.1rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 28rem;
  margin-bottom: clamp(1rem,2vw,1.5rem);
}
.hero-seo {
  font-size: clamp(0.82rem,1.1vw,0.92rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 28rem;
  margin-bottom: clamp(0.75rem,1.5vw,1rem);
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: clamp(1rem,2vw,1.75rem);
}
.btn-hero-primary {
  padding: clamp(0.7rem,1.4vw,0.88rem) clamp(1.4rem,2.5vw,2rem);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(0.98rem,1.3vw,1.1rem);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.btn-hero-primary:hover        { background: #be0000; }
.btn-hero-primary:active       { background: #be0000; }
.btn-hero-primary:focus        { outline: none; box-shadow: none; }
.btn-hero-primary:focus-visible { outline: none; box-shadow: none; }

.btn-hero-ghost {
  padding: clamp(0.7rem,1.4vw,0.88rem) clamp(1.4rem,2.5vw,2rem);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(0.98rem,1.3vw,1.1rem);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

/* ── Hero right: map panel ── */
.hero-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.map-svg-wrap {
  position: absolute;
  inset: 0;
}
.map-svg-wrap svg { width: 100%; height: 100%; }

/* Floating deal pins */
.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: pin-float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.map-pin:nth-child(2) { animation-delay: -0.8s; }
.map-pin:nth-child(3) { animation-delay: -1.6s; }
.map-pin:nth-child(4) { animation-delay: -2.2s; }
.map-pin:nth-child(5) { animation-delay: -0.4s; }
.map-pin:nth-child(6) { animation-delay: -1.2s; }
@keyframes pin-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.pin-bubble {
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  border: 1.5px solid rgba(255,255,255,0.8);
}
.pin-bubble.red { background: var(--red); border-color: rgba(255,255,255,0.3); }
.pin-bubble .pin-emoji { font-size: 1rem; }
.pin-bubble .pin-label {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ink);
}
.pin-bubble.red .pin-label { color: #fff; }
.pin-bubble .pin-discount {
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--red);
  background: var(--red-soft);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}
.pin-bubble.red .pin-discount {
  color: #fff;
  background: rgba(255,255,255,0.25);
}
.pin-stem {
  width: 2px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
}
.pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Left edge of map fades into the navy copy panel */
.hero-map::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 120px;
  z-index: 5;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
  pointer-events: none;
}
/* Bottom fade */
.hero-map::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  z-index: 5;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,50,128,0.4) 100%);
  pointer-events: none;
}

/* ─── PROMO CARD (hero overlay — desktop only) ─── */
.promo-card-anchor {
  position: absolute;
  top: clamp(1rem,3vw,2rem);
  right: clamp(1rem,3vw,2rem);
  z-index: 20;
  width: clamp(220px,28vw,320px);
}
.promo-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(0.9rem,1.5vw,1.2rem) clamp(1rem,1.6vw,1.35rem);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.promo-card::before { content: none; }
.promo-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: clamp(0.92rem,1.2vw,1.05rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  width: 100%;
  text-align: center;
}
.promo-title {
  font-size: clamp(0.98rem,1.35vw,1.1rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.promo-items {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.promo-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  flex-shrink: 0;
}
.promo-item-text {
  font-size: clamp(0.92rem,1.2vw,1.04rem);
  color: var(--ink2);
  line-height: 1.3;
}
.promo-item-text strong { color: var(--ink); font-weight: 700; }
.promo-item-text span  { color: var(--muted); font-size: 0.88em; }
.promo-divider {
  height: 1px;
  background: var(--border);
  margin: 0.65rem 0;
}
.promo-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.promo-expiry {
  font-size: clamp(0.68rem,0.78vw,0.74rem);
  color: var(--muted);
}
.promo-cta {
  font-size: clamp(0.98rem,1.3vw,1.1rem);
  font-weight: 800;
  color: var(--red);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.promo-cta:hover { text-decoration: underline; }

/* Mobile promo strip — visible only on mobile in place of the map */
.mobile-promo-wrap {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mobile-promo-inner {
  padding: 1.25rem 1rem;
}

/* ─── PARTNER SECTION ─── */
.partners {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2rem,4vw,3rem) clamp(1rem,4vw,2.5rem);
}
.partners-inner { max-width: 1200px; margin: 0 auto; }
.partners-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem,2.5vw,2rem);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.partners-title {
  font-size: clamp(1.05rem,1.9vw,1.28rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.partners-sub {
  font-size: clamp(0.92rem,1.2vw,1.04rem);
  color: var(--muted);
}
.partners-nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-shrink: 0;
}
.partners-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink2);
}
.partners-nav-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.partners-nav-btn:disabled { opacity: 0.35; cursor: default; }
.partners-nav-btn:disabled:hover { background: var(--surface); color: var(--ink2); border-color: var(--border2); }
.partners-count {
  font-size: clamp(0.92rem,1.2vw,1.04rem);
  font-weight: 600;
  color: var(--navy);
  background: var(--navy-soft);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
}

/* Scroll container */
.partners-scroll-wrap { overflow: hidden; }
.partners-scroll {
  display: flex;
  gap: clamp(0.5rem,1.2vw,0.75rem);
  overflow-x: auto;
  padding-bottom: 0.5rem;
  padding-top: 6px;
  scrollbar-width: none;
}
.partners-scroll::-webkit-scrollbar { display: none; }

/* Partner card — fixed width so the scroll math is simple and reliable */
.partner-card {
  flex-shrink: 0;
  width: clamp(80px,10vw,110px);
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: clamp(0.5rem,1.1vw,0.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.partner-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  background: var(--surface);
}
.partner-logo-wrap {
  width: clamp(36px,4.5vw,48px);
  height: clamp(36px,4.5vw,48px);
  border-radius: clamp(8px,1.1vw,11px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.05rem,1.8vw,1.4rem);
  flex-shrink: 0;
}
.partner-name {
  font-size: clamp(0.72rem,0.86vw,0.78rem);
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}
.partner-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

/* ─── DEALS SECTION ─── */
.deals {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.5rem,5vw,4rem) clamp(1rem,4vw,2.5rem);
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem,2.5vw,2rem);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.section-title {
  font-size: clamp(1.3rem,2.5vw,1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.section-link {
  font-size: clamp(0.94rem,1.2vw,1.06rem);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

/* Filter pills */
.deals-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.25rem,2.5vw,1.75rem);
}
.filter-pill {
  padding: 0.3rem clamp(0.52rem,0.96vw,0.72rem);
  border-radius: 999px;
  border: 1.5px solid var(--border2);
  font-size: clamp(0.72rem,0.92vw,0.82rem);
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--navy); color: var(--navy); }
.filter-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Deals grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(240px,26vw,300px), 1fr));
  gap: clamp(0.75rem,1.5vw,1.1rem);
}
.deal-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.deal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.deal-card-stripe { height: 4px; width: 100%; }
.stripe-red    { background: var(--red); }
.stripe-navy   { background: var(--navy); }
.stripe-amber  { background: #f59e0b; }
.stripe-green  { background: #16a34a; }
.stripe-purple { background: #7c3aed; }

.deal-card-body {
  padding: clamp(0.85rem,1.5vw,1.1rem);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  flex: 1;
}
.deal-icon-wrap {
  width: clamp(44px,5.5vw,54px);
  height: clamp(44px,5.5vw,54px);
  border-radius: clamp(10px,1.4vw,13px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem,2vw,1.55rem);
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.deal-text { flex: 1; min-width: 0; }
.deal-biz {
  font-weight: 700;
  font-size: clamp(0.98rem,1.3vw,1.1rem);
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deal-desc {
  font-size: clamp(0.9rem,1.15vw,1.02rem);
  color: var(--muted);
  margin-top: 0.22rem;
  line-height: 1.4;
}
.deal-card-footer {
  padding: clamp(0.55rem,1vw,0.75rem) clamp(0.85rem,1.5vw,1.1rem);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.deal-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.deal-dist-tag {
  font-size: clamp(0.92rem,1.2vw,1.04rem);
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.deal-exp-tag {
  font-size: clamp(0.82rem,1.05vw,0.92rem);
  font-weight: 600;
  color: #b45309;
  background: #fef3c7;
  border-radius: 4px;
  padding: 0.1rem 0.38rem;
}
.deal-badge {
  font-size: clamp(0.9rem,1.15vw,1.02rem);
  font-weight: 800;
  border-radius: 7px;
  padding: 0.18rem 0.55rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-red    { background: var(--red);    color: #fff; }
.badge-navy   { background: var(--navy);   color: #fff; }
.badge-amber  { background: #f59e0b;       color: #fff; }
.badge-green  { background: #16a34a;       color: #fff; }
.badge-purple { background: #7c3aed;       color: #fff; }

/* ─── INDEX PAGE — Mobile overrides ≤768px ─── */
@media(max-width:768px) {

  /* Hero stacks vertically; map panel hides; mobile promo strip shows */
  .hero {
    flex-direction: column;
    min-height: unset;
    background: linear-gradient(170deg, var(--navy-dark) 0%, var(--navy) 60%, #2563eb 100%);
  }
  .hero-copy {
    width: 100%;
    padding: 2rem 1.25rem 1.5rem;
    min-height: unset;
    align-items: flex-start;
  }
  .hero-eyebrow {
    font-size: 0.78rem;
    padding: 0.28rem 0.7rem;
    margin-bottom: 1rem;
  }
  .hero-h1 {
    font-size: clamp(2rem,7vw,2.6rem);
    margin-bottom: 0.85rem;
  }
  .hero-sub {
    font-size: 0.96rem;
    margin-bottom: 1.1rem;
    max-width: 100%;
  }
  .btn-hero-primary {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
  }
  .hero-map         { display: none; }
  .promo-card-anchor { display: none; }
  .mobile-promo-wrap { display: block; }

  /* Partners — keep horizontal scroll + show nav arrows */
  .partners { padding: 1.5rem 1rem; }
  .partners-title { font-size: 1rem; }
  .partner-card {
    width: 80px;
    padding: 0.5rem 0.4rem;
  }
  .partner-logo-wrap {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
  .partner-name { font-size: 0.68rem; }
  /* Ensure arrows remain visible on mobile */
  .partners-nav { display: flex; }
  .partners-nav-btn {
    width: 32px;
    height: 32px;
  }

  /* Deals */
  .deals { padding: 1.75rem 1rem 2.5rem; }
  .section-title { font-size: 1.2rem; }
  .deals-grid { grid-template-columns: 1fr; gap: 0.65rem; }
  .deal-biz  { font-size: 0.96rem; }
  .deal-desc { font-size: 0.88rem; }
}

/* ════════════════════════════════════════════════════════
   HOW IT WORKS PAGE — Page-specific styles
════════════════════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #2563eb 100%);
  padding: clamp(3rem,6vw,5rem) clamp(1rem,5vw,4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.1rem;
}
.page-h1 {
  font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.05;
}
.page-h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #fbbf24;
}
.page-sub {
  font-size: clamp(0.97rem,1.5vw,1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}
.page-cta-wrap { display: flex; justify-content: center; }

/* Steps */
.hiw-steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,2.5rem);
}
.hiw-section-title {
  font-size: clamp(1.4rem,2.8vw,2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  margin-bottom: clamp(2.5rem,5vw,4rem);
}
.hiw-section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: clamp(1.25rem,2.5vw,2rem);
}
.step-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: clamp(1.5rem,2.5vw,2rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--navy-soft); }
.step-num {
  font-size: clamp(2.5rem,4vw,3.5rem);
  font-weight: 900;
  color: var(--navy-soft);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon  { font-size: 1.75rem; margin-bottom: 0.65rem; }
.step-title { font-size: clamp(1rem,1.5vw,1.15rem); font-weight: 800; color: var(--ink); margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.step-desc  { font-size: clamp(0.9rem,1.2vw,1rem); color: var(--muted); line-height: 1.6; }
.step-accent { color: var(--red); font-weight: 700; }

/* Post types */
.post-types {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem,6vw,4.5rem) clamp(1rem,4vw,2.5rem);
}
.post-types-inner { max-width: 1100px; margin: 0 auto; }
.pt-header-title {
  font-size: clamp(1.3rem,2.5vw,1.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.5rem;
}
.pt-header-sub {
  font-size: clamp(0.95rem,1.3vw,1.05rem);
  color: var(--muted);
  text-align: center;
  max-width: 540px;
  margin: 0 auto clamp(2rem,4vw,3rem);
}
.post-types-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1rem,2vw,1.5rem);
}
.post-type-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: clamp(1.5rem,2.5vw,2rem);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.post-type-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.post-type-emoji { font-size: 2.5rem; margin-bottom: 0.65rem; }
.post-type-name  { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.post-type-desc  { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.pt-tag {
  display: inline-block;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  margin-bottom: 0.6rem;
}
.pt-tag-red   { background: var(--red-soft);  color: var(--red); }
.pt-tag-navy  { background: var(--navy-soft); color: var(--navy); }
.pt-tag-amber { background: #fef3c7; color: #b45309; }

/* Why BizzBuzz */
.why-bb {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem,6vw,4.5rem) clamp(1rem,4vw,2.5rem);
}
.why-bb-title {
  font-size: clamp(1.3rem,2.5vw,1.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  margin-bottom: clamp(2rem,4vw,3rem);
}
.why-bb-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--red); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: clamp(1rem,2vw,1.5rem);
}
.why-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: clamp(1rem,1.8vw,1.35rem);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item-title { font-size: 0.98rem; font-weight: 800; color: var(--ink); margin-bottom: 0.25rem; }
.why-item-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

@media(max-width:768px) {
  .post-types-grid { grid-template-columns: 1fr; }
  .steps-grid      { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .page-hero       { padding: 2.5rem 1.25rem; }
  .page-cta-wrap   { justify-content: center; }
}
@media(max-width:560px) {
  .steps-grid, .post-types-grid, .why-grid { grid-template-columns: 1fr; }
  .hiw-steps, .post-types-inner, .why-bb   { padding-left: 1rem; padding-right: 1rem; }
}

/* ════════════════════════════════════════════════════════
   PRICING PAGE — Page-specific styles
════════════════════════════════════════════════════════ */

/* .page-hero, .page-eyebrow, .page-h1, .page-sub, .page-hero-inner, .page-hero::before
   are shared with How It Works — defined above */

.page-hero-note {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.65rem;
  text-align: center;
}
.pricing-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,2.5rem);
}
.pricing-intro { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.pricing-intro-title {
  font-size: clamp(1.4rem,2.8vw,2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pricing-intro-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--red); }
.pricing-intro-sub { font-size: clamp(0.95rem,1.3vw,1.05rem); color: var(--muted); max-width: 540px; margin: 0 auto; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1rem,2vw,1.5rem);
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: clamp(1.5rem,2.5vw,2.25rem);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  background: linear-gradient(170deg, #f0f5ff 0%, var(--surface) 100%);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  white-space: nowrap;
}
.pricing-tier-name { font-size: 1rem; font-weight: 800; color: var(--ink2); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.5rem; }
.pricing-price {
  font-size: clamp(2.2rem,3.5vw,2.75rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.pricing-price-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.1rem; }
.pricing-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem;
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--ink2); line-height: 1.4; }
.pricing-features li::before { content: '✓'; color: var(--navy); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.muted { color: var(--muted); }
.pricing-features li.muted::before { content: '–'; color: var(--border2); }
.pricing-cta-btn {
  width: 100%;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.pricing-cta-btn.primary { background: var(--red); color: #fff; }
.pricing-cta-btn.primary:hover { background: var(--red-dark); }
.pricing-cta-btn.ghost { background: transparent; border: 1.5px solid var(--border2); color: var(--navy); }
.pricing-cta-btn.ghost:hover { background: var(--navy-soft); border-color: var(--navy); }

.credits-callout {
  background: linear-gradient(135deg, var(--navy-soft) 0%, #e8f0fe 100%);
  border: 1.5px solid var(--navy-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem,3vw,2.25rem);
  margin-top: clamp(2rem,4vw,3rem);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.credits-icon  { font-size: 2rem; flex-shrink: 0; }
.credits-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.35rem; }
.credits-desc  { font-size: 0.92rem; color: var(--ink2); line-height: 1.55; }
.credits-desc strong { color: var(--navy); }

.pricing-faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem,6vw,4.5rem) clamp(1rem,4vw,2.5rem);
}
.pricing-faq-inner { max-width: 760px; margin: 0 auto; }
.faq-title {
  font-size: clamp(1.3rem,2.5vw,1.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: clamp(2rem,4vw,3rem);
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg); border-radius: var(--radius); border: 1.5px solid var(--border); padding: 1.1rem 1.25rem; }
.faq-q { font-size: 0.98rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.faq-a { font-size: 0.91rem; color: var(--muted); line-height: 1.6; }

@media(max-width:768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { margin-top: 1rem; }
  .credits-callout { flex-direction: column; gap: 0.75rem; }
}
@media(max-width:560px) {
  .pricing-section    { padding-left: 1rem; padding-right: 1rem; }
  .pricing-faq-inner  { padding-left: 1rem; padding-right: 1rem; }
}

/* ════════════════════════════════════════════════════════
   FOR CONSUMERS PAGE — Page-specific styles
════════════════════════════════════════════════════════ */

/* .page-hero and related classes shared with above pages */

.page-sub-consumers {
  font-size: clamp(0.97rem,1.5vw,1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.hero-badge-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badge-row a { display: inline-block; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.hero-badge-row img { height: clamp(40px,5.5vw,52px); width: auto; display: block; }

.cons-features {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,2.5rem);
}
.cons-features-title {
  font-size: clamp(1.4rem,2.8vw,2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  margin-bottom: clamp(2.5rem,5vw,3.5rem);
}
.cons-features-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--red); }
.cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: clamp(1rem,2vw,1.5rem);
}
.cons-tile {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: clamp(1.5rem,2.5vw,2rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.cons-tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--navy-soft); }
.cons-tile-emoji { font-size: 2.25rem; margin-bottom: 0.75rem; }
.cons-tile-title { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.cons-tile-desc  { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.cons-download {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem,6vw,4.5rem) clamp(1rem,4vw,2.5rem);
}
.cons-download-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cons-dl-title { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 900; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 0.6rem; }
.cons-dl-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--red); }
.cons-dl-sub { font-size: clamp(0.95rem,1.3vw,1.05rem); color: var(--muted); line-height: 1.65; margin-bottom: 1.75rem; text-align: center; }
.cons-badge-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cons-badge-row a { display: inline-block; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.12); transition: opacity 0.2s, transform 0.2s; }
.cons-badge-row a:hover { opacity: 0.88; transform: translateY(-1px); }
.cons-badge-row img { height: clamp(40px,5.5vw,53px); width: auto; display: block; }
.cons-dl-note { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }

.cons-area { max-width: 1100px; margin: 0 auto; padding: clamp(3rem,6vw,4.5rem) clamp(1rem,4vw,2.5rem); }
.cons-area-title { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 900; letter-spacing: -0.025em; color: var(--ink); text-align: center; margin-bottom: 0.6rem; }
.cons-area-sub { font-size: clamp(0.95rem,1.3vw,1.05rem); color: var(--muted); text-align: center; margin-bottom: clamp(1.75rem,3.5vw,2.5rem); }
.zip-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.zip-pill {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.cons-area-note { font-size: 0.88rem; color: var(--muted); text-align: center; margin-top: 1.25rem; }

@media(max-width:768px) {
  .hero-badge-row, .cons-badge-row, .zip-pills { justify-content: center; }
}
@media(max-width:560px) {
  .cons-grid { grid-template-columns: 1fr; }
  .cons-features, .cons-download-inner, .cons-area { padding-left: 1rem; padding-right: 1rem; }
}
