:root{
  --bg:#07090d;
  --bg-soft:#0d1117;
  --panel:#11161d;
  --panel-2:#151b24;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(212,175,55,.22);
  --text:#eef2f7;
  --muted:#9aa4b2;
  --gold:#d4af37;
  --gold-2:#f2d675;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
  --radius-sm:12px;
  --container:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(212,175,55,.05), transparent 24%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

.logo-img{
  width:44px;
  height:44px;
  object-fit:contain;
  margin-right:10px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

/* TOPBAR / NAV */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(7,9,13,.78);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.logo{
  width:46px;
  height:46px;
  border-radius:14px;
  background:
    linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.04)),
    url("../images/logo.svg") center/70% no-repeat,
    var(--panel);
  border:1px solid var(--line-strong);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  flex:0 0 auto;
}

.brand h1{
  margin:0;
  font-size:16px;
  line-height:1.2;
  letter-spacing:.2px;
  font-weight:700;
}

.brand p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:12px;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.navlinks a{
  color:var(--muted);
  font-size:14px;
  padding:10px 12px;
  border-radius:10px;
  transition:.25s ease;
}

.navlinks a:hover,
.navlinks a.active,
.navlinks a[data-page].is-active{
  color:var(--text);
  background:rgba(255,255,255,.04);
}

#navToggle{
  display:none;
}

/* GLOBAL SECTIONS */
.section{
  padding:72px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.section-head h2{
  margin:0;
  font-size:34px;
  line-height:1.15;
  letter-spacing:-.02em;
}

.section-head p{
  margin:8px 0 0;
  color:var(--muted);
  max-width:760px;
}

.hero{
  padding:36px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.22fr .88fr;
  gap:18px;
}

.h1{
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.04;
  letter-spacing:-.03em;
  margin:0 0 12px;
  max-width:14ch;
}

.sub{
  color:var(--muted);
  font-size:16px;
  margin:0 0 12px;
  max-width:72ch;
}

/* CARDS */
.card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    linear-gradient(180deg, rgba(212,175,55,.03), transparent 40%),
    var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.025), transparent 24%);
  pointer-events:none;
}

.card:hover{
  border-color:rgba(212,175,55,.18);
  transform:translateY(-2px);
  transition:.3s ease;
}

.pad{
  padding:24px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold-2);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:700;
  margin-bottom:10px;
}

.mini{
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:44px;
  padding:0 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--text);
  transition:.25s ease;
  cursor:pointer;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(212,175,55,.2);
  background:rgba(255,255,255,.04);
}

.btn.primary{
  background:linear-gradient(180deg, #e0bd4d, #c69c2d);
  color:#111;
  border-color:rgba(255,255,255,.08);
  font-weight:700;
}

.btn.primary:hover{
  filter:brightness(1.03);
}

.btn.ghost{
  background:transparent;
}

.btn.small{
  min-height:38px;
  padding:0 13px;
  font-size:13px;
  border-radius:10px;
}

/* LAYOUT HELPERS */
.row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}

.spacer{
  height:18px;
}

/* PILLS */
.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.16);
  background:rgba(212,175,55,.06);
  color:#f2e3a8;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
}

/* STATS */
.stat{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px 16px;
  min-height:96px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.stat b{
  display:block;
  font-size:clamp(18px, 1.8vw, 24px);
  line-height:1.15;
  margin-bottom:6px;
  color:var(--text);
  letter-spacing:-.02em;
  overflow-wrap:anywhere;
}

.stat .legal-label{
  display:block;
}

.stat .legal-value{
  display:block;
  margin-top:4px;
  font-size:clamp(16px, 1.5vw, 20px);
  line-height:1.2;
  color:#f5f7fb;
}

.stat span{
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

/* HERO THUMB */
.thumb{
  position:relative;
  min-height:320px;
  border-radius:18px;
  border:1px solid rgba(212,175,55,.16);
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)),
    radial-gradient(circle at top right, rgba(212,175,55,.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(212,175,55,.08), transparent 24%),
    url("../images/hero-export.jpg") center/cover no-repeat,
    var(--panel-2);
}

.badge{
  position:absolute;
  top:16px;
  left:16px;
  min-height:34px;
  display:inline-flex;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:rgba(7,9,13,.65);
  border:1px solid rgba(212,175,55,.22);
  color:var(--gold-2);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.cap{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  padding:16px;
  border-radius:16px;
  background:rgba(7,9,13,.7);
  border:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
}

/* TABLE */
.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:14px;
}

.table tr{
  border-bottom:1px solid var(--line);
}

.table tr:last-child{
  border-bottom:none;
}

.table th,
.table td{
  padding:12px 10px;
  text-align:left;
  vertical-align:top;
}

.table th{
  width:38%;
  color:#d9dde5;
  font-weight:600;
}

.table td{
  color:var(--muted);
}

/* INPUTS */
input,
textarea,
select{
  width:100%;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.1);
  color:var(--text);
  outline:none;
  padding:12px 14px;
  border-radius:12px;
  transition:.25s ease;
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(212,175,55,.34);
  box-shadow:0 0 0 4px rgba(212,175,55,.08);
}

input::placeholder,
textarea::placeholder{
  color:rgba(255,255,255,.35);
}

textarea{
  resize:vertical;
  min-height:140px;
}

/* CATEGORY IMAGES */
.cat-img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:14px;
  border:1px solid rgba(255,255,255,.05);
  transition:transform .35s ease, filter .35s ease;
}

.card:hover .cat-img{
  transform:scale(1.02);
  filter:brightness(1.04);
}

/* FOOTER */
.footer{
  padding:0 0 34px;
}

.footgrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  align-items:start;
}

.footer small{
  display:block;
  margin-top:14px;
  color:var(--muted);
}

/* FLOATING WA */
.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:flex;
  align-items:flex-end;
  gap:10px;
}

.floating-wa .hint{
  max-width:220px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(7,9,13,.82);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:12px;
  box-shadow:var(--shadow);
}

.floating-wa a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, #e0bd4d, #c69c2d);
  color:#111;
  box-shadow:0 16px 32px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
}

.floating-wa svg{
  width:26px;
  height:26px;
  fill:currentColor;
}

/* REVEAL */
.reveal{
  opacity:1;
  transform:none;
}

.js .reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}

.js .reveal.is-visible{
  opacity:1;
  transform:none;
}

/* SIMPLE HELPERS */
hr{
  border:none;
  border-top:1px solid var(--line);
  margin:22px 0;
}

ul{
  margin:0;
}

label{
  color:#d8dde6;
  font-size:14px;
  font-weight:500;
}

b,strong{
  font-weight:700;
}

/* PRODUCTS GRID CUSTOM */
#productsGrid .card,
#relatedProducts .card{
  height:100%;
}

#productsGrid .row,
#relatedProducts .row{
  margin-top:auto;
}

/* RESPONSIVE */
@media (max-width: 1180px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .footgrid{
    grid-template-columns:1fr;
  }

  .h1{
    max-width:none;
  }
}

@media (max-width: 980px){
  .nav{
    min-height:72px;
  }

  #navToggle{
    display:inline-flex;
  }

  .navlinks{
    position:absolute;
    top:78px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(13,17,23,.98);
    border:1px solid var(--line);
    border-radius:18px;
    padding:12px;
    box-shadow:var(--shadow);
  }

  .navlinks.open{
    display:flex;
  }

  .navlinks a{
    width:100%;
  }

  .grid-4{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .grid-3{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--container), calc(100% - 22px));
  }

  .section{
    padding:56px 0;
  }

  .pad{
    padding:18px;
  }

  .grid-2,
  .grid-3,
  .grid-4{
    grid-template-columns:1fr;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .section-head h2{
    font-size:28px;
  }

  .h1{
    font-size:34px;
  }

  .thumb{
    min-height:250px;
  }

  .cat-img{
    height:170px;
  }

  .floating-wa .hint{
    display:none;
  }

  .row{
    width:100%;
  }

  .row .btn{
    width:100%;
  }
}

.seo-hero{padding:34px 0 18px;}
.seo-breadcrumbs{display:flex;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:13px;margin-bottom:16px;}
.seo-breadcrumbs a{color:inherit;text-decoration:none;}
.seo-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:20px;align-items:start;}
.seo-section{padding:18px 0;}
.seo-check{display:grid;gap:10px;margin:14px 0 0;}
.seo-check .card{min-height:100%;}
.seo-sticky{position:sticky;top:88px;}
.seo-list{margin:0;padding-left:18px;color:var(--muted);line-height:1.8;}
.seo-list li{margin-bottom:4px;}
.cta-stack{display:grid;gap:10px;}
@media(max-width:960px){.seo-grid{grid-template-columns:1fr;}.seo-sticky{position:static;}}


/* FINAL SEO HUBS */
.link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.link-grid .card a{color:var(--gold-2)}
.seo-list{display:grid;gap:12px;margin:18px 0 0;padding:0;list-style:none}
.seo-list li{padding:14px 16px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.02)}
.faq-grid{display:grid;gap:16px}
.faq-grid .card p{margin-bottom:0}
@media (max-width:980px){.link-grid{grid-template-columns:1fr 1fr}}
@media (max-width:680px){.link-grid{grid-template-columns:1fr}}


.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.trust-strip span{
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:12px;
}

.section-accent{
  background:linear-gradient(180deg, rgba(212,175,55,.04), transparent 65%);
}

.buyer-grid .card b{
  display:block;
  font-size:18px;
  margin-bottom:8px;
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-color:rgba(212,175,55,.22);
}

.cta-band .row{
  flex-wrap:wrap;
  justify-content:flex-end;
}

input, textarea, select{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--text);
}

input::placeholder,
textarea::placeholder{
  color:#96a0ae;
}

input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:rgba(212,175,55,.45);
  box-shadow:0 0 0 3px rgba(212,175,55,.12);
}

@media (max-width: 820px){
  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }
}


.form-label{
  display:block;
  margin-bottom:8px;
  color:var(--text);
  font-size:14px;
  font-weight:600;
}

.form-label span{
  color:var(--gold-2);
}

.form-control{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  transition:.2s ease;
}

.form-control::placeholder{
  color:#7f8a99;
}

.form-control:focus{
  border-color:rgba(212,175,55,.45);
  box-shadow:0 0 0 4px rgba(212,175,55,.08);
}

.form-textarea{
  min-height:150px;
  resize:vertical;
}

.alert-box{
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:16px;
  border:1px solid transparent;
  line-height:1.55;
}

.alert-success{
  background:#e8fff1;
  color:#0f5132;
  border-color:#b7ebc6;
}

.alert-error{
  background:#fff1f0;
  color:#842029;
  border-color:#f5c2c7;
}

.form-note{
  margin:14px 0 0;
  color:var(--muted);
  font-size:14px;
}

.hidden-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

button[disabled]{
  opacity:.75;
  cursor:not-allowed;
}
