/* =============================================
   GuardXKeys v2 — Premium Redesign
   Fonts: Fraunces (display serif) + Manrope (grotesque)
   Palette: Warm off-white / Ink black / Amber gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700;1,9..144,900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---- Tokens ---- */
:root {
  --white:       #FFFFFF;
  --off-white:   #F6F4F0;
  --surface:     #EDEAE4;
  --ink:         #0C0B09;
  --ink-mid:     #1C1B18;
  --ink-sub:     #5C5A55;
  --ink-muted:   #9B9890;
  --amber:       #F59E0B;
  --amber-dark:  #D97706;
  --amber-light: #FEF3C7;
  --blue:        #1D4ED8;
  --blue-sub:    #EFF6FF;
  --red:         #DC2626;
  --border:      #E2DED8;
  --border-dark: rgba(255,255,255,.1);

  --f-display: 'Fraunces', Georgia, serif;
  --f-body:    'Manrope', system-ui, sans-serif;

  --r-sm:  6px;
  --r:     14px;
  --r-lg:  24px;
  --r-xl:  40px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-body); }
input, select, textarea { font-family: var(--f-body); }

/* ---- Layout ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px; display: flex; align-items: center;
  background: rgba(246,244,240,.95);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-name {
  font-family: var(--f-body); font-weight: 800; font-size: 1.15rem;
  color: var(--ink); letter-spacing: -.04em;
}
.logo-name span { color: var(--amber); font-style: normal; }

/* Nav */
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 600; color: var(--ink-sub);
  transition: color .2s; letter-spacing: -.01em;
}
.nav-links a:hover { color: var(--ink); }

/* Header phone */
.header-phone {
  display: flex; align-items: center; gap: 10px;
}
.header-phone-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ink-sub);
}
.header-phone-num {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 50px;
  background: var(--amber); color: var(--ink);
  font-weight: 800; font-size: .9rem; letter-spacing: -.02em;
  box-shadow: 0 2px 12px rgba(245,158,11,.35);
  transition: transform .2s, box-shadow .2s;
}
.header-phone-num:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,158,11,.5); }
.header-phone-num svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Mobile toggle — 44×44px touch target */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 10px; width: 44px; height: 44px;
  justify-content: center; align-items: center;
  cursor: pointer; border-radius: 8px;
  background: transparent; border: none;
  transition: background .2s;
}
.nav-toggle:active { background: rgba(0,0,0,.06); }
.nav-toggle span {
  display: block; height: 2px; width: 22px; border-radius: 2px;
  background: var(--ink); transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — slide down animation */
.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--off-white); z-index: 800;
  padding: 20px 24px calc(120px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
  max-height: calc(100dvh - 68px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 600; color: var(--ink);
  min-height: 56px; /* touch target */
  transition: color .15s;
}
.mobile-menu a:active { color: var(--amber); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-call-btn {
  margin-top: 16px; background: var(--amber) !important;
  color: var(--ink) !important; border-radius: var(--r) !important;
  justify-content: center; font-weight: 800 !important;
  border-bottom: none !important;
}

/* =============================================
   MOBILE STICKY CALL BAR (better than floating btn)
   ============================================= */
.sticky-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  padding: 12px 20px 20px; /* extra bottom for safe area */
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.1);
}
.sticky-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--amber); color: var(--ink);
  padding: 16px 20px; border-radius: var(--r);
  font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em;
  box-shadow: 0 4px 20px rgba(245,158,11,.5);
}
.sticky-call-bar a svg { width: 20px; height: 20px; flex-shrink: 0; }
.sticky-call-bar .bar-sub {
  text-align: center; font-size: .72rem; color: rgba(255,255,255,.5);
  margin-top: 6px; font-weight: 500; letter-spacing: .03em; text-transform: uppercase;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 140px 0 80px;
  background: var(--off-white);
  position: relative; overflow: hidden;
}

/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -20%; width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 60px; align-items: center;
}

/* Left column */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px; border-radius: 50px;
  background: var(--ink); color: var(--white);
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-eyebrow-dot svg { width: 10px; height: 10px; color: var(--ink); }

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -.04em;
  color: var(--ink); margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: var(--ink-sub);
}

.hero-sub {
  font-size: 1.1rem; color: var(--ink-sub); line-height: 1.7;
  max-width: 480px; margin-bottom: 40px;
  font-weight: 400;
}

/* THE CALL CARD */
.call-hero-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform .25s;
  text-decoration: none;
  position: relative; overflow: hidden;
}
.call-hero-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(245,158,11,.06) 0%, transparent 60%);
  pointer-events: none;
}
.call-hero-card:hover { transform: translateY(-3px); }

.call-icon-wrap {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  animation: ring-shake 3s ease-in-out infinite;
}
.call-icon-wrap svg { width: 26px; height: 26px; color: var(--ink); }

@keyframes ring-shake {
  0%, 60%, 100% { transform: rotate(0deg); }
  65%  { transform: rotate(-12deg); }
  70%  { transform: rotate(10deg); }
  75%  { transform: rotate(-8deg); }
  80%  { transform: rotate(6deg); }
  85%  { transform: rotate(-4deg); }
}

.call-text { flex: 1; }
.call-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--amber); margin-bottom: 4px;
}
.call-number {
  font-family: var(--f-display); font-size: 1.8rem; font-weight: 900;
  letter-spacing: -.04em; color: var(--white); line-height: 1;
}
.call-hours { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 4px; }

.call-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.call-hero-card:hover .call-arrow { background: var(--amber); border-color: var(--amber); }
.call-arrow svg { width: 18px; height: 18px; color: var(--white); }
.call-hero-card:hover .call-arrow svg { color: var(--ink); }

.hero-trust-row {
  display: flex; align-items: center; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .8rem; font-weight: 600; color: var(--ink-sub);
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.trust-pill svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

/* All 3 pills in one row on mobile */
@media (max-width: 480px) {
  .hero-trust-row { gap: 8px; }
  .trust-pill { font-size: .72rem; padding: 5px 10px; gap: 5px; }
  .trust-pill svg { width: 12px; height: 12px; }
}

/* Right column — brand mosaic */
.hero-visual { position: relative; }

.brand-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.mosaic-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; color: var(--ink);
  min-height: 110px;
}
.mosaic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mosaic-card.featured {
  grid-column: span 2;
  background: var(--ink);
  border-color: transparent;
  color: var(--white);
}

.brand-logo-img {
  width: 52px; height: 28px; object-fit: contain; object-position: center;
}
.mosaic-card.featured .brand-logo-img { filter: brightness(0) invert(1); width: 72px; height: 36px; }

.mosaic-name { font-size: .72rem; font-weight: 700; color: var(--ink-muted); letter-spacing: .04em; text-transform: uppercase; }
.mosaic-card.featured .mosaic-name { color: rgba(255,255,255,.5); }

.mosaic-more {
  background: var(--amber);
  border-color: transparent;
  color: var(--ink);
}
.mosaic-more .mosaic-count { font-family: var(--f-display); font-size: 1.6rem; font-weight: 900; }
.mosaic-more .mosaic-sub { font-size: .72rem; font-weight: 700; }

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
  background: var(--ink); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,.05);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 32px; flex-shrink: 0;
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.4);
}
.ticker-item svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--amber-dark);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.04em;
  color: var(--ink);
}
.section-sub {
  font-size: 1.05rem; color: var(--ink-sub);
  line-height: 1.75; max-width: 540px; margin-top: 14px;
}
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* =============================================
   BRAND LOGOS SECTION
   ============================================= */
.brands-section { background: var(--white); }

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.brand-logo-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px 24px; border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--white);
  text-align: center; text-decoration: none; color: var(--ink);
  transition: all .25s; position: relative; overflow: hidden;
}
.brand-logo-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--brand-clr, var(--amber));
  transform: scaleX(0); transition: transform .3s;
}
.brand-logo-card:hover {
  border-color: var(--brand-clr, var(--amber));
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.brand-logo-card:hover::before { transform: scaleX(1); }

.brand-real-logo {
  width: 80px; height: 44px;
  object-fit: contain; object-position: center;
  margin-bottom: 12px;
}
.brand-card-name {
  font-size: .8rem; font-weight: 700; color: var(--ink-sub);
  text-transform: uppercase; letter-spacing: .06em;
}
.brand-card-tagline {
  font-size: .75rem; color: var(--ink-muted);
  margin-top: 4px; line-height: 1.4;
}
.brand-view-link {
  margin-top: 12px; font-size: .75rem; font-weight: 700;
  color: var(--brand-clr, var(--amber-dark));
  display: flex; align-items: center; gap: 4px;
}

/* =============================================
   WHY CALL
   ============================================= */
.why-section { background: var(--off-white); }
.why-bento { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.bento-card {
  border-radius: var(--r-lg);
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.bento-card:hover { box-shadow: var(--shadow); }
.bento-card.tall { grid-row: span 2; }
.bento-card.wide { grid-column: span 2; }
.bento-card.dark { background: var(--ink); color: var(--white); border-color: transparent; }
.bento-card.amber { background: var(--amber); color: var(--ink); border-color: transparent; }

.bento-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.bento-card.dark .bento-icon { background: rgba(255,255,255,.08); }
.bento-card.amber .bento-icon { background: rgba(0,0,0,.1); }
.bento-icon svg { width: 24px; height: 24px; color: var(--amber-dark); }
.bento-card.dark .bento-icon svg { color: var(--amber); }
.bento-card.amber .bento-icon svg { color: var(--ink); }

.bento-card h3 {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.03em; margin-bottom: 10px; line-height: 1.2;
}
.bento-card p { font-size: .9rem; color: var(--ink-sub); line-height: 1.7; }
.bento-card.dark p { color: rgba(255,255,255,.55); }
.bento-card.amber p { color: rgba(0,0,0,.65); }

.bento-big-num {
  font-family: var(--f-display); font-size: 5rem; font-weight: 900;
  letter-spacing: -.06em; line-height: 1;
  color: var(--amber); margin-bottom: 8px;
}
.bento-big-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section { background: var(--ink); }
.how-section .section-title { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,.5); }
.how-section .section-tag { color: rgba(245,158,11,.8); }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border-radius: var(--r-lg); overflow: hidden; }
.step-card { padding: 48px 36px; background: var(--ink-mid); position: relative; }

.step-num {
  font-family: var(--f-display); font-size: 6rem; font-weight: 900; line-height: 1;
  letter-spacing: -.08em;
  color: var(--amber); opacity: .15; position: absolute; top: 24px; right: 28px;
  user-select: none;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { width: 24px; height: 24px; color: var(--amber); }
.step-card h3 {
  font-family: var(--f-display); font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: -.03em; margin-bottom: 12px;
}
.step-card p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.testi-card {
  padding: 32px; border-radius: var(--r-lg);
  border: 1.5px solid var(--border); background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--shadow); }

.testi-quote-mark {
  font-family: var(--f-display); font-size: 5rem; font-weight: 900; font-style: italic;
  color: var(--amber); line-height: .5; margin-bottom: 16px; display: block;
  letter-spacing: -.08em;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--amber); font-size: 1rem; }
.testi-text {
  font-size: .92rem; color: var(--ink-sub); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 900; font-size: .85rem; color: var(--amber);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .88rem; }
.testi-loc { font-size: .78rem; color: var(--ink-muted); margin-top: 2px; }

/* =============================================
   FAQ — unified accordion style
   ============================================= */
.faq-section { background: var(--off-white); }

/* Shared list wrapper */
.faq-list {
  max-width: 760px; margin: 0 auto;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}

/* Each item — divider only between items */
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

/* Open state — amber left accent */
.faq-item.open { border-left: 4px solid var(--amber); }

/* Homepage button (.faq-btn) */
.faq-btn {
  display: flex; width: 100%; justify-content: space-between; align-items: center;
  padding: 22px 28px; background: none; text-align: left; color: var(--ink);
  font-weight: 600; font-size: .98rem; cursor: pointer;
  gap: 20px; transition: background .15s;
}
@media (hover: hover) { .faq-btn:hover { background: var(--off-white); } }
.faq-item.open .faq-btn { background: var(--off-white); }

.faq-chevron {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .28s;
}
.faq-btn.open .faq-chevron { background: var(--amber); border-color: var(--amber); transform: rotate(180deg); }
.faq-chevron svg { width: 14px; height: 14px; color: var(--ink-sub); }
.faq-btn.open .faq-chevron svg { color: var(--ink); }

/* Answer body — homepage */
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s;
  font-size: .9rem; color: var(--ink-sub); line-height: 1.8;
  padding: 0 28px;
}
.faq-item.open .faq-body { max-height: 600px; padding: 0 28px 24px; }
.faq-body a { color: var(--amber-dark); text-decoration: underline; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  background: var(--ink); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-title { color: var(--white); font-size: clamp(2.4rem, 4.5vw, 4rem); }
.cta-section .section-sub { color: rgba(255,255,255,.45); margin-left: auto; margin-right: auto; }
.cta-section .section-tag { color: rgba(245,158,11,.7); }

.cta-phone-big {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 48px; padding: 22px 48px; border-radius: 100px;
  background: var(--amber); color: var(--ink);
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.04em;
  box-shadow: 0 8px 40px rgba(245,158,11,.35), 0 0 0 1px rgba(245,158,11,.2);
  transition: transform .25s, box-shadow .25s;
}
.cta-phone-big:hover { transform: translateY(-3px); box-shadow: 0 16px 60px rgba(245,158,11,.5); }
.cta-phone-big svg { width: 28px; height: 28px; }
.cta-note { margin-top: 20px; font-size: .82rem; color: rgba(255,255,255,.3); letter-spacing: .04em; text-transform: uppercase; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ink-mid); border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }

.footer-about p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-top: 14px; max-width: 260px; }
.footer-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 10px 18px; border-radius: 50px;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25);
  color: var(--amber); font-size: .85rem; font-weight: 700;
}

.footer-col h4 { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* Logo in footer */
.logo-mark-white { background: rgba(255,255,255,.1); }
.logo-name-white { color: var(--white); }

/* =============================================
   BRAND PAGES
   ============================================= */
.brand-page-hero {
  padding: 130px 0 80px;
  position: relative; overflow: hidden;
}
.brand-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Logo container — frosted glass pill on dark hero */
.brand-hero-logo-wrap {
  display: flex; align-items: center; width: fit-content;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 14px 24px;
  margin-top: 24px;
  margin-bottom: 28px;
}
/* White filter so all logos show consistently on the dark hero */
.brand-hero-logo {
  height: 44px; max-width: 200px; width: auto;
  object-fit: contain; display: block;
  filter: brightness(0) invert(1);
}
.brand-name-fallback {
  font-family: var(--f-display); font-size: 2rem; font-weight: 900;
  letter-spacing: -.06em;
}
.brand-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.75;
  max-width: 540px; margin-bottom: 32px;
}
.brand-hero-badge {
  padding: 6px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
}

/* Plan cards */
.plan-card {
  border-radius: var(--r-lg); padding: 32px;
  border: 1.5px solid var(--border); background: var(--white);
  position: relative; overflow: hidden;
  transition: all .25s;
}
.plan-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.plan-card.best { border-color: var(--brand-clr, var(--amber)); }
.plan-card .best-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px; border-radius: 50px; font-size: .7rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  background: var(--brand-clr, var(--amber)); color: var(--white);
}
.plan-name { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; letter-spacing: -.03em; margin-bottom: 8px; }
.plan-was { font-size: .82rem; color: var(--ink-muted); text-decoration: line-through; }
.plan-price { font-family: var(--f-display); font-size: 2.4rem; font-weight: 900; letter-spacing: -.06em; color: var(--brand-clr, var(--amber-dark)); margin: 4px 0; }
.plan-period { font-size: .8rem; color: var(--ink-muted); margin-bottom: 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-features li { font-size: .87rem; color: var(--ink-sub); display: flex; align-items: flex-start; gap: 8px; }
.plan-features li::before { content: '✓'; color: var(--brand-clr, var(--amber-dark)); font-weight: 800; flex-shrink: 0; }
.btn-brand-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px; border-radius: var(--r);
  font-weight: 700; font-size: .9rem; letter-spacing: -.01em;
  background: var(--brand-clr, var(--amber)); color: var(--white);
  transition: all .2s; box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.btn-brand-call:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

/* Policy pages */
.policy-hero { padding: 130px 0 52px; background: var(--off-white); border-bottom: 1px solid var(--border); }
.policy-hero h1 { font-family: var(--f-display); font-size: 2.8rem; font-weight: 900; letter-spacing: -.04em; margin-top: 10px; }
.policy-hero .meta { font-size: .85rem; color: var(--ink-muted); margin-top: 8px; }
.policy-body { padding: 64px 0 100px; background: var(--white); }
.policy-content { max-width: 740px; }
.policy-content h2 { font-family: var(--f-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.03em; margin: 44px 0 14px; color: var(--ink); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: .93rem; color: var(--ink-sub); line-height: 1.85; margin-bottom: 14px; }
.policy-content ul { padding-left: 20px; margin-bottom: 14px; }
.policy-content ul li { font-size: .93rem; color: var(--ink-sub); line-height: 1.85; margin-bottom: 8px; }
.policy-content strong { color: var(--ink); }
.policy-content a { color: var(--amber-dark); text-decoration: underline; }

/* Contact */
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border-radius: var(--r); background: var(--off-white); border: 1px solid var(--border); margin-bottom: 14px; }
.contact-method-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-ico svg { width: 20px; height: 20px; color: var(--amber); }
.contact-method h4 { font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.contact-method p, .contact-method a { font-size: .85rem; color: var(--ink-sub); }
.contact-method a:hover { color: var(--amber-dark); }
.contact-form-card { padding: 40px; border-radius: var(--r-lg); border: 1.5px solid var(--border); background: var(--white); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink-sub); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .9rem; color: var(--ink); background: var(--white); outline: none; transition: border-color .2s; font-family: var(--f-body); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-form-submit { width: 100%; padding: 15px; border-radius: var(--r); background: var(--ink); color: var(--white); font-weight: 700; font-size: .95rem; letter-spacing: -.01em; transition: all .2s; }
.btn-form-submit:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .brand-mosaic { grid-template-columns: repeat(3,1fr); }
  .why-bento { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .sticky-call-bar { display: block; }
  body { padding-bottom: 90px; }

  section { padding: 70px 0; }
  .hero { padding: 120px 0 60px; }

  .brand-mosaic { grid-template-columns: repeat(2,1fr); }
  .mosaic-card.featured { grid-column: span 2; }

  .why-bento { grid-template-columns: 1fr; }
  .bento-card.wide, .bento-card.tall { grid-column: span 1; grid-row: span 1; }

  .steps-grid { grid-template-columns: 1fr; gap: 1px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-phone-big { padding: 18px 28px; font-size: 1.4rem; }

  .brand-logos-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .brand-mosaic { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 18px; }
  .call-number { font-size: 1.4rem; }
}

/* =============================================
   BRAND HERO (v2)
   ============================================= */
.brand-hero {
  padding: 140px 0 80px;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.brand-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(var(--brand-clr-rgb, 245,158,11),.08) 0%, transparent 65%);
  pointer-events: none;
}
.brand-hero-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.brand-hero h1 {
  font-family: var(--f-display); font-size: clamp(2.4rem,4vw,3.4rem);
  font-weight: 900; color: var(--white); letter-spacing: -.05em; line-height: 1.1;
  margin: 20px 0 24px;
}
.brand-hero h1 em { color: var(--amber); font-style: italic; }
.brand-hero-sub { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 540px; }
/* duplicate block — kept in sync with block above */
.brand-hero-logo-wrap {
  display: flex; align-items: center; width: fit-content;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 14px 24px;
  margin-top: 24px;
  margin-bottom: 28px;
}
.brand-hero-logo {
  height: 44px; max-width: 200px; width: auto;
  object-fit: contain; display: block;
  filter: brightness(0) invert(1);
}
.brand-name-fallback {
  font-family: var(--f-display); font-size: 2.4rem; font-weight: 900;
  letter-spacing: -.06em; margin-bottom: 12px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.35);
  transition: color .2s;
}
.back-link:hover { color: var(--amber); }

/* Brand badges grid */
.brand-hero-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  min-width: 220px;
}
.brand-badge {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 20px 16px; border-radius: var(--r);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.badge-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.badge-icon svg { width: 22px; height: 22px; color: #fff; }
.badge-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.45); }

/* =============================================
   PLANS SECTION
   ============================================= */
.plans-section { padding: 80px 0; background: var(--white); }
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 48px;
}
.plan-card {
  border-radius: var(--r-lg); padding: 32px;
  border: 1.5px solid var(--border); background: var(--white);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0;
  transition: all .25s;
}
.plan-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.plan-card.featured-plan { border-color: var(--brand-clr, var(--amber)); box-shadow: 0 0 0 1px var(--brand-clr, var(--amber)), var(--shadow); }
.plan-badge {
  display: inline-block; margin-bottom: 14px;
  padding: 4px 12px; border-radius: 50px; font-size: .7rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #fff;
}
.plan-name { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; letter-spacing: -.03em; color: var(--ink); margin-bottom: 6px; }
.plan-devices { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand-clr, var(--amber-dark)); margin-bottom: 20px; }
.plan-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.plan-feat { font-size: .87rem; color: var(--ink-sub); }
.plan-cta-wrap { margin-top: auto; }
.plan-cta {
  display: block; width: 100%; padding: 13px 20px; text-align: center;
  border-radius: var(--r); border: 1.5px solid var(--border);
  font-weight: 700; font-size: .88rem; color: var(--ink);
  transition: all .2s; background: transparent;
}
.plan-cta:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.plan-cta-brand {
  border: none; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.plan-cta-brand:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.plan-note { margin-top: 10px; font-size: .75rem; color: var(--ink-muted); text-align: center; }

/* =============================================
   FEATURE BENTO (brand pages)
   ============================================= */
.feat-bento {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  margin-top: 48px;
}
.feat-card {
  padding: 32px; border-radius: var(--r-lg);
  border: 1.5px solid var(--border); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-icon svg { width: 24px; height: 24px; }
.feat-card h3 {
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.03em; margin-bottom: 10px; color: var(--ink);
}
.feat-card p { font-size: .88rem; color: var(--ink-sub); line-height: 1.75; }

/* =============================================
   CONTACT LAYOUT
   ============================================= */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-form-wrap {
  padding: 40px; border-radius: var(--r-lg);
  border: 1.5px solid var(--border); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 700;
  letter-spacing: -.04em; margin-bottom: 8px; color: var(--ink);
}
.form-submit {
  width: 100%; padding: 15px; border-radius: var(--r);
  background: var(--ink); color: var(--white); font-weight: 700;
  font-size: .95rem; letter-spacing: -.01em; transition: all .2s;
  cursor: pointer; border: none; font-family: var(--f-body);
}
.form-submit:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* About grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* =============================================
   ADDITIONAL RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .brand-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .feat-bento { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .plans-grid { grid-template-columns: 1fr; }
  .brand-hero { padding: 120px 0 60px; }
  .brand-hero-logo { height: 44px; }
  .brand-hero-badges { display: grid; grid-template-columns: 1fr 1fr; }
  .feat-bento { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .compare-table { font-size: .8rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.compare-section { padding: 80px 0; background: var(--white); }

/* Scroll container with right-fade hint */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
  position: relative;
}
/* Fade-right gradient to hint scroll */
.compare-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to left, rgba(255,255,255,.9), transparent);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 16px 16px 0;
}
.compare-wrap.no-scroll-hint::before { display: none; }

.compare-table { width: 100%; border-collapse: collapse; background: var(--white); }
.compare-table thead th {
  padding: 18px 20px; text-align: center;
  font-family: var(--f-display); font-weight: 900; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase; background: var(--ink); color: var(--white);
  white-space: nowrap;
}
.compare-table thead th:first-child { text-align: left; border-radius: 16px 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 16px 0 0; }
.compare-table thead th.featured-col { background: var(--amber); color: var(--ink); }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--off-white); }
.compare-table td { padding: 14px 20px; text-align: center; font-size: .9rem; color: var(--muted); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare-table td.featured-col { background: rgba(245,158,11,.04); }
.check { color: #22c55e; font-size: 1.1rem; }
.cross { color: #e5e7eb; font-size: 1.1rem; }
.compare-cta-row td { padding: 20px; background: var(--off-white); }
.compare-cta-row td.featured-col { background: rgba(245,158,11,.08); }
.compare-btn {
  display: inline-block; padding: 10px 22px; border-radius: 100px;
  font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
  border: 2px solid currentColor; transition: all .2s;
  white-space: nowrap;
}
.compare-btn:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.compare-btn.featured-btn {
  background: var(--amber); color: var(--ink);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(245,158,11,.3);
}
.best-seller-tag {
  display: inline-block; background: var(--amber); color: var(--ink);
  font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 50px; margin-left: 6px; vertical-align: middle;
}

/* Sticky first column on mobile */
@media (max-width: 768px) {
  .compare-table { width: max-content; min-width: 100%; table-layout: fixed; }

  /* Feature label column — sticky, fixed width */
  .compare-table td:first-child,
  .compare-table th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--white);
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    word-break: break-word;
  }
  .compare-table thead th:first-child { background: var(--ink); }
  .compare-table .compare-cta-row td:first-child { background: var(--off-white); }

  /* Plan columns — equal fixed width, headers can wrap */
  .compare-table th:not(:first-child),
  .compare-table td:not(:first-child) {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
  /* Allow header text to wrap so long plan names don't explode the column */
  .compare-table thead th { white-space: normal; line-height: 1.3; }
  /* Suppress best-seller-tag on mobile header — saves vertical space */
  .compare-table thead .best-seller-tag { display: none; }
}
@media (max-width: 480px) {
  .compare-table td:first-child,
  .compare-table th:first-child {
    width: 120px; min-width: 120px; max-width: 120px;
    font-size: .75rem; padding: 10px 8px;
  }
  .compare-table th:not(:first-child),
  .compare-table td:not(:first-child) {
    width: 88px; min-width: 88px; max-width: 88px;
  }
  .compare-table th, .compare-table td { padding: 10px 6px; font-size: .76rem; }
  .compare-table thead th { font-size: .62rem; padding: 10px 6px; }
  /* Hide CTA row on mobile — sticky bar handles conversions */
  .compare-cta-row { display: none; }
  .compare-section { padding: 48px 0; }
}

/* =============================================
   FAQ SECTION (brand pages — uses .faq-q / .faq-a)
   ============================================= */
.faq-section { padding: 80px 0; background: var(--off-white); }
/* .faq-list inherits unified style from global FAQ rules above */
.faq-list { margin-top: 40px; }

/* Brand page button */
.faq-q {
  width: 100%; text-align: left; padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 1rem; color: var(--ink); cursor: pointer;
  background: none; border: none; transition: background .15s;
}
@media (hover: hover) { .faq-q:hover { background: var(--off-white); } }
.faq-item.open .faq-q { background: var(--off-white); }

.faq-q .faq-icon { font-size: 1.2rem; color: var(--ink-muted); flex-shrink: 0; transition: transform .28s, color .2s; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); color: var(--amber); }

.faq-a {
  padding: 0 28px; max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s;
  font-size: .92rem; color: var(--ink-sub); line-height: 1.8;
}
.faq-item.open .faq-a { padding: 0 28px 24px; max-height: 600px; }

/* =============================================
   BEST SELLERS HOMEPAGE SECTION
   ============================================= */
.bestseller-section { padding: 90px 0; background: var(--ink); position: relative; overflow: hidden; }
.bestseller-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,158,11,.08) 0%, transparent 60%);
  pointer-events: none;
}
.bestseller-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.bestseller-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 32px 28px; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.bestseller-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.bestseller-card.top-pick { border-color: var(--amber); background: rgba(245,158,11,.06); }
.bs-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--amber); color: var(--ink);
  font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 50px;
}
.bs-brand { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--amber); margin-bottom: 8px; }
.bs-product { font-family: var(--f-display); font-size: 1.3rem; font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.bs-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 24px; }
.bs-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.bs-features li { font-size: .82rem; color: rgba(255,255,255,.65); }
.bs-features li::before { content: '✓ '; color: var(--amber); font-weight: 700; }
.bs-cta {
  display: block; text-align: center; padding: 12px 20px;
  background: var(--amber); color: var(--ink);
  font-weight: 900; font-size: .85rem; border-radius: 100px;
  transition: opacity .2s;
}
.bs-cta:hover { opacity: .85; }
@media (max-width: 900px) { .bestseller-grid { grid-template-columns: 1fr; } }

/* FOOTER DISCLOSURES */
.footer-disclosures {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0 12px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclosures p {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin: 0;
}
.footer-disclosures p strong {
  color: rgba(255,255,255,.5);
  font-weight: 700;
}
.footer-disclosures a {
  color: rgba(255,255,255,.35);
  text-decoration: underline;
}

.guarantee-bar .g-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  display: block;
}

/* =============================================
   MOBILE UX — COMPREHENSIVE FIXES
   ui-ux-pro-max guidelines applied
   ============================================= */


/* ── Touch performance ── */
a, button, [role="button"],
.plan-cta, .cta-phone-big, .compare-btn,
.faq-q, .faq-btn, .nav-toggle, .float-call,
.mosaic-card, .bs-cta, .back-link {
  touch-action: manipulation; /* Remove 300ms tap delay */
  -webkit-tap-highlight-color: transparent;
}

/* ── Viewport units — dvh fix for iOS Safari ── */
.hero { min-height: min(100svh, 800px); }

/* ── All interactive elements min 44×44px ── */
.plan-cta {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
}
.compare-btn { min-height: 44px; display: inline-flex; align-items: center; }
.faq-q, .faq-btn { min-height: 56px; }
.back-link { min-height: 44px; }
/* header-cta — used on legal pages instead of header-phone-num */
.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 50px;
  background: var(--amber); color: var(--ink);
  font-weight: 800; font-size: .88rem; letter-spacing: -.01em;
  box-shadow: 0 2px 12px rgba(245,158,11,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap; min-height: 44px;
}
@media (hover: hover) {
  .header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,158,11,.5); }
}
/* Hide text CTA on mobile — sticky bar handles it */
@media (max-width: 768px) { .header-cta { display: none; } }

/* ── Form inputs — prevent iOS auto-zoom (must be ≥16px) ── */
input, select, textarea {
  font-size: 16px !important;
}

/* ── Horizontal scroll guard ── */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Safe area — sticky bars ── */
.sticky-call-bar {
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}
body { padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }


/* ── 375px — small phone ── */
@media (max-width: 390px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .brand-mosaic { grid-template-columns: 1fr; }
  .mosaic-card.featured { grid-column: span 1; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cta-phone-big { font-size: 1.2rem; padding: 16px 20px; }
}

/* ── 480px — mobile ── */
@media (max-width: 480px) {
  /* Sections */
  section { padding: 56px 0; }
  .hero { padding: 100px 0 56px; }
  .brand-hero { padding: 100px 0 48px; }
  .compare-section, .faq-section { padding: 56px 0; }
  .bestseller-section { padding: 64px 0; }

  /* Hero text */
  .hero-sub { font-size: .92rem; line-height: 1.7; }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta-group a { text-align: center; justify-content: center; }

  /* Brand hero */
  .brand-hero-inner { gap: 28px; }
  .brand-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); margin: 12px 0 16px; }
  .brand-hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .brand-badge { padding: 14px 10px; gap: 6px; }

  /* Plans */
  .plans-grid { gap: 14px; margin-top: 32px; }
  .plan-card { padding: 24px 20px; }
  .plan-name { font-size: 1.05rem; }

  /* Bestseller */
  .bestseller-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .bestseller-card { padding: 24px 20px; }

  /* Compare — padding overrides now in dedicated @media blocks above */
  .best-seller-tag { display: block; margin: 4px 0 0; font-size: .6rem; }

  /* FAQ */
  .faq-q, .faq-btn { padding: 16px 20px; font-size: .92rem; }
  .faq-a, .faq-body { padding: 0 20px; font-size: .88rem; }
  .faq-item.open .faq-a { padding: 0 20px 16px; }
  .faq-item.open .faq-body { padding: 0 20px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col h4 { margin-top: 0; }

  /* sec-head */
  .sec-head { text-align: left; }
  .sec-head.center { text-align: center; }
  .section-sub { font-size: .88rem; }

  /* Mosaic cards text */
  .mosaic-card-name { font-size: .8rem; }

  /* Why bento */
  .bento-card { padding: 24px 20px; }
}

/* ── 768px — tablet ── */
@media (max-width: 768px) {
  /* Nav height compensation */
  .site-header { height: 68px; }
  main { padding-top: 0; }

  /* Sticky call bar — better sizing */
  .sticky-call-bar { font-size: .9rem; padding: 14px 20px; }
  .sticky-call-bar a { font-weight: 800; }

  /* Steps — better mobile flow */
  .steps-grid { gap: 2px; }
  .step-item { padding: 24px 20px; }

  /* Testimonials */
  .testi-card { padding: 24px; }

  /* Contact form */
  .form-group { margin-bottom: 16px; }

  /* About page */
  .about-grid { gap: 32px; }

  /* Compare section intro */
  .compare-section .section-sub { font-size: .88rem; }
}

/* ── Landscape mobile — prevent layout break ── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { padding: 80px 0 40px; min-height: auto; }
  .brand-hero { padding: 80px 0 40px; }
}

/* ── Line-length control — readability ── */
@media (min-width: 768px) {
  .brand-hero-sub { max-width: 540px; }
  .section-sub { max-width: 580px; margin-left: auto; margin-right: auto; }
}

/* ── Hover only on non-touch devices ── */
@media (hover: hover) {
  .plan-card:hover { transform: translateY(-4px); }
  .mosaic-card:hover { transform: translateY(-2px); }
}
@media (hover: none) {
  .plan-card:hover,
  .mosaic-card:hover { transform: none; }
}

/* ── Focus rings — keyboard accessibility ── */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* Hide compare scroll hint when table fits */
/* no-scroll-hint::before already handled in compare-wrap::before rule above */

/* ── Nav toggle — white bars on dark bg brand pages ── */
.logo-name-white ~ * .nav-toggle span,
.site-header:not(.scrolled) .nav-toggle span {
  /* stays dark — header bg is always light-frosted */
}

/* ── Mobile menu link active state ── */
.mobile-menu a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
  border-radius: 4px;
}

/* ── Sticky call bar safe area ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-call-bar {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }
  body { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
}

/* ─────────────────────────────────────────
   MOBILE CALL CARD + STICKY BAR FIXES
───────────────────────────────────────── */

/* Never break phone numbers mid-digit */
.call-number,
.sticky-call-bar a,
.cta-phone-big,
[data-phone],
.header-phone-num {
  white-space: nowrap;
}

/* Call hero card — mobile reflow */
@media (max-width: 480px) {
  .call-hero-card {
    padding: 20px 18px;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .call-icon-wrap {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }
  .call-icon-wrap svg { width: 20px; height: 20px; }
  .call-number {
    font-size: 1.25rem; /* shrink so it fits on one line */
  }
  .call-label {
    font-size: .65rem;
    letter-spacing: .08em;
  }
  .call-hours {
    font-size: .72rem;
  }
  .call-arrow {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
  .call-arrow svg { width: 14px; height: 14px; }
}

/* Sticky call bar — centered on all sizes */
@media (max-width: 480px) {
  .sticky-call-bar a {
    font-size: .9rem;
    gap: 8px;
    padding: 14px 16px;
    justify-content: center;
  }
  .sticky-call-bar a svg { width: 17px; height: 17px; }
  .bar-sub { font-size: .65rem; text-align: center; }
}

/* Smallest phones */
@media (max-width: 390px) {
  .call-number { font-size: 1.1rem; }
  .sticky-call-bar a { font-size: .82rem; }
}

/* Brand badges — min-width guard prevents grid blowout */
.brand-badge { min-width: 0; }
@media (max-width: 480px) {
  .brand-badge { padding: 16px 12px; gap: 8px; }
  .badge-icon { width: 40px; height: 40px; border-radius: 10px; }
  .badge-icon svg { width: 20px; height: 20px; }
  .badge-label { font-size: .65rem; letter-spacing: .05em; }
}

/* =============================================
   LEGAL PAGES (disclaimer, privacy, terms, refund)
   ============================================= */
.policy-hero {
  background: var(--ink); padding: 100px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.policy-hero .section-label {
  display: inline-block; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--amber); margin-bottom: 16px;
}
.policy-hero h1 {
  font-family: var(--f-display); font-size: clamp(2rem,4vw,2.8rem);
  font-weight: 900; color: var(--white); margin: 0 0 12px;
}
.policy-hero .meta { color: rgba(255,255,255,.4); font-size: .82rem; }

.policy-body { padding: 64px 0 100px; background: var(--white); }
.policy-content { max-width: 780px; }
.policy-content h2 {
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 900;
  color: var(--ink); margin: 52px 0 14px;
  padding-bottom: 10px; border-bottom: 2px solid #F3F4F6;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { font-size: .95rem; font-weight: 800; color: var(--ink); margin: 28px 0 8px; }
.policy-content p { color: #374151; line-height: 1.85; margin: 0 0 14px; font-size: .93rem; }
.policy-content ul, .policy-content ol { margin: 0 0 18px 22px; color: #374151; font-size: .93rem; line-height: 1.85; }
.policy-content li { margin-bottom: 6px; }
.policy-content strong { color: var(--ink); }
.policy-content a { color: #D97706; }

.policy-callout {
  background: #FFFBEB; border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0; padding: 16px 20px;
  margin: 24px 0; font-size: .88rem; color: #374151; line-height: 1.7;
}
.policy-callout strong { color: #92400E; }

.policy-info {
  background: #F0F9FF; border: 1px solid #BAE6FD;
  border-radius: 10px; padding: 18px 22px;
  margin: 20px 0; font-size: .88rem; color: #075985; line-height: 1.7;
}

/* Refund eligibility table */
.refund-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .88rem; border-radius: 10px; overflow: hidden; }
.refund-table th { background: var(--ink); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.refund-table td { padding: 11px 16px; border-bottom: 1px solid #E5E7EB; color: #374151; vertical-align: top; }
.refund-table tr:last-child td { border-bottom: none; }
.refund-table tr:nth-child(even) td { background: #F9FAFB; }
.tag-y { display: inline-block; background: #D1FAE5; color: #065F46; font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; white-space: nowrap; }
.tag-n { display: inline-block; background: #FEE2E2; color: #991B1B; font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; white-space: nowrap; }
.tag-c { display: inline-block; background: #FEF3C7; color: #92400E; font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; white-space: nowrap; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.contact-card { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 10px; padding: 18px 22px; }
.contact-card .lbl { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #9CA3AF; margin-bottom: 5px; }
.contact-card .val { font-size: .95rem; font-weight: 700; color: var(--ink); }
.contact-card .note { font-size: .78rem; color: #6B7280; margin-top: 3px; }

/* Legal pages — mobile */
@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
  .refund-table { font-size: .8rem; }
  .refund-table th, .refund-table td { padding: 9px 10px; }
  .policy-hero { padding: 90px 0 40px; }
  .policy-body { padding: 40px 0 60px; }
  .policy-content h2 { font-size: 1.05rem; margin-top: 36px; }
}


/* On plans-section (white bg) the wrap gets a matching bg */
.plans-section .trust-seal-wrap {
  background: var(--white);
}
@media (max-width: 600px) {
  .trust-seal {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .seal-chips { justify-content: center; }
  .seal-svg { width: 72px; }
}
/* Homepage / about / contact standalone section */
section > .container > .trust-seal-wrap {
  padding-top: 0;
  border-top: none;
}
section > .container > .trust-seal-wrap .trust-seal {
  max-width: 700px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: 20px;
  padding: 28px 32px;
  border: 1.5px solid var(--border);
}
