/* ═══════════════════════════════════════════════
   DESIGN TOKENS — DARK & LIGHT THEMES
═══════════════════════════════════════════════ */
:root,
[data-theme="dark"] {
  --bg: #07080e;
  --bg2: #0c0d18;
  --bg3: #11121e;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: rgba(255, 255, 255, 0.93);
  --text-dim: rgba(255, 255, 255, 0.68);
  --text-muted: rgba(255, 255, 255, 0.45);
  --accent: #6c63ff;
  --accent2: #a78bfa;
  --accent3: #38bdf8;
  --accent4: #34d399;
  --particle-a: rgba(167, 139, 250, 0.6);
  --particle-b: rgba(108, 99, 255, 0.55);
  --particle-line: rgba(167, 139, 250, 0.18);
  --particle-mouse: rgba(108, 99, 255, 0.45);
  --hero-glass: rgba(7, 8, 14, 0.55);
  --hero-glass-border: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(7, 8, 14, 0.72);
  --cursor-color: rgba(108, 99, 255, 0.8);
  --cursor-border: rgba(167, 139, 250, 0.5);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

[data-theme="light"] {
  --bg: #f4f3ff;
  --bg2: #ede9fe;
  --bg3: #e8e3fb;
  --surface: rgba(255, 255, 255, 0.65);
  --surface-hover: rgba(255, 255, 255, 0.88);
  --border: rgba(108, 99, 255, 0.15);
  --border-hover: rgba(108, 99, 255, 0.35);
  --text: rgba(15, 12, 40, 0.92);
  --text-dim: rgba(15, 12, 40, 0.65);
  --text-muted: rgba(15, 12, 40, 0.4);
  --accent: #5b52e8;
  --accent2: #7c3aed;
  --accent3: #0284c7;
  --accent4: #059669;
  --particle-a: rgba(108, 99, 255, 0.45);
  --particle-b: rgba(124, 58, 237, 0.4);
  --particle-line: rgba(108, 99, 255, 0.12);
  --particle-mouse: rgba(92, 82, 230, 0.4);
  --hero-glass: rgba(255, 255, 255, 0.55);
  --hero-glass-border: rgba(108, 99, 255, 0.2);
  --nav-bg: rgba(244, 243, 255, 0.82);
  --cursor-color: rgba(91, 82, 232, 0.75);
  --cursor-border: rgba(124, 58, 237, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .5s, color .4s;
  cursor: none;
}

a, button {
  cursor: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Noise grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .42;
}

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════ */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cursor-color);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity .2s;
  mix-blend-mode: screen;
}

#cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--cursor-border);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, border-color .3s, opacity .2s, background .3s;
}

[data-theme="light"] #cursor-dot { mix-blend-mode: multiply; }

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  background: rgba(108, 99, 255, 0.08);
  border-color: var(--accent2);
}

body.cursor-hover #cursor-dot { opacity: 0.6; }

@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body, a, button { cursor: auto; }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.1rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .4s, border-color .4s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.03em;
  text-decoration: none;
  background: linear-gradient(135deg, var(--text) 20%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .83rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: .48rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text) !important;
  font-size: .83rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background .2s, border-color .2s !important;
}

.nav-cta:hover {
  background: var(--surface-hover) !important;
  border-color: var(--border-hover) !important;
}

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

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .3rem .8rem;
  font-size: .72rem;
  color: var(--text-dim);
  transition: background .2s, border-color .2s;
}

.toggle-track {
  width: 38px;
  height: 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, #1a1b2e, #2d2f5e);
  position: relative;
  cursor: none;
  transition: background .4s;
  border: 1px solid var(--border);
}

[data-theme="light"] .toggle-track {
  background: linear-gradient(135deg, #c4b5fd, #a5b4fc);
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

[data-theme="light"] .toggle-thumb {
  transform: translateX(18px);
  background: var(--accent2);
}

.toggle-label {
  font-size: .7rem;
  letter-spacing: .04em;
  user-select: none;
  width: 36px;
  text-align: center;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s, opacity .25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 490;
  flex-direction: column;
  gap: .2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .25s, transform .25s;
}

.nav-mobile-drawer.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-drawer a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 400;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}

.nav-mobile-drawer a:last-child { border-bottom: none; }
.nav-mobile-drawer a:hover { color: var(--text); padding-left: .5rem; }

.drawer-whatsapp {
  color: #25D366 !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero-orb {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(124, 92, 255, .28) 0%,
    rgba(124, 92, 255, .1) 35%,
    transparent 70%);
  filter: blur(55px);
  animation: floatOrb 8s ease-in-out infinite;
  pointer-events: none;
  transform: translateY(-50%);
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 30px)); }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  min-height: calc(100vh - 80px);
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 5%;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  max-width: 640px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1rem;
  background: rgba(108, 99, 255, .12);
  border: 1px solid rgba(108, 99, 255, .28);
  border-radius: 100px;
  font-size: .75rem;
  color: var(--accent2);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  opacity: 0;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  animation: blink 2s ease infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 1.4rem;
  opacity: 0;
  color: var(--text);
}

.hero-title span {
  background: linear-gradient(90deg, #7c5cff, #42d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 2.2rem;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

/* Social proof bar */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  padding: .9rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: fit-content;
  opacity: 0;
}

.hsp-item {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}

.hsp-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hsp-label {
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hsp-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* AI Orb visual */
.ai-orb {
  position: relative;
  width: 380px;
  height: 380px;
}

.orb-core {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, #8f7cff, #4a6fff);
  filter: blur(6px);
  animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { filter: blur(6px); opacity: 1; }
  50% { filter: blur(10px); opacity: .85; }
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
}

.ring-1 { animation: spin 14s linear infinite; }
.ring-2 { inset: 35px; border-color: rgba(108, 99, 255, .25); animation: spinReverse 9s linear infinite; }
.ring-3 { inset: 65px; border-color: rgba(56, 189, 248, .2); animation: spin 6s linear infinite; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  opacity: .32;
  z-index: 3;
}

.scroll-hint span {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--accent2), transparent);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: .9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-sub {
  color: var(--text-dim);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.sh {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(108, 99, 255, .35);
  transition: box-shadow .3s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background .2s;
  border-radius: 100px;
}

.btn-primary:hover::after { background: rgba(255, 255, 255, .08); }
.btn-primary:hover { box-shadow: 0 0 55px rgba(108, 99, 255, .55); }

.btn-ghost {
  padding: .9rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, border-color .2s;
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
#about {
  position: relative;
  z-index: 1;
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-body {
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin: 1.2rem 0;
}

.pill-group { margin-top: 1.2rem; }

.pill {
  display: inline-block;
  padding: .28rem .75rem;
  border-radius: 100px;
  font-size: .71rem;
  font-weight: 500;
  margin: .2rem;
}

.pill-v { background: rgba(108, 99, 255, .12); color: var(--accent2); border: 1px solid rgba(108, 99, 255, .2); }
.pill-b { background: rgba(56, 189, 248, .12); color: #7dd3fc; border: 1px solid rgba(56, 189, 248, .2); }
.pill-g { background: rgba(52, 211, 153, .12); color: #6ee7b7; border: 1px solid rgba(52, 211, 153, .2); }

.about-visual {
  position: relative;
  height: 380px;
}

.afc {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem;
  backdrop-filter: blur(20px);
  transition: background .5s, border-color .4s;
}

.afc:nth-child(1) { top: 0; right: 0; width: 190px; animation: afloat1 6s ease-in-out infinite; }
.afc:nth-child(2) { bottom: 40px; left: 0; width: 190px; animation: afloat1 6s 2s ease-in-out infinite; }
.afc:nth-child(3) { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 172px; text-align: center; animation: afloat3 6s 4s ease-in-out infinite; }

@keyframes afloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes afloat3 { 0%, 100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-14px); } }

.afc-label { font-size: .66rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.afc-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--text); }
.afc-icon { font-size: 1.9rem; margin-bottom: .4rem; }
.afc-sub { font-size: .78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════ */
#services {
  position: relative;
  z-index: 1;
  padding: 7rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* 6-service grid: 3+3 */
#services .services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.svc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.2rem;
  overflow: hidden;
  transition: transform .35s, border-color .35s, background .35s;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(108, 99, 255, .09), transparent 65%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.svc-card:hover::after { opacity: 1; }

.svc-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 0 0 24px 24px;
  opacity: .5;
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.35rem;
}

.si-a { background: rgba(108, 99, 255, .14); border: 1px solid rgba(108, 99, 255, .2); }
.si-b { background: rgba(56, 189, 248, .14); border: 1px solid rgba(56, 189, 248, .2); }
.si-c { background: rgba(52, 211, 153, .14); border: 1px solid rgba(52, 211, 153, .2); }
.si-d { background: rgba(245, 158, 11, .14); border: 1px solid rgba(245, 158, 11, .2); }
.si-e { background: rgba(244, 114, 182, .14); border: 1px solid rgba(244, 114, 182, .2); }
.si-f { background: rgba(167, 139, 250, .14); border: 1px solid rgba(167, 139, 250, .2); }

.svc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .7rem;
  letter-spacing: -.01em;
  color: var(--text);
}

.svc-desc {
  font-size: .875rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.82;
}

.svc-pill {
  display: inline-block;
  margin-top: 1.1rem;
  padding: .24rem .68rem;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   WHO WE HELP
═══════════════════════════════════════════════ */
#who-we-help {
  padding: 7rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.who-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
}

.who-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.who-title {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--text);
}

.who-desc {
  font-size: .84rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
#why-us {
  padding: 7rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
#process {
  padding: 7rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: transform .3s, border-color .3s;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  align-self: center;
  flex-shrink: 0;
  opacity: .5;
}

.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border-hover);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.05em;
}

.process-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .7rem;
  color: var(--text);
}

.process-desc {
  font-size: .85rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
#cta-banner {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
#cta-banner .hero-actions {
  opacity: 1;
}

.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 4rem 3rem;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color .3s;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(108, 99, 255, .12), transparent 70%);
  pointer-events: none;
}

.cta-card:hover { border-color: var(--border-hover); }

.cta-card .section-sub {
  max-width: 680px;
  margin: 1rem auto 2rem;
}

.cta-card .hero-actions {
  justify-content: center;
  opacity: 1;
}

.cta-reassurance {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-reassurance span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
#faq {
  padding: 7rem 4rem;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-container {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  user-select: none;
  transition: border-color .25s, background .25s;
}

.faq-item:hover { border-color: var(--border-hover); background: var(--surface-hover); }
.faq-item:focus { outline: 2px solid var(--accent2); outline-offset: 2px; }

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent2);
  transition: transform .3s;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease, padding .3s;
}

.faq-item.open .faq-body {
  max-height: 240px;
  padding-top: 1rem;
}

.faq-body p {
  color: var(--text-dim);
  line-height: 1.82;
  font-size: .9rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem 8rem;
  border-top: 1px solid var(--border);
}

.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.contact-grid .full { grid-column: 1 / -1; }

.field-wrap { position: relative; }

.field-wrap label {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .875rem;
  color: var(--text-dim);
  pointer-events: none;
  transition: top .25s, font-size .25s, color .25s, transform .25s;
  z-index: 1;
}

.field-wrap.is-area label { top: 1.15rem; transform: none; }

.field-wrap.active label,
.field-wrap.filled label {
  top: .5rem;
  font-size: .64rem;
  letter-spacing: .08em;
  color: var(--accent2);
  transform: translateY(0);
}

.field-wrap.is-area.active label,
.field-wrap.is-area.filled label { top: .45rem; }

.field-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.45rem 1.15rem .65rem;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .4s;
  resize: none;
}

.field-input::placeholder { color: transparent; }

.field-input:focus {
  border-color: rgba(108, 99, 255, .5);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, .1);
}

textarea.field-input {
  height: 130px;
  padding-top: 1.7rem;
}

/* Service selector */
.service-label {
  position: static !important;
  transform: none !important;
  top: auto !important;
  font-size: .78rem !important;
  color: var(--text-dim) !important;
  margin-bottom: .45rem !important;
  display: block !important;
  letter-spacing: .04em;
}

.field-select {
  padding: 1rem 1.15rem !important;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c63ff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  cursor: pointer;
}

.field-select option {
  background: var(--bg2);
  color: var(--text);
}

/* Contact trust row */
.contact-trust {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: .5rem 0 .25rem;
}

.contact-trust span {
  font-size: .76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.contact-trust i { color: var(--accent2); font-size: .7rem; }

.contact-submit {
  margin-top: .8rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  border-radius: 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 0 28px rgba(108, 99, 255, .28);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(108, 99, 255, .5);
}

.cinfo {
  display: flex;
  gap: 1.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cinfo-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .83rem;
  color: var(--text-dim);
}

.cinfo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9998;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: waPulse 3s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, .65), 0 0 0 8px rgba(37, 211, 102, .1); }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(37, 211, 102, .55);
  animation: none;
}

.whatsapp-float i {
  font-size: 30px;
  color: white;
}

.whatsapp-float::before {
  content: "Chat with us";
  position: absolute;
  right: 74px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: .75rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s;
  font-family: var(--font-body);
}

.whatsapp-float:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  transition: background .5s, border-color .4s;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}

.footer-tagline {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  font-size: .85rem;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--surface-hover);
  border-color: var(--accent2);
  color: var(--accent2);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-nav-col ul a {
  font-size: .83rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}

.footer-nav-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy {
  font-size: .76rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤960px)
═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  #hero { padding-top: 80px; }
  .hero-content { flex-direction: column; justify-content: center; padding: 2rem 1.5rem; gap: 0; min-height: calc(100vh - 80px); }
  .hero-left { max-width: 100%; }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero-social-proof { gap: 1rem; }

  #about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .about-visual { display: none; }

  #services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
 

  #who-we-help { padding: 5rem 2rem; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }

  #why-us { padding: 5rem 2rem; }

  #process { padding: 5rem 2rem; }
  .process-track { flex-direction: column; gap: 0; }
  .process-step { padding: 2rem 1.5rem; }
  .process-connector { width: 2px; height: 40px; align-self: center; background: linear-gradient(to bottom, var(--accent), var(--accent2)); }

  #cta-banner { padding: 4rem 2rem; }
  .cta-card { padding: 3rem 1.8rem; }

  #faq { padding: 5rem 2rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .full { grid-column: 1; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 2rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; text-align: center; }
}

.svc-card {
  padding: 1.5rem;
}

.svc-title {
  font-size: .95rem;
}

.svc-desc {
  font-size: .82rem;
}

.svc-icon {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  #cursor-dot, #cursor-ring { display: none; }
}
/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .hero-social-proof { flex-wrap: wrap; width: 100%; justify-content: center; }
  .hsp-divider { display: none; }

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

  .cta-reassurance { flex-direction: column; align-items: center; gap: .8rem; }

  .cinfo { flex-direction: column; gap: .75rem; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float i { font-size: 26px; }
  .whatsapp-float::before { display: none; }

  #process, #why-us, #who-we-help, #faq, #cta-banner { padding-left: 1.25rem; padding-right: 1.25rem; }
  #about { padding-left: 1.25rem; padding-right: 1.25rem; }
  #services { padding-left: 1.25rem; padding-right: 1.25rem; }
  #contact { padding-left: 1.25rem; padding-right: 1.25rem; }
}
/* GSAP defer fallback — ensures content visible if GSAP loads late */
.hero-badge,
.hero-title,
.hero-sub,
.hero-actions,
.hero-social-proof {
  animation: fadeInFallback 0.8s ease forwards;
  animation-delay: 0.3s;
}

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