/* ============================================================
   Forza Automation — styles.css
   High-End Visual Design · Ethereal Glass · OLED Dark
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:           #0a090f;
  --bg-1:         #0f0e16;
  --bg-2:         #14131c;
  --cyan:         #08d6f3;
  --cyan-dim:     rgba(8, 214, 243, 0.1);
  --cyan-border:  rgba(8, 214, 243, 0.22);
  --cyan-glow:    rgba(8, 214, 243, 0.18);
  --white:        #fefdfe;
  --muted:        rgba(254, 253, 254, 0.52);
  --muted-2:      rgba(254, 253, 254, 0.25);
  --border:       rgba(254, 253, 254, 0.07);
  --border-light: rgba(254, 253, 254, 0.12);
  --spring:       cubic-bezier(0.32, 0.72, 0, 1);
  --spring-fast:  cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Space for floating nav */
  padding-top: 96px;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLL REVEAL — blur+lift ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity  800ms var(--spring),
    transform 800ms var(--spring),
    filter   800ms var(--spring);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.d1 { transition-delay: 90ms; }
.reveal.d2 { transition-delay: 180ms; }
.reveal.d3 { transition-delay: 270ms; }

/* ── FLOATING GLASS NAV ── */
#header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1060px;
  z-index: 200;
  /* Glass pill */
  background: rgba(10, 9, 15, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--border), 0 8px 32px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 10px 0 20px;
  gap: 12px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo svg { height: 32px; width: auto; }

/* Desktop nav links */
.nav-links {
  display: none;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-links a {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.01em;
    transition: color 300ms var(--spring);
  }
  .nav-links a:hover { color: var(--white); }
}

/* Mobile nav open */
@media (max-width: 767px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,9,15,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 190;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
  .nav-links.open a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms var(--spring), transform 400ms var(--spring);
  }
  .nav-links.open a.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.lang-toggle button {
  padding: 4px 11px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 300ms var(--spring);
}
.lang-toggle button.active {
  background: var(--cyan);
  color: var(--bg);
}

/* Hamburger — morphs to X */
.menu-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: background 300ms var(--spring);
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 350ms var(--spring);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 768px) { .menu-toggle { display: none; } }

/* ── PILL BUTTON — button-in-button ── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 22px;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 400ms var(--spring);
  box-shadow: 0 0 28px rgba(8,214,243,0.28);
}
.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(8,214,243,0.4);
}
.btn-pill:active { transform: scale(0.98); }
.btn-pill .icon-wrap {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: transform 400ms var(--spring);
}
.btn-pill:hover .icon-wrap {
  transform: translateX(2px) translateY(-1px) scale(1.08);
}

.btn-pill-lg {
  padding: 14px 14px 14px 28px;
  font-size: 0.95rem;
}
.btn-pill-lg .icon-wrap {
  width: 36px; height: 36px;
  font-size: 0.95rem;
}

/* Ghost pill button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 400ms var(--spring);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ── DOUBLE-BEZEL CARD ── */
.bezel-shell {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  padding: 5px;
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.bezel-inner {
  background: var(--bg-1);
  border-radius: 18px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
  overflow: hidden;
}

/* Featured bezel */
.bezel-shell.featured {
  background: rgba(8,214,243,0.06);
  border-color: var(--cyan-border);
  box-shadow: 0 0 60px rgba(8,214,243,0.1), inset 0 1px 0 rgba(8,214,243,0.15);
}
.bezel-shell.featured .bezel-inner {
  background: var(--bg-2);
  box-shadow: inset 0 1px 1px rgba(8,214,243,0.08);
}

/* ── EYEBROW TAG ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}

/* ── SECTION SPACING ── */
.section { padding: 112px 0; }

/* ── HERO ── */
#hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Mesh gradient orbs */
#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(8,214,243,0.07) 0%, transparent 65%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(9,112,129,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
}

#hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
#hero h1 .line-accent { color: var(--cyan); }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-micro {
  font-size: 0.78rem;
  color: var(--muted-2);
  padding-left: 4px;
}
.hero-micro strong { color: var(--muted); }

/* Hero mockup — double-bezel */
.mockup-shell {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  padding: 5px;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px var(--border),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.mockup-inner {
  background: #0c0b14;
  border-radius: 16px;
  overflow: hidden;
}
.mockup-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.mockup-dots .d-r { background: rgba(252,92,101,0.7); }
.mockup-dots .d-y { background: rgba(254,211,48,0.7); }
.mockup-dots .d-g { background: rgba(38,222,129,0.7); }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.68rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.mockup-url::before { content: '🔒'; font-size: 0.6rem; }

/* Website content inside mockup */
.mockup-site-hero {
  background: linear-gradient(135deg, #0a2540 0%, #0d3060 100%);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}
.mockup-site-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 100%;
  background: rgba(8,145,178,0.15);
  border-radius: 12px 0 0 12px;
  margin: 8px;
}
.mockup-bar-h1 { height: 9px; width: 65%; background: rgba(255,255,255,0.85); border-radius: 3px; margin-bottom: 7px; }
.mockup-bar-h2 { height: 6px; width: 45%; background: rgba(255,255,255,0.4); border-radius: 3px; margin-bottom: 14px; }
.mockup-btn-fake {
  height: 20px; width: 72px;
  background: #0891B2;
  border-radius: 999px;
}
.mockup-content {
  padding: 14px;
  background: var(--bg-2);
}
.mockup-cards-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}
.mockup-card-fake {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.mockup-icon-fake {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--cyan-dim);
  margin-bottom: 7px;
}
.mockup-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); margin-bottom: 4px; }
.mockup-line.s { width: 60%; }
.mockup-label-fake {
  padding: 8px 14px;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--cyan);
  border-top: 1px solid var(--border);
  letter-spacing: 0.05em;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ── TRUST STRIP ── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ── PROBLEM — BENTO ── */
#problem { background: var(--bg); }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 52px;
}

.bento-header {
  margin-bottom: 52px;
}

.bento-card {
  padding: 28px 28px 32px;
}

.bento-card-icon {
  width: 42px; height: 42px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}
.bento-card-icon svg { width: 20px; height: 20px; }

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bento-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Bento stat card */
.bento-stat {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.bento-stat-label {
  font-size: 0.88rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .bento-span-7 { grid-column: span 7; }
  .bento-span-5 { grid-column: span 5; }
  .bento-span-4 { grid-column: span 4; }
  .bento-span-8 { grid-column: span 8; }
  .bento-span-12 { grid-column: span 12; }
}

/* ── BEFORE / AFTER ── */
#before-after { background: var(--bg-1); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 52px;
}
@media (min-width: 640px) {
  .ba-grid { grid-template-columns: 1fr 1fr; }
}

.ba-card { padding: 32px 28px; }

.ba-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.ba-before-tag {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
}
.ba-after-tag {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
}
.ba-bezel-before { border-top: 2px solid rgba(239,68,68,0.3); }
.ba-bezel-after  { border-top: 2px solid var(--cyan); }

.ba-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ba-list { display: flex; flex-direction: column; gap: 12px; }
.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}
.ba-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}
.ba-icon-x {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}
.ba-icon-check {
  background: rgba(8,214,243,0.12);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
}
.ba-after .ba-list li { color: var(--white); }

/* ── PACKAGES ── */
#packages { background: var(--bg); }

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .pkg-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .pkg-featured-wrap {
    transform: scale(1.04);
    z-index: 1;
  }
}

.pkg-body { padding: 32px 28px 28px; }

.pkg-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.featured .pkg-name { color: var(--cyan); }

.pkg-price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
}
.pkg-setup-label {
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-top: 3px;
  margin-bottom: 4px;
}
.pkg-mo {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pkg-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}
.feat-dot {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  color: var(--cyan);
  margin-top: 2px;
}
.featured .feat-dot {
  background: var(--cyan-dim);
  border-color: var(--cyan-border);
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--muted);
}
.pkg-note a { color: var(--cyan); font-weight: 600; }

/* ── GUARANTEE ── */
#guarantee {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.guarantee-card { padding: 48px 40px; }
.guarantee-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 640px) {
  .guarantee-inner { flex-direction: row; align-items: center; }
}
.guarantee-seal {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 32px rgba(8,214,243,0.12);
}
.guarantee-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.guarantee-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ── */
#faq { background: var(--bg); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .faq-layout { grid-template-columns: 1fr 2fr; }
}

.faq-left h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.faq-left p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

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

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--white);
  transition: color 300ms var(--spring);
}
.faq-question:hover { color: var(--cyan); }
.faq-item.open .faq-question { color: var(--cyan); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  transition: all 350ms var(--spring);
}
.faq-item.open .faq-icon {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 400ms var(--spring); }
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
#contact { background: var(--bg-1); padding: 112px 0; }

.cta-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .cta-layout { grid-template-columns: 1fr 1fr; }
}

.cta-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cta-left > p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.cta-proof { display: flex; flex-direction: column; gap: 11px; }
.cta-proof li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
}
.cta-proof-dot {
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--cyan);
}

/* Form */
.form-body { padding: 32px 28px; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--white);
  outline: none;
  transition: border-color 300ms var(--spring), box-shadow 300ms var(--spring);
  appearance: none;
}
.form-group input::placeholder { color: var(--muted-2); }
.form-group select option { background: var(--bg-2); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(8,214,243,0.12);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.btn-submit-pill {
  width: 100%;
  padding: 14px 14px 14px 24px;
  background: var(--cyan);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 400ms var(--spring);
  box-shadow: 0 0 32px rgba(8,214,243,0.22);
  margin-top: 4px;
}
.btn-submit-pill:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 44px rgba(8,214,243,0.35);
}
.btn-submit-pill:disabled { opacity: 0.65; cursor: not-allowed; }
.btn-submit-pill .icon-wrap {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: transform 400ms var(--spring);
  flex-shrink: 0;
}
.btn-submit-pill:hover:not(:disabled) .icon-wrap {
  transform: translateX(2px) translateY(-1px) scale(1.1);
}

.divider-or {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0; font-size: 0.75rem; color: var(--muted-2);
}
.divider-or::before, .divider-or::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: #4ade80;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 400ms var(--spring);
}
.btn-wa:hover {
  background: rgba(37,211,102,0.18);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(37,211,102,0.15);
}
.btn-wa svg { width: 20px; height: 20px; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 44px 0;
  text-align: center;
}
.footer-logo {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.footer-logo svg { height: 28px; width: auto; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 18px;
}
.footer-links {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.footer-links a {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--muted-2);
  transition: color 300ms var(--spring);
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; color: rgba(254,253,254,0.2); }
