/* ============================================================
   EDUSAMM — style.css  (rich blue redesign)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #07152A;
  --white:   #EEF4FF;
  --accent:  #1D5BE3;
  --accent2: #5B9BF8;
  --gray:    #6B8CAE;
  --mid:     #0E2246;
  --border:  rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
::selection { background: rgba(29,91,227,0.35); color: #fff; }

/* ── CURSOR ─────────────────────────────────────────────────── */
.cursor { display: none; }

/* ── NAV ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 0.5px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
#navbar.scrolled {
  background: rgba(7, 21, 42, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem; height: 64px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  transition: color 0.15s, opacity 0.15s;
}
.nav-links a:hover { opacity: 0.7; }

.nav-right {
  display: none; align-items: center; gap: 1.25rem;
}
@media (min-width: 1024px) { .nav-right { display: flex; } }

.nav-mobile-right {
  display: flex; align-items: center; gap: 1rem;
}
@media (min-width: 1024px) { .nav-mobile-right { display: none; } }

#menu-toggle {
  background: none; border: none; color: var(--gray);
  cursor: pointer; padding: 4px;
}
#menu-toggle:hover { color: var(--white); }

#mobile-menu {
  background: rgba(7, 21, 42, 0.98);
  border-top: 0.5px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 1.25rem 2rem 1.5rem;
  display: none; flex-direction: column; gap: 0.25rem;
}
#mobile-menu.open {
  display: flex;
}
.mobile-link {
  display: block; padding: 0.6rem 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); transition: color 0.15s;
}
.mobile-link:hover { color: var(--white); }
.mobile-cta {
  display: block; margin-top: 0.75rem;
  padding: 0.75rem 1rem; text-align: center;
  background: var(--accent); color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── LANG SWITCHER ───────────────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center; gap: 0.4rem;
}
.lang-sep {
  color: var(--border); font-size: 0.75rem;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--gray); transition: color 0.15s;
  padding: 2px 4px;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--accent2); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-accent {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700;
  padding: 1.1rem 2.25rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-accent:hover { background: #1548C4; transform: translateY(-1px); }

.btn-sm { font-size: 0.65rem; padding: 0.65rem 1.25rem; }
.btn-full {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 1rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  transition: background 0.25s, border-color 0.25s;
}
.btn-full:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.85);
}

.btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.8); cursor: pointer;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 1.1rem 2.25rem;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-sm:hover { color: var(--white); border-color: rgba(255,255,255,0.65); }

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid #fff; color: #fff;
  padding: 0.75rem 1.6rem; cursor: pointer; font-weight: 700;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: #fff; border-color: #fff; color: var(--black); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 2.5rem 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0A1F45 0%, #07152A 55%, #061228 100%);
}
@media (min-width: 1024px) { .hero { padding: 0 3rem 5rem; } }

.hero::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 25% 100%, rgba(29,91,227,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 55%;
  background: radial-gradient(ellipse 65% 60% at 85% 15%, rgba(91,155,248,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(29,91,227,0.05);
  white-space: nowrap; pointer-events: none;
  letter-spacing: 0.08em; user-select: none;
}

.hero-tag {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 1.5rem;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent2); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 16ch;
}
.hero-headline .gradient-text {
  background: linear-gradient(120deg, #93C5FD 0%, #3B82F6 50%, #60A5FA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bottom {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .hero-bottom {
    flex-direction: row; justify-content: space-between; align-items: flex-end;
  }
}

.hero-sub {
  font-size: 1.25rem; color: #C8DBF0;
  max-width: 38ch; line-height: 1.75; font-weight: 300;
  padding-left: 0.875rem;
  border-left: 2px solid var(--accent2);
  font-style: italic;
}

.hero-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute; right: 2.5rem; bottom: 4rem;
  display: none; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray);
}
@media (min-width: 1024px) { .hero-scroll { display: flex; } }

.scroll-line {
  width: 0.5px; height: 56px;
  background: var(--border); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--accent2);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; } 50%  { top: 0; }  100% { top: 100%; }
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  overflow: hidden; white-space: nowrap;
  padding: 0.875rem 0;
  background: #061228;
}
.ticker-inner {
  display: inline-flex; align-items: center; gap: 2.5rem;
  animation: ticker 22s linear infinite;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray);
}
.ticker-dot { color: var(--accent2); font-size: 0.5rem; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION SHARED ──────────────────────────────────────────── */
.section {
  max-width: 1280px; margin: 0 auto;
  padding: 6rem 2.5rem;
  position: relative;
}
@media (min-width: 1024px) { .section { padding: 8rem 3rem; } }

.section--bordered { border-top: 0.5px solid var(--border); }

.proc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.proc-header-left { flex: 0 0 auto; }
.proc-header-left .section-headline { margin-bottom: 0; }
.proc-illustration {
  flex: 0 0 380px;
  width: 380px; height: auto;
  opacity: 0.88;
  pointer-events: none;
  margin-top: -3.5rem;
  overflow: visible;
}
@media (max-width: 1024px) { .proc-illustration { display: none; } }

/* Sinaka valguse-efektid sektsioonidele — ulatuvad sektsioonipiiridest üle */
#services::before {
  content: ''; position: absolute;
  top: -20%; right: -10%; width: 70%; height: 140%;
  background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(91,155,248,0.11) 0%, transparent 65%);
  pointer-events: none; z-index: 0; overflow: visible;
}
#services > * { position: relative; z-index: 1; }

#process::before {
  content: ''; position: absolute;
  top: -25%; left: -10%; width: 75%; height: 150%;
  background: radial-gradient(ellipse 55% 45% at 20% 40%, rgba(29,91,227,0.13) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
#process > * { position: relative; z-index: 1; }

#packages::before {
  content: ''; position: absolute;
  top: -20%; right: -10%; width: 70%; height: 140%;
  background: radial-gradient(ellipse 60% 50% at 85% 25%, rgba(91,155,248,0.10) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
#packages > * { position: relative; z-index: 1; }

#faq::before {
  content: ''; position: absolute;
  top: 0; bottom: 0;
  left: calc(-50vw + 50%); right: calc(-50vw + 50%);
  background: radial-gradient(ellipse 600px 70% at 0% 50%, rgba(29,91,227,0.18) 0%, rgba(29,91,227,0.06) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#faq > * { position: relative; z-index: 1; }

.section--light {
  background: var(--mid);
  max-width: unset;
  padding: 6rem 2.5rem;
}
.section--light .inner { max-width: 1280px; margin: 0 auto; }
@media (min-width: 1024px) { .section--light { padding: 8rem 3rem; } }
.section--light .section-label { color: var(--accent2); font-weight: 700; font-size: 0.78rem; }
.section--light .section-label::before { background: var(--accent2); }
.section--light .section-headline { color: var(--white); }
.section--light .wif-sub { color: var(--gray); }
.section--light .wif-list { border-color: var(--border); }
.section--light .wif-list li {
  color: #b8cfe8;
  border-bottom-color: var(--border);
}
.section--light .wif-list li:hover { background: var(--black); color: var(--white); }
.section--light .wif-list li::before { background: var(--accent2); }
.section--light .btn-accent {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  transition: background 0.25s, border-color 0.25s;
}
.section--light .btn-accent:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.85);
}
.section--light .gradient-text {
  background: linear-gradient(120deg, #5B9BF8 0%, #EEF4FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent2); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; display: block;
  width: 1.75rem; height: 0.5px; background: var(--accent2);
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.03em; line-height: 1;
  text-transform: uppercase; margin-bottom: 3.5rem;
}

/* ── SERVICES GRID ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 0.5px solid var(--border);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  padding: 2.25rem;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
@media (min-width: 1024px) {
  .svc-card:nth-child(3n) { border-right: none; }
  .svc-card:nth-child(n+4) { border-bottom: none; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .svc-card:nth-child(2n) { border-right: none; }
  .svc-card:last-child, .svc-card:nth-last-child(2) { border-bottom: none; }
}
.svc-card:hover { background: var(--mid); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.4s ease;
}
.svc-card:hover::after { width: 100%; }

.svc-num { display: none; }
.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.04em;
  line-height: 1; margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.svc-desc {
  font-size: 0.87rem; color: #b8cfe8;
  line-height: 1.65; margin-bottom: 1.25rem;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: auto;
}
.svc-tags span {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 0.5px solid var(--border); color: var(--gray);
  padding: 0.25rem 0.6rem;
  transition: border-color 0.2s, color 0.2s;
}
.svc-card:hover .svc-tags span {
  border-color: rgba(29,91,227,0.45); color: var(--accent2);
}

.svc-card--cta {
  background: linear-gradient(135deg, rgba(29,91,227,0.1) 0%, transparent 100%);
  border-color: rgba(29,91,227,0.22);
  display: flex; flex-direction: column; justify-content: space-between;
}
.svc-card--cta::after { background: var(--accent); }

.svc-cta-pre {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 0.75rem;
  font-weight: 700;
}
.svc-cta-title {
  font-size: 1rem; font-weight: 500; color: var(--white);
  line-height: 1.5; margin-bottom: 1.5rem;
}

/* ── FUNNEL ──────────────────────────────────────────────────── */
.funnel-section {
  padding: 6rem 2.5rem 5rem;
  background: var(--black);
}
@media (min-width: 1024px) { .funnel-section { padding: 8rem 3rem 6rem; } }

.funnel-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.funnel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-top: 1.25rem;
  max-width: 700px;
}

.funnel-sub {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 52ch;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.funnel-diagram {
  overflow-x: auto;
  display: flex;
  justify-content: center;
}
.statement-section > .funnel-diagram {
  margin-left: auto;
  margin-right: auto;
}

.funnel-svg {
  width: 100%;
  min-width: 560px;
  height: auto;
  display: block;
}

/* ── PROC ILLUSTRATION PULSE ────────────────────────────────── */
.proc-pulse {
  animation: proc-ring-pulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes proc-ring-pulse {
  0%, 100% { opacity: 0.08; transform: scale(1); }
  50%       { opacity: 0.03; transform: scale(1.04); }
}

/* ── FUNNEL ANIMATIONS ───────────────────────────────────────── */
@keyframes funnel-flow {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}
@keyframes funnel-leak {
  0%, 100% { opacity: 0.75; transform: translateY(0); }
  50%       { opacity: 1;    transform: translateY(2px); }
}
.funnel-svg-wrap {
  position: relative;
  width: 100%;
}
.leak-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  left: 48.8%;
  top: 46%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255,90,95,0.38) 0%,
    rgba(255,90,95,0.15) 40%,
    rgba(255,90,95,0.04) 70%,
    transparent 100%
  );
  filter: blur(12px);
  transform: translate(-50%, -50%);
  animation: leakPulse 2.8s ease-in-out infinite;
  z-index: 1;
}
@keyframes leakPulse {
  0%   { opacity: 0.2;  transform: translate(-50%, -48%) scale(0.95); }
  50%  { opacity: 0.5;  transform: translate(-50%, -52%) scale(1.08); }
  100% { opacity: 0.2;  transform: translate(-50%, -48%) scale(0.95); }
}
.funnel-arrow      { animation: funnel-flow 2.8s ease-in-out infinite; }
.funnel-leak-drop  { animation: funnel-leak 2.8s ease-in-out infinite; }
.funnel-leak-text  { animation: funnel-leak 2.8s ease-in-out infinite; }
.funnel-otsus:hover { filter: url(#otsus-glow) brightness(1.3); cursor: default; }

/* ── STATEMENT ───────────────────────────────────────────────── */
.statement-section {
  background: #061228;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 7rem 2.5rem;
}
@media (min-width: 1024px) { .statement-section { padding: 9rem 3rem; } }

.statement-section > * {
  max-width: 1100px;
  margin-left: 0;
  margin-right: auto;
}

.statement-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase;
  max-width: 22ch;
  color: var(--white);
}
.statement-text em {
  font-style: normal; color: var(--accent2);
}
.statement-text .muted { color: var(--gray); }

.statement-section .section-label {
  font-size: 0.88rem;
  margin-bottom: 2rem;
  letter-spacing: 0.22em;
}
.statement-sub {
  font-size: 1.05rem;
  color: #B8D0E8;
  margin-top: 1.25rem;
  max-width: 48ch;
  line-height: 1.75;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.statement-sub::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* ── NUMBERS ─────────────────────────────────────────────────── */
.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-left: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
  background: #061228;
}
@media (min-width: 480px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .numbers-grid { grid-template-columns: repeat(4, 1fr); } }

.number-item {
  padding: 2.5rem 2rem;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.number-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--accent2);
  letter-spacing: 0.02em; line-height: 1;
  text-shadow: 0 0 30px rgba(91,155,248,0.45);
}
.number-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; color: var(--gray);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 0.5rem; line-height: 1.5;
}

/* ── PROCESS ─────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative; margin-top: 1rem;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}

/* Progress line track + animated fill */
.proc-line-track {
  display: none;
}
@media (min-width: 768px) {
  .proc-line-track {
    display: block;
    position: absolute;
    top: 5px; left: 6px; right: 6px;
    height: 0.5px;
    background: var(--border);
    overflow: visible;
  }
  .proc-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(91,155,248,0.5);
  }
  .proc-line-fill.animated { width: 100%; }
}

.process-step {
  padding: 0 0.5rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: default;
}
@media (min-width: 768px) {
  .process-step { padding: 0 1rem; }
  .process-step:hover {
    transform: translateY(-3px) scale(1.02);
  }
  .process-step:hover .step-dot {
    background: var(--accent2);
    box-shadow: 0 0 12px rgba(91,155,248,0.6);
  }
  .process-step:hover .step-title { color: #fff; }
  .process-step:hover .step-desc { color: #8ab0d0; }
}

.step-dot {
  width: 11px; height: 11px;
  border: 1px solid var(--accent2); border-radius: 50%;
  background: var(--black); position: relative; z-index: 1;
  margin-bottom: 1.75rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; color: var(--accent2);
  letter-spacing: 0.15em; margin-bottom: 0.75rem;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 0.6rem; line-height: 1.25;
  color: #ddeeff;
  transition: color 0.2s ease;
}
.step-desc {
  font-size: 0.8rem; color: var(--gray); line-height: 1.7;
  transition: color 0.2s ease;
}
.step-time {
  margin-top: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: #3D5A7A;
  letter-spacing: 0.08em;
}

/* ── PROC HEADLINE ───────────────────────────────────────────── */
.proc-headline {
  letter-spacing: 0.03em;
}

/* ── ANIMATED CONNECTOR DASHES ──────────────────────────────── */
.proc-conn {
  animation: dash-flow 1.4s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -6; }
}

/* ── PROC CTA BLOCK ─────────────────────────────────────────── */
.proc-cta {
  margin-top: 5rem;
  text-align: center;
  padding: 7rem 1.5rem 3rem;
  border-top: 0.5px solid var(--border);
}
.proc-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}
.proc-cta-sub {
  font-size: 0.9rem;
  color: #6B8CAE;
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.btn-proc-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(29, 91, 227, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-proc-cta:hover {
  background: #2d6df5;
  box-shadow: 0 0 36px rgba(29, 91, 227, 0.65);
  transform: scale(1.03);
}
.proc-cta-secondary {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #4A72A8;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.proc-cta-secondary:hover { color: var(--accent2); }

.proc-trust {
  margin-top: 1.75rem;
  font-size: 0.75rem;
  color: #7A9EC2;
  letter-spacing: 0.06em;
  display: block;
  position: relative;
  padding-bottom: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.proc-trust::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='6' viewBox='0 0 200 6'%3E%3Cpath d='M0,3 Q20,0.5 40,3 Q60,5.5 80,3 Q100,0.5 120,3 Q140,5.5 160,3 Q180,0.5 200,3' stroke='rgba(91%2C155%2C248%2C0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 200px 6px;
}

/* ── WHO IT'S FOR ────────────────────────────────────────────── */
.wif-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .wif-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.wif-grid .section-headline { margin-bottom: 0; }

.wif-sub {
  font-size: 0.9rem; color: var(--gray); line-height: 1.7;
  margin-bottom: 1.75rem;
}
.wif-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0; margin-bottom: 2rem;
  border: 0.5px solid var(--border);
}
.wif-list li {
  padding: 0.8rem 1rem;
  border-bottom: 0.5px solid var(--border);
  font-size: 0.85rem; color: #a0a0c8;
  display: flex; align-items: center; gap: 0.75rem;
  transition: background 0.15s, color 0.15s;
}
.wif-list li:last-child { border-bottom: none; }
.wif-list li:hover { background: var(--mid); color: var(--white); }
.wif-list li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent2); flex-shrink: 0;
}

/* ── PACKAGES ────────────────────────────────────────────────── */
.pkg-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  background: var(--black);
  padding: 2.25rem; display: flex; flex-direction: column;
  transition: background 0.2s;
}
.pkg-card:hover { background: var(--mid); }
.pkg-card--featured {
  background: var(--mid);
  position: relative;
}

.pkg-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 1rem;
}
.pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--accent2);
  letter-spacing: 0.04em; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border);
}
.pkg-features {
  list-style: none; flex-grow: 1;
  display: flex; flex-direction: column; gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.pkg-features li {
  font-size: 0.82rem; color: var(--gray);
  padding-left: 1.1rem; position: relative; line-height: 1.5;
}
.pkg-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent2); font-size: 0.72rem;
}
.pkg-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 0.5px solid var(--border); color: var(--gray);
  padding: 0.75rem 1rem; text-align: center; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: block;
}
.pkg-btn:hover { border-color: var(--white); color: var(--white); }
.pkg-btn--accent {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.pkg-btn--accent:hover { background: #1548C4; border-color: #1548C4; color: #fff; }

.pkg-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--gray); text-align: center;
  margin-top: 2rem;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  border: 0.5px solid var(--border);
  margin-top: 0.5rem;
}
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item--featured .faq-q { color: rgba(238,244,255,0.85); }

.faq-item--featured {
  border-bottom: 0.5px solid rgba(29,91,227,0.35);
  background: rgba(29,91,227,0.04);
  box-shadow: 0 0 18px rgba(29,91,227,0.08), inset 0 0 0 0.5px rgba(29,91,227,0.15);
  border-radius: 4px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.faq-item--featured:hover {
  background: rgba(29,91,227,0.07);
  box-shadow: 0 0 32px rgba(29,91,227,0.18), inset 0 0 0 0.5px rgba(29,91,227,0.28);
  transform: translateY(-2px);
}

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 500; color: #9BBCE0;
  text-align: left; transition: color 0.15s;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--white); }

.faq-icon {
  flex-shrink: 0; color: var(--accent2);
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.85rem; color: var(--gray); line-height: 1.72;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 250px; padding: 0 1.5rem 1.25rem; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  padding: 8rem 2.5rem 6rem;
  text-align: center; position: relative; overflow: hidden;
  border-top: 0.5px solid var(--border);
  background: linear-gradient(180deg, var(--black) 0%, #061228 100%);
}
@media (min-width: 1024px) { .cta-section { padding: 10rem 3rem 7rem; } }

.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(29,91,227,0.2) 0%, transparent 70%);
}
.cta-section .section-label { justify-content: center; }

.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: 0.03em; line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem; position: relative;
}
.cta-headline .gradient-text {
  background: linear-gradient(120deg, #93C5FD 0%, #3B82F6 50%, #60A5FA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 0.95rem; color: var(--white); font-weight: 400;
  max-width: 44ch; margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-form-wrap {
  max-width: 600px; margin: 0 auto;
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 3rem 3.5rem; background: #0B1829;
  position: relative; text-align: left;
}

form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border); border-radius: 0;
  padding: 0.7rem 0.875rem; font-size: 0.875rem;
  color: var(--white); font-family: 'Inter', sans-serif;
  outline: none; resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: #2A4A6A; }
.form-input:focus {
  border-color: rgba(29,91,227,0.55);
  background: rgba(29,91,227,0.05);
}
.form-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.1em;
  color: var(--gray); text-align: center; margin-top: 0.5rem;
}

.form-success {
  text-align: center; padding: 2.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.form-success h3 { font-size: 1.1rem; font-weight: 600; }
.form-success p  { font-size: 0.85rem; color: var(--gray); }

.cta-contact-row {
  margin-top: 2.5rem;
  display: flex; justify-content: center; align-items: center; gap: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; color: var(--gray);
}
.cta-contact-row a { transition: color 0.15s; }
.cta-contact-row a:hover { color: var(--white); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  border-top: 0.5px solid var(--border);
  padding: 2.5rem;
  background: #061228;
}
.foot-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--border);
}
.foot-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; letter-spacing: 0.1em;
}
.foot-links {
  display: flex; flex-wrap: wrap; gap: 2rem;
}
.foot-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray); transition: color 0.15s;
}
.foot-links a:hover { color: var(--white); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.08em; color: var(--gray);
}
.foot-email {
  color: var(--white); font-weight: 600; letter-spacing: 0.06em;
  font-size: 0.85rem;
}

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal { transition: opacity 0.55s ease, transform 0.55s ease; }

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #1A3A6A; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  html, body { overflow-x: hidden; }

  /* Nav */
  .nav-inner { padding: 0 1.25rem; }

  /* Hero */
  .hero { padding: 6rem 1.25rem 3.5rem; justify-content: flex-start; min-height: auto; }
  .hero-watermark { display: none; }

  /* Sections */
  .section { padding: 4rem 1.25rem; }
  .section--light { padding: 4rem 1.25rem; }
  .statement-section { padding: 4rem 1.25rem; overflow: hidden; }

  /* Funnel — scrollable within section */
  .funnel-diagram {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .funnel-svg { min-width: 500px; }

  /* Process header */
  .proc-header { flex-direction: column; gap: 1.5rem; }

  /* Process CTA */
  .proc-cta { padding: 4rem 1.25rem 2.5rem; }

  /* Numbers */
  .number-item { padding: 1.5rem 1rem; }
  .number-stat { font-size: clamp(1.6rem, 8vw, 2.5rem); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 0.5px solid var(--border); }

  /* Packages */
  .pkg-card { padding: 2rem 1.25rem; }

  /* CTA section */
  .cta-section { padding: 5rem 1.25rem 4rem; }
  .cta-box { padding: 2rem 1.25rem; }

  /* Footer */
  footer { padding: 2rem 1.25rem; }
  .foot-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .foot-links { gap: 1.25rem; }

  /* FAQ featured item */
  .faq-item--featured { border-radius: 3px; }
}
