
/* ═══════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════ */
:root {
  --black:     #050505;
  --white:     #ffffff;
  --yellow:    #FFD600;
  --yellow-dk: #E6C000;

  --gray-50:   #fafafa;
  --gray-100:  #f2f2f2;
  --gray-200:  #e5e5e5;
  --gray-300:  #d4d4d4;
  --gray-400:  #6e6e6e;
  --gray-700:  #444;

  --accent:    #004aad;
  --accent-lt: rgba(0,102,255,0.12);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-pill:50px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);

  --transition: all 0.22s ease;

  /* Layout: 12-col system + rhythm (spacing only) */
  --container: 1240px;
  --gutter:    24px;
  --space-8:   8px;
  --space-12:  12px;
  --space-16:  16px;
  --space-20:  20px;
  --space-24:  24px;
  --space-32:  32px;
}

/* ═══════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  overflow-anchor: auto;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  padding: var(--gutter);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

::selection { background: var(--yellow); color: var(--black); }

/* Custom scrollbar */
html { scrollbar-width: thin; scrollbar-color: var(--gray-300) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 10px; border: 2px solid var(--white); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* Reveal-on-scroll - animated via ui-marathon.css / ui-marathon.js */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .footer-accent { animation: none; }
  .footer-badge-dot { animation: none; }
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gutter);
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
header {
  position: fixed;
  top: var(--space-16);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  max-width: var(--container);
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px var(--gutter);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  color: var(--black);
  letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  padding: 4px 8px;
  border-radius: 20px;
  transition: var(--transition);
}

.nav-links a:hover { background: var(--white); }

.btn-primary {
  background: var(--yellow);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   HERO - premium split layout
═══════════════════════════════════════ */
@keyframes heroFloatUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroDotPop {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.5); }
}

@keyframes heroBlobDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-24px, 20px); }
}

@keyframes heroBlobDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -16px); }
}

@keyframes heroStepIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroStepOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-16px); }
}

.hero-section {
  position: relative;
  padding-top: 112px;
  padding-bottom: var(--space-32);
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Hero background - warm, minimal, no clutter ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-base {
  position: absolute;
  inset: 0;
  background: var(--white);
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.hero-bg-blob-yellow {
  width: min(58vw, 540px);
  height: min(58vw, 540px);
  background: rgba(0, 74, 173, 0.05);
  top: -18%;
  right: -10%;
  animation: heroBlobDrift1 22s ease-in-out infinite;
}

.hero-bg-blob-blue {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  background: rgba(0, 74, 173, 0.07);
  bottom: -12%;
  left: -8%;
  animation: heroBlobDrift2 26s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-32) var(--gutter) var(--space-24);
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-anim {
  animation: heroFloatUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-anim-d1 { animation-delay: 0.08s; }
.hero-anim-d2 { animation-delay: 0.16s; }
.hero-anim-d3 { animation-delay: 0.24s; }
.hero-anim-d4 { animation-delay: 0.32s; }
.hero-anim-d5 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none; }
  .hero-pill-dot { animation: none; }
  .hero-bg-blob { animation: none; }
  .hero-step.is-entering,
  .hero-step.is-leaving { animation: none; }
  .hero-prompt-cursor { animation: none; opacity: 0; }
  .hero-form-interactive.hero-form-highlight { animation: none; }
  .hero-cat-cycle-inner.is-exiting,
  .hero-cat-cycle-inner.is-entering,
  .hero-prompt-typed.is-exiting,
  .hero-prompt-typed.is-entering { animation: none; filter: none; transform: none; }
  .hero-prompt-chips--cycle .hero-prompt-chip { opacity: 1; filter: none; transform: none; }
}

/* LEFT: COPY */
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11.5px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-16);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  background: var(--black);
  border-radius: 50%;
  display: inline-block;
}

.hero-copy h1 {
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-16);
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-copy .hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--gray-700);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--space-12);
}

.hero-copy .hero-sub strong {
  color: var(--black);
  font-weight: 700;
}

.hero-coverage {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: var(--space-20);
  opacity: 0.92;
}

/* TRUST ROW */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: var(--space-16);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.hero-trust-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #22c55e;
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-20);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 420px;
  line-height: 1.4;
}

.hero-avatars {
  display: flex;
  flex-shrink: 0;
}

.hero-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -8px;
  box-shadow: var(--shadow-sm);
}

.hero-avatars img:first-child { margin-left: 0; }

/* Typewriter prompt + example chips */
.hero-prompt-card {
  width: 100%;
  max-width: 440px;
  margin-bottom: var(--space-16);
}

.hero-prompt-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero-prompt-bubble {
  position: relative;
  padding: 18px 20px;
  margin-bottom: 22px;
  border-radius: 16px 16px 16px 4px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hero-prompt-bubble::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--accent);
  opacity: 0.85;
}

.hero-prompt-bubble::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transform: rotate(45deg);
}

.hero-prompt-line {
  display: block;
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
  min-height: 2.25em;
  padding-left: 10px;
}

.hero-prompt-prefix {
  color: var(--gray-700);
  font-weight: 500;
}

.hero-prompt-typed {
  font-weight: 700;
  color: var(--accent);
}

.hero-prompt-cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: var(--accent);
  border-radius: 1px;
  animation: heroPromptBlink 1.1s ease-in-out infinite;
}

.hero-prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-prompt-chips--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 6px;
  padding: 4px 0 6px;
  gap: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.hero-prompt-chips--scroll::-webkit-scrollbar {
  display: none;
}

.hero-prompt-chips--scroll .hero-prompt-chip {
  flex: 0 0 auto;
  min-width: auto;
  padding: 9px 14px;
  font-size: 11px;
  opacity: 0.72;
  transform: none;
  filter: none;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    opacity 0.32s ease,
    color 0.32s ease;
}

.hero-prompt-chip.is-cycle-active {
  opacity: 1;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.1);
  transform: scale(1.02);
  color: var(--black);
  z-index: 1;
}

.hero-prompt-chip.is-cycle-active .hero-prompt-chip-icon {
  color: var(--accent);
  animation: heroChipIconPop 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroChipIconPop {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Hero headline category word cycle */
.hero-cat-cycle {
  display: inline-block;
  vertical-align: bottom;
  min-width: 8ch;
  text-align: left;
  overflow: hidden;
  padding: 0.12em 0;
  line-height: 1.25;
}

.hero-cat-cycle-inner {
  display: inline-block;
  color: var(--accent);
  will-change: opacity, transform;
}

.hero-cat-cycle-inner.is-exiting {
  animation: heroCatWordOut 0.16s cubic-bezier(0.4, 0, 0.8, 0.2) forwards;
}

.hero-cat-cycle-inner.is-entering {
  animation: heroCatWordIn 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroCatWordOut {
  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}

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

.hero-prompt-typed.is-exiting {
  animation: heroTypedOut 0.18s cubic-bezier(0.4, 0, 0.8, 0.2) forwards;
}

.hero-prompt-typed.is-entering {
  animation: heroTypedIn 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroTypedOut {
  to {
    opacity: 0;
    filter: blur(4px);
    transform: translateX(-8px) scale(0.97);
  }
}

@keyframes heroTypedIn {
  from {
    opacity: 0.4;
    filter: blur(2px);
    transform: translateX(6px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

.hero-prompt-typed.is-flip {
  animation: heroTypedFlip 0.35s ease;
}

@keyframes heroTypedFlip {
  0% { opacity: 1; transform: translateY(0); }
  45% { opacity: 0; transform: translateY(-6px); }
  55% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-prompt-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}

.hero-prompt-chip-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color 0.32s ease;
}

.hero-prompt-chip.is-cycle-active .hero-prompt-chip-icon {
  color: var(--accent);
}

.hero-prompt-chip:hover {
  border-color: var(--accent);
  background: var(--white);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.08);
  color: var(--black);
}

.hero-prompt-chip:hover .hero-prompt-chip-icon {
  color: var(--accent);
}

.hero-prompt-chip.is-active {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.12);
  color: var(--black);
}

@keyframes heroPromptBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* CTAs (legacy - kept for other pages) */
.hero-contacts {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}

.hero-contact-btn.wa-primary {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.hero-contact-btn.wa-primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.hero-contact-btn.call-secondary {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.hero-contact-btn.call-secondary:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

/* Hero footer: app promo */
.hero-foot {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-app-promo-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  min-width: 0;
  grid-column: 1;
}

.hero-app-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.hero-app-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.4;
}

.hero-app-stores {
  grid-column: 2;
  justify-self: end;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* Quick WA pills */
.hero-quick-wa {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-quick-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-quick-pill {
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
}

.hero-quick-pill:hover {
  border-color: #25D366;
  background: #f0fdf4;
  transform: translateY(-1px);
}

/* ── INTERACTIVE FORM PANEL ── */
.hero-form-panel {
  min-width: 0;
  position: relative;
  width: 100%;
  max-width: none;
}

.hero-form-interactive {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 20px 20px 18px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 10px 36px rgba(0, 0, 0, 0.07),
    0 24px 56px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-form-interactive:focus-within {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 0 0 2px rgba(255, 214, 0, 0.45);
}

.hero-form-interactive.hero-form-highlight {
  animation: heroFormHighlight 1.1s ease;
}

@keyframes heroFormHighlight {
  0%, 100% {
    box-shadow:
      0 1px 2px rgba(0, 0, 0, 0.04),
      0 10px 36px rgba(0, 0, 0, 0.07);
  }
  35% {
    box-shadow:
      0 1px 2px rgba(0, 0, 0, 0.04),
      0 16px 48px rgba(0, 0, 0, 0.1),
      0 0 0 4px rgba(255, 214, 0, 0.55);
  }
}

.hero-form-interactive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

.hero-form-interactive .hero-form-head {
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  background: #FFFBEB;
  border: 1px solid rgba(255, 214, 0, 0.45);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.hero-form-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.hero-form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  line-height: 1.15;
  color: var(--black);
}

.hero-form-lead {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.45;
  margin: 0;
}

.hero-form.contact-form {
  gap: 0;
  position: relative;
  z-index: 1;
}

.hero-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-form-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.hero-form-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.hero-form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-form-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-form-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 214, 0, 0.45);
}

.hero-form-section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
}

.hero-form-divider {
  display: none;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-form-row .hero-field {
  margin-bottom: 0;
}

.hero-form-section > .hero-field {
  margin-bottom: 0;
}

.hero-form-section .form-address-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: nowrap;
  margin-bottom: 0;
}

.hero-form-section .form-address-row .hero-field {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.hero-form-section .form-address-row .hero-field-float input {
  padding-right: 36px;
}

.hero-form-section .form-address-row .btn-qh-detect-hero {
  flex: 0 0 auto;
  align-self: stretch;
}

.hero-form-consent {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}

.hero-form-interactive .hero-form-footer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 0;
}

.hero-form-interactive .btn-hero-submit {
  width: 100%;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 800;
  min-width: 0;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
  background: var(--black);
  color: var(--white);
  border: none;
}

.hero-form-interactive .btn-hero-submit:hover:not(:disabled) {
  background: #222;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.btn-hero-submit-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.hero-form-interactive .btn-hero-submit:hover:not(:disabled) .btn-hero-submit-icon {
  transform: translateX(3px);
}

.hero-form-interactive .form-secure-note {
  margin: 0;
  text-align: center;
  font-size: 10px;
  color: var(--gray-400);
}

.hero-form .consent-row-compact {
  padding: 0;
  margin: 0;
  gap: 10px;
}

.hero-form .consent-row-compact label {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--gray-700);
}

.hero-form-interactive .btn-qh-detect-hero {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 0 12px;
  min-height: 42px;
  white-space: nowrap;
  border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}

.hero-form-interactive .btn-qh-detect-hero:hover:not(:disabled) {
  border-color: var(--yellow-dk);
  background: #FFFBEB;
  color: var(--black);
}

.hero-form-interactive .hero-category-chips {
  margin-bottom: 0;
}

.hero-form-interactive .hero-cat-chip {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.hero-form-interactive .hero-cat-chip:hover {
  border-color: var(--yellow-dk);
  background: #FFFBEB;
  box-shadow: 0 2px 8px rgba(255, 214, 0, 0.2);
}

.hero-form-interactive .hero-cat-chip.is-selected {
  border-color: var(--black);
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 2px 10px rgba(255, 214, 0, 0.35);
}

.hero-form.contact-form .hero-field-float input:not([type="checkbox"]):not([type="radio"]),
.hero-form.contact-form .hero-field-float textarea {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.hero-form.contact-form .hero-field-float input:focus,
.hero-form.contact-form .hero-field-float textarea:focus,
.hero-form.contact-form .hero-field-float input:not(:placeholder-shown),
.hero-form.contact-form .hero-field-float textarea:not(:placeholder-shown) {
  border-color: var(--yellow-dk);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.22);
}

.hero-form.contact-form .hero-field-float.is-valid input,
.hero-form.contact-form .hero-field-float.is-valid textarea {
  border-color: #22c55e;
}

.hero-form.contact-form .hero-field-float.is-invalid input,
.hero-form.contact-form .hero-field-float.is-invalid textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

/* ── DOODLE SKETCH FORM (Uiverse-inspired) ── */
.hero-form-progress {
  margin-bottom: var(--space-24);
}

.hero-form-progress-track {
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--space-12);
}

.hero-form-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--yellow);
  border-radius: 4px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-form-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-form-step-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.hero-form-step-dot span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-form-step-dot.is-active {
  color: var(--black);
}

.hero-form-step-dot.is-active span {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1.08);
}

.hero-form-step-dot.is-done {
  color: var(--gray-700);
}

.hero-form-step-dot.is-done span {
  background: #22c55e;
  color: white;
}

/* Steps */
.hero-step {
  display: none;
}

.hero-step.is-active {
  display: block;
  animation: heroStepIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-step.is-leaving {
  animation: heroStepOut 0.25s ease both;
}

.hero-step-head {
  margin-bottom: var(--space-16);
}

.hero-step-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.hero-step-sub {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.45;
}

/* Category chips */
.hero-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: var(--space-16);
}

.hero-cat-chip {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}

.hero-cat-chip:hover {
  border-color: var(--accent);
  background: rgba(0, 74, 173, 0.06);
  transform: translateY(-1px);
}

.hero-cat-chip.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 74, 173, 0.3);
}

/* Floating label fields */
.hero-field {
  position: relative;
  margin-bottom: var(--space-16);
}

.hero-field-grow { flex: 1; min-width: 0; }

.hero-field-float input,
.hero-field-float textarea {
  width: 100%;
  padding: 18px 14px 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  resize: vertical;
  min-height: 52px;
}

.hero-field-float textarea {
  min-height: 88px;
  padding-top: 22px;
}

.hero-field-float label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  pointer-events: none;
  transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  background: transparent;
  padding: 0 2px;
}

.hero-field-float textarea + label {
  top: 18px;
  transform: none;
}

.hero-field-float input:focus,
.hero-field-float input:not(:placeholder-shown),
.hero-field-float textarea:focus,
.hero-field-float textarea:not(:placeholder-shown) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.hero-field-float input:focus + label,
.hero-field-float input:not(:placeholder-shown) + label,
.hero-field-float.is-filled input + label,
.hero-field-float textarea:focus + label,
.hero-field-float textarea:not(:placeholder-shown) + label,
.hero-field-float.is-filled textarea + label {
  top: 8px;
  transform: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.hero-field-float.is-valid input,
.hero-field-float.is-valid textarea {
  border-color: #22c55e;
}

.hero-field-float.is-valid input:focus,
.hero-field-float.is-valid textarea:focus {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.hero-field-float.is-invalid input,
.hero-field-float.is-invalid textarea {
  border-color: #ef4444;
}

.hero-field-status {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.hero-field-float textarea ~ .hero-field-status {
  top: 18px;
  transform: none;
}

/* Hero form wins over generic .contact-form field padding (same specificity, later source order) */
.hero-form.contact-form .hero-field-float input:not([type="checkbox"]):not([type="radio"]),
.hero-form.contact-form .hero-field-float textarea {
  background: var(--white);
  padding: 14px 11px 5px;
  min-height: 42px;
  font-size: 13px;
}

.hero-form-section .hero-category-chips {
  margin-bottom: 0;
}

.hero-form.contact-form .hero-field-float textarea {
  min-height: 64px;
  padding-top: 24px;
  padding-bottom: 8px;
  line-height: 1.4;
  resize: vertical;
}

.hero-form.contact-form .hero-field-float textarea + label {
  top: 8px;
  transform: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gray-400);
  background: var(--white);
  padding-right: 4px;
  max-width: calc(100% - 36px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-form.contact-form .hero-field-float textarea:focus + label,
.hero-form.contact-form .hero-field-float textarea:not(:placeholder-shown) + label {
  top: 8px;
  font-size: 10px;
  color: var(--yellow-dk);
}

.hero-form.contact-form .hero-field-float input:focus + label,
.hero-form.contact-form .hero-field-float input:not(:placeholder-shown) + label,
.hero-form.contact-form .hero-field-float.is-filled input + label {
  top: 6px;
  font-size: 10px;
}

.hero-field-status.is-valid::after {
  content: '✓';
  color: #22c55e;
  font-weight: 800;
  font-size: 14px;
}

.hero-optional {
  font-weight: 500;
  color: var(--gray-400);
}

.hero-char-count {
  display: block;
  text-align: right;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 2px;
}

.hero-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Review summary */
.hero-review {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-16);
  margin-bottom: var(--space-16);
}

.hero-review-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13.5px;
}

.hero-review-row:last-child { border-bottom: none; }

.hero-review-label {
  flex-shrink: 0;
  width: 56px;
  font-weight: 700;
  color: var(--gray-400);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-review-val {
  flex: 1;
  font-weight: 600;
  color: var(--black);
  word-break: break-word;
}

/* Step buttons */
.hero-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-12);
  margin-top: var(--space-8);
}

.hero-step-actions-split {
  justify-content: space-between;
}

.btn-hero-next,
.btn-hero-back {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-hero-next {
  background: var(--black);
  color: var(--white);
  min-width: 140px;
}

.btn-hero-next:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-back {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}

.btn-hero-back:hover {
  border-color: var(--black);
  color: var(--black);
}

.btn-hero-submit {
  position: relative;
  min-width: 160px;
}

.hero-form-interactive .form-secure-note {
  text-align: center;
  margin-top: var(--space-12);
  font-size: 11.5px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Legacy form bar aliases */
.hero-form-bar { width: 100%; }

.hero-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}

.hero-form-toggle {
  flex-shrink: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-lt);
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-form-toggle:hover {
  background: rgba(0, 102, 255, 0.18);
}

.hero-form-toggle[aria-expanded="true"] {
  background: var(--black);
  color: var(--white);
}

.hero-form-quick {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr) auto;
  gap: var(--space-12);
  align-items: stretch;
}

.hero-form-extra {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 1px solid var(--gray-200);
}

.hero-form-extra[hidden] {
  display: none;
}

.hero-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.consent-row-compact label {
  font-size: 11.5px;
  line-height: 1.45;
}

.btn-submit-inline {
  width: auto;
  min-width: 148px;
  padding: 13px 22px;
  white-space: nowrap;
  align-self: stretch;
}

/* Legacy trust strip (used elsewhere) */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-bottom: var(--space-24);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.trust-item-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* App coming soon strip */
.app-coming-soon {
  padding: var(--space-24) 0 var(--space-32);
  border-bottom: 1px solid var(--gray-200);
}

.app-coming-soon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.app-coming-soon-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.app-coming-soon-copy p {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
}

.app-coming-soon-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.app-buttons-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Equal outer frames - Google Play PNG has extra transparent padding */
.app-buttons-inline .store-link {
  display: block;
  width: 135px;
  height: 40px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.app-buttons-inline .store-link:hover {
  opacity: 0.82;
}

.app-buttons-inline .store-link img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border: 0;
  max-width: none;
}

.app-buttons-inline .store-link-apple img {
  height: 40px;
  width: auto;
  transform: translate(-50%, -50%);
}

.app-buttons-inline .store-link-google img {
  /* Scale up to offset built-in transparent padding in Google's asset */
  height: 66px;
  width: auto;
  transform: translate(-50%, -50%);
}

/* Legacy alias */
.hero-form-wrap {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* ── WHATSAPP SHORTCUTS ── */
.quick-help-block {
  background: linear-gradient(135deg, #f0fdf4 0%, var(--white) 55%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: var(--space-16) var(--space-16);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.quick-help-title {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: var(--space-8);
  color: var(--black);
}

.quick-help-sub {
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: var(--space-16);
  line-height: 1.45;
}

.quick-help-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-12);
}

@media (min-width: 520px) {
  .quick-help-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.qh-pill {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px var(--space-12);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  width: 100%;
  text-align: center;
  justify-self: stretch;
}

.qh-pill:hover {
  border-color: #25D366;
  background: #f0fdf4;
  transform: translateY(-1px);
}

.qh-pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-secondary-cta {
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
  margin: 0 0 var(--space-16);
  font-weight: 600;
  line-height: 1.4;
}

/* WhatsApp shortcut modal */
.ih-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
  backdrop-filter: blur(5px);
}

.ih-modal-overlay.show { display: flex; }

.ih-modal-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 100%;
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--gray-200);
}

.ih-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition);
}

.ih-modal-close:hover { background: var(--gray-200); }

.ih-modal-panel h3 {
  font-size: 17px;
  font-weight: 800;
  padding-right: 44px;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.ih-modal-hint {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.qh-mini-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qh-mini-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  background: var(--gray-50);
  outline: none;
  transition: var(--transition);
}

.qh-mini-form input:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-lt);
}

.qh-loc-row,
.form-address-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.qh-loc-row input,
.form-address-row input { flex: 1; min-width: 120px; }

.btn-qh-detect {
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-qh-detect:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--black);
}

.btn-qh-detect:disabled { opacity: 0.6; cursor: wait; }

.btn-qh-wa {
  margin-top: 6px;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius-pill);
  background: #25D366;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-qh-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* FAQ */
.faq-section {
  padding: 100px 0 110px;
  background:
    radial-gradient(1100px 420px at 80% -10%, rgba(105,6,144,0.06), transparent 60%),
    radial-gradient(900px 380px at 10% 110%, rgba(255,214,0,0.10), transparent 60%),
    var(--gray-50);
  border-top: 1px solid var(--gray-100);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.faq-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.faq-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
}

.faq-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.faq-head p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.faq-inner { max-width: 780px; margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--black);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.2px;
  user-select: none;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-summary-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--black);
  transition: background 0.22s ease, color 0.22s ease;
}

.faq-summary-icon::before,
.faq-summary-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.faq-summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-summary-icon {
  background: var(--yellow);
}

.faq-item[open] .faq-summary-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 22px 22px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.7;
  animation: faqFade 0.28s ease;
}

.faq-answer p + p { margin-top: 10px; }

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { animation: none; }
  .faq-summary-icon { transition: none; }
}

.faq-cta {
  margin-top: 32px;
  text-align: center;
  padding: 24px 22px;
  background: var(--white);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-md);
}

.faq-cta p {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.faq-cta-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
}

.faq-cta-btn.primary {
  background: #25D366;
  color: white;
}
.faq-cta-btn.primary:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.faq-cta-btn.ghost {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}
.faq-cta-btn.ghost:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}

/* SEO footer strip */
.seo-footer-strip {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.seo-footer-strip h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.seo-kw {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 22px;
}

.seo-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.instaHelp-city-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.hero-form-card {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.hero-form-card:not(.hero-form-interactive) {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-32) var(--space-24);
  box-shadow: var(--shadow-lg);
}

.hero-form-card:not(.hero-form-interactive)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1;
}

.form-card-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: var(--space-24);
}

/* ═══════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: stretch;
}

/* Do not include checkbox/radio: appearance:none + width:100% + min-height breaks the native tick */
.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.35;
  background: var(--gray-50);
  color: var(--black);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form select {
  min-height: 46px;
}

.contact-form input:not([type="checkbox"]):not([type="radio"])::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form input:not([type="checkbox"]):not([type="radio"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-lt);
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
  padding: 14px 14px;
}

/* Consent row */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding: var(--space-8) 0 var(--space-8);
}

.consent-row input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  /* Restore native checkbox; do not set appearance: none (see .contact-form rules) */
  -webkit-appearance: auto;
  appearance: auto;
  border-radius: 3px;
  align-self: flex-start;
}

.consent-row label {
  font-size: 11.5px;
  color: var(--gray-400);
  line-height: 1.55;
  cursor: pointer;
}

.btn-submit {
  background: var(--black);
  color: white;
  border: none;
  padding: 15px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  letter-spacing: 0.2px;
  margin-top: var(--space-8);
}

.btn-submit:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Form security badge */
.form-secure-note {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  contain: layout style;
}

.marquee-line {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 12px;
}

.marquee-track {
  display: inline-flex;
  gap: 12px;
  animation: scroll 38s linear infinite;
}

body.is-scrolling .marquee-track,
body.is-scrolling .hero-bg-blob {
  animation-play-state: paused;
}

.marquee-line.reverse .marquee-track {
  animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.query-pill {
  background: var(--gray-100);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--gray-200);
  white-space: nowrap;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section {
  padding: calc(var(--space-32) * 3) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.services-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 56ch;
}

/* ═══════════════════════════════════════
   BENTO GRID
═══════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--yellow));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.bento-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--icon-bg, var(--gray-100));
  color: var(--icon-color, var(--black));
}

.bento-card-icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.bento-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.35px;
  line-height: 1.25;
  margin: 0;
  padding-top: 2px;
}

.bento-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 4px;
  flex: 1;
}

.bento-card-featured {
  grid-column: span 2;
}

.bento-card-featured h3 {
  font-size: 22px;
}

.bento-card-featured p {
  font-size: 15px;
  max-width: 52ch;
}

/* Category accents */
.bento-card--home { --card-accent: #1A6FFF; --icon-bg: #EEF3FF; --icon-color: #1A6FFF; }
.bento-card--education { --card-accent: #7B6FFF; --icon-bg: #F0EEFF; --icon-color: #7B6FFF; }
.bento-card--realestate { --card-accent: #E67E22; --icon-bg: #FEF3E7; --icon-color: #E67E22; }
.bento-card--wellness { --card-accent: #E84393; --icon-bg: #FCEEF5; --icon-color: #E84393; }
.bento-card--manufacturing { --card-accent: #636E72; --icon-bg: #F0F1F2; --icon-color: #636E72; }
.bento-card--business { --card-accent: #690690; --icon-bg: #F3E5F8; --icon-color: #690690; }
.bento-card--tech { --card-accent: #00B894; --icon-bg: #E5FBF4; --icon-color: #00B894; }
.bento-card--events { --card-accent: #F39C12; --icon-bg: #FFF3E0; --icon-color: #F39C12; }
.bento-card--deals { --card-accent: #FFD600; --icon-bg: #FFFBE6; --icon-color: #B8860B; }
.bento-card--custom { --card-accent: #0984E3; --icon-bg: #EAF4FD; --icon-color: #0984E3; }

.card-large {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--black);
  color: white;
  padding: var(--space-32);
}

.card-large h3 {
  font-size: 30px;
  letter-spacing: -0.7px;
  margin-bottom: var(--space-12);
}

.card-large p {
  color: #bdbdbd;
  font-size: 15px;
  max-width: 44ch;
}

.card-wide {
  grid-column: span 1;
}

.card-light { background: var(--white); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.tag {
  background: var(--gray-50);
  color: var(--gray-700);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  line-height: 1.3;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.bento-card:hover .tag:not(.tag-more) {
  border-color: var(--gray-300);
  background: var(--white);
}

.tag-more {
  background: transparent;
  color: var(--gray-400);
  border-style: dashed;
  font-weight: 500;
}

.card-large .tag {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e5e5;
  border-color: rgba(255, 255, 255, 0.12);
}

.bubble-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.bubble {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  font-weight: 600;
  font-size: 14px;
}

/* ═══════════════════════════════════════
   STEPS
═══════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}

.step {
  background: var(--gray-50);
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.step-icon { margin-bottom: 12px; color: var(--accent); }

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p { font-size: 14px; color: var(--gray-400); }

/* ═══════════════════════════════════════
   BOTTOM CTA
═══════════════════════════════════════ */
.bottom-cta {
  position: relative;
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(255,214,0,0.18), transparent 60%),
    radial-gradient(700px 340px at 85% 110%, rgba(105,6,144,0.08), transparent 60%),
    var(--white);
  color: var(--black);
  padding: calc(var(--space-24) * 5) var(--gutter);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 95%, rgba(0,0,0,0.035) 95%) 0 0 / 100% 40px,
    linear-gradient(90deg, transparent 95%, rgba(0,0,0,0.035) 95%) 0 0 / 40px 100%;
  opacity: 0.55;
  pointer-events: none;
}

.bottom-cta > * { position: relative; z-index: 1; }

.bottom-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  color: var(--gray-700);
  letter-spacing: 0.04em;
}

.bottom-cta-kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}

.bottom-cta h2 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--black);
}

.bottom-cta-sub {
  font-size: 16px;
  color: var(--gray-700);
  margin: 0 auto 30px;
  max-width: 540px;
  line-height: 1.6;
}

.bottom-cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.bottom-cta-actions .btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 800;
}

.bottom-cta-actions .btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.bottom-cta-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-300);
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.bottom-cta-actions .btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--black);
  color: var(--black);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  padding: 0 0 40px;
  background: #0a0a0a;
  color: #d6d6d6;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, #690690 50%, var(--yellow) 100%);
  background-size: 200% 100%;
  animation: footerShimmer 6s ease-in-out infinite;
}

@keyframes footerShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes footerDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(255,214,0,0.07), transparent 60%),
    radial-gradient(700px 300px at 90% 20%, rgba(105,6,144,0.15), transparent 60%);
  pointer-events: none;
}

footer .container {
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

/* WhatsApp CTA - first, side-by-side on desktop */
footer .footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 20px 32px;
  align-items: center;
  margin: 0 0 48px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

footer .footer-cta-copy {
  min-width: 0;
}

footer .footer-cta .quick-help-sub {
  margin-bottom: 0;
}

footer .quick-help-title {
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 22px);
}

footer .quick-help-sub {
  color: rgba(255, 255, 255, 0.55);
}

footer .footer-cta .quick-help-pills {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

footer .qh-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
}

footer .qh-pill:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  color: #ffffff;
}

/* Main link grid */
.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: white;
  margin-bottom: 14px;
}

.footer-brand .footer-logo span { color: var(--yellow); }

.footer-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 18px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.footer-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: footerDotPulse 2s ease-in-out infinite;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #e5e5e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social-btn [data-lucide],
.footer-social-btn .footer-social-svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-social-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.footer-social-btn.wa:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.footer-col h3,
.footer-links h3 {
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.footer-col ul,
.footer-links ul { list-style: none; }

.footer-col li,
.footer-links li { margin-bottom: 10px; font-size: 14px; }

.footer-col a,
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover,
.footer-links a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-meta li {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-meta-muted {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 13px !important;
}

.footer-col a .dot,
.footer-links a .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-col a:hover .dot,
.footer-links a:hover .dot { opacity: 1; }

/* SEO / info card */
.footer-info {
  margin-top: 36px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.footer-expand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: flex-start;
  margin-bottom: 2px;
}

.footer-legal .footer-expand-mini {
  border: none;
}

.footer-legal .footer-expand-mini[open] {
  flex: 1 1 100%;
  width: 100%;
}

.footer-legal .footer-expand-mini summary {
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  padding: 3px 8px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  user-select: none;
  width: auto;
}

.footer-legal .footer-expand-mini summary::-webkit-details-marker { display: none; }

.footer-expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 0;
  line-height: 1;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-expand-toggle::before {
  content: '+';
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-legal .footer-expand-mini[open] .footer-expand-toggle::before {
  content: '−';
}

.footer-legal .footer-expand-mini summary:hover .footer-expand-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.footer-legal .footer-expand-mini summary:hover .footer-expand-toggle::before {
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal .footer-expand-mini summary::after {
  display: none;
}

.footer-legal .footer-expand-mini[open] summary::after {
  display: none;
}

.footer-legal .footer-expand-mini summary:hover {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.footer-legal .footer-expand-mini[open] summary {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.footer-legal .footer-expand-mini .seo-kw,
.footer-legal .footer-expand-mini .seo-cities {
  padding: 0 0 6px;
}

.footer-legal .footer-expand-mini .seo-kw {
  font-size: 11px;
  line-height: 1.6;
}

.footer-expand-legal[open] {
  flex: 1 1 100%;
  width: 100%;
}

.footer-legal-body {
  padding: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal-body p {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
}

.footer-legal-body a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-legal-body a:hover {
  color: var(--yellow);
}

.footer-legal-body .tm-notice {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
}

.footer-legal-body .footer-disclaimer {
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal .footer-expand-mini .instaHelp-city-pill {
  font-size: 10px;
  padding: 3px 8px;
}

.footer-legal p {
  margin: 0;
  line-height: 1.55;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}

.tm-notice {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
  max-width: none;
}

.footer-seo-lede {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.footer-legal-nav a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.footer-legal-nav a:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

/* Legacy aliases */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-subheading {
  margin-top: 24px;
}

.footer-disclaimer-inline {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 4px;
}

footer .quick-help-block:not(.footer-cta) {
  margin: 40px 0 36px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Footer SEO strip (scoped override for dark footer) */
footer .footer-info.seo-footer-strip,
footer .seo-footer-strip {
  margin-top: 36px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border-top: none;
}

footer .seo-lede {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin-bottom: 8px;
  max-width: 560px;
}

footer .footer-expand {
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer .footer-expand summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding: 12px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s ease;
  user-select: none;
}

footer .footer-expand summary::-webkit-details-marker { display: none; }

footer .footer-expand summary::after {
  content: '+';
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

footer .footer-expand[open] summary {
  color: rgba(255,255,255,0.65);
}

footer .footer-expand[open] summary::after {
  content: '−';
}

footer .footer-expand summary:hover {
  color: rgba(255,255,255,0.7);
}

footer .footer-expand .seo-kw,
footer .footer-expand .seo-cities {
  padding-bottom: 16px;
}

footer .seo-kw {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 860px;
}

footer .seo-kw p + p {
  margin-top: 10px;
}

footer .seo-kw strong { color: rgba(255,255,255,0.65); font-weight: 700; }

footer .seo-cities {
  gap: 8px;
  margin-bottom: 0;
}

footer .instaHelp-city-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

footer .instaHelp-city-pill:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   NOTIFICATION / MODAL
═══════════════════════════════════════ */
.notification-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.notification-overlay.show { display: flex; }

.notification-panel {
  background: white;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.notification-content strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }
.notification-content p { font-size: 14px; color: var(--gray-400); }
.notification-content [data-lucide] { width: 28px; height: 28px; color: #22c55e; flex-shrink: 0; }

.notification-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: 0;
  display: flex;
  flex-shrink: 0;
}

/* SECURITY OVERLAY */
#security-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  flex-direction: column;
  gap: 12px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* TABLET */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .bento-card-featured {
    grid-column: span 2;
  }

  .card-large {
    grid-column: span 2;
    grid-row: span 1;
    padding: var(--space-24);
  }

  .card-large h3 { font-size: 26px; }

  .hero-top {
    gap: var(--space-24);
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 32px 28px;
  }

  .footer-main .footer-brand {
    grid-column: 1 / -1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-primary { font-size: 13px; padding: 9px 18px; }

  .hero-section {
    padding-top: 90px;
    min-height: auto;
  }

  .hero-inner {
    padding: var(--space-24) var(--gutter) var(--space-16);
    display: flex;
    flex-direction: column;
  }

  .hero-top {
    display: contents;
  }

  .hero-copy {
    order: 1;
  }

  .hero-form-panel {
    order: 2;
    margin-bottom: var(--space-8);
    max-width: none;
    justify-self: stretch;
  }

  .hero-foot {
    order: 3;
    margin-top: var(--space-16);
    padding-top: var(--space-20);
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-app-promo-copy {
    grid-column: auto;
  }

  .hero-app-stores {
    grid-column: auto;
    justify-self: end;
  }

  .hero-copy h1 {
    letter-spacing: -1.5px;
    margin-bottom: var(--space-12);
  }

  .hero-copy .hero-sub {
    font-size: 15px;
    margin-bottom: var(--space-12);
  }

  .hero-coverage {
    font-size: 13px;
    margin-bottom: var(--space-16);
  }

  .hero-trust {
    gap: 10px 16px;
    margin-bottom: var(--space-12);
  }

  .hero-trust-item {
    font-size: 12px;
  }

  .hero-prompt-card {
    max-width: none;
  }

  .hero-prompt-chips--scroll {
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .hero-prompt-chips--scroll .hero-prompt-chip {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero-contacts {
    width: 100%;
    gap: 8px;
    margin-bottom: var(--space-12);
  }

  .hero-contact-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    font-size: 12.5px;
    white-space: normal;
    text-align: center;
  }

  .hero-contact-btn.wa-primary {
    flex: 1 1 100%;
  }

  .hero-form-panel {
    order: 2;
    margin-bottom: var(--space-8);
    max-width: none;
    justify-self: stretch;
  }

  .hero-form-interactive {
    padding: 14px 14px;
  }

  .hero-form-row {
    grid-template-columns: 1fr;
  }

  .hero-form-section .form-address-row {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .hero-form-section .form-address-row .btn-qh-detect-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-category-chips {
    gap: 6px;
  }

  .hero-cat-chip {
    font-size: 11.5px;
    padding: 7px 11px;
  }

  .hero-form-footer .btn-hero-submit {
    width: 100%;
  }

  .hero-step-actions-split {
    flex-direction: column-reverse;
  }

  .btn-hero-next,
  .btn-hero-back,
  .btn-hero-submit {
    width: 100%;
  }

  .hero-bg-blob-yellow {
    width: 280px;
    height: 280px;
    top: -10%;
    right: -25%;
    opacity: 0.85;
  }

  .hero-bg-blob-blue {
    width: 200px;
    height: 200px;
    bottom: -8%;
    left: -20%;
  }

  .form-row { grid-template-columns: 1fr; }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bento-card-featured,
  .card-large,
  .card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-card-featured h3 {
    font-size: 20px;
  }

  .card-large { padding: var(--space-24); }
  .card-large h3 { font-size: 24px; }
  .bento-card { padding: 22px; }
  .services-intro { margin-bottom: 36px; }

  .steps { grid-template-columns: 1fr; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  footer .footer-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    margin-bottom: 36px;
  }

  footer .footer-cta .quick-help-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal {
    max-width: none;
    text-align: center;
  }

  .footer-expand-row {
    justify-content: center;
  }

  .footer-disclaimer,
  .tm-notice,
  .footer-seo-lede {
    text-align: center;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-brand { grid-column: span 2; }

  .faq-section { padding: 70px 0 80px; }
  .faq-summary { font-size: 15px; padding: 18px 18px; }
  .faq-answer { padding: 0 18px 18px; }

  .bottom-cta { padding: 80px var(--gutter); }

  .quick-help-block {
    padding: 20px 18px;
  }
  footer .quick-help-block:not(.footer-cta) {
    padding: 20px 18px;
    margin: 32px 0 28px;
  }
  .quick-help-title {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .quick-help-sub {
    font-size: 11.5px;
    margin-bottom: 10px;
  }
  .quick-help-pills { gap: 6px; }
  .qh-pill {
    font-size: 11px;
    padding: 6px 8px;
  }

  .trust-strip { gap: var(--space-12); }
}

@media (max-width: 480px) {
  .hero-form-card {
    padding: var(--space-24) var(--gutter);
  }
  .hero-contacts {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-contact-btn {
    flex: none;
    width: 100%;
  }
  .bottom-cta h2 { font-size: 34px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  footer .footer-cta {
    padding: 20px 18px;
    margin-bottom: 28px;
  }

  footer .footer-cta .quick-help-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-info {
    padding: 20px 18px;
    margin-top: 28px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-disclaimer-inline { display: inline; margin-top: 0; margin-left: 4px; }
  .faq-head h2 { font-size: 28px; }
  .faq-cta { padding: 22px 18px; }
  .quick-help-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ═══════════════════════════════════════
   PRINT
═══════════════════════════════════════ */
@media print {
  header, .bottom-cta, #security-overlay, .notification-overlay, .ih-modal-overlay { display: none !important; }
  .hero-section { padding-top: 20px; }
}


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


/* Screen-reader / crawler only - visually hidden */
.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;
}

/* ── Homepage v2 corrections ── */
.hero-about {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 52ch;
  margin-top: 12px;
}

.hero-wa-primary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.btn-hero-wa-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366 !important;
  color: #fff !important;
}

.btn-hero-call-secondary {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
}

.hero-form-details {
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}

.hero-form-details summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  list-style: none;
}

.hero-form-details summary::-webkit-details-marker { display: none; }

.form-collection-notice {
  font-size: 11px;
  line-height: 1.55;
  color: var(--gray-400);
  margin-top: 10px;
}

.services-more-categories {
  margin-top: 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.services-more-categories summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

.bento-grid--compact {
  margin-top: 16px;
}

.bento-card-cta {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

.services-plans-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-700);
  text-align: center;
}

.footer-entity,
.footer-grievance,
.footer-nonaffiliation {
  font-size: 12px;
  line-height: 1.65;
  color: var(--gray-400);
  margin-top: 8px;
}

.hero-app-waitlist-btn {
  font-size: 14px;
  padding: 12px 20px;
}

/* Optional: subtle styling for hero-coverage line */
.hero-coverage strong {
  color: var(--black);
  font-weight: 700;
}