:root {
  --purple:       #7B3FE4;
  --purple-light: #9B5FF4;
  --purple-dark:  #5A1FC8;
  --purple-deep:  #3D1A8C;
  --purple-glow:  rgba(123,63,228,0.18);
  --purple-soft:  rgba(123,63,228,0.08);
  --white:        #FFFFFF;
  --off-white:    #F7F5FF;
  --text:         #1A1033;
  --muted:        #7A6E96;
  --border:       rgba(123,63,228,0.12);
  --border-light: rgba(123,63,228,0.07);
  --surface:      #FDFCFF;
  --surface2:     #F4F0FE;
  --dark-bg:      #0E0720;
  --dark-surface: #160A30;
  --font-h: 'Syne', sans-serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.1s ease, width 0.3s, height 0.3s, background 0.3s;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(123,63,228,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.22s ease;
}
.cursor-hover .cursor { transform: translate(-50%,-50%) scale(3); background: var(--purple-light); opacity: 0.3; }
.cursor-hover .cursor-ring { transform: translate(-50%,-50%) scale(0.6); border-color: var(--purple); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 56px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(123,63,228,0.08); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  width: 190px; height: 60px;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
/* SVG grid globe icon */
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--purple); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s; letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta-btn {
  background: var(--purple) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px !important;
  letter-spacing: 0em !important;
  transition: all 0.25s !important;
  box-shadow: 0 4px 16px rgba(123,63,228,0.25);
}
.nav-cta-btn:hover { background: var(--purple-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(123,63,228,0.35) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 68px 56px 0;
  position: relative; overflow: hidden;
}

/* Purple mesh background */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(123,63,228,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(155,95,244,0.05) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(123,63,228,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black 0%, transparent 70%);
}

.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
  padding: 80px 0 80px;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple);
  background: rgba(123,63,228,0.07);
  border: 1px solid rgba(123,63,228,0.15);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 5px; height: 5px; background: var(--purple);
  border-radius: 50%; flex-shrink: 0;
}

h1.hero-title {
  font-family: var(--font-h);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text);
}
h1.hero-title .purple { color: var(--purple); }

.hero-sub {
  font-size: 17px; font-weight: 300;
  color: var(--muted); max-width: 540px;
  line-height: 1.75; margin-bottom: 12px;
}
.hero-sub-bold {
  font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 700; font-size: 15px;
  padding: 18px 36px; border-radius: 10px;
  text-decoration: none; letter-spacing: -0.01em;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(123,63,228,0.3);
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(123,63,228,0.4); }
.hero-cta:hover::before { opacity: 1; }
.cta-arrow { font-size: 18px; transition: transform 0.2s; }
.hero-cta:hover .cta-arrow { transform: translateX(4px); }

.hero-niches {
  margin-top: 40px;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.niches-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-right: 16px;
  white-space: nowrap;
}
.niches-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.niche-pill {
  font-size: 12px; font-weight: 500;
  padding: 4px 12px; border-radius: 100px;
  background: var(--surface2);
  color: var(--purple-dark);
  border: 1px solid var(--border);
}

/* Hero right — stats card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 80px rgba(123,63,228,0.1), 0 4px 20px rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple-light));
}
.card-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 20px;
}
.card-stats { display: flex; flex-direction: column; gap: 1px; }
.card-stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex; flex-direction: column; gap: 4px;
}
.card-stat:last-child { border-bottom: none; padding-bottom: 0; }
.card-stat-num {
  font-family: var(--font-h);
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.04em; color: var(--text);
  line-height: 1;
}
.card-stat-num em { color: var(--purple); font-style: normal; }
.card-stat-label { font-size: 13px; color: var(--muted); font-weight: 300; }
.card-badge {
  margin-top: 24px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(123,63,228,0.06);
  border: 1px solid rgba(123,63,228,0.12);
  border-radius: 8px; padding: 12px 16px;
}
.badge-icon { font-size: 18px; }
.badge-text { font-size: 12px; font-weight: 500; color: var(--purple-dark); line-height: 1.4; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--purple);
  padding: 14px 0;
}
.ticker { display: flex; animation: ticker 25s linear infinite; white-space: nowrap; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 28px;
  font-family: var(--font-h); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ── SECTION BASE ── */
section { padding: 112px 56px; }
.section-inner { max-width: 1240px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--purple); border-radius: 2px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.08; margin-bottom: 20px;
  color: var(--text);
}
.section-sub {
  font-size: 16px; color: var(--muted);
  font-weight: 300; line-height: 1.75; max-width: 500px;
}

/* ── WHO WE SERVE ── */
.serve-section { background: var(--off-white); }
.serve-header { margin-bottom: 56px; }
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.serve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
}
.serve-card:hover {
  border-color: var(--purple);
  box-shadow: 0 20px 60px rgba(123,63,228,0.12);
  transform: translateY(-4px);
}
.serve-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(123,63,228,0.06), transparent 70%);
  border-radius: 50%;
  transition: all 0.3s;
}
.serve-card:hover::after { width: 200px; height: 200px; }

.serve-num {
  font-family: var(--font-h); font-size: 72px; font-weight: 800;
  color: rgba(123,63,228,0.06); position: absolute;
  top: 20px; right: 28px; line-height: 1; pointer-events: none;
}
.serve-emoji {
  width: 56px; height: 56px;
  background: var(--surface2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
  border: 1px solid var(--border);
}
.serve-title {
  font-family: var(--font-h); font-size: 24px; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 14px; color: var(--text);
}
.serve-desc {
  font-size: 15px; color: var(--muted); font-weight: 300;
  line-height: 1.7; margin-bottom: 28px;
}
.serve-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 13px; border-radius: 6px;
  background: var(--surface2); color: var(--purple-dark);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.serve-card:hover .stag { background: rgba(123,63,228,0.08); border-color: rgba(123,63,228,0.2); }

/* ── TRUST / BRANDS ── */
.trust-section {
  padding: 72px 56px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-label {
  text-align: center; margin-bottom: 40px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.trust-logos {
  display: flex; justify-content: center;
  align-items: center; gap: 0; flex-wrap: wrap;
}
.trust-logo {
  padding: 16px 40px;
  border-right: 1px solid var(--border-light);
  font-family: var(--font-h); font-size: 16px; font-weight: 700;
  color: rgba(26,16,51,0.2); letter-spacing: -0.02em;
  transition: color 0.3s; white-space: nowrap;
}
.trust-logo:last-child { border-right: none; }
.trust-logo:hover { color: var(--purple); }

/* ── SERVICES ── */
.services-section { background: var(--dark-bg); }
.services-section .section-title { color: var(--white); }
.services-section .section-sub { color: rgba(255,255,255,0.45); }
.services-section .section-label { color: rgba(155,95,244,0.9); }
.services-section .section-label::before { background: rgba(155,95,244,0.9); }

.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 64px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden;
}
.svc-card {
  background: var(--dark-surface);
  padding: 40px 32px 48px;
  position: relative; transition: background 0.3s;
  cursor: none; overflow: hidden;
}
.svc-card:hover { background: #1F0D3A; }
.svc-card:hover .svc-arrow { opacity:1; transform:translate(0,0); }
.svc-num {
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--purple-light);
  margin-bottom: 20px;
}
.svc-name {
  font-family: var(--font-h); font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em;
  line-height: 1.25;
}
.svc-desc { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.65; font-weight: 300; }
.svc-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 30px; height: 30px;
  border: 1px solid rgba(155,95,244,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--purple-light);
  opacity: 0; transform: translate(-6px,6px);
  transition: all 0.3s;
}

/* ── RESULTS ── */
.results-section { background: var(--off-white); }
.results-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px; margin-top: 56px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.result-card:hover {
  border-color: var(--purple);
  box-shadow: 0 16px 50px rgba(123,63,228,0.1);
  transform: translateY(-3px);
}
.result-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0; transition: opacity 0.3s;
}
.result-card:hover::before { opacity: 1; }
.result-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.result-tag::before {
  content: '';
  display: block; width: 16px; height: 2px;
  background: var(--purple); border-radius: 2px;
}
.result-metric {
  font-family: var(--font-h);
  font-size: 48px; font-weight: 800;
  letter-spacing: -0.05em; line-height: 1;
  color: var(--text); margin-bottom: 10px;
}
.result-metric em { color: var(--purple); font-style: normal; }
.result-desc {
  font-size: 14px; color: var(--muted); font-weight: 300;
  line-height: 1.65; margin-bottom: 24px;
}
.result-footer {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(26,16,51,0.2); padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* ── PROCESS ── */
.process-section { background: var(--white); }
.process-label-bar {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple); color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
  margin-bottom: 28px;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 64px;
  position: relative;
}
.process-grid::after {
  content: '';
  position: absolute;
  top: 19px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--purple) 0, var(--purple) 8px, transparent 8px, transparent 16px);
  opacity: 0.25;
}
.process-step {
  padding: 0 24px 0 0;
  position: relative; z-index: 1;
}
.process-step:last-child { padding-right: 0; }
.step-circle {
  width: 40px; height: 40px;
  background: var(--white); border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 13px; font-weight: 800;
  color: var(--muted); margin-bottom: 28px;
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: var(--purple); border-color: var(--purple);
  color: var(--white); box-shadow: 0 4px 20px rgba(123,63,228,0.35);
}
.step-title {
  font-family: var(--font-h); font-size: 17px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.02em; color: var(--text);
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── WHY SEMTONIC ── */
.why-section { background: var(--dark-bg); padding: 112px 56px; }
.why-section .section-title { color: var(--white); }
.why-section .section-label { color: rgba(155,95,244,0.9); }
.why-section .section-label::before { background: rgba(155,95,244,0.9); }

.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 64px;
}
.why-list { display: flex; flex-direction: column; }
.why-item {
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 20px; align-items: flex-start;
  transition: padding-left 0.3s;
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.why-item:hover { padding-left: 8px; }
.why-n {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  color: var(--purple-light); letter-spacing: 0.08em;
  padding-top: 4px; flex-shrink: 0; width: 28px;
}
.why-title {
  font-family: var(--font-h); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; letter-spacing: -0.02em;
}
.why-desc { font-size: 14px; color: rgba(255,255,255,0.38); font-weight: 300; line-height: 1.65; }

/* Big number panel */
.why-visual {
  background: var(--dark-surface);
  border: 1px solid rgba(123,63,228,0.2);
  border-radius: 20px; padding: 48px 44px;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(123,63,228,0.15), transparent 65%);
  pointer-events: none;
}
.big-stat-num {
  font-family: var(--font-h);
  font-size: 72px; font-weight: 800;
  letter-spacing: -0.05em; color: var(--white); line-height: 1;
  margin-bottom: 8px;
}
.big-stat-num em { color: var(--purple-light); font-style: normal; }
.big-stat-label {
  font-size: 14px; color: rgba(255,255,255,0.4);
  font-weight: 300; line-height: 1.6; max-width: 220px;
  margin-bottom: 36px;
}
.mini-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; overflow: hidden;
}
.mini-cell {
  background: rgba(255,255,255,0.03); padding: 20px 18px;
}
.mini-num {
  font-family: var(--font-h); font-size: 26px; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.mini-num em { color: var(--purple-light); font-style: normal; }
.mini-label { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 300; margin-top: 4px; }

/* ── CTA / FORM ── */
.cta-section { background: var(--off-white); }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.cta-left .section-title { margin-bottom: 16px; }
.promises { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.promise {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--muted); font-weight: 400;
}
.promise-check {
  width: 24px; height: 24px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--purple); flex-shrink: 0; font-weight: 700;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 20px 80px rgba(123,63,228,0.08);
}
.form-box-title {
  font-family: var(--font-h); font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 6px; color: var(--text);
}
.form-box-sub { font-size: 13px; color: var(--muted); font-weight: 300; margin-bottom: 32px; }
.frow { margin-bottom: 14px; }
.frow label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.frow input, .frow select {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-b);
  font-size: 14px; padding: 13px 16px;
  border-radius: 8px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  cursor: none;
}
.frow input:focus, .frow select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,63,228,0.08);
}
.frow select option { background: #fff; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; margin-top: 8px;
  background: var(--purple); color: var(--white);
  font-family: var(--font-h); font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em; padding: 16px;
  border: none; border-radius: 10px; cursor: none;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(123,63,228,0.3);
}
.form-submit:hover {
  background: var(--purple-dark);
  box-shadow: 0 10px 32px rgba(123,63,228,0.4);
  transform: translateY(-2px);
}
.form-note {
  text-align: center; font-size: 11px;
  color: var(--muted); margin-top: 12px; font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-bg);
  padding: 72px 56px 40px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 80px; margin-bottom: 64px; align-items: start;
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 180px; height: 60px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.footer-logo-icon svg { width: 22px; height: 22px; }
.footer-brand-name {
  font-family: var(--font-h); font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em;
}
.footer-brand-name em { color: var(--purple-light); font-style: normal; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.65; margin-bottom: 20px; }
.footer-email { font-size: 14px; color: var(--purple-light); text-decoration: none; font-weight: 500; }

.footer-cols { display: flex; gap: 80px; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  text-decoration: none; font-weight: 300; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.18); font-weight: 300; }
.footer-copy em { color: var(--purple-light); font-style: normal; }
.footer-sub { font-size: 12px; color: rgba(255,255,255,0.12); }

/* ── LOGO SVG (inline purple/white globe) ── */
.globe-svg { fill: white; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .hero { padding: 68px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-card { display: none; }
  .serve-grid, .results-grid, .cta-grid, .why-inner, .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::after { display: none; }
  .trust-logos { flex-wrap: wrap; gap: 0; }
  .trust-logo { padding: 12px 24px; }
  .footer-cols { flex-wrap: wrap; gap: 40px; }
}
/* MOBILE MENU */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:2px;
  background:var(--text);
  display:block;
  transition:0.3s;
}

/* Mobile Layout */

@media (max-width:960px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:68px;
    left:0;
    width:100%;
    background:white;

    flex-direction:column;
    align-items:center;

    gap:24px;
    padding:30px 0;

    transform:translateY(-120%);
    opacity:0;
    pointer-events:none;

    transition:all 0.35s ease;
  }

  .nav-links.active{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

}
</style>