/* ===================================================
   DNAI HOME PAGE — Premium Design
   =================================================== */

/* ── NAV ── */
.home-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 1000;
  transition: background .35s, box-shadow .35s;
}
.home-nav.scrolled {
  background: rgba(5, 8, 18, .92);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 4px 32px rgba(0,0,0,.4);
}
.hn-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hn-logo img {
  height: 44px;   /* ← logo büyüklüğü */
  width: auto;
  display: block;
}
.hn-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.hn-link {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.hn-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.hn-link.active { color: #fff; background: rgba(255,255,255,.1); }

.hn-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hn-btn-ghost {
  padding: 9px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: all .25s;
}
.hn-btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.hn-btn-primary {
  padding: 10px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg,#4f8fff,#5b5eff);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(80,120,255,.45);
  transition: all .25s;
  white-space: nowrap;
}
.hn-btn-primary:hover {
  background: linear-gradient(135deg,#6fa3ff,#7475ff);
  box-shadow: 0 6px 28px rgba(80,120,255,.55);
  transform: translateY(-1px);
}
.hn-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hn-burger span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: all .3s;
}

/* ── HERO ── */
.h-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.h-hero-content {
  margin: 0 auto;
}
.h-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(100,150,255,.12);
  border: 1px solid rgba(100,150,255,.3);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(120,180,255,.95);
  margin-bottom: 24px;
  animation: float-pill 3s ease-in-out infinite;
}
@keyframes float-pill { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.h-title {
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0 0 24px;
}
.h-title em {
  font-style: normal;
  background: linear-gradient(135deg,#60c8ff,#a855f7,#ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin: 0 0 36px;
  max-width: 520px;
}
.h-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hbtn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg,#4f8fff,#5b5eff);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(80,120,255,.4);
  transition: all .25s;
  white-space: nowrap;
}
.hbtn-main:hover {
  background: linear-gradient(135deg,#6fa3ff,#7475ff);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(80,120,255,.5);
}
.hbtn-main.hbtn-xl { padding: 20px 40px; font-size: 18px; }

.hbtn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
}
.hbtn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

.h-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* Hero video frame */
.h-hero-visual { position: relative; }
.h-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(100,150,255,.1) inset;
  aspect-ratio: 4/3;
}
.h-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.h-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.h-video-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

/* ── STATS BAR ── */
.h-stats {
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
}
.h-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.h-stat { text-align: center; }
.h-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: rgba(100,200,255,.95);
}
.h-stat span { font-size: 13px; color: rgba(255,255,255,.6); }
.h-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ── SECTION HEADERS ── */
.h-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.h-section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -.03em;
}
.h-section-head p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* ── HOW IT WORKS ── */
.h-steps { padding: 96px 0 64px; }
.h-steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.h-step-card {
  flex: 1;
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.h-step-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(100,200,255,.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.h-step-num {
  font-size: 11px;
  font-weight: 800;
  color: rgba(100,200,255,.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h-step-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.2);
}
.h-step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.h-step-card p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}
.h-step-arrow {
  font-size: 28px;
  color: rgba(100,200,255,.4);
  padding: 60px 8px 0;
  flex-shrink: 0;
}
.h-steps-cta { text-align: center; margin-top: 48px; }

/* ── FREE DNA TEST ── */
.h-free-dna {
  padding: 80px 0;
  background: rgba(0,0,0,.25);
}
.h-free-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(100,220,100,.12);
  border: 1px solid rgba(100,220,100,.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(120,240,140,.95);
  margin-bottom: 14px;
}
.h-test-wrapper { max-width: 600px; margin: 0 auto; }

.h-test-step { display: none; animation: fadeSlide .45s ease; }
.h-test-step.active { display: block; }
@keyframes fadeSlide {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.h-test-card {
  padding: 52px 48px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
}
.htc-icon {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  background: rgba(100,150,255,.12);
  border: 1px solid rgba(100,150,255,.25);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(120,180,255,.9);
}
.h-test-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.h-test-card p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin: 0 0 32px;
  line-height: 1.6;
}
.htc-sub {
  margin: 20px 0 0 !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.55) !important;
}
.htc-sub a { color: rgba(120,180,255,.9); text-decoration: none; font-weight: 600; }
.htc-trust {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* Upload zone */
.htc-upload-zone {
  width: 100%;
  aspect-ratio: 16/10;
  border: 2px dashed rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  transition: border-color .25s, background .25s;
}
.htc-upload-zone:hover {
  border-color: rgba(100,200,255,.4);
  background: rgba(100,150,255,.05);
}
.htc-upload-preview { position: absolute; inset: 0; }
.htc-upload-preview img { width:100%; height:100%; object-fit:cover; }
.htc-upload-prompt { text-align:center; color:rgba(255,255,255,.55); }
.htc-upload-prompt p { font-size:15px; font-weight:600; margin:12px 0 4px; color:rgba(255,255,255,.75); }
.htc-upload-prompt span { font-size:12px; }
.htc-actions { display:flex; gap:12px; justify-content:center; }
.htc-actions .hbtn-main, .htc-actions .hbtn-ghost { flex:1; justify-content:center; }
.hbtn-analyze {
  width:100%;
  margin-top:16px;
  justify-content:center;
  padding:18px;
  font-size:17px;
}
.h-hidden { display:none !important; }

/* Analyzing */
.htc-analyzing { min-height:420px; display:flex; flex-direction:column; justify-content:center; }
.htc-spinner-wrap {
  position:relative;
  width:120px; height:120px;
  margin:0 auto 28px;
}
.htc-spinner {
  width:100%; height:100%;
  border:4px solid rgba(255,255,255,.08);
  border-top-color: rgba(100,200,255,.9);
  border-radius:50%;
  animation:spin-dna 1.2s linear infinite;
}
@keyframes spin-dna { to { transform:rotate(360deg); } }
.htc-glow {
  position:absolute; inset:16px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(100,200,255,.2), transparent 70%);
  animation:glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }
.htc-prog-wrap { margin:20px 0; }
.htc-prog-bar {
  height:8px;
  background:rgba(255,255,255,.08);
  border-radius:8px;
  overflow:hidden;
  margin-bottom:10px;
}
.htc-prog-fill {
  height:100%;
  background:linear-gradient(90deg,#4f8fff,#a855f7);
  border-radius:8px;
  width:0%;
  transition:width .3s ease;
}
.htc-prog-labels {
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:rgba(255,255,255,.55);
}
.htc-log {
  display:flex;
  flex-direction:column;
  gap:8px;
  max-width:380px;
  margin:20px auto 0;
  text-align:left;
}
.htc-log-item {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  background:rgba(0,0,0,.2);
  border-radius:10px;
  font-size:13px;
  color:rgba(255,255,255,.75);
  border:1px solid rgba(100,200,255,.15);
}
.htc-log-item svg { color:rgba(100,220,150,.9); flex-shrink:0; }

/* Results */
.htc-results { text-align:center; }
.htc-success { margin-bottom:24px; }
.htc-check {
  width:100px; height:100px;
  margin:0 auto 20px;
  background:rgba(100,220,100,.12);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(100,240,140,.9);
  animation:scale-in .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes scale-in { from{transform:scale(0)} to{transform:scale(1)} }
.htc-success h3 { font-size:26px; font-weight:700; color:#fff; margin:0 0 8px; }
.htc-success p { font-size:16px; color:rgba(255,255,255,.65); margin:0; }
.htc-previews { display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.htc-preview-item {
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  text-align:left;
  transition:border-color .25s;
}
.htc-preview-item:hover { border-color:rgba(100,200,255,.25); }
.hpi-icon { font-size:28px; flex-shrink:0; }
.hpi-body { flex:1; }
.hpi-body strong { display:block; font-size:14px; font-weight:700; color:#fff; margin-bottom:3px; }
.hpi-body span { font-size:12px; color:rgba(255,255,255,.55); }
.hpi-check { font-size:18px; color:rgba(100,240,140,.9); }
.hpi-new {
  padding:3px 9px;
  background:rgba(255,200,80,.15);
  border:1px solid rgba(255,200,80,.3);
  border-radius:8px;
  font-size:10px;
  font-weight:700;
  color:rgba(255,210,100,.95);
  text-transform:uppercase;
  letter-spacing:.5px;
}
.hpi-lock { font-size:18px; }

/* Unlock */
.htc-unlock {
  padding:28px;
  background:linear-gradient(135deg,rgba(255,200,80,.06),rgba(255,120,50,.04));
  border:2px solid rgba(255,200,80,.25);
  border-radius:16px;
  margin-bottom:16px;
}
.htcu-header { margin-bottom:20px; }
.htcu-lock { font-size:40px; margin-bottom:12px; }
.htcu-header h4 { font-size:22px; font-weight:700; color:#fff; margin:0 0 8px; }
.htcu-header p { font-size:14px; color:rgba(255,255,255,.65); margin:0; line-height:1.5; }
.htcu-list {
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:flex;
  flex-direction:column;
  gap:8px;
  text-align:left;
}
.htcu-list li { font-size:14px; color:rgba(255,255,255,.8); padding:0 8px; }
.hbtn-unlock {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px;
  background:linear-gradient(135deg,rgba(255,200,80,.9),rgba(255,130,60,.9));
  border-radius:12px;
  color:#fff;
  font-size:17px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 8px 28px rgba(255,150,50,.35);
  transition:all .25s;
}
.hbtn-unlock:hover {
  background:linear-gradient(135deg,rgba(255,210,100,1),rgba(255,150,80,1));
  transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(255,150,50,.45);
}
.htcu-guarantee {
  margin:14px 0 0;
  font-size:13px;
  color:rgba(255,255,255,.5);
}
.htc-restart {
  width:100%;
  justify-content:center;
  font-size:14px;
  padding:12px;
}

/* ── SHOWCASE ── */
.h-showcase { padding:96px 0 64px; }
.h-showcase-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:auto auto;
  gap:16px;
  margin-bottom:40px;
}
.h-show-card {
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  cursor:pointer;
  transition:all .3s;
}
.h-show-card:hover {
  border-color:rgba(100,200,255,.35);
  transform:scale(1.02);
  box-shadow:0 16px 40px rgba(0,0,0,.45);
}
.h-show-card img {
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
  transition:transform .4s;
}
.h-show-card:hover img { transform:scale(1.07); }
.h-show-large {
  grid-column:2/4;
  grid-row:1/3;
}
.h-show-large img { aspect-ratio:2/2.4; }
.h-show-overlay {
  position:absolute;
  bottom:0; left:0; right:0;
  padding:16px;
  background:linear-gradient(to top, rgba(0,0,0,.88), transparent);
}
.h-show-era {
  display:inline-block;
  padding:3px 10px;
  background:rgba(255,200,80,.18);
  border:1px solid rgba(255,200,80,.35);
  border-radius:8px;
  font-size:11px;
  font-weight:700;
  color:rgba(255,210,100,.95);
  margin-bottom:6px;
}
.h-show-name { font-size:15px; font-weight:700; color:#fff; }
.h-showcase-cta { text-align:center; }
.h-showcase-cta p { font-size:14px; color:rgba(255,255,255,.5); margin:0 0 20px; }

/* ── VIDEO SECTION ── */
.h-video-section { padding:96px 0; background:rgba(0,0,0,.2); }
.h-video-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.h-section-badge {
  display:inline-block;
  padding:5px 14px;
  background:rgba(100,200,255,.1);
  border:1px solid rgba(100,200,255,.25);
  border-radius:16px;
  font-size:12px;
  font-weight:700;
  color:rgba(120,200,255,.9);
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:16px;
}
.h-video-text h2 {
  font-size:clamp(28px,3.5vw,40px);
  font-weight:800;
  color:#fff;
  margin:0 0 16px;
  letter-spacing:-.03em;
}
.h-video-text p {
  font-size:16px;
  color:rgba(255,255,255,.7);
  line-height:1.7;
  margin:0 0 28px;
}
.h-video-points {
  list-style:none;
  padding:0;
  margin:0 0 32px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.h-video-points li {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  color:rgba(255,255,255,.8);
}
.h-video-points li span { color:rgba(120,180,255,.9); font-size:12px; }
.h-video-player {}
.h-vid-el {
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 60px rgba(0,0,0,.45);
  display:block;
  background:#000;
  aspect-ratio:16/9;
  object-fit:cover;
}
.h-video-thumb-row {
  display:flex;
  gap:10px;
  margin-top:12px;
}
.h-vid-thumb {
  flex:1;
  border-radius:10px;
  overflow:hidden;
  border:2px solid rgba(255,255,255,.1);
  cursor:pointer;
  transition:all .25s;
  position:relative;
}
.h-vid-thumb.active { border-color:rgba(100,200,255,.6); }
.h-vid-thumb:hover { border-color:rgba(100,200,255,.4); }
.h-vid-thumb img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.h-vid-thumb span {
  position:absolute;
  bottom:0; left:0; right:0;
  padding:6px 8px;
  background:rgba(0,0,0,.7);
  font-size:11px;
  font-weight:600;
  color:rgba(255,255,255,.85);
  text-align:center;
}

/* ── FINAL CTA ── */
.h-final-cta { padding:96px 0 112px; }
.h-fcta-card {
  max-width:860px;
  margin:0 auto;
  padding:72px 64px;
  background:linear-gradient(135deg,rgba(80,120,255,.14),rgba(100,60,200,.08));
  border:2px solid rgba(100,150,255,.28);
  border-radius:28px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.h-fcta-card::before {
  content:'';
  position:absolute;
  top:-100px; left:50%;
  transform:translateX(-50%);
  width:600px; height:600px;
  background:radial-gradient(circle,rgba(80,120,255,.15),transparent 70%);
  pointer-events:none;
}
.h-fcta-card h2 {
  font-size:clamp(30px,4vw,48px);
  font-weight:800;
  color:#fff;
  margin:0 0 16px;
  letter-spacing:-.03em;
  position:relative;
}
.h-fcta-card p {
  font-size:18px;
  color:rgba(255,255,255,.7);
  line-height:1.6;
  margin:0 0 40px;
  max-width:680px;
  margin-left:auto; margin-right:auto;
  position:relative;
}
.h-fcta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; position:relative; }
.h-fcta-trust {
  display:flex;
  gap:24px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:13px;
  color:rgba(255,255,255,.5);
  position:relative;
}

/* ── RESPONSIVE ── */
@media (max-width:1100px){
  .h-hero { grid-template-columns:1fr; text-align:center; padding:100px 32px 60px; }
  .h-subtitle { margin-left:auto; margin-right:auto; }
  .h-cta-row { justify-content:center; }
  .h-trust-row { justify-content:center; }
  .h-hero-visual { max-width:600px; margin:0 auto; }
  .h-video-grid { grid-template-columns:1fr; gap:40px; }
  .h-showcase-grid { grid-template-columns:repeat(2,1fr); }
  .h-show-large { grid-column:auto; grid-row:auto; }
  .h-show-large img { aspect-ratio:3/4; }
}
@media (max-width:768px){
  .hn-links { display:none; }
  .hn-links.open {
    display:flex;
    flex-direction:column;
    position:absolute;
    top:72px; left:0; right:0;
    background:rgba(5,8,18,.97);
    backdrop-filter:blur(20px);
    padding:20px 24px;
    gap:4px;
    border-bottom:1px solid rgba(255,255,255,.1);
    z-index:999;
  }
  .hn-btn-ghost { display:none; }
  .hn-burger { display:flex; }
  .h-hero { padding:88px 24px 56px; }
  .h-steps-grid { flex-direction:column; gap:20px; }
  .h-step-arrow { display:none; }
  .h-test-card { padding:36px 24px; }
  .htc-actions { flex-direction:column; }
  .h-fcta-card { padding:48px 24px; }
  .h-fcta-btns { flex-direction:column; align-items:center; }
  .hbtn-main.hbtn-xl { width:100%; justify-content:center; }
}
