/* ─── TOKENS ─────────────────────────────── */
:root {
  --ink:     #0a0a14;
  --ink2:    #131320;
  --ink3:    #1c1c2e;
  --ink4:    #252538;
  --mint:    #00e5b0;
  --mint2:   #00b88a;
  --mint3:   #006e53;
  --purple:  #7b5ef8;
  --purpleL: #a990ff;
  --purpleD: #3d1fa3;
  --white:   #ffffff;
  --g1:      #f0f0f8;
  --g2:      #ccccdd;
  --g3:      #888899;
  --g4:      #444455;
  --red:     #ff4d4d;
  --amber:   #ffb830;
  --green:   #00c25a;
  --blue:    #0088ff;
  --nav-h:   64px;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:var(--ink);
  color:var(--white);
  font-family:'Inter',sans-serif;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-tap-highlight-color:transparent;
  -webkit-text-size-adjust:100%;
}
a { color:inherit; text-decoration:none; }
button { cursor:pointer; font-family:'Inter',sans-serif; }
img { display:block; max-width:100%; }

/* ─── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--ink2); }
::-webkit-scrollbar-thumb { background:var(--mint3); border-radius:2px; }

/* ─── NAV ────────────────────────────────── */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:calc(var(--nav-h) + env(safe-area-inset-top));
  padding-top:env(safe-area-inset-top);
  display:flex; align-items:center;
  padding-left:5%; padding-right:5%;
  transition:background .3s, border-color .3s;
  border-bottom:1px solid transparent;
}
#nav.scrolled {
  background:rgba(10,10,20,0.92);
  backdrop-filter:blur(16px);
  border-color:rgba(255,255,255,0.05);
}
.nav-logo {
  display:flex; align-items:center; gap:10px;
  font-size:20px; font-weight:900; letter-spacing:5px;
}
.nav-logo-icon {
  width:32px; height:32px; border-radius:8px;
  background:var(--ink3);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.nav-logo span { color:var(--mint); }
.nav-links {
  display:flex; gap:32px;
  margin-right:auto; margin-left:40px;
  list-style:none;
}
.nav-links a {
  font-size:13px; color:var(--g3);
  transition:color .2s; letter-spacing:.5px;
}
.nav-links a:hover { color:var(--white); }
.nav-cta {
  background:var(--mint);
  color:var(--ink);
  font-size:13px; font-weight:700;
  padding:9px 22px; border-radius:8px;
  border:none;
  letter-spacing:.5px;
  min-height:38px;
  transition:transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 4px 20px rgba(0,229,176,.3); }
.nav-mobile-btn {
  display:none; background:none; border:none; color:var(--white); font-size:22px;
  width:44px; height:44px; align-items:center; justify-content:center;
  border-radius:8px;
}

/* ─── HERO ───────────────────────────────── */
#hero {
  min-height:100vh;
  min-height:100svh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  padding: calc(var(--nav-h) + env(safe-area-inset-top) + 60px) 5% 80px;
  position:relative; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(123,94,248,.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(0,229,176,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(0,136,255,.05) 0%, transparent 60%);
}
/* animated grid */
.hero-grid {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,229,176,.08);
  border:1px solid rgba(0,229,176,.2);
  color:var(--mint);
  font-size:11px; font-weight:600; letter-spacing:3px;
  padding:6px 16px; border-radius:20px;
  margin-bottom:32px;
}
.hero-eyebrow::before {
  content:''; width:6px; height:6px;
  border-radius:50%; background:var(--mint);
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(.7)}
}
.hero-title {
  font-size:clamp(44px,8vw,88px);
  font-weight:900; line-height:1.05;
  letter-spacing:-1px;
  margin-bottom:24px;
}
.hero-title .line2 { color:var(--mint); display:block; }
.hero-title .line3 { color:var(--g3); display:block; font-size:.55em; font-weight:400; letter-spacing:0; }
.hero-desc {
  font-size:clamp(15px,2vw,18px);
  color:var(--g2); max-width:560px;
  margin:0 auto 48px; line-height:1.7;
}
.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:72px; }
.btn-primary {
  background:var(--mint); color:var(--ink);
  font-size:15px; font-weight:700; letter-spacing:.5px;
  padding:14px 32px; border-radius:10px; border:none;
  min-height:48px;
  transition:transform .15s,box-shadow .15s;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(0,229,176,.35); }
.btn-ghost {
  background:transparent; color:var(--white);
  font-size:15px; font-weight:500;
  padding:14px 32px; border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  min-height:48px;
  transition:border-color .2s;
}
.btn-ghost:hover { border-color:rgba(255,255,255,.4); }
.hero-stats {
  display:flex; gap:48px; justify-content:center; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:40px; width:100%; max-width:640px; margin:0 auto;
}
.hero-stat .val {
  font-size:32px; font-weight:800; color:var(--white);
  font-variant-numeric:tabular-nums;
}
.hero-stat .val span { color:var(--mint); }
.hero-stat .lbl { font-size:11px; color:var(--g3); letter-spacing:2px; margin-top:2px; }

/* scan-line texture */
.scanlines {
  position:absolute; inset:0; pointer-events:none;
  background:repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(255,255,255,.006) 3px,rgba(255,255,255,.006) 4px);
}

/* ─── SECTION BASE ───────────────────────── */
.section {
  padding:100px 5%;
  max-width:1200px; margin:0 auto;
}
.section-eyebrow {
  font-size:10px; letter-spacing:4px; color:var(--mint);
  text-transform:uppercase; margin-bottom:12px;
}
.section-title {
  font-size:clamp(28px,4vw,44px);
  font-weight:800; line-height:1.15;
  margin-bottom:16px;
}
.section-sub {
  font-size:16px; color:var(--g2);
  max-width:520px; line-height:1.7;
  margin-bottom:64px;
}
.section-divider {
  height:1px; background:rgba(255,255,255,.05);
  margin:0 5%;
}

/* ─── ABOUT ──────────────────────────────── */
#about { padding:100px 5%; max-width:1200px; margin:0 auto; }
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
}
.about-visual {
  position:relative;
  background:var(--ink2);
  border-radius:20px;
  padding:48px;
  border:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.about-visual::before {
  content:'';
  position:absolute; top:-40px; right:-40px;
  width:200px; height:200px;
  background:radial-gradient(circle, rgba(0,229,176,.15) 0%, transparent 70%);
}
.about-icon-big {
  width:96px; height:96px; border-radius:24px;
  background:var(--ink3);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:32px; position:relative; z-index:1;
}
.about-points { display:flex; flex-direction:column; gap:20px; position:relative; z-index:1; }
.about-point {
  display:flex; gap:14px; align-items:flex-start;
}
.about-point-dot {
  width:8px; height:8px; border-radius:50%;
  margin-top:6px; flex-shrink:0;
}
.about-text h4 { font-size:14px; font-weight:600; margin-bottom:4px; }
.about-text p { font-size:13px; color:var(--g3); line-height:1.6; }

/* ─── MISSION ────────────────────────────── */
#mission {
  background:var(--ink2);
  padding:100px 5%;
}
.mission-inner { max-width:1200px; margin:0 auto; }
.mission-cards {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.mission-card {
  background:var(--ink3);
  border-radius:16px; padding:32px;
  border:1px solid rgba(255,255,255,.05);
  transition:border-color .2s, transform .2s;
}
.mission-card:hover { border-color:rgba(0,229,176,.2); transform:translateY(-4px); }
.mission-icon {
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:20px;
}
.mission-card h3 { font-size:17px; font-weight:700; margin-bottom:10px; }
.mission-card p { font-size:13px; color:var(--g3); line-height:1.7; }

/* ─── SERVICES ───────────────────────────── */
#services { padding:100px 5%; max-width:1200px; margin:0 auto; }
.services-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:16px;
}
.service-card {
  background:var(--ink2);
  border-radius:20px; padding:36px;
  border:1px solid rgba(255,255,255,.05);
  position:relative; overflow:hidden;
  transition:border-color .25s, transform .25s;
}
.service-card:hover { border-color:rgba(0,229,176,.25); transform:translateY(-3px); }
.service-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  border-radius:20px 20px 0 0;
  opacity:0; transition:opacity .3s;
}
.service-card:hover::before { opacity:1; }
.sc-mint::before  { background:var(--mint); }
.sc-purple::before{ background:var(--purple); }
.sc-red::before   { background:var(--red); }
.sc-amber::before { background:var(--amber); }
.sc-blue::before  { background:var(--blue); }
.sc-green::before { background:var(--green); }
.service-badge {
  display:inline-block;
  font-size:9px; font-weight:700; letter-spacing:2px;
  padding:3px 10px; border-radius:4px;
  margin-bottom:20px; text-transform:uppercase;
}
.badge-mint   { background:rgba(0,229,176,.1);  color:var(--mint); }
.badge-purple { background:rgba(123,94,248,.12); color:var(--purpleL); }
.badge-red    { background:rgba(255,77,77,.1);   color:#ff7070; }
.badge-amber  { background:rgba(255,184,48,.1);  color:var(--amber); }
.badge-blue   { background:rgba(0,136,255,.1);   color:#55aaff; }
.badge-green  { background:rgba(0,194,90,.1);    color:#30e07a; }
.service-icon { font-size:32px; margin-bottom:16px; }
.service-card h3 { font-size:20px; font-weight:700; margin-bottom:10px; }
.service-card p  { font-size:14px; color:var(--g3); line-height:1.7; margin-bottom:20px; }
.service-price {
  font-size:13px; color:var(--g3);
  display:flex; align-items:center; gap:6px;
}
.service-price strong { color:var(--white); font-size:16px; }
.service-tags { display:flex; gap:6px; flex-wrap:wrap; margin-top:16px; }
.stag {
  font-size:10px; color:var(--g4);
  background:var(--ink3);
  padding:3px 8px; border-radius:4px;
  border:1px solid rgba(255,255,255,.04);
}

/* revenue spotlight */
.revenue-row {
  grid-column:1/-1;
  background:linear-gradient(135deg, rgba(0,229,176,.06) 0%, rgba(123,94,248,.06) 100%);
  border:1px solid rgba(0,229,176,.15);
  border-radius:20px; padding:36px;
  display:grid; grid-template-columns:1fr auto;
  gap:32px; align-items:center;
}
.revenue-row h3 { font-size:22px; font-weight:800; margin-bottom:8px; }
.revenue-row p  { font-size:14px; color:var(--g2); line-height:1.7; }
.revenue-numbers { display:flex; gap:32px; flex-shrink:0; }
.rev-num .n { font-size:28px; font-weight:800; color:var(--mint); }
.rev-num .l { font-size:10px; color:var(--g3); letter-spacing:2px; margin-top:2px; }

/* ─── COURSES ────────────────────────────── */
#courses {
  background:var(--ink2); padding:100px 5%;
}
.courses-inner { max-width:1200px; margin:0 auto; }
.courses-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.course-card {
  background:var(--ink);
  border-radius:16px; overflow:hidden;
  border:1px solid rgba(255,255,255,.05);
  transition:transform .2s, border-color .2s;
}
.course-card:hover { transform:translateY(-4px); border-color:rgba(0,229,176,.2); }
.course-thumb {
  height:140px;
  display:flex; align-items:center; justify-content:center;
  font-size:48px; position:relative;
}
.course-body { padding:24px; }
.course-level {
  font-size:9px; letter-spacing:2px; font-weight:700;
  text-transform:uppercase; margin-bottom:10px;
}
.course-card h4 { font-size:16px; font-weight:700; margin-bottom:8px; }
.course-card p  { font-size:12px; color:var(--g3); line-height:1.6; margin-bottom:16px; }
.course-meta {
  display:flex; justify-content:space-between; align-items:center;
}
.course-price { font-size:18px; font-weight:800; color:var(--mint); }
.course-price s { font-size:12px; color:var(--g4); font-weight:400; margin-right:4px; }
.course-enroll {
  background:none; border:1px solid rgba(0,229,176,.3);
  color:var(--mint); font-size:12px; font-weight:600;
  padding:7px 16px; border-radius:7px;
  transition:background .2s;
}
.course-enroll:hover { background:rgba(0,229,176,.08); }

/* ─── HOW IT WORKS ───────────────────────── */
#how { padding:100px 5%; max-width:1200px; margin:0 auto; }
.steps { display:flex; gap:0; position:relative; }
.steps::before {
  content:''; position:absolute;
  top:28px; right:14%; left:14%;
  height:1px; background:linear-gradient(90deg, var(--mint), var(--purple));
  opacity:.3;
}
.step { flex:1; text-align:center; padding:0 16px; }
.step-num {
  width:56px; height:56px; border-radius:50%;
  background:var(--ink2); border:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
  font-size:18px; font-weight:800;
  position:relative; z-index:1;
}
.step-num.active { border-color:var(--mint); color:var(--mint); }
.step h4 { font-size:15px; font-weight:700; margin-bottom:8px; }
.step p  { font-size:13px; color:var(--g3); line-height:1.6; }

/* ─── PASSWORD GENERATOR ─────────────────── */
#password-generator {
  background: var(--ink3);
  padding: 100px 5%;
}
.pg-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--ink2);
  border: 1px solid rgba(0, 229, 176, 0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.pg-output-wrapper {
  display: flex;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pg-output {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--mint);
  word-break: break-all;
  letter-spacing: 1px;
}
.pg-copy-btn {
  background: none;
  border: 1px solid rgba(0, 229, 176, 0.3);
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-right: 12px;
}
.pg-copy-btn:hover {
  background: rgba(0, 229, 176, 0.1);
}
.pg-strength-bar {
  height: 4px;
  background: var(--ink4);
  border-radius: 2px;
  margin-top: -16px;
  margin-bottom: 24px;
  overflow: hidden;
}
.pg-strength-fill {
  height: 100%;
  width: 100%;
  background: var(--green);
  transition: background 0.3s, transform 0.3s;
  transform-origin: right;
  transform: scaleX(1);
}
.pg-field {
  margin-bottom: 20px;
}
.pg-field label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--g2);
  margin-bottom: 8px;
}
.pg-slider {
  width: 100%;
  -webkit-appearance: none;
  background: var(--ink4);
  height: 6px;
  border-radius: 3px;
  outline: none;
}
.pg-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  cursor: pointer;
  transition: transform 0.1s;
}
.pg-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.pg-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}
.pg-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--g3);
  cursor: pointer;
  user-select: none;
}
.pg-checkbox-label input {
  accent-color: var(--mint);
  width: 16px;
  height: 16px;
}
.pg-gen-btn {
  width: 100%;
  background: var(--mint);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  border: none;
  transition: all 0.2s;
}
.pg-gen-btn:hover {
  box-shadow: 0 6px 24px rgba(0, 229, 176, 0.3);
  transform: translateY(-1px);
}

/* ─── TESTIMONIALS ───────────────────────── */
#testimonials {
  background:var(--ink2); padding:100px 5%;
}
.testi-inner { max-width:1200px; margin:0 auto; }
.testi-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.testi-card {
  background:var(--ink3);
  border-radius:16px; padding:28px;
  border:1px solid rgba(255,255,255,.04);
}
.testi-stars { color:var(--amber); font-size:13px; margin-bottom:14px; }
.testi-card p { font-size:14px; color:var(--g2); line-height:1.7; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--ink4);
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
}
.testi-name { font-size:13px; font-weight:600; }
.testi-role { font-size:11px; color:var(--g3); }

/* ─── PRICING ────────────────────────────── */
#pricing { padding:100px 5%; max-width:1200px; margin:0 auto; }
.pricing-toggle {
  display:flex; align-items:center; gap:12px;
  justify-content:center; margin-bottom:48px;
}
.toggle-label { font-size:13px; color:var(--g3); }
.toggle-label.active { color:var(--white); font-weight:600; }
.toggle-btn {
  width:48px; height:26px; border-radius:13px;
  background:var(--mint3); border:none; position:relative;
  transition:background .2s;
}
.toggle-knob {
  position:absolute; top:3px; right:3px;
  width:20px; height:20px; border-radius:50%;
  background:var(--white);
  transition:transform .2s;
}
.toggle-btn.yearly .toggle-knob { transform:translateX(-22px); }
.toggle-btn.yearly { background:var(--mint); }
.save-badge {
  background:rgba(0,229,176,.1); color:var(--mint);
  font-size:10px; font-weight:700; letter-spacing:1px;
  padding:2px 8px; border-radius:4px;
}
.pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.pricing-card {
  background:var(--ink2);
  border-radius:20px; padding:36px;
  border:1px solid rgba(255,255,255,.06);
  position:relative;
}
.pricing-card.featured {
  background:linear-gradient(145deg, rgba(0,229,176,.06) 0%, rgba(123,94,248,.08) 100%);
  border-color:rgba(0,229,176,.25);
}
.featured-badge {
  position:absolute; top:-12px; right:50%; transform:translateX(50%);
  background:var(--mint); color:var(--ink);
  font-size:10px; font-weight:800; letter-spacing:2px;
  padding:4px 14px; border-radius:20px;
}
.plan-name { font-size:13px; font-weight:700; letter-spacing:2px; color:var(--g3); margin-bottom:8px; text-transform:uppercase; }
.plan-price { font-size:40px; font-weight:900; margin-bottom:4px; }
.plan-price sup { font-size:18px; font-weight:600; }
.plan-price .period { font-size:14px; color:var(--g3); font-weight:400; }
.plan-desc { font-size:13px; color:var(--g3); margin-bottom:28px; line-height:1.6; }
.plan-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.plan-features li { display:flex; align-items:center; gap:10px; font-size:13px; }
.feat-check { color:var(--mint); font-size:14px; font-weight:700; flex-shrink:0; }
.feat-x { color:var(--g4); flex-shrink:0; }
.plan-btn {
  width:100%; padding:12px;
  border-radius:10px; font-size:14px; font-weight:700;
  border:none; transition:all .2s;
}
.plan-btn-ghost {
  background:none; border:1px solid rgba(255,255,255,.12);
  color:var(--white);
}
.plan-btn-ghost:hover { border-color:rgba(255,255,255,.3); }
.plan-btn-mint { background:var(--mint); color:var(--ink); }
.plan-btn-mint:hover { box-shadow:0 4px 20px rgba(0,229,176,.3); transform:translateY(-1px); }

/* ─── FAQ ────────────────────────────────── */
#faq { background:var(--ink2); padding:100px 5%; }
.faq-inner { max-width:800px; margin:0 auto; }
.faq-list { display:flex; flex-direction:column; gap:8px; }
.faq-item {
  background:var(--ink3);
  border-radius:12px; overflow:hidden;
  border:1px solid rgba(255,255,255,.04);
}
.faq-q {
  width:100%; background:none; border:none; color:var(--white);
  font-size:15px; font-weight:500; text-align:right;
  padding:20px 24px; display:flex; justify-content:space-between;
  align-items:center; gap:16px; cursor:pointer;
}
.faq-icon { color:var(--mint); font-size:18px; flex-shrink:0; transition:transform .2s; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a {
  font-size:14px; color:var(--g2); line-height:1.7;
  padding:0 24px; max-height:0; overflow:hidden;
  transition:max-height .3s, padding .3s;
}
.faq-item.open .faq-a { max-height:200px; padding:0 24px 20px; }

/* ─── CONTACT ────────────────────────────── */
#contact { padding:100px 5%; max-width:1200px; margin:0 auto; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.contact-info { display:flex; flex-direction:column; gap:28px; }
.contact-channel {
  display:flex; align-items:center; gap:16px;
  background:var(--ink2); border-radius:14px;
  padding:20px 24px;
  border:1px solid rgba(255,255,255,.04);
  transition:border-color .2s;
}
.contact-channel:hover { border-color:rgba(0,229,176,.2); }
.contact-ch-icon {
  width:44px; height:44px; border-radius:11px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
}
.contact-ch-name { font-size:14px; font-weight:600; margin-bottom:2px; }
.contact-ch-val  { font-size:13px; color:var(--g3); }
.contact-form {
  background:var(--ink2);
  border-radius:20px; padding:40px;
  border:1px solid rgba(255,255,255,.05);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.form-field { display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.form-field label { font-size:12px; color:var(--g3); font-weight:500; }
.form-field input,
.form-field select,
.form-field textarea {
  background:var(--ink3); border:1px solid rgba(255,255,255,.08);
  border-radius:8px; padding:12px 14px;
  color:var(--white); font-size:14px;
  font-family:'Inter',sans-serif;
  outline:none; transition:border-color .2s;
  resize:none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color:var(--g4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color:var(--mint); }
.form-field select option { background:var(--ink3); }
.form-submit {
  width:100%; background:var(--mint);
  color:var(--ink); font-size:15px; font-weight:700;
  padding:14px; border-radius:10px; border:none;
  transition:all .2s;
}
.form-submit:hover { box-shadow:0 6px 24px rgba(0,229,176,.3); transform:translateY(-1px); }

/* ─── CTA BANNER ─────────────────────────── */
#cta-banner {
  background:linear-gradient(135deg, rgba(0,229,176,.08) 0%, rgba(123,94,248,.1) 100%);
  border-top:1px solid rgba(0,229,176,.1);
  border-bottom:1px solid rgba(0,229,176,.1);
  padding:80px 5%; text-align:center;
}
#cta-banner h2 { font-size:clamp(24px,4vw,42px); font-weight:900; margin-bottom:16px; }
#cta-banner p  { font-size:16px; color:var(--g2); margin-bottom:36px; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background:var(--ink2);
  padding:64px 5% 32px;
  border-top:1px solid rgba(255,255,255,.04);
}
.footer-grid {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px; margin-bottom:48px;
}
.footer-brand .logo { font-size:22px; font-weight:900; letter-spacing:5px; margin-bottom:12px; }
.footer-brand .logo span { color:var(--mint); }
.footer-brand p { font-size:13px; color:var(--g3); line-height:1.7; max-width:280px; margin-bottom:24px; }
.footer-socials { display:flex; gap:8px; }
.social-btn {
  width:36px; height:36px; border-radius:8px;
  background:var(--ink3); border:1px solid rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; transition:border-color .2s;
}
.social-btn:hover { border-color:var(--mint); }
.footer-col h5 { font-size:11px; letter-spacing:2px; color:var(--g3); text-transform:uppercase; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col li a { font-size:13px; color:var(--g3); transition:color .2s; }
.footer-col li a:hover { color:var(--white); }
.footer-bottom {
  max-width:1200px; margin:0 auto;
  border-top:1px solid rgba(255,255,255,.04);
  padding-top:24px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12px; color:var(--g4);
  flex-wrap:wrap; gap:12px;
}
.footer-bottom span { font-family:'JetBrains Mono',monospace; color:var(--mint); }

/* ─── FLOATING SECURITY WIDGET ───────────── */
#sec-widget {
  position:fixed; bottom:24px; left:24px; z-index:900;
  background:var(--ink2);
  border:1px solid rgba(0, 229, 176, 0.3);
  border-radius:14px; padding:12px 16px;
  display:flex; align-items:center; gap:10px;
  box-shadow:0 8px 32px rgba(0,0,0,.4);
  cursor:pointer;
  transition:transform .2s;
}
#sec-widget:hover { transform:translateY(-2px); }
.widget-dot { width:8px; height:8px; border-radius:50%; background:var(--green); animation:pulse 2s infinite; }
.widget-text { font-size:11px; color:var(--g2); }
.widget-text strong { display:block; font-size:12px; color:var(--white); }

/* ─── MOBILE ─────────────────────────────── */
@media(max-width:768px){
  .nav-links {
    display:none;
    flex-direction:column;
    position:fixed; top:calc(64px + env(safe-area-inset-top)); left:0; right:0;
    background:rgba(10,10,20,.97);
    padding:24px; gap:4px;
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,.06);
    max-height:calc(100svh - 64px - env(safe-area-inset-top));
    overflow-y:auto;
    margin:0; list-style:none;
  }
  .nav-links.active { display:flex; }
  .nav-links li { width:100%; }
  .nav-links a { display:block; padding:14px 4px; font-size:16px; border-bottom:1px solid rgba(255,255,255,.05); }

  #nav { position:fixed; }
  .nav-mobile-btn {
    display:flex;
    position:absolute;
    left:16px; top:50%;
    transform:translateY(calc(-50% + env(safe-area-inset-top) / 2));
  }
  .nav-cta {
    position:absolute;
    right:16px; top:50%;
    transform:translateY(calc(-50% + env(safe-area-inset-top) / 2));
    padding:8px 16px; font-size:12px;
  }
  .nav-logo {
    font-size:17px; letter-spacing:3px;
    position:absolute; left:50%; top:50%;
    transform:translate(-50%, calc(-50% + env(safe-area-inset-top) / 2));
  }

  .about-grid,
  .contact-grid { grid-template-columns:1fr; }
  .mission-cards,
  .services-grid,
  .courses-grid,
  .pricing-grid,
  .testi-grid { grid-template-columns:1fr; }
  .steps { flex-direction:column; gap:24px; }
  .steps::before { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .revenue-row { grid-template-columns:1fr; }
  .revenue-numbers { flex-wrap:wrap; }
  .form-row { grid-template-columns:1fr; }
  #sec-widget { bottom:16px; left:16px; }
  .pg-options { grid-template-columns: 1fr; }

  #hero { padding: calc(var(--nav-h) + env(safe-area-inset-top) + 32px) 6% 56px; }
  .hero-title { margin-bottom:18px; }
  .hero-desc { margin-bottom:32px; }
  .hero-btns { flex-direction:column; gap:12px; margin-bottom:48px; width:100%; }
  .hero-btns button { width:100%; }
  .hero-stats { gap:16px; padding-top:28px; }
  .hero-stat { flex:1 1 30%; min-width:90px; }
  .hero-stat .val { font-size:26px; }
  .hero-stat .lbl { font-size:10px; letter-spacing:1px; }
}

@media(max-width:380px){
  .hero-title { letter-spacing:-.5px; }
  .hero-eyebrow { font-size:10px; letter-spacing:2px; padding:5px 12px; }
}

/* ─── ANIMATIONS ─────────────────────────── */
.reveal {
  opacity:0; transform:translateY(24px);
  transition:opacity .6s, transform .6s;
}
.reveal.visible { opacity:1; transform:none; }

/* ─── PRINT ──────────────────────────────── */
@media print {
  #nav, #sec-widget { display:none; }
  body { background:#fff; color:#000; }
}