/* ============================================================
   BENGKEL DIGITAL — design tokens
   Konsep: cetak biru / lembar spesifikasi teknis (blueprint).
   Cocok untuk toko produk & jasa digital: rapi, presisi, terukur.
   ============================================================ */

:root{
  --ink:        #eaf2ff;
  --paper:      #030916;
  --paper-2:    #07172d;
  --blue:       #1478ff;
  --blue-deep:  #64c7ff;
  --amber:      #e4b64f;
  --line:       #1c3b68;
  --line-soft:  #10284a;
  --muted:      #aebed6;
  --white:      #ffffff;

  --font-display: "Space Grotesk", "Arial Narrow", sans-serif;
  --font-body:    "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", "Courier New", monospace;

  --radius: 4px;
  --maxw: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
section[id]{ scroll-margin-top: 84px; }

body{
  margin:0;
  background: radial-gradient(circle at top, #0a2450 0, var(--paper) 36%, #01040a 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: var(--blue-deep); text-decoration-thickness: 1.5px; }
a:hover{ color: var(--amber); }

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

.mono{
  font-family: var(--font-mono);
  letter-spacing: .02em;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 18px; height: 1px;
  background: var(--blue-deep);
  display:inline-block;
}

/* ---------- background grid texture (blueprint paper) ---------- */
.grid-bg{
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: -1px -1px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(236,234,228,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-weight:700; font-size: 19px;
  color: var(--ink); text-decoration:none;
}
.brand:hover{ color: var(--ink); }
.brand .logo-mark{
  width:26px; height:26px;
  flex:none; display:block;
}

.nav-links{
  display:flex; gap: 30px; list-style:none; margin:0; padding:0;
}
.nav-links a{
  color: var(--ink);
  text-decoration:none;
  font-size: 14.5px;
  font-family: var(--font-mono);
  letter-spacing: .02em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active{
  color: var(--blue-deep);
  border-bottom-color: var(--blue-deep);
}
.nav-cta{
  background: var(--ink); color: var(--white) !important;
  padding: 9px 18px !important;
  border: 1px solid var(--ink) !important;
  font-size: 13.5px !important;
}
.nav-cta:hover{ background: var(--blue-deep); border-color: var(--blue-deep) !important; color:var(--white) !important; }

.nav-toggle{ display:none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing:.02em;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration:none;
  cursor:pointer;
  transition: background .15s ease, color .15s ease;
  text-align: center;
}
.btn:hover{ background: var(--ink); color: var(--white); }
.btn-primary{
  background: var(--ink); color: var(--white);
}
.btn-primary:hover{ background: var(--blue-deep); border-color: var(--blue-deep); color:var(--white); }
.btn-amber{
  border-color: var(--amber); color: var(--ink);
}
.btn-amber:hover{ background: var(--amber); color: var(--ink); }

/* ============================================================
   CROP-MARK / BLUEPRINT FRAME  (signature element)
   Bingkai bergaya lembar spesifikasi teknis dengan sudut siku.
   ============================================================ */
.spec-frame{
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
}
.spec-frame::before, .spec-frame::after,
.spec-frame .c2::before, .spec-frame .c2::after{
  content:"";
  position:absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--blue);
}
.spec-frame::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.spec-frame::after{ top:-1px; right:-1px; border-left:none; border-bottom:none; }
.spec-frame .c2::before{ bottom:-1px; left:-1px; border-right:none; border-top:none; }
.spec-frame .c2::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

.spec-tag{
  position:absolute; top:-10px; left:20px;
  background: radial-gradient(circle at top, #0a2450 0, var(--paper) 36%, #01040a 100%);
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing:.08em;
  color: var(--blue-deep);
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items:center;
}
.hero h1{
  font-size: clamp(34px, 4.4vw, 54px);
  max-width: 12.5ch;
}
.hero .lede{
  font-size: 17.5px;
  color: var(--muted);
  max-width: 46ch;
  margin: 18px 0 30px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 30px; }

.hero-stats{
  display:flex; gap: 28px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.hero-stats div{ font-family:var(--font-mono); }
.hero-stats b{
  display:block; font-family:var(--font-display);
  font-size: 22px; color:var(--ink);
}
.hero-stats span{ font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }

.hero-panel{ position:relative; }
.hero-banner{
  border: 1px solid var(--line);
  margin-bottom: 20px;
  overflow: hidden;
  line-height: 0;
}
.hero-banner img{ width:100%; display:block; }
.hero-panel .spec-frame{ font-family: var(--font-mono); font-size: 13px; }
.hero-panel .spec-row{
  display:flex; justify-content:space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line-soft);
  color: var(--muted);
}
.hero-panel .spec-row:last-child{ border-bottom:none; }
.hero-panel .spec-row b{ color: var(--ink); font-weight:600; }
.hero-panel .spec-title{
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 14px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section{ padding: 70px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom: 36px; gap: 20px; flex-wrap:wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.section-head h2{ font-size: clamp(24px,3vw,32px); margin:0; }
.section-head p{ margin:6px 0 0; color:var(--muted); max-width:50ch; }

/* ---------- product grid ---------- */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

.card{
  border: 1px solid var(--line);
  background: var(--white);
  display:flex; flex-direction:column;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover{ border-color: var(--blue); transform: translateY(-2px); }

.card-media{
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 10px, var(--paper) 10px, var(--paper) 20px);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.card-media .idx{
  font-family: var(--font-mono);
  font-size: 12px; color: var(--muted);
  position:absolute; top:10px; left:12px;
}
.card-media svg{ width: 46%; }

.card-body{ padding: 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.card-kicker{
  font-family: var(--font-mono); font-size:11.5px;
  color: var(--blue-deep); text-transform:uppercase; letter-spacing:.08em;
}
.card-body h3{ font-size:19px; margin:0; }
.card-body p{ color:var(--muted); font-size:14.5px; margin:0; flex:1; }
.card-foot{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 12px; margin-top:4px;
  border-top: 1px dashed var(--line-soft);
}
.price{ font-family:var(--font-mono); font-weight:600; font-size:15px; }
.card-foot a{
  font-family: var(--font-mono); font-size: 13px;
  text-decoration:none; color:var(--ink);
  border-bottom: 1px solid var(--ink);
}
.card-foot a:hover{ color:var(--amber); border-color:var(--amber); }

/* ---------- articles ---------- */
.article-row{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.article-card{
  border-left: 2px solid var(--line);
  padding-left: 18px;
  display:flex; flex-direction:column; gap:10px;
}
.article-card:hover{ border-left-color: var(--blue); }
.article-meta{
  font-family:var(--font-mono); font-size:12px; color:var(--muted);
  display:flex; gap:12px;
}
.article-card h1{ font-size:18px; margin:0; }
.article-card h1 a{ color:var(--ink); text-decoration:none; }
.article-card h1 a:hover{ color: var(--blue-deep); }
.article-card p{ color:var(--muted); font-size:14.5px; margin:0; }
.article-card .readmore{
  font-family:var(--font-mono); font-size:13px;
  color: var(--blue-deep); text-decoration:none;
  margin-top:auto;
}
.article-card .readmore:hover{ color:var(--amber); }

.article-featured{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 30px; align-items:stretch;
  border: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 34px;
}
.article-featured .art-img{
  border-right: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 10px, var(--paper) 10px, var(--paper) 20px);
  min-height: 240px;
  display:flex; align-items:center; justify-content:center;
}
.article-featured .art-body{ padding: 30px 30px 30px 0; display:flex; flex-direction:column; }
.article-featured h1{ font-size: 26px; }

/* ---------- testimonial / trust strip ---------- */
.trust-strip{
  display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
  padding: 26px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  font-family: var(--font-mono); font-size:13px; color:var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--ink); color: var(--white);
  padding: 56px 0;
}
.cta-band .wrap{ display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.cta-band h2{ color:var(--white); margin:0; font-size: clamp(22px,3vw,30px); max-width:20ch; }
.cta-band .btn{ border-color: var(--white); color: var(--white); }
.cta-band .btn:hover{ background: var(--amber); border-color:var(--amber); color:var(--ink); }

/* ============================================================
   FORMS (kontak)
   ============================================================ */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
.field.full{ grid-column: 1/-1; }
label{
  font-family:var(--font-mono); font-size:12.5px;
  text-transform:uppercase; letter-spacing:.06em; color:var(--muted);
}
input, textarea, select{
  font-family: var(--font-body);
  font-size:15px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus{
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}
textarea{ resize:vertical; min-height:120px; }

.contact-info{ display:flex; flex-direction:column; gap:22px; }
.contact-info .item{ display:flex; gap:14px; }
.contact-info .item .lbl{
  font-family:var(--font-mono); font-size:12px; color:var(--blue-deep);
  text-transform:uppercase; letter-spacing:.06em; width:90px; flex:none; padding-top:2px;
}

/* ============================================================
   PAGE HEADER (halaman dalam)
   ============================================================ */
.page-hero{
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow{ margin-bottom: 10px; }
.page-hero h1{ font-size: clamp(30px,4vw,44px); max-width: 18ch; }
.page-hero p{ color:var(--muted); max-width:56ch; font-size:16.5px; }
.breadcrumb{
  font-family:var(--font-mono); font-size:12.5px; color:var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a{ color:var(--muted); }

/* ---------- prose (about/disclaimer/article body) ---------- */
.prose{ max-width: 74ch; }
.prose h2{ font-size: 24px; margin-top: 2.2em; }
.prose h2:first-child{ margin-top:0; }
.prose p{ margin: 0 0 1.2em; color: var(--ink); }
.prose p.lede{ font-size:17.5px; color:var(--muted); }
.prose ul{ padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li{ margin-bottom:.5em; }
.prose blockquote{
  margin: 1.6em 0; padding: 4px 0 4px 20px;
  border-left: 2px solid var(--blue);
  color: var(--muted); font-style:italic;
}

/* ---------- values grid (about page) ---------- */
.values-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; margin: 30px 0 10px; }
.value-item{ padding: 20px 0; border-top: 1px solid var(--line); }
.value-item .num{ font-family:var(--font-mono); color:var(--blue-deep); font-size:13px; }
.value-item h4{ font-size:17px; margin: 8px 0 6px; }
.value-item p{ color:var(--muted); font-size:14px; margin:0; }

/* ---------- team-ish spec table ---------- */
.spec-table{ width:100%; border-collapse:collapse; font-size:14.5px; }
.spec-table tr{ border-bottom: 1px dashed var(--line-soft); }
.spec-table td{ padding: 12px 0; vertical-align:top; }
.spec-table td:first-child{
  font-family:var(--font-mono); color:var(--muted); width: 220px;
  text-transform:uppercase; font-size:12.5px; letter-spacing:.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer{
  border-top: 1px solid var(--line);
  padding: 48px 0 26px;
  background: var(--paper-2);
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px; margin-bottom: 36px;
}
.footer-grid h5{
  font-family: var(--font-mono); font-size:12px;
  text-transform:uppercase; letter-spacing:.08em; color:var(--muted);
  margin: 0 0 14px;
}
.footer-grid ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ color:var(--ink); text-decoration:none; font-size:14px; }
.footer-grid a:hover{ color:var(--blue-deep); }
.footer-about p{ color:var(--muted); font-size:14px; max-width:32ch; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size:12.5px; color:var(--muted);
  flex-wrap:wrap; gap:10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; }
  .grid-3, .article-row, .values-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .article-featured{ grid-template-columns: 1fr; }
  .article-featured .art-body{ padding: 26px; }
  .form-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .nav-links{
    position:fixed; inset: 61px 0 0 0;
    background: radial-gradient(circle at top, #0a2450 0, var(--paper) 36%, #01040a 100%);
    flex-direction:column; padding: 26px 28px; gap:20px;
    transform: translateX(100%);
    transition: transform .2s ease;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-toggle{
    display:flex; align-items:center; justify-content:center;
    width:38px; height:38px; border:1px solid var(--ink); background:none;
    font-family: var(--font-mono);
  }
  .grid-3, .grid-2, .article-row, .values-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .hero-stats{ flex-wrap:wrap; row-gap:16px; }
  .cta-band .wrap{ flex-direction:column; align-items:flex-start; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
}

/* ---------- focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}


/* Penyesuaian khusus GIGA88 Login */
.site-header{
  background: rgba(3,9,22,.94);
  backdrop-filter: blur(12px);
}
.brand{
  color: #fff;
}
.logo-mark{
  width: 58px;
  height: 36px;
  object-fit: contain;
}
.hero-banner img,
.art-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-banner{
  background:#020713;
}
.grid-bg{
  background-color:#061329;
  background-image:
    linear-gradient(rgba(100,199,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,199,255,.055) 1px, transparent 1px);
}
.card,.spec-frame,.article-card,.article-featured,.value-item{
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.login-symbol{
  font-family:var(--font-mono);
  font-size:clamp(30px,5vw,58px);
  color:var(--blue-deep);
  letter-spacing:.08em;
}
.login-check{
  margin-top:48px;
}
.faq-list{
  display:grid;
  gap:14px;
}
.faq-list details{
  border:1px solid var(--line);
  background:var(--paper-2);
  padding:0 20px;
}
.faq-list summary{
  cursor:pointer;
  font-family:var(--font-display);
  font-weight:700;
  padding:18px 0;
}
.faq-list details p{
  color:var(--muted);
  margin:0;
  padding:0 0 18px;
}
footer{
  background:#020713;
}
input,select,textarea{
  color:var(--ink);
  background:#07172d;
}
blockquote{
  border-left-color:var(--amber);
  background:rgba(228,182,79,.08);
}

/* Fix contrast */
.spec-frame,.article-card,.article-featured,.card,.value-item{
 background:#0b1830 !important;
 color:#eef5ff !important;
}
.spec-frame .spec-title,
.spec-frame .spec-row,
.spec-frame .spec-row span,
.spec-frame .spec-row b{
 color:#eef5ff !important;
}
.spec-frame .spec-row{
 border-bottom:1px dashed rgba(255,255,255,.25)!important;
}
.card-body h3,.article-card h2,.article-featured h2,.value-item h3,
.prose h2,.prose h3{
 color:#f7fbff!important;
}
.card-body p,.article-card p,.article-featured p,.value-item p,
.prose p,.spec-table td{
 color:#d7e6ff!important;
}
.btn{
 color:#fff!important;
}
.btn-primary{
 background:#1d6fff!important;
 border-color:#1d6fff!important;
}
.btn:not(.btn-primary){
 color:#fff!important;
 border-color:#9fb8df!important;
}
.spec-table td:last-child{
 color:#fff!important;
 font-weight:600;
}


/* FIX KONTRAS NAVIGASI & TOMBOL */
.nav-links a,
.nav-links a:visited {
  color: #dbe8ff !important;
  background: transparent !important;
  border-color: transparent !important;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: #65d8ff !important;
  background: transparent !important;
  border-bottom-color: #65d8ff !important;
}

.nav-links .nav-cta,
.nav-links .nav-cta:visited {
  color: #061a3a !important;
  background: #eaf2ff !important;
  border: 1px solid #c8dbff !important;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
  color: #ffffff !important;
  background: #1478ff !important;
  border-color: #65d8ff !important;
}

.btn,
.btn:visited {
  color: #ffffff !important;
  background: linear-gradient(90deg, #0b4fb3, #1478ff) !important;
  border: 1px solid #65d8ff !important;
}

.btn:hover,
.btn:focus {
  color: #ffffff !important;
  background: linear-gradient(90deg, #1478ff, #2d8cff) !important;
}

.btn.btn-primary,
.btn.btn-primary:visited {
  color: #061a3a !important;
  background: #eaf2ff !important;
  border-color: #c8dbff !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  color: #ffffff !important;
  background: #1478ff !important;
  border-color: #65d8ff !important;
}

/* Pastikan tombol sekunder tetap terbaca */
.hero-actions .btn:not(.btn-primary),
.hero-actions .btn:not(.btn-primary):visited {
  color: #ffffff !important;
  background: #0b4fb3 !important;
  border-color: #65d8ff !important;
}

/* Perbaikan menu mobile */
@media (max-width: 900px) {
  .nav-links {
    background: #061329 !important;
    border: 1px solid #1c3b68 !important;
  }

  .nav-links a,
  .nav-links a:visited {
    color: #dbe8ff !important;
  }

  .nav-links .nav-cta,
  .nav-links .nav-cta:visited {
    color: #061a3a !important;
    background: #eaf2ff !important;
  }
}


/* =========================================================
   MOBILE LAYOUT FIX — GIGA88 LOGIN
   ========================================================= */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  body {
    min-width: 0 !important;
  }

  .wrap {
    width: min(100% - 32px, var(--maxw)) !important;
    margin-inline: auto !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav {
    min-height: 66px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px !important;
    line-height: 1;
    white-space: nowrap;
  }

  .logo-mark {
    width: 36px !important;
    height: 24px !important;
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 42px;
    padding: 0 14px;
    color: #ffffff !important;
    background: #0b4fb3 !important;
    border: 1px solid #65d8ff !important;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .04em;
    position: static !important;
    margin-left: auto;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 66px;
    left: 16px;
    right: 16px;
    width: auto !important;
    margin: 0 !important;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    background: #061329 !important;
    border: 1px solid #1c3b68 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    padding: 10px 12px !important;
    color: #dbe8ff !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(101,216,255,.12) !important;
  }

  .nav-links .nav-cta {
    color: #061a3a !important;
    background: #eaf2ff !important;
    border-bottom: 0 !important;
  }

  .hero {
    padding: 42px 0 34px !important;
  }

  .hero-grid,
  .grid-3,
  .article-row,
  .article-featured,
  .values-grid,
  .footer-grid,
  .login-check {
    grid-template-columns: 1fr !important;
  }

  .hero-grid {
    gap: 28px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px) !important;
    line-height: 1.06 !important;
    letter-spacing: -1px !important;
    max-width: 100%;
  }

  .lede,
  .lead {
    font-size: 18px !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-actions .btn,
  .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px;
    padding-inline: 18px !important;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .hero-stats > div {
    padding: 16px 10px 16px 0 !important;
    min-width: 0;
  }

  .hero-stats b {
    font-size: 28px !important;
  }

  .hero-stats span {
    font-size: 12px !important;
    line-height: 1.5 !important;
    word-break: break-word;
  }

  .hero-panel {
    width: 100%;
    min-width: 0;
  }

  .hero-banner,
  .spec-frame,
  .article-featured,
  .card,
  .article-card,
  .value-item {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero-banner img,
  .art-img img {
    display: block;
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  section {
    padding: 42px 0 !important;
  }

  .section-head {
    margin-bottom: 24px !important;
  }

  .section-head h2,
  .article-featured h2,
  .article-card h2,
  .prose h2 {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.15 !important;
  }

  .grid-3,
  .article-row,
  .values-grid {
    gap: 18px !important;
  }

  .article-featured {
    display: grid !important;
  }

  .article-featured .art-img {
    min-height: 0 !important;
  }

  .article-featured .art-body,
  .article-card,
  .card-body,
  .value-item,
  .spec-frame {
    padding: 22px !important;
  }

  .spec-row {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 14px 0 !important;
  }

  .spec-row b {
    text-align: left !important;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 14px 0;
    border-bottom: 1px dashed #1c3b68;
  }

  .spec-table td {
    padding: 2px 0 !important;
    border: 0 !important;
  }

  .spec-table td:last-child {
    margin-top: 4px;
    font-weight: 700;
  }

  .trust-strip {
    display: grid !important;
    gap: 10px !important;
    padding: 18px !important;
  }

  .trust-strip span {
    white-space: normal !important;
    line-height: 1.5;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, var(--maxw)) !important;
  }

  .brand {
    font-size: 16px !important;
  }

  .logo-mark {
    width: 32px !important;
    height: 22px !important;
  }

  .nav-toggle {
    min-width: 64px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    padding-top: 34px !important;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 48px) !important;
  }

  .lede,
  .lead {
    font-size: 17px !important;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
  }

  .hero-stats > div {
    border-right: 0 !important;
    border-bottom: 1px dashed #1c3b68;
    padding: 14px 0 !important;
  }

  .hero-actions .btn,
  .btn {
    min-height: 52px;
    font-size: 15px;
  }

  .eyebrow {
    font-size: 12px !important;
    line-height: 1.5;
  }

  .article-featured .art-body,
  .article-card,
  .card-body,
  .value-item,
  .spec-frame {
    padding: 18px !important;
  }
}


/* ===== REMOVE MOBILE MENU ===== */
@media (max-width:900px){

  .nav-toggle{
    display:none !important;
  }

  .nav-links{
    display:none !important;
  }

  .site-header{
    position:sticky;
    top:0;
    z-index:999;
  }

  .nav{
    justify-content:flex-start !important;
    min-height:72px;
  }

  .brand{
    margin-right:0 !important;
  }
}


/* Center button text fix */
.btn,
.btn:link,
.btn:visited,
.hero-actions .btn,
a.btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    white-space:nowrap;
    padding-left:20px !important;
    padding-right:20px !important;
}

.btn span{
    width:100%;
    text-align:center;
}


/* ===== HERO STATS MOBILE FIX ===== */
.hero-stats{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

.hero-stats > div{
    min-width:0;
    padding:18px 16px;
}

.hero-stats > div span{
    display:block;
    margin-top:10px;
    line-height:1.8;
    white-space:normal;
    word-break:break-word;
}

@media (max-width:768px){

.hero-stats{
    grid-template-columns:repeat(2,1fr) !important;
    gap:18px !important;
}

.hero-stats > div{
    padding:18px 12px !important;
}

.hero-stats > div span{
    display:block !important;
    font-size:13px !important;
    line-height:1.7 !important;
    white-space:normal !important;
    word-break:break-word !important;
    letter-spacing:.05em;
}

.hero-stats b{
    display:block;
    margin-bottom:10px;
}

}

@media (max-width:480px){

.hero-stats{
    grid-template-columns:1fr !important;
    gap:12px !important;
}

.hero-stats > div{
    border-bottom:1px dashed #1c3b68;
}

}
