*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900:  #0f172a;
  --navy-800:  #1e293b;
  --navy-700:  #334155;
  --navy-600:  #475569;

  --blue:       #0284c7;
  --blue-dark:  #0369a1;
  --blue-light: #e0f2fe;
  --blue-50:    #f0f9ff;
  --blue-glow:  rgba(2, 132, 199, 0.1);

  --teal:       #0d9488;
  --teal-light: #ccfbf1;

  --red:        #dc2626;
  --red-dark:   #b91c1c;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white:    #ffffff;

  /* System font stack — renders the OS's native UI font, no CDN, no FOIT */
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-system);
  --font-body:    var(--font-system);

  /* Layout — single source of truth for ALL container widths */
  --content-wide:    1280px;  /* header, hero, full sections, footer */
  --content-medium:  1080px;  /* content-heavy sections */
  --content-narrow:   720px;  /* prose pages (privacy, terms, FAQ) */
  --content-form:     480px;  /* narrow form cards on desktop */
  --content-prose:    620px;  /* hero sub-text and similar inline prose */
  --content-gutter:  1.5rem;  /* horizontal padding inside containers */

  /* Breakpoints — Tailwind-aligned. Used in @media queries below. */
  --bp-sm:  640px;
  --bp-md:  768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--gray-700);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus { top: 0; }

.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;
}

/* ─── BUBBLE CANVAS ─── */
#bubble-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

/* ─── NAV ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--content-gutter);
  max-width: var(--content-wide);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  text-decoration: none;
}
.nav-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-logo span { color: var(--blue); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone svg { width: 18px; height: 18px; fill: currentColor; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(2, 132, 199, 0.25);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.35);
}
.btn-primary:focus-visible, .btn-outline:focus-visible, .btn-outline-cyan:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
.btn-large {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--gray-300);
  cursor: pointer;
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--blue);
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-outline-cyan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--teal);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-outline-cyan:hover, .btn-outline-cyan:focus-visible {
  background: var(--teal-light);
  transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Layer 1: The actual photo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.webp') center center / cover no-repeat;
}
/* Layer 2: Left-to-right gradient — fade image to light blue on the left where text sits */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #f0f9ff 0%, rgba(240, 249, 255, 0.92) 30%, rgba(240, 249, 255, 0.5) 55%, transparent 75%),
    linear-gradient(to bottom, rgba(240, 249, 255, 0.6) 0%, transparent 30%, transparent 70%, #f0f9ff 100%);
}
/* Layer 3: Soft blue tint over the image for cohesion */
.hero-bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(224, 242, 254, 0.25);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.35s;
  margin-bottom: 0.75rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.35s;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}
.hero-headline .accent { color: var(--blue); }
.hero-headline .stroke { color: var(--navy-900); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: var(--content-prose);
  margin-top: 1.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}
.hero-sub strong { color: var(--navy-900); }

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.65s;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}
.hero-price .price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}
.hero-price .price-detail {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.8s;
  list-style: none;
  padding: 0;
}

.trust-item { display: flex; flex-direction: column; margin: 0; }

.trust-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── FORM CARD ─── */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-200);
  position: relative;
}
.form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-group {
  margin-bottom: 0.75rem;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}
.form-group textarea { resize: vertical; min-height: 60px; }

/* CF7 overrides — keep CF7 markup visually identical to the custom form */
.wpcf7-form .form-group input[type=text],
.wpcf7-form .form-group input[type=tel],
.wpcf7-form .form-group input[type=email],
.wpcf7-form .form-group select,
.wpcf7-form .form-group textarea { width: 100%; }
.wpcf7-form .wpcf7-not-valid { border-color: var(--red) !important; }
.wpcf7-not-valid-tip { color: var(--red); font-size: 0.78rem; margin-top: 0.25rem; display: block; }
.wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--red);
}
.wpcf7 form.sent .wpcf7-response-output {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #065f46;
}
.wpcf7-form .form-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.wpcf7-form .wpcf7-spinner { display: none; } /* rely on form-success swap instead */
.wpcf7-form p { margin: 0; } /* CF7 wraps labels in <p>, kill its default vertical rhythm */

.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 0.85rem;
  margin-top: 0.25rem;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}
.form-guarantee svg { width: 14px; height: 14px; flex-shrink: 0; }

.form-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.form-trust-badge svg { width: 14px; height: 14px; fill: var(--blue); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.active { display: block; }
.form-success-icon { margin-bottom: 1rem; }
.form-success-icon svg {
  width: 48px; height: 48px;
  stroke: var(--teal); fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.form-success .highlight { color: var(--teal); font-weight: 600; }
.form-success-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-900);
  text-decoration: none;
  margin-top: 0.5rem;
}

/* ─── PROOF BAR ─── */
.proof-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  padding: 1.5rem 2rem;
  margin: 0;
  list-style: none;
  background: var(--blue-light);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(2, 132, 199, 0.1);
  border-bottom: 1px solid rgba(2, 132, 199, 0.1);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.proof-icon { display: flex; color: var(--blue); }
.proof-icon svg { width: 18px; height: 18px; }

/* ─── SECTIONS ─── */
.section {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section-title .accent { color: var(--teal); }
.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: var(--content-prose);
}

/* ─── PRODUCT HIGHLIGHT ─── */
.product-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-light) 100%);
  color: var(--navy-900);
}
.product-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-features {
  list-style: none;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
}
.product-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.product-features li strong { color: var(--navy-900); }
.product-price-block {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.product-price-block .price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
}
.product-price-block .price-sub {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-top: 0.5rem;
}
.product-price-block .price-includes {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 1rem;
  line-height: 1.6;
}
.product-usa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--blue-light);
  border-radius: 6px;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── WHY US ─── */
.why-section {
  position: relative;
  z-index: 2;
  background: var(--gray-50);
}
.why-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-list {
  list-style: none;
}
.why-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.why-check {
  width: 28px; height: 28px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg {
  width: 14px; height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-list h3,
.why-list h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 0.2rem;
}
.why-item-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-100);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 1.75rem;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.review-stars svg { width: 18px; height: 18px; fill: #facc15; }
.review-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: normal;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 36px; height: 36px;
  background: var(--blue-light);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-900);
  font-style: normal;
}
.review-location {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: var(--content-narrow);
  margin: 2rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  text-align: left;
}
.faq-question svg {
  width: 20px; height: 20px;
  stroke: var(--gray-400, #9ca3af);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── TRUST BADGES ─── */
.trust-section {
  position: relative;
  z-index: 2;
  background: var(--gray-50);
  padding: 3rem 2rem;
}
.trust-badges {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-badge-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge-icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-badge-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
}

/* ─── SERVICE AREAS ─── */
.areas-section {
  position: relative;
  z-index: 2;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.areas-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.areas-inner .section-label { color: var(--teal); }
.areas-inner .section-title { color: var(--navy-900); }
.areas-inner .section-title .accent { color: var(--blue); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.area-tag:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

/* ─── BOTTOM CTA ─── */
.cta-section {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--gray-50);
  color: var(--gray-500);
  font-size: 0.88rem;
  border-top: 1px solid var(--gray-200);
}
.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy-900);
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.footer-logo svg { width: 24px; height: 24px; flex-shrink: 0; }
.footer-logo span { color: var(--blue); }
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 0.4rem; }
.footer-list a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-list a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer-legal li { margin: 0; }
.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--blue); }

/* ─── MOBILE STICKY CTA ─── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--white);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.mobile-cta a { flex: 1; text-align: center; justify-content: center; }

/* ─── REVEAL ANIMATION ─── */
/* JS adds .visible when element scrolls into view. */
/* The :where(.js) gate keeps no-JS users out of the invisible state — */
/* without JS, the hide-then-reveal would leave content permanently hidden. */
:where(.js) .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
:where(.js) .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Also gate any opacity:0 hero starting states behind .js so noscript users see them */
:where(.no-js) .hero-badge,
:where(.no-js) .hero h1,
:where(.no-js) .hero-headline,
:where(.no-js) .hero-sub,
:where(.no-js) .hero-actions,
:where(.no-js) .hero-price,
:where(.no-js) .hero-trust { opacity: 1 !important; transform: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .form-card { max-width: var(--content-form); }
  .product-inner { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  *, *::before, *::after { animation-duration: 0s !important; animation-delay: 0s !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-badge, .hero h1, .hero-headline, .hero-sub, .hero-actions, .hero-price, .hero-trust { opacity: 1; }
  .hero { padding: 6rem 1.25rem 2rem; min-height: auto; }
  .hero-bg-overlay {
    background:
      linear-gradient(to bottom, rgba(240, 249, 255, 0.85) 0%, rgba(240, 249, 255, 0.7) 50%, #f0f9ff 100%);
  }
  .hero-headline { font-size: 2.2rem; }
  .hero-trust { gap: 1rem; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stat-block { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .nav-cta { display: none; }
  .mobile-cta { display: flex; }
  .hero-headline br { display: none; }
  .hero-price { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
  .form-grid { grid-template-columns: 1fr; }
  .stat-block { grid-template-columns: 1fr; }
}

.page-content { max-width: var(--content-wide); margin: 6rem auto 4rem; padding: 0 var(--content-gutter); }
.page-content--narrow { max-width: var(--content-narrow); }
.page-content article { background: var(--white); padding: 3rem; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08); overflow: hidden; }
.page-hero {
  margin: -3rem -3rem 2rem;
  padding: 3rem 3rem 2.5rem;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
    linear-gradient(135deg, var(--blue-50) 0%, var(--blue-light) 60%, rgba(2, 132, 199, 0.18) 100%);
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background:
    radial-gradient(circle at 50% 38%, var(--blue) 0%, var(--blue-dark) 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.18;
  pointer-events: none;
}
.page-hero--has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  padding: 4rem 3rem 3.5rem;
  overflow: hidden;
}
.page-hero--has-image::after { display: none; }
.page-hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(15, 23, 42, 0.18) 75%,
    rgba(15, 23, 42, 0) 100%
  );
  pointer-events: none;
}
.page-hero--has-image .page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
}
.page-hero--has-image .page-eyebrow { color: rgba(255, 255, 255, 0.85); }
.page-hero--has-image .page-title { color: #fff; max-width: 100%; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
@media (max-width: 640px) {
  .page-hero--has-image { padding: 2.5rem 1.5rem; min-height: 220px; }
  .page-hero--has-image .page-hero-content { max-width: 100%; }
  .page-hero-tint {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.35) 0%,
      rgba(15, 23, 42, 0.85) 100%
    );
  }
}
.page-eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.5rem; }
.page-title { font-family: var(--font-display); color: var(--navy-900); font-size: 2.5rem; margin: 0 0 0.5rem; line-height: 1.2; max-width: 80%; position: relative; z-index: 1; }
.page-content--narrow .page-title { max-width: 100%; }
.page-body h2 { font-family: var(--font-display); color: var(--navy-900); margin: 2rem 0 0.75rem; font-size: 1.5rem; }
.page-body p { margin: 0 0 1rem; line-height: 1.7; color: var(--gray-700); }
.page-body ul { margin: 0 0 1rem; padding-left: 1.5rem; }
.page-body ul li { margin-bottom: 0.5rem; }
@media (max-width: 640px) {
  .page-content { margin: 5rem 0.5rem 6rem; padding: 0; }
  .page-content article { padding: 1.5rem; border-radius: 6px; }
  .page-title { font-size: 1.75rem; }
}
