/* ============================================================
   EgovIA — Landing Page Premium v1.0
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg-base:       #07070f;
  --bg-surface:    #0d0d1c;
  --bg-elevated:   #131327;
  --bg-card:       rgba(13,13,28,0.85);

  --violet:        #7c3aed;
  --violet-l:      #a78bfa;
  --violet-d:      #5b21b6;
  --blue:          #3b82f6;
  --blue-l:        #60a5fa;
  --blue-d:        #2563eb;
  --green:         #22c55e;
  --amber:         #f59e0b;

  --grad-brand:    linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  --grad-cta:      linear-gradient(135deg, #6d28d9 0%, #4f46e5 100%);
  --grad-text:     linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);

  --t1: #ffffff;
  --t2: #d1d5db;
  --t3: #9ca3af;
  --t4: #6b7280;

  --b1: rgba(255,255,255,0.06);
  --b2: rgba(255,255,255,0.11);
  --bv: rgba(124,58,237,0.28);

  --glow-v: 0 0 56px rgba(124,58,237,0.18);
  --glow-b: 0 0 56px rgba(59,130,246,0.14);

  --section-py: 120px;
  --container:  1200px;

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 100px;

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --tr:    0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --wa:    #25d366;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--t3);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.1;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.025em;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}
.section      { padding-block: var(--section-py); }
.section--alt { background: var(--bg-surface); }

/* ── UTILITIES ───────────────────────────────────────────── */
.g-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 0.875rem;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.7); }
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--t1);
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--t3);
  line-height: 1.75;
  max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.875rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--tr), box-shadow var(--tr), opacity var(--tr);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(109,40,217,0.35);
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(109,40,217,0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--t2);
  border: 1px solid var(--b1);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--b2); background: rgba(255,255,255,0.06); color: var(--t1); }
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
.reveal.d6 { transition-delay: 0.48s; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  transition: background var(--tr), backdrop-filter var(--tr), border-color var(--tr);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-color: var(--b1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t1);
  flex-shrink: 0;
}
.nav-logo .ia { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t3);
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--t1); background: rgba(255,255,255,0.05); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5625rem 1.25rem;
  background: var(--violet);
  color: #fff;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--tr);
  box-shadow: 0 2px 14px rgba(124,58,237,0.32);
  flex-shrink: 0;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--violet-d); box-shadow: 0 4px 22px rgba(124,58,237,0.5); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--tr);
}
.nav-burger:hover { background: rgba(255,255,255,0.05); }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--t2); border-radius: 2px; transition: transform var(--tr), opacity var(--tr); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 72px 0 0;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  gap: 0.25rem;
  border-top: 1px solid var(--b1);
  display: none;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 0.9rem 1rem; font-size: 1rem; border-radius: var(--r-md); }
.nav-mobile .nav-cta { margin-top: 1rem; padding: 0.9rem 1rem; justify-content: center; font-size: 0.9375rem; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
}
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-glows {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-g1 {
  position: absolute;
  width: 80vw; height: 80vw;
  max-width: 1000px; max-height: 1000px;
  top: -25%; right: -15%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.09) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-g2 {
  position: absolute;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  bottom: -10%; right: 10%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-g3 {
  position: absolute;
  width: 45vw; height: 45vw;
  max-width: 600px; max-height: 600px;
  top: 20%; left: -12%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.05) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 65% 75% at 65% 35%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 65% 75% at 65% 35%, black 15%, transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 5.5rem 3.5rem;
}
.hero-text { max-width: 750px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.125rem;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.22);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-l);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-l);
  box-shadow: 0 0 8px var(--violet);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-h1 {
  font-size: clamp(3.25rem, 6.5vw, 5.75rem);
  letter-spacing: -0.038em;
  line-height: 1.0;
  color: var(--t1);
  margin-bottom: 0.15em;
}
.hero-h1-accent {
  display: block;
  font-size: clamp(3.25rem, 6.5vw, 5.75rem);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.0;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--t3);
  line-height: 1.72;
  max-width: 530px;
  margin-bottom: 2.75rem;
}
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── Hero strip (benefits bar) ─────────── */
.hero-strip { position: relative; z-index: 2; margin-top: auto; }
.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(13,13,28,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--b1);
  border-bottom: none;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.875rem 2rem;
}
.strip-item + .strip-item { border-left: 1px solid var(--b1); }
.strip-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-icon svg { width: 22px; height: 22px; }
.ic-violet { background: rgba(124,58,237,0.12); color: var(--violet-l); }
.ic-blue   { background: rgba(59,130,246,0.12);  color: var(--blue-l); }
.ic-green  { background: rgba(34,197,94,0.12);   color: #4ade80; }
.ic-amber  { background: rgba(245,158,11,0.12);  color: #fbbf24; }
.strip-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 0.25rem;
}
.strip-desc { font-size: 0.8125rem; color: var(--t4); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   TRUSTED BY
══════════════════════════════════════════════════════════ */
.trusted {
  padding-block: 64px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--b1);
  overflow: hidden;
}
.trusted-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t4);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}
.marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  opacity: 0.38;
  transition: opacity var(--tr);
  white-space: nowrap;
  cursor: default;
}
.marquee-item:hover { opacity: 0.7; }
.marquee-item svg  { width: 22px; height: 22px; color: var(--t2); flex-shrink: 0; }
.marquee-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t2);
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.svc-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.svc-head .section-desc { margin-inline: auto; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--bg-surface);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(124,58,237,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tr);
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--bv); box-shadow: 0 24px 64px rgba(0,0,0,0.3), var(--glow-v); }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  transition: var(--tr);
}
.svc-card:hover .svc-icon { background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.35); box-shadow: 0 0 24px rgba(124,58,237,0.22); }
.svc-icon svg { width: 24px; height: 24px; color: var(--violet-l); }
.svc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 0.625rem;
}
.svc-desc { font-size: 0.875rem; color: var(--t4); line-height: 1.7; }
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--violet-l);
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--tr), transform var(--tr);
}
.svc-more svg { width: 14px; height: 14px; }
.svc-card:hover .svc-more { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   HOW WE WORK
══════════════════════════════════════════════════════════ */
.howwork { background: var(--bg-surface); }
.howwork-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 5rem;
}
.steps-wrap { position: relative; }
.steps-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: linear-gradient(90deg, var(--violet) 0%, var(--blue) 50%, var(--violet) 100%);
  opacity: 0.14;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  transition: var(--tr);
}
.step:hover .step-ring { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.08); box-shadow: 0 0 28px rgba(124,58,237,0.22); }
.step-ring svg { width: 22px; height: 22px; color: var(--violet-l); }
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--violet-l);
}
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.875rem; color: var(--t4); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════════════ */
.ben-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ben-card {
  background: var(--bg-surface);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 1.875rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--tr);
}
.ben-card:hover { border-color: rgba(59,130,246,0.22); background: var(--bg-elevated); transform: translateY(-2px); box-shadow: 0 16px 44px rgba(0,0,0,0.25); }
.ben-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
}
.ben-card:hover .ben-icon { background: rgba(59,130,246,0.16); border-color: rgba(59,130,246,0.3); box-shadow: 0 0 20px rgba(59,130,246,0.14); }
.ben-icon svg { width: 20px; height: 20px; color: var(--blue-l); }
.ben-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.9375rem; font-weight: 600; color: var(--t1); margin-bottom: 0.375rem; }
.ben-desc  { font-size: 0.85rem; color: var(--t4); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════════════════════════ */
.cases { background: var(--bg-surface); }
.cases-head { margin-bottom: 4rem; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  background: var(--bg-base);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.case-card:hover { transform: translateY(-5px); border-color: var(--bv); box-shadow: 0 28px 72px rgba(0,0,0,0.45), var(--glow-v); }
.case-top {
  padding: 1.75rem 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.case-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t4);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--b1);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.75rem;
}
.case-kpi {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-body { padding: 0 1.75rem; flex: 1; }
.case-title { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: var(--t1); margin-bottom: 0.5rem; line-height: 1.4; }
.case-desc  { font-size: 0.875rem; color: var(--t4); line-height: 1.65; }
.case-foot  { padding: 1.5rem 1.75rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.case-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--violet-l);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.16);
  border-radius: var(--r-pill);
  padding: 0.25rem 0.625rem;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testi-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.55s var(--ease); }
.testi-slide { min-width: 100%; padding-inline: 4rem; }
.testi-card {
  max-width: 780px;
  margin-inline: auto;
  background: var(--bg-surface);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.75rem;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem; right: 2.5rem;
  font-size: 7rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(124,58,237,0.07);
  pointer-events: none;
  user-select: none;
}
.testi-stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testi-stars svg { width: 17px; height: 17px; fill: #fbbf24; color: #fbbf24; }
.testi-quote { font-size: 1.0625rem; color: var(--t1); line-height: 1.8; margin-bottom: 1.75rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.9375rem; font-weight: 600; color: var(--t1); }
.testi-role { font-size: 0.8125rem; color: var(--t4); margin-top: 0.1875rem; }
.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testi-dot {
  height: 6px; width: 6px;
  border-radius: 3px;
  background: var(--b2);
  cursor: pointer;
  transition: width var(--tr), background var(--tr), box-shadow var(--tr);
}
.testi-dot.on { width: 22px; background: var(--violet); box-shadow: 0 0 10px rgba(124,58,237,0.5); }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq { background: var(--bg-surface); }
.faq-head { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: 4rem; }
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-base);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item.open { border-color: rgba(124,58,237,0.26); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--tr);
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q-text { font-family: 'Space Grotesk', sans-serif; font-size: 0.9375rem; font-weight: 600; color: var(--t1); line-height: 1.4; }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--t4); transition: transform var(--tr), color var(--tr); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--violet-l); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-in { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--t3); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════ */
.fcta { background: var(--bg-base); }
.fcta-box {
  background: linear-gradient(135deg, rgba(109,40,217,0.12) 0%, rgba(59,130,246,0.08) 50%, rgba(109,40,217,0.12) 100%);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--r-xl);
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fcta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(124,58,237,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(59,130,246,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.fcta-title  { font-size: clamp(2.25rem, 4.5vw, 3.5rem); color: var(--t1); margin-bottom: 1.25rem; position: relative; }
.fcta-desc   { font-size: 1.0625rem; color: var(--t3); max-width: 520px; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.75; position: relative; }
.fcta-btns   { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }
.fcta-stats  {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--b1);
  position: relative;
}
.fcta-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fcta-stat-lbl { font-size: 0.875rem; color: var(--t4); margin-top: 0.25rem; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--b1);
  padding-block: 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.f-brand-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem; font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--t1);
  margin-bottom: 0.875rem;
}
.f-brand-logo .ia { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.f-tagline { font-size: 0.875rem; color: var(--t4); line-height: 1.65; max-width: 260px; margin-bottom: 1.5rem; }
.f-socials { display: flex; gap: 0.5rem; }
.f-soc {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-surface);
  border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  color: var(--t4);
  transition: var(--tr);
}
.f-soc:hover { background: var(--bg-elevated); border-color: var(--b2); color: var(--t2); }
.f-soc svg { width: 15px; height: 15px; }
.f-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 1.25rem;
}
.f-col-links { display: flex; flex-direction: column; gap: 0.625rem; }
.f-col-link { font-size: 0.875rem; color: var(--t4); transition: color var(--tr); }
.f-col-link:hover { color: var(--t2); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--b1);
}
.f-copy   { font-size: 0.8125rem; color: var(--t4); }
.f-legal  { display: flex; gap: 1.5rem; }
.f-legal a { font-size: 0.8125rem; color: var(--t4); transition: color var(--tr); }
.f-legal a:hover { color: var(--t3); }

/* ── WhatsApp FAB ──────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--tr), box-shadow var(--tr);
}
.wa-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 36px rgba(37,211,102,0.6); }
.wa-fab svg { width: 30px; height: 30px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --section-py: 88px; }
  .svc-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid   { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .steps-line   { display: none; }
  .ben-grid     { grid-template-columns: repeat(2, 1fr); }
  .cases-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); border-radius: var(--r-xl); border-bottom: 1px solid var(--b1); }
  .strip-item:nth-child(3) { border-left: none; border-top: 1px solid var(--b1); }
  .strip-item:nth-child(4) { border-top: 1px solid var(--b1); }
  .footer-top   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fcta-box     { padding: 4rem 2.5rem; }
  .fcta-stats   { gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-h1, .hero-h1-accent { font-size: clamp(2.75rem, 9vw, 4rem); }
  .hero-sub   { font-size: 1rem; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; max-width: 340px; }
  .hero-strip-inner { grid-template-columns: 1fr; border-radius: var(--r-xl); border-bottom: 1px solid var(--b1); }
  .strip-item + .strip-item { border-left: none; border-top: 1px solid var(--b1); }
  .svc-grid   { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ben-grid   { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testi-slide { padding-inline: 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .f-legal    { gap: 1rem; }
  .fcta-box   { padding: 3rem 1.5rem; }
  .fcta-stats { flex-wrap: wrap; gap: 1.5rem; }
  .fcta-btns  { flex-direction: column; align-items: center; }
  .fcta-btns .btn { width: 100%; max-width: 340px; }
  .testi-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .hero-badge { font-size: 0.75rem; }
  .fcta-stat-val { font-size: 1.875rem; }
  .strip-item { padding: 1.375rem 1.25rem; }
}

/* ── ACCESSIBILITY ─────────────────────── */
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
