/* ====== TOKENS ====== */
:root {
  --bg: #0D0D0D;
  --bg-2: #0a0a0a;
  --primary: #00E5B0;
  --primary-dim: rgba(0, 229, 176, 0.12);
  --accent: #7B61FF;
  --accent-dim: rgba(123, 97, 255, 0.12);
  --text: #F0F0F0;
  --muted: #888888;
  --card: #161616;
  --card-2: #1c1c1c;
  --border: rgba(240, 240, 240, 0.08);
  --border-strong: rgba(240, 240, 240, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;
  --shadow-glow: 0 0 0 1px rgba(0,229,176,0.4), 0 18px 60px -20px rgba(0,229,176,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Syne', 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 28px;
  margin: 0 auto;
}

section {
  position: relative;
  padding: 120px 0;
}

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo__mark {
  width: 22px; height: 22px;
  position: relative;
}
.logo__mark svg { width: 100%; height: 100%; }
.logo__dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary);
  margin: 0 1px;
  transform: translateY(-10px);
}

.nav__links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links > li { position: relative; }
.nav__links a, .nav__links .nav__toggle {
  font-size: 14px;
  color: var(--text);
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__links a:hover, .nav__links .nav__toggle:hover { opacity: 1; color: var(--primary); }
.nav__toggle svg {
  transition: transform 220ms ease;
  opacity: 0.7;
}
.nav__has-dropdown.is-open .nav__toggle svg { transform: rotate(180deg); }
.nav__has-dropdown.is-open .nav__toggle { color: var(--primary); opacity: 1; }

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 340px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,176,0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 220ms ease, visibility 0s linear 200ms;
  z-index: 110;
}
.nav__has-dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 200ms ease, transform 220ms ease, visibility 0s;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -18px; left: 0; right: 0; height: 18px;
}
.nav__dd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  opacity: 1 !important;
  transition: background 180ms ease;
}
.nav__dd-item:hover { background: var(--card-2); }
.nav__dd-item:hover .nav__dd-icon { background: var(--primary); color: #001712; }
.nav__dd-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(0,229,176,0.16), rgba(123,97,255,0.16));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 220ms ease, color 220ms ease;
}
.nav__dd-title {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.2;
}
.nav__dd-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}
.nav__dd-footer {
  margin-top: 6px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.nav__dd-footer a { color: var(--primary); display: inline-flex; align-items: center; gap: 4px; opacity: 1 !important; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 160ms ease, box-shadow 220ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: #001712;
}
.btn--primary:hover {
  box-shadow: 0 0 0 4px rgba(0,229,176,0.18), 0 16px 40px -12px rgba(0,229,176,0.55);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn--lg { padding: 17px 28px; font-size: 16px; }

.btn .arr { transition: transform 200ms ease; }
.btn:hover .arr { transform: translateX(3px); }

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--text);
  transition: transform 220ms ease, top 220ms ease;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.nav.open .hamburger span { background: transparent; }
.nav.open .hamburger span::before { top: 0; transform: rotate(45deg); }
.nav.open .hamburger span::after { top: 0; transform: rotate(-45deg); }

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#neural-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(123,97,255,0.12), transparent 60%),
    radial-gradient(ellipse at 15% 90%, rgba(0,229,176,0.08), transparent 55%);
  z-index: 0;
  animation: heroPulse 12s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero h1 {
  font-size: clamp(48px, 7.2vw, 104px);
  margin: 22px 0 18px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary) 0%, #66ffd2 50%, var(--accent) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: #c8c8c8;
  max-width: 620px;
  margin: 0 0 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta {
  position: absolute;
  right: 28px; bottom: 60px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  text-align: right;
}
.hero__meta strong { color: var(--text); letter-spacing: 0.04em; }

/* ====== SECTION HEADER ====== */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.sec-head__left { max-width: 720px; }
.sec-head h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  margin-top: 18px;
}
.sec-head h2 .accent { color: var(--primary); }
.sec-head p { color: var(--muted); margin-top: 18px; max-width: 540px; }
.sec-head__right { color: var(--muted); font-size: 14px; max-width: 280px; text-align: right; }

/* ====== PAINS ====== */
.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}
.pain::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), var(--primary-dim), transparent 60%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.pain:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.pain:hover::before { opacity: 1; }
.pain__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(0,229,176,0.16), rgba(123,97,255,0.16));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
}
.pain h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pain p { color: var(--muted); font-size: 14.5px; margin: 0; }
.pain__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
}

.pains-cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pains-cta__text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
}
.pains-cta__text .accent { color: var(--primary); }

/* ====== SERVICES ====== */
.services { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012)); }

.svc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-tabs::-webkit-scrollbar { display: none; }
.svc-tab {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 180ms ease, background 220ms ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-tab .idx {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.svc-tab:hover { color: var(--text); }
.svc-tab.is-active {
  background: var(--primary);
  color: #001712;
}
.svc-tab.is-active .idx { color: #001712; opacity: 0.7; }

.svc-body {
  display: grid;
  grid-template-columns: 1.05fr 1.8fr;
  gap: 32px;
  align-items: flex-start;
}
.svc-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  position: sticky;
  top: 100px;
}
.svc-info__tag {
  font-family: 'Syne', sans-serif;
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.svc-info h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 14px 0 18px;
}
.svc-info p { color: var(--muted); margin: 0 0 26px; font-size: 15px; }
.svc-info ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.svc-info ul li {
  font-size: 14.5px;
  display: flex; align-items: flex-start; gap: 12px;
  color: #d9d9d9;
}
.svc-info ul li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}
.tier:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.tier--popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(0,229,176,0.05), var(--card));
  box-shadow: 0 0 0 1px rgba(0,229,176,0.5), 0 24px 60px -30px rgba(0,229,176,0.5);
}
.tier__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #001712;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.tier__name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.tier__name .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted);
}
.tier--popular .tier__name .dot { background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.tier--premium .tier__name .dot { background: var(--accent); box-shadow: 0 0 10px var(--accent); }

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.tier__price strong {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.tier__price .cur { font-size: 13px; color: var(--muted); }
.tier__price-usd {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.tier__setup {
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tier ul {
  list-style: none;
  padding: 0; margin: 0 0 26px;
  display: grid; gap: 12px;
}
.tier ul li {
  font-size: 14px;
  color: #d4d4d4;
  display: flex; align-items: flex-start; gap: 10px;
}
.tier__check {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.tier__cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 200ms ease;
}
.tier__cta:hover { border-color: var(--primary); color: var(--primary); }
.tier--popular .tier__cta {
  background: var(--primary);
  color: #001712;
  border-color: var(--primary);
}
.tier--popular .tier__cta:hover {
  background: #00ffc2;
  border-color: #00ffc2;
}

.svc-footnote {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* ====== CUSTOM PLANS ====== */
.custom {
  position: relative;
  overflow: hidden;
}
.custom__inner {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(123,97,255,0.32), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,229,176,0.16), transparent 50%),
    linear-gradient(135deg, #1a1330 0%, #0f0a1f 100%);
  border: 1px solid rgba(123,97,255,0.3);
  border-radius: 28px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.custom__inner::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(123,97,255,0.4), transparent 70%);
  filter: blur(50px);
}
.custom__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.custom h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px;
}
.custom h2 .accent {
  background: linear-gradient(120deg, #b9a8ff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.custom p { font-size: 17px; color: #d8d4ea; margin-bottom: 32px; max-width: 480px; }
.custom__benefits {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: grid; gap: 14px;
}
.custom__benefits li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  color: #ecebf3;
}
.custom__benefits li svg {
  width: 22px; height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.custom__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cstat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 28px 24px;
}
.cstat__num {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.cstat__num span { font-size: 22px; color: var(--accent); }
.cstat__label { font-size: 13px; color: #c0bcd4; line-height: 1.4; }

/* ====== PROCESS ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong) 12%, var(--border-strong) 88%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
}
.step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  transition: all 240ms ease;
}
.step:hover .step__num {
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(0,229,176,0.08);
}
.step__num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(0,229,176,0.25);
  opacity: 0;
  transition: opacity 220ms ease;
}
.step:hover .step__num::after { opacity: 1; }
.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ====== TESTIMONIALS ====== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color 220ms ease;
}
.testi:hover { border-color: var(--border-strong); }
.testi__quote {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--primary);
  height: 22px;
  letter-spacing: -0.05em;
}
.testi p { font-size: 15.5px; color: #d4d4d4; margin: 0; flex: 1; }
.testi__who { display: flex; align-items: center; gap: 14px; }
.testi__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #001712;
  font-size: 15px;
  flex-shrink: 0;
}
.testi__who strong { display: block; font-size: 14.5px; font-weight: 600; }
.testi__who span { color: var(--muted); font-size: 13px; }

/* ====== FAQ ====== */
.faq-grid { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease;
}
.faq.is-open { border-color: var(--primary); background: linear-gradient(180deg, rgba(0,229,176,0.04), var(--card)); }
.faq__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 28px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
}
.faq__sign {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--card-2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 1px solid var(--border-strong);
  transition: all 220ms ease;
}
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute;
  background: var(--text);
  border-radius: 1px;
  transition: transform 280ms ease, background 220ms ease;
}
.faq__sign::before { width: 10px; height: 2px; }
.faq__sign::after  { width: 2px; height: 10px; }
.faq.is-open .faq__sign {
  background: var(--primary); border-color: var(--primary);
}
.faq.is-open .faq__sign::before, .faq.is-open .faq__sign::after { background: #001712; }
.faq.is-open .faq__sign::after { transform: rotate(90deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}
.faq__a-inner {
  padding: 0 28px 28px;
  color: #c0c0c0;
  font-size: 15px;
  max-width: 720px;
}

/* ====== FINAL CTA ====== */
.final-cta {
  text-align: center;
  padding: 140px 0;
  position: relative;
}
.final-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,229,176,0.14), transparent 60%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(40px, 6vw, 84px);
  max-width: 900px; margin: 0 auto 22px;
}
.final-cta h2 .accent { color: var(--primary); }
.final-cta p { color: var(--muted); max-width: 480px; margin: 0 auto 36px; font-size: 16px; }

/* ====== FORM SECTION (also CTA target) ====== */
.contact {
  background: var(--card);
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact__left h3 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 14px;
}
.contact__left p { color: var(--muted); margin-bottom: 28px; }
.contact__left ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.contact__left ul li {
  font-size: 14.5px;
  color: #d4d4d4;
  display: flex; align-items: center; gap: 12px;
}
.contact__left ul li svg { color: var(--primary); flex-shrink: 0; }

form .row { display: grid; gap: 18px; }
form .two { grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,229,176,0.1);
}
.field textarea { resize: vertical; min-height: 96px; }
form button[type="submit"] {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  background: rgba(0,229,176,0.06);
  border: 1px solid rgba(0,229,176,0.4);
  color: var(--primary);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  font-size: 15px;
}
.form-success.show { display: block; }

/* ====== FOOTER ====== */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-top: 60px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.foot-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a {
  color: #c0c0c0;
  font-size: 14.5px;
  transition: color 160ms ease;
}
.foot-col a:hover { color: var(--primary); }

.foot-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
  margin: 16px 0 0;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  gap: 20px;
  flex-wrap: wrap;
}
.foot-bottom__rights { display: flex; gap: 18px; align-items: center; }

/* ====== FLOATING WHATSAPP ====== */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,0.5);
  transition: transform 200ms ease, box-shadow 240ms ease;
}
.wa-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 38px -6px rgba(37,211,102,0.7);
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ====== REVEAL ANIMATIONS ====== */
.reveal { opacity: 1; }
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.16,.7,.3,1), transform 700ms cubic-bezier(.16,.7,.3,1);
}
html.js-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }
.reveal.delay-5 { transition-delay: 400ms; }
.reveal.delay-6 { transition-delay: 480ms; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1080px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .hamburger { display: inline-flex; }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 70px; left: 20px; right: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    gap: 4px;
    z-index: 99;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .nav.open .nav__links > li { width: 100%; }
  .nav.open .nav__links > li > a,
  .nav.open .nav__links > li > .nav__toggle {
    width: 100%;
    padding: 14px 12px;
    border-radius: 10px;
    justify-content: space-between;
  }
  .nav.open .nav__dropdown {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    background: var(--bg);
    box-shadow: none;
    border-color: var(--border);
    margin: 4px 0 10px;
    max-height: 0;
    padding: 0 10px;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: max-height 320ms ease, padding 220ms ease;
    pointer-events: auto;
  }
  .nav.open .nav__has-dropdown.is-open .nav__dropdown {
    max-height: 600px;
    padding: 10px;
    transform: none;
  }
  .nav.open .nav__dd-item { padding: 12px 12px; }
}

@media (max-width: 1020px) {
  section { padding: 90px 0; }
  .svc-body { grid-template-columns: 1fr; }
  .svc-info { position: relative; top: 0; }
  .svc-tiers { grid-template-columns: 1fr; }
  .pains-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .custom__grid { grid-template-columns: 1fr; gap: 36px; }
  .custom__inner { padding: 48px 32px; }
  .contact { grid-template-columns: 1fr; padding: 40px 28px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sec-head__right { text-align: left; }
}

@media (max-width: 720px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 120px 0 60px; min-height: 86vh; }
  .hero__meta { display: none; }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 20px; right: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    gap: 18px;
    z-index: 99;
  }
  .hamburger { display: inline-flex; }
  .pains-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  form .two { grid-template-columns: 1fr; }
  .custom__stats { grid-template-columns: 1fr; }
  .wa-fab { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .svc-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .pains-cta { flex-direction: column; }
  .final-cta { padding: 90px 0; }
}
