/* ============================================================
   DX-Intelligence — Main Stylesheet
   Theme: Dark Cyber Intelligence
   Typography: Space Grotesk (headings) · IBM Plex Mono (UI/labels) · DM Sans (body)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:        #080c14;
  --bg2:       #0d1422;
  --surface:   #151d2e;
  --surface2:  #1a2338;
  --border:    rgba(0, 200, 255, 0.10);
  --border-md: rgba(0, 200, 255, 0.20);
  --cyan:      #00c8ff;
  --cyan2:     #00e5c8;
  --gold:      #f0c040;
  --text:      #e8edf5;
  --muted:     #7a8aa0;
  --hint:      #93a5bc;

  --fd: 'Space Grotesk', sans-serif;
  --fm: 'IBM Plex Mono', monospace;
  --fb: 'DM Sans', sans-serif;

  --r:    10px;
  --rl:   16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.28s;
  --mw:   1140px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan2);
  outline-offset: 2px;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

/* ── NAVIGATION ── */
#dxi-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 74px;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
#dxi-nav.scrolled { box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5); }
.nav-logo {
  font-family: var(--fm);
  font-size: 1.08rem; font-weight: 700; letter-spacing: 0.06em;
}
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--fm);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px; color: var(--muted);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(0, 200, 255, 0.07); }
.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown > a::after { content: '▾'; font-size: 0.6rem; opacity: 0.5; }
.dd-menu {
  display: none; position: absolute;
  top: calc(100% + 6px); left: 0;
  background: var(--surface); border: 1px solid var(--border-md);
  border-radius: var(--r); padding: 6px; min-width: 240px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.dropdown:hover .dd-menu { display: block; }
.dropdown:focus-within .dd-menu { display: block; }
.dd-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; width: 100%;
  font-family: var(--fm); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--muted); border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.dd-menu a:hover { color: var(--cyan); background: rgba(0, 200, 255, 0.06); }
.dd-menu a .icon { font-size: 1rem; }
.nav-cta {
  font-family: var(--fm) !important;
  font-size: 0.76rem !important; font-weight: 700 !important;
  letter-spacing: 0.06em !important; text-transform: uppercase !important;
  background: var(--cyan) !important; color: var(--bg) !important;
  padding: 9px 18px !important; border-radius: 6px !important;
  margin-left: 8px;
  transition: background var(--t), transform var(--t) !important;
  display: inline-block;
}
.nav-cta:hover { background: var(--cyan2) !important; transform: translateY(-1px) !important; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 6px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text); border-radius: 1px; display: block; transition: var(--t);
}

/* ── LAYOUT ── */
main { padding-top: 74px; min-height: 100vh; }
.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 48px; }
section { padding: 88px 0; }
.full-bleed { padding: 88px 48px; background: var(--bg2); }
.full-bleed .wrap { padding: 0; }

/* ── TYPE HELPERS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 14px;
}
.eyebrow::before { content: '//'; opacity: 0.5; }
h1, h2, h3, h4 { font-family: var(--fd); letter-spacing: -0.03em; line-height: 1.05; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
h4 { font-size: 0.92rem; font-weight: 600; }
.accent { color: var(--cyan); }
.lead {
  font-family: var(--fb); font-size: 1rem; font-weight: 300;
  color: var(--muted); line-height: 1.7; max-width: 540px; margin-top: 16px;
}
p { font-family: var(--fb); font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 0.70rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 8px;
  transition: all var(--t) var(--ease); cursor: pointer; border: none;
}
.btn-p { background: var(--cyan); color: var(--bg); }
.btn-p:hover { background: var(--cyan2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 200, 255, 0.25); }
.btn-g { background: transparent; color: var(--text); border: 1px solid var(--border-md); }
.btn-g:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0, 200, 255, 0.05); }
.btn-sm { padding: 8px 16px; font-size: 0.65rem; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 68px); display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 38%, rgba(0, 200, 255, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 75%, rgba(0, 229, 200, 0.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.033) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 72px 48px;
  max-width: var(--mw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid rgba(0, 200, 255, 0.28);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 26px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.5); }
}
.hero h1 { animation: fadeUp 0.6s 0.08s ease both; }
.hero .lead { animation: fadeUp 0.6s 0.16s ease both; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; animation: fadeUp 0.6s 0.24s ease both; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; animation: fadeUp 0.6s 0.32s ease both; }
.hs-n { font-family: var(--fm); font-size: 1.9rem; font-weight: 700; color: var(--cyan); letter-spacing: -0.02em; }
.hs-l { font-family: var(--fm); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-panel { display: flex; flex-direction: column; gap: 12px; animation: panelIn 0.8s 0.4s ease both; }
@keyframes panelIn {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
.data-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; }
.dc-lbl { font-family: var(--fm); font-size: 0.60rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dc-val { font-family: var(--fm); font-size: 1.4rem; font-weight: 700; color: var(--cyan); margin-top: 3px; letter-spacing: -0.02em; }
.dc-sub { font-family: var(--fb); font-size: 0.76rem; color: var(--muted); margin-top: 2px; font-weight: 300; }
.bar-t { background: rgba(0, 200, 255, 0.1); height: 3px; border-radius: 2px; margin-top: 8px; }
.bar-f { height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--cyan), var(--cyan2)); }

/* ── TRUSTED STRIP ── */
.trusted {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 48px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.t-lbl { font-family: var(--fm); font-size: 0.60rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hint); white-space: nowrap; flex-shrink: 0; }
.t-logos { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; flex: 1; justify-content: center; }
.t-logo { font-family: var(--fm); font-size: 0.80rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; transition: color var(--t); }
.t-logo:hover { color: var(--text); }

/* ── SERVICE CARDS ── */
.s-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; margin-top: 52px; }
.s-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.s-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.s-card:hover { transform: translateY(-4px); border-color: var(--border-md); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35); }
.s-card:hover::after { transform: scaleX(1); }
.s-num { font-family: var(--fm); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 8px; }
.s-card h3 { font-size: 0.98rem; margin-bottom: 9px; color: var(--text); }
.s-card p { flex: 1; }
.s-lnk { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; font-family: var(--fm); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); transition: gap var(--t); }
.s-card:hover .s-lnk { gap: 9px; }

/* ── PROCESS ── */
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; position: relative; }
.p-grid::before { content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.2), transparent); }
.p-step { padding: 0 18px; }
.p-num { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-size: 0.76rem; font-weight: 700; color: var(--cyan); margin-bottom: 16px; }
.p-step h4 { color: var(--text); margin-bottom: 7px; }

/* ── TESTIMONIALS ── */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.t-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.t-stars { color: var(--gold); font-size: 0.76rem; letter-spacing: 2px; margin-bottom: 12px; }
.t-card blockquote { font-family: var(--fb); font-size: 0.86rem; font-weight: 300; color: var(--muted); line-height: 1.7; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan2)); display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-weight: 700; font-size: 0.75rem; color: var(--bg); flex-shrink: 0; }
.t-name { font-family: var(--fm); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; color: var(--text); }
.t-role { font-family: var(--fb); font-size: 0.70rem; color: var(--hint); }

/* ── CTA BAND ── */
.cta-band {
  margin: 0 48px 72px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.10), rgba(0, 229, 200, 0.05));
  border: 1px solid rgba(0, 200, 255, 0.18);
  padding: 64px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 110%, rgba(0, 200, 255, 0.12) 0%, transparent 60%); }
.cta-band > * { position: relative; }
.cta-band .lead { margin: 14px auto 28px; text-align: center; }
.cta-acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px 56px; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(0, 200, 255, 0.05) 0%, transparent 65%); }
.ph-inner { max-width: var(--mw); margin: 0 auto; position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-family: var(--fm); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hint); margin-bottom: 18px; }
.breadcrumb a { color: var(--cyan); transition: color var(--t); }
.breadcrumb a:hover { color: var(--cyan2); }

/* ── ABOUT ── */
.about-g { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.a-box { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 360px; position: relative; overflow: hidden; }
.a-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 35% 35%, rgba(0, 200, 255, 0.1) 0%, transparent 60%); }
.a-orb { width: 150px; height: 150px; border-radius: 50%; background: conic-gradient(from 0deg, var(--cyan), var(--cyan2), var(--cyan)); filter: blur(34px); opacity: 0.25; animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.a-mono { position: absolute; font-family: var(--fd); font-size: 5rem; font-weight: 700; color: rgba(0, 200, 255, 0.06); letter-spacing: -0.06em; user-select: none; }
.a-badge { position: absolute; bottom: -13px; right: -13px; background: var(--cyan); color: var(--bg); padding: 12px 18px; border-radius: 10px; font-family: var(--fm); font-weight: 700; font-size: 0.70rem; letter-spacing: 0.06em; }
.v-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.v-item { display: flex; align-items: flex-start; gap: 10px; }
.v-dot { color: var(--cyan); font-size: 0.78rem; margin-top: 4px; flex-shrink: 0; }
.v-title { font-family: var(--fd); font-size: 0.86rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }

/* ── TEAM ── */
.team-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.team-c { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; text-align: center; transition: transform var(--t), border-color var(--t); }
.team-c:hover { transform: translateY(-3px); border-color: var(--border-md); }
.team-av { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 12px; background: linear-gradient(135deg, var(--cyan), var(--cyan2)); display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-weight: 700; font-size: 1rem; color: var(--bg); }
.team-c h4 { color: var(--text); margin-bottom: 3px; }
.team-role { font-family: var(--fm); font-size: 0.60rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); }
.team-c p { margin-top: 7px; font-size: 0.78rem; }

/* ── STATS BAND ── */
.stats-band { display: grid; grid-template-columns: repeat(6, 1fr); }
.s-cell { padding: 26px 16px; border-right: 1px solid var(--border); text-align: center; }
.s-cell:last-child { border-right: none; }
.s-cell-n { font-family: var(--fm); font-size: 1.7rem; font-weight: 700; color: var(--cyan); letter-spacing: -0.02em; }
.s-cell-l { font-family: var(--fm); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* ── FEATURES GRID ── */
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 44px; }
.f-item { display: flex; align-items: flex-start; gap: 12px; padding: 17px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); transition: border-color var(--t); }
.f-item:hover { border-color: var(--border-md); }
.f-check { color: var(--cyan); font-family: var(--fm); font-size: 0.70rem; margin-top: 4px; flex-shrink: 0; }
.f-title { font-family: var(--fd); font-size: 0.86rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }

/* ── PRICING ── */
.price-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.price-c { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 28px; position: relative; }
.price-c.featured { border-color: var(--cyan); background: linear-gradient(145deg, rgba(0, 200, 255, 0.07), var(--surface)); }
.feat-tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: var(--bg); font-family: var(--fm); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 12px; border-radius: 100px; }
.price-name { font-family: var(--fm); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.price-val { font-family: var(--fm); font-size: 1.9rem; font-weight: 700; color: var(--cyan); margin-bottom: 4px; letter-spacing: -0.02em; }
.price-val span { font-size: 0.88rem; color: var(--muted); }
.price-desc { font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; }
.price-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.price-feats li { display: flex; align-items: flex-start; gap: 7px; font-family: var(--fb); font-size: 0.80rem; color: var(--muted); font-weight: 300; }
.price-feats li::before { content: '✓'; color: var(--cyan); font-family: var(--fm); font-size: 0.68rem; flex-shrink: 0; margin-top: 2px; }

/* ── GEO PANEL ── */
.geo-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 26px; position: relative; overflow: hidden; }
.geo-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(0, 200, 255, 0.06) 0%, transparent 65%); }
.geo-panel > * { position: relative; }
.geo-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 13px; border-radius: 8px; margin-bottom: 7px; background: rgba(0, 200, 255, 0.04); border: 1px solid rgba(0, 200, 255, 0.10); }
.geo-row:last-child { margin-bottom: 0; }
.geo-plat { font-family: var(--fm); font-size: 0.70rem; font-weight: 600; color: var(--text); }
.geo-sub { font-family: var(--fb); font-size: 0.70rem; color: var(--muted); font-weight: 300; }
.geo-tag { font-family: var(--fm); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); }

/* ── RESULTS ── */
.res-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.res-c { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; text-align: center; }
.res-n { font-family: var(--fm); font-size: 2.1rem; font-weight: 700; color: var(--cyan); letter-spacing: -0.03em; }

/* ── CONTACT ── */
.contact-g { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; margin-top: 52px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; align-items: flex-start; gap: 13px; }
.c-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(0, 200, 255, 0.08); border: 1px solid rgba(0, 200, 255, 0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.c-title { font-family: var(--fm); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 3px; }
.c-val { font-family: var(--fb); font-size: 0.84rem; color: var(--muted); font-weight: 300; }
.c-val a { color: var(--cyan); transition: color var(--t); }
.c-val a:hover { color: var(--cyan2); }
.why-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; margin-top: 10px; }
.why-title { font-family: var(--fm); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.why-item { display: flex; align-items: center; gap: 8px; font-family: var(--fb); font-size: 0.82rem; color: var(--muted); font-weight: 300; margin-bottom: 7px; }
.why-item::before { content: '✓'; font-family: var(--fm); color: var(--cyan); font-size: 0.64rem; flex-shrink: 0; }
.form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 34px; }
.form-title { font-family: var(--fd); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.f-group label { font-family: var(--fm); font-size: 0.60rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.f-group input,
.f-group textarea,
.f-group select {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 7px; padding: 11px 13px;
  color: var(--text); font-family: var(--fb); font-size: 0.86rem; font-weight: 300;
  transition: border-color var(--t), box-shadow var(--t); outline: none; width: 100%;
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.08);
}
.f-group textarea { resize: vertical; min-height: 110px; }
.f-group select option { background: var(--bg2); }
.form-note { font-family: var(--fb); font-size: 0.70rem; color: var(--hint); text-align: center; margin-top: 10px; font-weight: 300; }
.form-note a { color: var(--cyan); }

/* ── FAQ ── */
.faq-g { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 44px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.faq-q { font-family: var(--fd); font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 48px 30px; }
.foot-inner { max-width: var(--mw); margin: 0 auto; }
.foot-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand p { font-size: 0.82rem; color: var(--muted); max-width: 250px; margin-top: 10px; font-weight: 300; line-height: 1.7; }
.foot-col h5 { font-family: var(--fm); font-size: 0.60rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hint); margin-bottom: 12px; }
.foot-col a { display: block; font-family: var(--fb); font-size: 0.82rem; font-weight: 300; color: var(--muted); margin-bottom: 8px; transition: color var(--t); }
.foot-col a:hover { color: var(--cyan); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--border); }
.foot-copy { font-family: var(--fm); font-size: 0.60rem; color: var(--hint); letter-spacing: 0.06em; }
.foot-socials { display: flex; gap: 8px; }
.soc-btn { width: 32px; height: 32px; border-radius: 7px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-size: 0.68rem; color: var(--hint); transition: border-color var(--t), color var(--t); }
.soc-btn:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .about-g { grid-template-columns: 1fr; }
  .contact-g { grid-template-columns: 1fr; }
  .foot-g { grid-template-columns: 1fr 1fr; }
  .price-g { grid-template-columns: 1fr; }
  .team-g { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .p-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .p-grid::before { display: none; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .s-cell { border-bottom: 1px solid var(--border); }
  .f-grid { grid-template-columns: 1fr; }
  .faq-g { grid-template-columns: 1fr; }
  .res-g { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #dxi-nav {
    padding: 0 20px;
    height: 70px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.nav-open { overflow: hidden; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(8, 12, 20, 0.98);
    backdrop-filter: blur(8px);
    padding: 90px 20px 20px;
    gap: 2px; z-index: 1001; overflow-y: auto;
  }
  .nav-links.open > a,
  .nav-links.open .dropdown > a,
  .nav-links.open .nav-cta {
    width: 100%;
    justify-content: space-between;
  }
  .nav-links.open .dropdown {
    width: 100%;
  }
  .nav-links.open .dd-menu {
    display: none;
    position: static;
    min-width: 100%;
    box-shadow: none;
    margin-top: 6px;
    border: 1px solid var(--border);
  }
  .nav-links.open .dropdown.open .dd-menu {
    display: block;
  }
  .hamburger { display: flex; }
  .hamburger {
    position: relative;
    z-index: 1002;
  }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .hero-inner { padding: 48px 20px; }
  section { padding: 60px 0; }
  .wrap { padding: 0 20px; }
  .full-bleed { padding: 60px 20px; }
  .trusted { padding: 32px 20px; flex-direction: column; gap: 16px; }
  .cta-band { margin: 0 20px 60px; padding: 40px 24px; }
  .page-hero { padding: 56px 20px 40px; }
  footer { padding: 48px 20px 24px; }
  .foot-g { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-wrap { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}
