/* ============================================================
   QENVO.IO — Global Stylesheet | Dark Cyberpunk-Minimal
   ============================================================ */

/* 0. SELF-HOSTED FONTS (no third-party font CDN — avoids leaking visitor IPs to Google) */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/orbitron-normal-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dm-sans-normal-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-sans-italic-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/jetbrains-mono-normal-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 1. VARIABLES */
:root {
  --bg: #080B10;
  --surface: #0D1117;
  --surface2: #111827;
  --surface3: #1a2234;
  --cyan: #00E5FF;
  --cyan-dim: rgba(0, 229, 255, 0.10);
  --cyan-glow: rgba(0, 229, 255, 0.35);
  --green: #39FF14;
  --green-dim: rgba(57, 255, 20, 0.10);
  --green-glow: rgba(57, 255, 20, 0.30);
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --border: rgba(0, 229, 255, 0.12);
  --border-hover: rgba(0, 229, 255, 0.35);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1280px;
  --nav-h: 72px;
  --radius: 12px;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* 3. KEYFRAMES */
@keyframes glow-pulse {
  0%,100% { text-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan-glow); }
  50%      { text-shadow: 0 0 40px var(--cyan), 0 0 90px var(--cyan-glow); }
}
@keyframes border-spin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}
@keyframes orb-pulse {
  0%,100% { transform: scale(1);    opacity: 0.35; }
  50%     { transform: scale(1.18); opacity: 0.6; }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scan {
  0%   { top: -2px; }
  100% { top: 100%; }
}

/* 4. SCROLL REVEAL */
.reveal, .reveal-l, .reveal-r { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
.reveal   { transform: translateY(40px); }
.reveal-l { transform: translateX(-40px); }
.reveal-r { transform: translateX(40px); }
.reveal.vis, .reveal-l.vis, .reveal-r.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* 5. NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,11,16,.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}
.navbar.scrolled { border-bottom-color: var(--border); background: rgba(8,11,16,.97); }
.nav-container { max-width: var(--max-w); margin: 0 auto; height: 100%; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: .18em; color: var(--cyan); text-shadow: 0 0 18px var(--cyan-glow); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; transition: color var(--ease); position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--cyan); transition:width var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 8px 20px !important; border: 1px solid var(--cyan) !important; border-radius: 6px !important; color: var(--cyan) !important; font-family: var(--font-display) !important; font-size: .72rem !important; letter-spacing: .1em !important; transition: all var(--ease) !important; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--cyan-dim) !important; box-shadow: 0 0 22px var(--cyan-glow) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--ease); }

/* 6. BUTTONS */
.btn-primary { display: inline-block; padding: 14px 34px; font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #080B10; background: var(--cyan); border: none; border-radius: 8px; cursor: pointer; transition: all var(--ease); box-shadow: 0 0 22px var(--cyan-glow); }
.btn-primary:hover { background: #33eeff; box-shadow: 0 0 50px var(--cyan-glow); transform: translateY(-2px); }
.btn-secondary { display: inline-block; padding: 12px 32px; font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text); border-radius: 8px; cursor: pointer; transition: all var(--ease); background-image: linear-gradient(var(--bg),var(--bg)), linear-gradient(90deg, var(--cyan), var(--green), var(--cyan)); background-origin: border-box; background-clip: padding-box, border-box; border: 2px solid transparent; background-size: 100% 100%, 200% 100%; animation: border-spin 3s linear infinite; }
.btn-secondary:hover { color: var(--cyan); transform: translateY(-2px); box-shadow: 0 0 22px var(--cyan-glow); }

/* 7. HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: var(--nav-h); }
#particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; animation: orb-pulse 7s ease-in-out infinite; }
.orb-1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(0,229,255,.14), transparent 70%); top: -120px; left: -80px; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(57,255,20,.09), transparent 70%); bottom: -60px; right: 8%; animation-delay: 2.5s; }
.orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(0,229,255,.09), transparent 70%); top: 38%; right: -30px; animation-delay: 4.5s; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 920px; padding: 0 24px; animation: fade-up 1s ease .2s both; }
.hero-eyebrow { font-family: var(--font-mono); font-size: .75rem; color: var(--cyan); letter-spacing: .32em; text-transform: uppercase; margin-bottom: 24px; opacity: .75; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 28px; }
.hero-headline .glow { color: var(--cyan); animation: glow-pulse 3s ease-in-out infinite; }
.hero-sub { font-family: var(--font-mono); font-size: clamp(.9rem, 2.2vw, 1.15rem); color: var(--text-muted); margin-bottom: 52px; min-height: 2.2em; }
.tw-word { color: var(--green); font-weight: 500; }
.tw-cursor { display: inline-block; width: 2px; height: 1em; background: var(--green); margin-left: 2px; vertical-align: middle; animation: blink 1s step-end infinite; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: .72rem; font-family: var(--font-mono); letter-spacing: .1em; animation: float 2.2s ease-in-out infinite; }
.hero-scroll::after { content:''; width: 1px; height: 42px; background: linear-gradient(to bottom, var(--cyan), transparent); }

/* 8. SECTIONS */
.section { padding: 100px 28px; max-width: var(--max-w); margin: 0 auto; }
.section-full { padding: 100px 28px; }
.section-label { font-family: var(--font-mono); font-size: .72rem; color: var(--cyan); letter-spacing: .3em; text-transform: uppercase; margin-bottom: 14px; opacity: .8; }
.section-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.7rem); font-weight: 700; line-height: 1.2; margin-bottom: 18px; }
.section-title span { color: var(--cyan); }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* 9. SERVICES */
.services-bg { background: var(--surface); }
.services-hd { text-align: center; max-width: var(--max-w); margin: 0 auto 60px; padding: 0 28px; }
.services-hd .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.svc-card { position: relative; padding: 34px 26px; background: rgba(13,17,23,.75); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--ease); }
.svc-card::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, var(--cyan-dim), transparent 60%); opacity:0; transition: opacity var(--ease); border-radius: var(--radius); }
.svc-card:hover { border-color: var(--border-hover); box-shadow: 0 0 30px rgba(0,229,255,.12), 0 20px 40px rgba(0,0,0,.5); transform: translateY(-6px); }
.svc-card:hover::before { opacity: 1; }
.svc-icon { width: 50px; height: 50px; border-radius: 10px; background: var(--cyan-dim); border: 1px solid rgba(0,229,255,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 1.35rem; transition: all var(--ease); }
.svc-card:hover .svc-icon { box-shadow: 0 0 18px var(--cyan-glow); background: rgba(0,229,255,.18); }
.svc-title { font-family: var(--font-display); font-size: .88rem; font-weight: 600; letter-spacing: .05em; color: var(--text); margin-bottom: 10px; }
.svc-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }

/* 10. WHY / STATS */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-sub { max-width: 100%; margin-bottom: 28px; }
.why-detail { font-size: .9rem; color: var(--text-muted); line-height: 1.85; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: all var(--ease); }
.stat-card:hover { border-color: var(--border-hover); box-shadow: 0 0 20px rgba(0,229,255,.1); }
.stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em; font-family: var(--font-mono); }

/* 11. PROCESS */
.process-bg { background: var(--surface); }
.process-hd { text-align: center; max-width: var(--max-w); margin: 0 auto 64px; padding: 0 28px; }
.process-hd .section-sub { margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; position: relative; }
.process-steps::before { content:''; position:absolute; top:40px; left:calc(28px + 12.5%); right:calc(28px + 12.5%); height:1px; background:linear-gradient(90deg, var(--cyan), var(--green), var(--cyan)); opacity:.3; }
.process-step { text-align: center; padding: 0 16px; }
.step-num { width: 80px; height: 80px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.5rem; position: relative; z-index: 1; transition: all var(--ease); }
.process-step:hover .step-num { border-color: var(--cyan); box-shadow: 0 0 22px var(--cyan-glow); background: var(--cyan-dim); }
.step-title { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

/* 12. INDUSTRIES */
.ind-hd { text-align: center; max-width: var(--max-w); margin: 0 auto 44px; padding: 0 28px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 920px; margin: 0 auto; padding: 0 28px; }
.ind-tag { padding: 10px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; font-family: var(--font-mono); font-size: .78rem; color: var(--text-muted); letter-spacing: .05em; transition: all var(--ease); cursor: default; }
.ind-tag:hover { border-color: var(--green); color: var(--green); background: var(--green-dim); box-shadow: 0 0 14px var(--green-glow); transform: translateY(-2px); }

/* 13. CTA BANNER */
.cta-banner { position: relative; padding: 100px 28px; overflow: hidden; background: var(--surface); text-align: center; }
.cta-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center, rgba(0,229,255,.07) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.3; }
.cta-title span { color: var(--cyan); animation: glow-pulse 3s ease-in-out infinite; }
.cta-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 38px; }

/* 14. FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 28px 28px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: var(--max-w); margin: 0 auto 48px; }
.footer-brand .logo-text { display: block; margin-bottom: 12px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; max-width: 270px; margin-top: 8px; }
.footer-col h4 { font-family: var(--font-display); font-size: .68rem; font-weight: 600; letter-spacing: .22em; color: var(--cyan); text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: .88rem; color: var(--text-muted); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; text-align: center; max-width: var(--max-w); margin: 0 auto; }
.footer-bottom p { font-size: .78rem; color: var(--text-muted); font-family: var(--font-mono); }

/* 15. CONTACT PAGE */
.page-hero { padding: 90px 28px 50px; text-align: center; max-width: var(--max-w); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; max-width: var(--max-w); margin: 0 auto; padding: 0 28px 100px; align-items: start; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; font-size: .95rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; align-items: flex-start; gap: 14px; }
.c-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--cyan-dim); border: 1px solid rgba(0,229,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.c-text h5 { font-family: var(--font-mono); font-size: .68rem; color: var(--cyan); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 3px; }
.c-text p { font-size: .9rem; color: var(--text); margin: 0; }

/* Form */
.form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { font-family: var(--font-mono); font-size: .68rem; color: var(--cyan); letter-spacing: .15em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea { padding: 13px 15px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: .9rem; outline: none; transition: all var(--ease); appearance: none; -webkit-appearance: none; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-muted); opacity: .6; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,.1); background: rgba(0,229,255,.03); }
.fg select option { background: var(--surface2); color: var(--text); }
.fg textarea { height: 140px; resize: vertical; }
.btn-submit { width: 100%; padding: 15px; font-family: var(--font-display); font-size: .82rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #080B10; background: var(--cyan); border: none; border-radius: 8px; cursor: pointer; transition: all var(--ease); box-shadow: 0 0 20px var(--cyan-glow); margin-top: 6px; }
.btn-submit:hover { background: #33eeff; box-shadow: 0 0 42px var(--cyan-glow); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 50px 20px; }
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--green); margin-bottom: 10px; }
.success-text { color: var(--text-muted); font-size: .9rem; }

/* 16. LEGAL PAGES */
.legal-hero { padding: 80px 28px 40px; background: var(--surface); border-bottom: 1px solid var(--border); }
.legal-hero-inner { max-width: 820px; margin: 0 auto; }
.legal-hero-inner h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); margin-bottom: 14px; }
.legal-meta { font-family: var(--font-mono); font-size: .76rem; color: var(--text-muted); letter-spacing: .04em; }
.legal-body { max-width: 820px; margin: 0 auto; padding: 60px 28px 100px; }
.legal-body h2 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: .05em; color: var(--cyan); margin: 44px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-body p { font-size: .93rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 22px; list-style: disc; }
.legal-body ul li { font-size: .93rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 6px; }
.legal-body a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: #33eeff; }
.legal-note { padding: 18px 22px; background: var(--cyan-dim); border: 1px solid rgba(0,229,255,.18); border-left: 3px solid var(--cyan); border-radius: 8px; margin-bottom: 14px; }
.legal-note p { color: var(--text) !important; margin: 0; font-size: .88rem !important; }

/* 16b. PILLARS (home — replaces numeric stats) */
.pillar-card { padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--ease); }
.pillar-card:hover { border-color: var(--border-hover); box-shadow: 0 0 20px rgba(0,229,255,.1); transform: translateY(-4px); }
.pillar-icon { font-size: 1.3rem; margin-bottom: 12px; }
.pillar-title { font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .03em; color: var(--text); margin-bottom: 8px; }
.pillar-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }

/* 16c. MODULE CARDS (home — industry modules) */
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.module-card { padding: 32px 26px; background: rgba(13,17,23,.75); backdrop-filter: blur(18px); border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--ease); display: flex; flex-direction: column; }
.module-card:hover { border-color: var(--border-hover); box-shadow: 0 0 30px rgba(0,229,255,.12), 0 20px 40px rgba(0,0,0,.5); transform: translateY(-6px); }
.module-tag { display: inline-block; font-family: var(--font-mono); font-size: .66rem; color: var(--green); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 14px; }
.module-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.module-audience { font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.module-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.module-features li { font-size: .84rem; color: var(--text-muted); line-height: 1.55; display: flex; gap: 9px; align-items: flex-start; }
.module-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }

/* 16d. PRICING PAGE */
.pricing-toggle-note { text-align: center; max-width: 640px; margin: 0 auto 50px; padding: 0 28px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; padding: 0 28px 60px; align-items: stretch; }
.price-card { position: relative; background: rgba(13,17,23,.75); backdrop-filter: blur(18px); border: 1px solid var(--border); border-radius: 16px; padding: 38px 28px; display: flex; flex-direction: column; transition: all var(--ease); }
.price-card:hover { border-color: var(--border-hover); transform: translateY(-6px); }
.price-card.featured { border-color: var(--cyan); box-shadow: 0 0 40px rgba(0,229,255,.15); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: #080B10; font-family: var(--font-display); font-size: .64rem; font-weight: 700; letter-spacing: .1em; padding: 5px 18px; border-radius: 100px; text-transform: uppercase; white-space: nowrap; }
.price-module { font-family: var(--font-mono); font-size: .68rem; color: var(--cyan); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 12px; }
.price-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.price-audience { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; min-height: 44px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--cyan); }
.price-unit { font-size: .8rem; color: var(--text-muted); }
.price-note { font-size: .74rem; color: var(--text-muted); font-family: var(--font-mono); margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 28px; }
.price-features li { font-size: .85rem; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.addon-card { padding: 26px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--ease); }
.addon-card:hover { border-color: var(--border-hover); box-shadow: 0 0 20px rgba(0,229,255,.1); }
.addon-name { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.addon-price { font-family: var(--font-mono); font-size: .74rem; color: var(--green); margin-bottom: 10px; }
.addon-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.faq-list { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-family: var(--font-display); font-size: .92rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.faq-a { font-size: .87rem; color: var(--text-muted); line-height: 1.75; }

/* 17. RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 44px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .module-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .addon-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { position:fixed; top:var(--nav-h); left:0; right:0; background:rgba(8,11,16,.98); backdrop-filter:blur(20px); padding:24px; flex-direction:column; align-items:flex-start; gap:20px; transform:translateY(-120%); transition:transform var(--ease); border-bottom:1px solid var(--border); }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 26px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 70px 18px; }
  .section-full { padding: 70px 18px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 1.8rem; }
}
