/* =============================================================
   PBGAI — site.css  (Marketing theme, consolidated)
   -------------------------------------------------------------
   Single shared stylesheet for the public Marketing-theme pages.
   This is a faithful relocation of the two inline <style> blocks
   in index.html plus its :root tokens — values and behavior are
   unchanged; only organized and tidied.

   NOTE: This is the Marketing design system. It is intentionally
   SEPARATE from the App theme's pbgai.css — the two never merge.

   CSS variable names are preserved exactly as they appear in
   index.html. Renaming to long-form tokens (e.g. --color-bg) is a
   later Phase-2 cleanup; do not rename here.

   Brand values (verified intact):
     --blue   #00d4aa   primary blue
     --purple #7c5cfc   secondary accent
     Dark Marketing palette: bg #070e1c / bg2 #0c1526 /
     bg3 #111e33 / bg4 #172540
   Requires the Plus Jakarta Sans font (loaded via <link> in <head>).
   ============================================================= */

/* ── DESIGN TOKENS ── */
:root {
  --bg:          #070e1c;
  --bg2:         #0c1526;
  --bg3:         #111e33;
  --bg4:         #172540;
  --border:      rgba(255,255,255,0.07);
  --border-hi:   rgba(255,255,255,0.14);
  --blue:        #00d4aa;
  --blue-dim:    rgba(0,212,170,0.12);
  --blue-glow:   rgba(0,212,170,0.28);
  --purple:      #7c5cfc;
  --purple-dim:  rgba(124,92,252,0.12);
  --text-1:      #eef0f8;
  --text-2:      rgba(238,240,248,0.75);   /* Raised from .62 → .75 for WCAG AA */
  --text-3:      rgba(238,240,248,0.55);   /* Raised from .36 → .55 for WCAG AA */
  --r-sm:        6px;
  --r-md:        10px;
  --r-lg:        16px;
  --r-xl:        22px;
  --r-pill:      999px;
}

/* =============================================================
   BASE / RESET
   ============================================================= */

/* Hide default reCAPTCHA badge — disclosure shown inline per Google policy */
.grecaptcha-badge { visibility: hidden !important; }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SKIP NAVIGATION (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── SCREEN-READER ONLY (accessibility) ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── FOCUS STYLES (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove focus ring for mouse users who don't need it */
:focus:not(:focus-visible) {
  outline: none;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* =============================================================
   TYPOGRAPHY / SECTION HEADINGS
   ============================================================= */

/* ── SECTION BASE ── */
section { padding: 6rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-center { text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--blue); border-radius: 2px; }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-2); font-weight: 400;
  max-width: 520px; line-height: 1.8;
}
.section-center .section-sub { margin: 0 auto; }
.section-right { text-align: right; }
.section-right .section-sub { margin-left: auto; margin-right: 0; }
.section-right .section-tag { flex-direction: row-reverse; }
@media (max-width: 768px) {
  /* collapse the stagger on mobile — left-aligned reads cleaner on a narrow screen */
  .section-right { text-align: left; }
  .section-right .section-sub { margin-left: 0; }
  .section-right .section-tag { flex-direction: row; }
}

/* ── SPLIT SECTION (text + image, alternating sides) ── */
.section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.section-split--reverse .split-media { order: -1; }
.split-media { border-radius: var(--r-lg); overflow: hidden; line-height: 0; border: 1px solid var(--border); aspect-ratio: 3 / 2; background: var(--bg3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .section-split { grid-template-columns: 1fr; gap: 2rem; }
  .section-split--reverse .split-media { order: 0; }   /* image below text on mobile */
}
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── PAGE HEADER & CTA IMAGE BANDS ──
   Mobile-first: static cover image + dark overlay (no scroll-JS, no
   background-attachment:fixed — both janky/broken on mobile). Desktop/tablet
   get a slow GPU-only "Ken Burns" drift; off under reduced-motion. Mirrors
   index.html's parallax strategy (animated >768px, static on mobile).
   Per-band image set inline: style="--page-hero-img:url('/img/Hero.jpg')"
   .page-hero = page header (fades into page below);
   .cta-band  = final CTA section (image shows through a symmetric dark wash). */
.page-hero, .cta-band { position: relative; overflow: hidden; isolation: isolate; background: var(--bg2); }
.page-hero::before, .cta-band::before {
  content: ''; position: absolute; inset: -2%; z-index: -2;
  background-image: var(--page-hero-img, none);
  background-size: cover; background-repeat: no-repeat;
  transform: scale(1.04);
}
.page-hero::before { background-position: center 42%; }   /* Hero.jpg — skyline + sky */
.cta-band::before  { background-position: center 38%; }   /* Paralax-02.jpg — building + sky */
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,14,28,0.74) 0%, rgba(7,14,28,0.88) 55%, var(--bg) 100%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,14,28,0.82) 0%, rgba(7,14,28,0.66) 50%, rgba(7,14,28,0.86) 100%);
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.10) translate3d(0,-2%,0); }
}
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .page-hero::before, .cta-band::before { animation: heroDrift 34s ease-in-out infinite alternate; will-change: transform; }
}
@media (max-width: 768px) {
  .page-hero::after { background: linear-gradient(180deg, rgba(7,14,28,0.80) 0%, rgba(7,14,28,0.90) 60%, var(--bg) 100%); }
  .cta-band::after  { background: linear-gradient(180deg, rgba(7,14,28,0.86) 0%, rgba(7,14,28,0.74) 50%, rgba(7,14,28,0.88) 100%); }
}

/* =============================================================
   COMPONENTS
   ============================================================= */

/* ── NOTIF BAR ── */
.notif-bar {
  background: var(--blue);
  text-align: center;
  padding: 0.55rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.notif-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(7,14,28,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 1.3rem; font-weight: 800; color: var(--text-1); text-decoration: none; letter-spacing: -0.03em; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-2); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-1); }
.btn-nav {
  background: var(--blue); color: #fff !important;
  padding: 0.55rem 1.3rem; border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 0.9rem 2rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 8px 32px var(--blue-glow); }
.btn-ghost {
  background: transparent; color: var(--text-2);
  padding: 0.9rem 1.75rem; border-radius: var(--r-sm);
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  border: 2.5px solid var(--border-hi); transition: all 0.2s; cursor: pointer;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--text-3); color: var(--text-1); }

/* ── HERO ── */
.hero {
  padding: 5.5rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue-dim);
  border: 1px solid rgba(0,212,170,0.22);
  color: var(--blue);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: var(--r-pill);
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue-glow);
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 1rem; color: var(--text-2); font-weight: 400;
  line-height: 1.85; margin-bottom: 2.25rem; max-width: 500px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-3);
}
.hero-trust span { color: var(--blue); font-weight: 600; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  position: relative; display: flex; justify-content: center; align-items: flex-start;
}
.contact-card {
  width: 100%; max-width: 460px;
  background: var(--bg2); border: 1px solid var(--border-hi);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
}
.contact-card-header {
  background: var(--bg3); border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.75rem 1.25rem;
}
.contact-card-title { font-size: 1.1rem; font-weight: 800; color: var(--text-1); margin-bottom: 0.35rem; letter-spacing: -0.02em; }
.contact-card-sub { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }
.contact-form { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label { font-size: 0.75rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.02em; }
.form-input {
  background: var(--bg3); border: 1px solid var(--border-hi);
  border-radius: var(--r-sm); color: var(--text-1);
  padding: 0.65rem 0.9rem; font-size: 1rem; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,212,170,0.18); }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 0.95rem; margin-top: 0.25rem; }
.form-input.error { border-color: #f43f5e; box-shadow: 0 0 0 3px rgba(244,63,94,0.12); }
.form-input.valid { border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.08); }
.field-error { font-size: 0.7rem; color: #f78ca0; margin-top: 0.2rem; display: none; }
.field-error.visible { display: block; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.sms-consent-block {
  background: var(--bg3); border: 1px solid var(--border-hi);
  border-radius: var(--r-md); padding: 0.9rem 1rem; margin-top: 0.25rem;
}
.sms-consent { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.75rem; }
.sms-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 17px; height: 17px; min-width: 17px; margin-top: 1px;
  border: 1.5px solid var(--border-hi); border-radius: 4px;
  background: var(--bg4); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.sms-consent input[type="checkbox"]:checked {
  background: var(--blue); border-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px 8px;
}
.sms-consent label { font-size: 0.78rem; color: var(--text-2); line-height: 1.5; cursor: pointer; font-weight: 500; }
.sms-consent-details p { font-size: 0.62rem; color: var(--text-3); line-height: 1.5; margin-bottom: 0.3rem; }
.sms-consent-details p:last-child { margin-bottom: 0; }
.sms-consent-details strong { color: var(--text-2); font-weight: 600; }
.sms-consent-links { margin-top: 0.5rem !important; border-top: 1px solid var(--border); padding-top: 0.5rem; }
.sms-consent-links a { color: var(--blue); font-size: 0.62rem; text-decoration: none; }
.sms-consent-links a:hover { text-decoration: underline; }
.sms-sub-disclosure { font-size: 0.66rem; color: var(--text-3); line-height: 1.55; margin-top: 0.5rem; }
.sms-sub-disclosure a { color: var(--blue); text-decoration: none; }
.sms-sub-disclosure a:hover { text-decoration: underline; }
.form-success { padding: 2.5rem 1.75rem; text-align: center; }
#form-success { min-height: 620px; }   /* reserve height so the hero column doesn't collapse during the form→booking swap */
.success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue-dim);
  border: 1.5px solid rgba(0,212,170,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue); margin: 0 auto 1.25rem;
}
.form-success h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ── PHONE MOCKUP ── */
.phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone {
  width: 300px;
  background: var(--bg2);
  border: 1.5px solid var(--border-hi);
  border-radius: 38px;
  padding: 0 0 28px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-notch {
  width: 90px; height: 26px; background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.phone-cam { width: 8px; height: 8px; border-radius: 50%; background: #1a2540; }
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1.25rem; font-size: 0.65rem; color: var(--text-3); font-weight: 600;
}
.phone-header {
  background: var(--bg3); border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem; display: flex; align-items: center; gap: 0.6rem;
}
.phone-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--blue-dim);
  border: 1.5px solid rgba(0,212,170,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--blue);
}
.phone-contact { flex: 1; }
.phone-contact-name { font-size: 0.82rem; font-weight: 700; color: var(--text-1); }
.phone-contact-sub { font-size: 0.62rem; color: var(--blue); font-weight: 600; }
.phone-body { padding: 1rem 1rem 0; display: flex; flex-direction: column; gap: 0.65rem; }
.sms-time { text-align: center; font-size: 0.6rem; color: var(--text-3); margin: 0.25rem 0; }
.sms-bubble {
  max-width: 88%; padding: 0.7rem 0.9rem;
  border-radius: 14px; font-size: 0.72rem; line-height: 1.6;
}
.sms-in {
  background: var(--bg4); color: var(--text-2);
  border-radius: 14px 14px 14px 4px;
  align-self: flex-start;
}
.sms-out {
  background: var(--blue); color: #fff;
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
}
.sms-in strong { color: var(--text-1); display: block; margin-bottom: 0.25rem; font-size: 0.73rem; }
.sms-link {
  display: inline-block; margin-top: 0.4rem;
  color: var(--blue); font-size: 0.65rem; font-weight: 600;
  background: rgba(0,212,170,0.12); border-radius: 4px; padding: 0.2rem 0.5rem;
}
.sms-typing {
  display: flex; align-items: center; gap: 3px;
  background: var(--bg4); padding: 0.65rem 0.9rem; border-radius: 14px 14px 14px 4px;
  align-self: flex-start; width: fit-content;
}
.sms-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--text-3); animation: typingDot 1.4s ease-in-out infinite; }
.sms-dot:nth-child(2) { animation-delay: 0.2s; }
.sms-dot:nth-child(3) { animation-delay: 0.4s; }
.phone-glow {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: -1;
}
.phone-glow-1 { width: 260px; height: 260px; background: rgba(0,212,170,0.12); top: -60px; right: -40px; }
.phone-glow-2 { width: 200px; height: 200px; background: rgba(124,92,252,0.08); bottom: 0; left: -60px; }

/* ── PAIN SPLIT ── */
.pain-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}
.pain-phone-col {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.pain-left-col, .pain-right-col {
  display: flex; flex-direction: column; gap: 2.5rem;
}
.pain-right-col { text-align: right; }
.pain-item-center { display: flex; flex-direction: column; }
.pain-item-center .pain-num {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.04em;
  color: rgba(0,212,170,0.18); margin-bottom: 0.4rem; line-height: 1;
}
.pain-item-center h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-1); }
.pain-item-center p { font-size: 0.82rem; color: var(--text-2); line-height: 1.7; }
.pain-right-col .pain-item-center { align-items: flex-end; }
.pain-section-header { text-align: center; margin-bottom: 3.5rem; }
@media (max-width: 960px) {
  .pain-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .pain-right-col { text-align: left; }
  .pain-right-col .pain-item-center { align-items: flex-start; }
  .pain-phone-col { order: -1; }
  .pain-left-col, .pain-right-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 560px) {
  .pain-left-col, .pain-right-col { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── HOW IT WORKS ── */
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem;
}
.step-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.25rem 1.75rem;
  transition: border-color 0.2s, transform 0.15s;
  text-align: center;
}
.step-card:hover { border-color: rgba(0,212,170,0.3); transform: translateY(-3px); }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid rgba(0,212,170,0.25);
  color: var(--blue); font-size: 0.85rem; font-weight: 800;
  margin: 0 auto 1.5rem;
}
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }

/* ── SETUP TABS ── */
.setup-tabs-wrap { margin-top: 3rem; }
.setup-tab-btns {
  display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 1.5rem;
  role: tablist;
}
.setup-tab-btn {
  padding: 0.55rem 1.1rem; border-radius: var(--r-pill);
  border: 1px solid var(--border-hi); background: transparent;
  color: var(--text-2); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.2s; white-space: nowrap;
}
.setup-tab-btn:hover { border-color: var(--text-3); color: var(--text-1); }
.setup-tab-btn.active, .setup-tab-btn[aria-selected="true"] {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.setup-tab-panel {
  display: none;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem;
  text-align: left; max-width: 680px; margin: 0 auto;
  animation: fadeUp 0.25s ease both;
}
.setup-tab-panel.active { display: block; }
.setup-panel-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: var(--r-pill); margin-bottom: 1.25rem;
  background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(124,92,252,0.25);
}
.setup-tab-panel h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.85rem; color: var(--text-1); letter-spacing: -0.02em; }
.setup-tab-panel p { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; }
.setup-tab-note { margin-top: 1.25rem; font-size: 0.8rem; color: var(--text-3); font-style: italic; padding-top: 1.25rem; border-top: 1px solid var(--border); }
@media (max-width: 600px) {
  .setup-tab-panel { padding: 1.75rem 1.25rem; }
  .setup-tab-btn { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
}

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 3rem;
}
.feature-card {
  background: var(--bg2); padding: 2rem 1.75rem;
  transition: background 0.2s; text-align: center;
}
.feature-card:hover { background: var(--bg3); }
.feat-graphic {
  width: 100%; margin-bottom: 1.25rem;
  border-radius: var(--r-md);
  overflow: hidden; line-height: 0;
  aspect-ratio: 16/9;
  background: var(--bg3);
}
.feat-graphic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.feature-card:hover .feat-graphic img { transform: scale(1.04); }
.feature-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.7; }

/* ── VIDEO ── */
.video-wrap {
  max-width: 820px; margin: 3rem auto 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-xl); aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; cursor: pointer; transition: border-color 0.2s;
  position: relative; overflow: hidden;
}
.video-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,212,170,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.video-wrap:hover { border-color: rgba(0,212,170,0.3); }
.play-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--blue-glow);
  transition: transform 0.2s; position: relative; z-index: 1;
}
.video-wrap:hover .play-btn { transform: scale(1.08); }
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 4px; }
.video-label { color: var(--text-3); font-size: 0.8rem; position: relative; z-index: 1; }

/* ── PRICING ── */
.pricing-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin: 3.5rem auto 0;
}
.plan {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.25rem 2rem;
  display: flex; flex-direction: column; position: relative;
  transition: border-color 0.2s, transform 0.15s;
}
.plan:hover { transform: translateY(-3px); border-color: var(--border-hi); }
.plan.featured {
  border-color: rgba(0,212,170,0.4);
  background: linear-gradient(160deg, var(--bg3) 0%, var(--bg2) 100%);
  box-shadow: 0 0 60px rgba(0,212,170,0.06);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: var(--r-pill); white-space: nowrap;
}
.plan-name { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 700; margin-bottom: 0.75rem; }
.plan-price { font-size: 3rem; font-weight: 800; color: var(--text-1); line-height: 1; margin-bottom: 0.25rem; letter-spacing: -0.04em; }
.plan-price sup { font-size: 1.25rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; font-weight: 600; }
.plan-price .period { font-size: 0.85rem; color: var(--text-3); font-weight: 400; letter-spacing: 0; }
.plan-desc { font-size: 0.85rem; color: var(--text-2); margin: 1rem 0 1.5rem; line-height: 1.7; }
.plan-features { list-style: none; flex: 1; margin-bottom: 1.75rem; text-align: left; }
.plan-features li {
  display: flex; gap: 0.65rem; align-items: flex-start; text-align: left;
  font-size: 0.85rem; color: var(--text-2); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  border-radius: 50%; background: var(--blue-dim);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300d4aa' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.btn-plan {
  display: block; text-align: center;
  padding: 0.875rem; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; cursor: pointer;
}
.btn-plan-ghost { border: 1px solid var(--border-hi); color: var(--text-1); background: transparent; }
.btn-plan-ghost:hover { background: var(--bg3); }
.btn-plan-solid { background: var(--blue); color: #fff; border: 1px solid transparent; }
.btn-plan-solid:hover { opacity: 0.88; box-shadow: 0 4px 24px var(--blue-glow); }
.pricing-note { text-align: center; margin-top: 1.5rem; font-size: 0.78rem; color: var(--text-3); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.625rem; text-align: left; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.2s; }
.faq-item[open] { border-color: var(--border-hi); }
.faq-item summary { cursor: pointer; padding: 1.2rem 1.5rem; font-size: 0.95rem; font-weight: 600; color: var(--text-1); display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--blue); flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { overflow: hidden; transition: height 0.25s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.2rem; color: var(--text-2); font-size: 0.875rem; line-height: 1.8; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem;
}
.testi-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: var(--border-hi); }
.testi-stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 0.04em; }
.testi-quote { font-size: 0.875rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-dim); border: 1px solid rgba(0,212,170,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--blue);
}
.testi-name { font-size: 0.82rem; font-weight: 700; color: var(--text-1); }
.testi-role { font-size: 0.72rem; color: var(--text-3); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem; text-align: center;
}
.trust-bar p { font-size: 1rem; color: var(--text-2); max-width: 620px; margin: 0 auto; line-height: 1.85; }
.trust-bar strong { color: var(--text-1); }

/* ── HERO BACKGROUND IMAGE ── */
.hero-bg {
  position: relative;
  background-image: url('https://pbgai.net/img/Hero.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,14,28,0.82) 0%,
    rgba(7,14,28,0.60) 55%,
    rgba(7,14,28,0.45) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-bg > * { position: relative; z-index: 1; }

/* ── FINAL CTA ── */
.cta-section {
  text-align: center; position: relative; overflow: hidden;
  padding: 8rem 2.5rem;
  background-image: url('https://pbgai.net/img/Paralax-02.jpg');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(7,14,28,0.80) 0%,
    rgba(7,14,28,0.65) 50%,
    rgba(7,14,28,0.82) 100%
  );
}

/* ── SETUP SECTION PARALLAX ── */
.setup-parallax {
  background-image: url('https://pbgai.net/img/Paralax.jpg');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  position: relative;
}
.setup-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,14,28,0.88) 0%,
    rgba(7,14,28,0.78) 50%,
    rgba(7,14,28,0.88) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.setup-parallax > * { position: relative; z-index: 1; }

/* ── PARALLAX RESPONSIVE BREAKPOINTS ── */
/* Tablet 769–1024px: parallax still runs but slightly stronger overlay */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-bg { background-position: center 35%; }
  .hero-bg::before {
    background: linear-gradient(
      135deg,
      rgba(7,14,28,0.88) 0%,
      rgba(7,14,28,0.72) 55%,
      rgba(7,14,28,0.60) 100%
    );
  }
  .cta-section { padding: 6rem 2rem; }
}
/* Mobile ≤768px: parallax JS is disabled, use static cover */
@media (max-width: 768px) {
  .hero-bg {
    background-position: center center;
    background-size: cover;
  }
  .hero-bg::before {
    background: linear-gradient(
      to bottom,
      rgba(7,14,28,0.90) 0%,
      rgba(7,14,28,0.78) 100%
    );
  }
  .setup-parallax {
    background-position: center center;
    background-size: cover;
  }
  .setup-parallax::before {
    background: rgba(7,14,28,0.88);
  }
  .cta-section {
    padding: 5rem 1.25rem;
    background-position: center center;
    background-size: cover;
  }
  .cta-bg {
    background: rgba(7,14,28,0.82);
  }
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-sub { font-size: 1rem; color: var(--text-2); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.85; }
.cta-phone { margin-top: 1.25rem; font-size: 0.8rem; color: var(--text-3); }
.cta-phone a { color: var(--text-2); text-decoration: none; font-weight: 600; }
.cta-phone a:hover { color: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1.5fr 1fr;
  gap: 3rem;
  padding: 3.5rem 2.5rem 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-logo-wrap { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.footer-logo-wrap a { color: var(--text-1); text-decoration: none; }
.footer-logo-wrap span { color: var(--blue); }
.footer-tagline { font-size: 0.82rem; color: var(--text-3); line-height: 1.65; }
.footer-col-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 1rem; }
.footer-contacts { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-phone-item { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; transition: opacity 0.2s; }
.footer-phone-item:hover { opacity: 0.8; }
.footer-phone-item:hover .fp-num { color: var(--blue); }
.fp-badge {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--bg3); border: 1px solid var(--border-hi); color: var(--text-3);
  padding: 0.18rem 0.5rem; border-radius: var(--r-sm); white-space: nowrap;
}
.fp-num { font-size: 0.85rem; color: var(--text-2); font-weight: 500; transition: color 0.2s; }
.footer-email { display: inline-block; font-size: 0.82rem; color: var(--text-3); text-decoration: none; margin-top: 0.5rem; transition: color 0.2s; }
.footer-email:hover { color: var(--blue); }
.footer-link { display: block; font-size: 0.82rem; color: var(--text-3); text-decoration: none; margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-link:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-3); }

/* ── LIGHTBOX ── */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lb-overlay.active { opacity: 1; visibility: visible; }
.lb-card {
  background: var(--bg2); border: 1px solid var(--border-hi);
  border-radius: var(--r-xl); width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  position: relative;
  transform: translateY(28px);
  transition: transform 0.3s ease;
}
.lb-overlay.active .lb-card { transform: translateY(0); }
.lb-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-2); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.lb-close:hover { background: var(--bg4); color: var(--text-1); }
.lb-header {
  background: var(--bg3); border-bottom: 1px solid var(--border);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 1.75rem 3.5rem 1.25rem 1.75rem;
}
.lb-title { font-size: 1.15rem; font-weight: 800; color: var(--text-1); margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.lb-sub { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }
.lb-form { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.lb-success { padding: 3rem 1.75rem; text-align: center; display: none; }
.lb-success-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue-dim); border: 1.5px solid rgba(0,212,170,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue); margin: 0 auto 1.25rem;
}
.lb-success h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.lb-success p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }
.lb-redirect-note {
  margin-top: 1rem; padding: 0.65rem 1rem;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-sm); font-size: 0.75rem; color: var(--text-3);
}
.lb-redirect-note span { color: var(--blue); font-weight: 600; }
@media (max-width: 600px) {
  .lb-overlay { align-items: flex-end; padding: 0; }
  .lb-card { max-width: 100%; border-radius: var(--r-xl) var(--r-xl) 0 0; max-height: 92vh; transform: translateY(100%); }
  .lb-overlay.active .lb-card { transform: translateY(0); }
  /* iOS notch / reachability: push the close button below the safe-area + enlarge tap target */
  .lb-close { top: calc(env(safe-area-inset-top, 0px) + 1.25rem); right: 1rem; width: 40px; height: 40px; }
  .lb-header { padding-top: calc(env(safe-area-inset-top, 0px) + 2.5rem); }
}

/* ── INLINE BOOKING WIDGET ── */
.bk-widget { text-align: left; }
.bk-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.65rem; }
.bk-cal-title { font-size: 0.9rem; font-weight: 700; color: var(--text-1); }
.bk-cal-btn { background: var(--bg3); border: 1px solid var(--border-hi); color: var(--text-2); border-radius: var(--r-sm); width: 44px; height: 44px; cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.15s, color 0.15s; }
.bk-cal-btn:hover { border-color: var(--blue); color: var(--blue); }
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 1.1rem; }
.bk-cal-dow { text-align: center; font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-3); padding: 0.4rem 0; }
.bk-day { min-height: 44px; border-radius: var(--r-sm); font-size: 0.85rem; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-2); border: 1px solid transparent; transition: all 0.15s; }
.bk-day.bk-open:hover { background: var(--blue-dim); color: var(--text-1); border-color: rgba(0,212,170,0.25); }
.bk-day.bk-sel { background: var(--blue); color: #fff; border-color: var(--blue); font-weight: 700; }
.bk-day.bk-today { color: var(--blue); font-weight: 700; }
.bk-day.bk-off { color: var(--text-3); opacity: 0.3; cursor: default; pointer-events: none; }
.bk-slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 0.5rem; }
.bk-slot { background: var(--bg3); border: 1.5px solid var(--border-hi); border-radius: var(--r-sm); padding: 0.75rem 0.5rem; text-align: center; font-size: 1rem; font-weight: 600; cursor: pointer; color: var(--text-2); min-height: 50px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; font-family: inherit; }
.bk-slot:hover { border-color: var(--blue); color: var(--text-1); background: var(--blue-dim); }
.bk-slot.bk-sel { background: var(--blue); color: #fff; border-color: var(--blue); }
.bk-confirm-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin: 0.85rem 0 1.1rem; }
.bk-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.bk-row:last-child { border-bottom: none; }
.bk-lbl { color: var(--text-3); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.bk-val { font-weight: 600; color: var(--text-1); }
.bk-btn-primary { width: 100%; padding: 0.9rem; font-size: 1rem; background: var(--blue); color: #fff; border: none; border-radius: var(--r-sm); font-weight: 700; cursor: pointer; font-family: inherit; min-height: 50px; transition: opacity 0.2s; display: block; }
.bk-btn-primary:hover { opacity: 0.88; }
.bk-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.bk-btn-back { width: 100%; padding: 0.75rem; font-size: 0.9rem; background: transparent; color: var(--text-2); border: 1px solid var(--border-hi); border-radius: var(--r-sm); cursor: pointer; font-family: inherit; font-weight: 500; min-height: 44px; transition: all 0.15s; display: block; margin-top: 0.5rem; }
.bk-btn-back:hover { border-color: var(--text-3); color: var(--text-1); }
.bk-skip-link { display: block; text-align: center; margin-top: 1rem; font-size: 0.8rem; color: var(--text-3); cursor: pointer; background: none; border: none; font-family: inherit; text-decoration: underline; text-underline-offset: 3px; padding: 0.35rem; }
.bk-skip-link:hover { color: var(--text-2); }
.bk-msg { font-size: 0.82rem; padding: 0.65rem 0.85rem; border-radius: var(--r-sm); margin-bottom: 0.75rem; }
.bk-err { background: rgba(244,63,94,0.1); border: 1px solid rgba(244,63,94,0.25); color: #f78ca0; }
.bk-loading { color: var(--text-3); font-size: 0.85rem; text-align: center; padding: 1.5rem 0; }

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--blue-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 3px var(--blue-glow); }
}
@keyframes typingDot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.6s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left > *:nth-child(3) { animation-delay: 0.25s; }
.hero-left > *:nth-child(4) { animation-delay: 0.3s; }
.hero-left > *:nth-child(5) { animation-delay: 0.35s; }
.phone-wrap { animation: fadeUp 0.8s ease 0.4s both; }

/* =============================================================
   RESPONSIVE (global layout breakpoints)
   ============================================================= */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; text-align: center; padding: 4rem 2rem 3rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-wrap { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 768px) {
  nav { padding: 0.85rem 1.25rem; }
  .nav-links a:not(.btn-nav) { display: none; }
  section { padding: 4rem 1.25rem; }
  .steps-row, .pricing-row, .testi-grid, .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .trust-bar { padding: 2.5rem 1.25rem; }
  /* Prevent iOS/Android auto-zoom on input focus */
  .form-input, .form-textarea, select { font-size: 16px !important; }
}
