/* ==========================================================================
   Galaxy Zero — dark & premium (black / gold)
   ========================================================================== */

:root {
  --black:      #05060a;
  --ink:        #0a0c12;
  --ink-2:      #10131c;
  --line:       rgba(212, 175, 55, .18);
  --line-soft:  rgba(255, 255, 255, .07);

  --gold:       #d4af37;
  --gold-light: #f7e7a1;
  --gold-deep:  #8c6b1f;
  --grad-gold:  linear-gradient(135deg, #f7e7a1 0%, #d4af37 45%, #a9812a 100%);

  --text:       #eceef4;
  --muted:      #9aa0b0;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --r: 16px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #000; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Starfield ─────────────────────────────────────────────────────────── */
.starfield {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,255,255,.55) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 78% 12%, rgba(255,255,255,.4) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 42% 62%, rgba(212,175,55,.5) 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 88% 74%, rgba(255,255,255,.35) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 26% 86%, rgba(212,175,55,.35) 50%, transparent 51%),
    radial-gradient(1200px 700px at 70% -10%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(120,90,255,.06), transparent 60%);
  opacity: .9;
  animation: twinkle 9s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .6; } to { opacity: 1; } }

/* ── Ticker ────────────────────────────────────────────────────────────── */
.ticker {
  position: relative; z-index: 5;
  background: var(--grad-gold);
  color: #14100a;
  overflow: hidden;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
}
.ticker__track {
  display: flex; gap: 1.5rem; align-items: center; white-space: nowrap;
  padding: .55rem 0; width: max-content; min-width: 200%;
  will-change: transform;
  animation: slide 32s linear infinite;
}
.ticker__track > * { flex: none; }
.ticker__track i { font-style: normal; opacity: .55; }
@keyframes slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ── Header ────────────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 10, .55);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.header.is-stuck {
  background: rgba(5, 6, 10, .92);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  letter-spacing: .02em;
}
.brand__text em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: .2em;
}

.nav { margin-left: auto; display: flex; gap: 1.9rem; }
.nav a {
  font-size: .86rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: .25rem 0;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--grad-gold); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header__cta { margin-left: .5rem; }
.nav .nav__cta { display: none; }

.burger {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 44px; height: 40px; padding: 0; cursor: pointer;
}
.burger span {
  display: block; width: 18px; height: 1.5px; margin: 4px auto;
  background: var(--gold); transition: transform .3s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 100px; border: 1px solid transparent;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease),
    background .3s var(--ease), color .3s var(--ease);
}
.btn--gold {
  background: var(--grad-gold); color: #120e05;
  box-shadow: 0 8px 30px rgba(212, 175, 55, .22);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212, 175, 55, .38); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: min(92vh, 900px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
  transform: scale(1.06);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { to { transform: scale(1.16) translateY(-1.5%); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,6,10,.72) 0%, rgba(5,6,10,.55) 40%, var(--black) 100%),
    radial-gradient(800px 500px at 20% 45%, rgba(212,175,55,.10), transparent 65%);
}
.hero__inner { position: relative; padding: 6rem 0 5rem; max-width: 780px; }

.eyebrow {
  margin: 0 0 1rem; font-size: .74rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 1.02; margin: 0 0 1.4rem; font-weight: 600; letter-spacing: -.01em;
}
.gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { color: var(--muted); font-size: 1.08rem; max-width: 58ch; margin: 0 0 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3.2rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 2.75rem; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--serif); font-size: 2.2rem; line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stats span {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  margin-top: .4rem;
}

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px;
}
.hero__scroll span {
  display: block; width: 3px; height: 7px; border-radius: 3px; background: var(--gold);
  margin: 6px auto; animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(11px); opacity: 0; } }

/* ── Trust strip ───────────────────────────────────────────────────────── */
.trust {
  position: relative; z-index: 1;
  border-block: 1px solid var(--line-soft);
  background: rgba(255,255,255,.015);
}
.trust__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem;
  padding: 1.35rem 0;
  font-size: .72rem; letter-spacing: .26em; color: var(--muted);
}
.trust__row i { color: var(--gold); font-style: normal; }

/* ── Sections ──────────────────────────────────────────────────────────── */
.section { position: relative; z-index: 1; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--alt { background: linear-gradient(180deg, var(--ink) 0%, var(--black) 100%); }

.head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.h2 {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.12; margin: 0 0 1rem;
}
.sub { color: var(--muted); margin: 0; font-size: 1.02rem; }

.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
  position: relative;
  padding: 2rem 1.85rem;
  border: 1px solid var(--line-soft); border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(212,175,55,.13), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.card:hover::before { opacity: 1; }
.card__icon { font-size: 1.4rem; color: var(--gold); margin-bottom: .9rem; }
.card h3 { font-family: var(--serif); font-size: 1.45rem; margin: 0 0 .55rem; font-weight: 600; }
.card p { color: var(--muted); margin: 0; font-size: .95rem; position: relative; }

/* ── Filters ───────────────────────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.chip {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line-soft); border-radius: 100px;
  padding: .55rem 1.25rem; cursor: pointer;
  font-family: var(--sans); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  transition: all .3s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--line); }
.chip.is-active { background: var(--grad-gold); color: #120e05; border-color: transparent; font-weight: 600; }

/* ── Products ──────────────────────────────────────────────────────────── */
.product {
  border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.product:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 28px 70px rgba(0,0,0,.6); }
.product.is-hidden { display: none; }

.product__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.product__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,10,0) 35%, rgba(5,6,10,.85) 100%);
}
.product__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
  filter: saturate(.9) contrast(1.05);
}
.product:hover .product__media img { transform: scale(1.08); filter: saturate(1.05) contrast(1.08); }

.product__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--line);
  padding: .25rem .7rem; border-radius: 100px; margin-bottom: .85rem;
}
.product h3 { font-family: var(--serif); font-size: 1.65rem; margin: 0 0 .5rem; font-weight: 600; }
.product p { color: var(--muted); font-size: .93rem; margin: 0 0 1.25rem; flex: 1; }

.link {
  color: var(--gold); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: .45rem;
}
.link i { font-style: normal; transition: transform .3s var(--ease); }
.link:hover i { transform: translateX(5px); }

/* ── ROI ───────────────────────────────────────────────────────────────── */
.roi__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}
.roi .sub { margin-bottom: 1.75rem; }
.ticks { margin-bottom: 2rem; display: grid; gap: .8rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--muted); }
.ticks li::before {
  content: "✦"; position: absolute; left: 0; top: 0; color: var(--gold);
}
.counters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.counter {
  border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: 1.9rem 1.4rem; text-align: center;
  background: linear-gradient(160deg, rgba(212,175,55,.07), rgba(255,255,255,.01));
}
.counter strong {
  display: block; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .5rem;
}
.counter span { font-size: .78rem; color: var(--muted); }

/* ── Steps ─────────────────────────────────────────────────────────────── */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: s; }
.steps li {
  border-top: 1px solid var(--line); padding-top: 1.5rem;
}
.steps span {
  font-family: var(--serif); font-size: 2.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--gold); display: block; margin-bottom: .8rem;
}
.steps h3 { font-family: var(--serif); font-size: 1.35rem; margin: 0 0 .45rem; font-weight: 600; }
.steps p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ── Quotes ────────────────────────────────────────────────────────────── */
.quote {
  margin: 0; padding: 2.1rem 1.9rem;
  border: 1px solid var(--line-soft); border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.quote:hover { transform: translateY(-5px); border-color: var(--line); }
.quote p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; margin: 0 0 1.4rem; }
.quote footer { display: flex; flex-direction: column; }
.quote strong { font-size: .9rem; }
.quote span { color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

/* ── Warranty ──────────────────────────────────────────────────────────── */
.warranty > div:first-child { max-width: 720px; margin: 0 auto 3rem; text-align: center; }

/* ── Contact ───────────────────────────────────────────────────────────── */
.contact { background: linear-gradient(180deg, var(--black) 0%, var(--ink-2) 100%); }
.contact__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.contact .sub { margin-inline: auto; max-width: 56ch; }

.wa-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 1.1rem;
  margin: 2.75rem auto 0; padding: 1.15rem 2.2rem 1.15rem 1.35rem;
  border-radius: 100px; color: #fff;
  background: linear-gradient(135deg, #2fdc72 0%, #1eb95b 45%, #0f8a45 100%);
  box-shadow: 0 16px 45px rgba(37, 211, 102, .32);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-cta::after {
  content: ""; position: absolute; inset: 0; border-radius: 100px;
  border: 2px solid rgba(47, 220, 114, .5);
  animation: pulse 2.6s ease-out infinite;
}
.wa-cta:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(37, 211, 102, .45); }

.wa-cta__icon {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255, 255, 255, .18);
}
.wa-cta__icon svg { width: 28px; height: 28px; }

.wa-cta__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.wa-cta__text strong { font-size: 1.05rem; letter-spacing: .01em; }
.wa-cta__text small { font-size: .78rem; opacity: .85; }

.info { display: grid; gap: 1.1rem; }
.info--row {
  margin-top: 3rem; padding-top: 2.25rem; border-top: 1px solid var(--line-soft);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem;
}
.info li { display: flex; flex-direction: column; gap: .15rem; }
.info__k { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.info a:hover { color: var(--gold-light); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line-soft); background: var(--ink);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  padding-bottom: 3rem;
}
.footer__blurb { color: var(--muted); font-size: .92rem; margin: 1rem 0 0; max-width: 34ch; }
.footer h4 {
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin: .5rem 0 1rem;
}
.footer ul { display: grid; gap: .6rem; color: var(--muted); font-size: .92rem; }
.footer ul a:hover { color: var(--gold-light); }
.footer__bar {
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between;
  padding: 1.4rem 0; font-size: .78rem; color: var(--muted);
}
.footer__bar p { margin: 0; }

/* ── Floating action buttons ───────────────────────────────────────────── */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end; gap: .7rem;
}
.fab__btn {
  position: relative;
  width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); cursor: pointer; padding: 0;
  background: rgba(5, 6, 10, .85); color: var(--gold);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
  transition: transform .3s var(--ease), background .3s var(--ease),
    color .3s var(--ease), box-shadow .3s var(--ease);
}
.fab__btn svg { width: 26px; height: 26px; }
.fab__btn:hover { transform: translateY(-3px) scale(1.05); }

.fab__btn--wa {
  background: linear-gradient(145deg, #29d366, #128c4a);
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
}
.fab__btn--wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.fab__btn--call {
  background: var(--grad-gold); color: #120e05; border-color: transparent;
  box-shadow: 0 10px 30px rgba(212, 175, 55, .3);
}

.fab__btn--top {
  width: 44px; height: 44px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.fab__btn--top svg { width: 20px; height: 20px; }
.fab__btn--top.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab__btn--top:hover { background: var(--gold); color: #120e05; }

.fab__label {
  position: absolute; right: calc(100% + .6rem); top: 50%; transform: translateY(-50%);
  white-space: nowrap; pointer-events: none;
  background: rgba(5, 6, 10, .92); color: var(--text);
  border: 1px solid var(--line); border-radius: 100px;
  padding: .3rem .8rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transition: opacity .25s var(--ease);
}
.fab__btn:hover .fab__label { opacity: 1; }

/* ── Product detail pages ──────────────────────────────────────────────── */
.phero { position: relative; z-index: 1; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem); }
.phero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}
.crumbs {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}
.crumbs a:hover { color: var(--gold-light); }
.crumbs span { color: var(--line); }
.crumbs em { font-style: normal; color: var(--gold); }

.phero__title {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(2.8rem, 7vw, 4.6rem); line-height: 1.02; margin: .85rem 0 .5rem;
}
.phero__tagline { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 0 0 1.1rem; }
.phero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.phero__media {
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
}
.phero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.pmain {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start;
}
.pmain__body p { color: var(--muted); margin: 0 0 1.1rem; }

.pspecs { display: grid; gap: 1rem; }
.pspecs li {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line-soft); border-radius: var(--r);
  background: linear-gradient(160deg, rgba(212,175,55,.06), rgba(255,255,255,.012));
}
.pspecs strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.pspecs span { color: var(--muted); font-size: .92rem; }

.pgallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.pgallery__item {
  margin: 0; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line-soft); aspect-ratio: 1 / 1;
}
.pgallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.pgallery__item:hover img { transform: scale(1.07); }

.rel { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.rel__card {
  border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.rel__card:hover { transform: translateY(-6px); border-color: var(--line); }
.rel__card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.rel__card span { display: flex; flex-direction: column; gap: .2rem; padding: 1.1rem 1.25rem 1.35rem; }
.rel__card strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.rel__card small { color: var(--gold); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }

/* ── Reveal ────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .ticker { display: none; }
  .burger { display: block; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: 76px 0 auto; margin: 0;
    flex-direction: column; gap: 0;
    background: rgba(5,6,10,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.75rem;
    max-height: calc(100dvh - 76px); overflow-y: auto;
    transform: translateY(-120%); transition: transform .45s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav a {
    padding: 1rem 0; border-bottom: 1px solid var(--line-soft);
    font-size: 1rem; font-weight: 500; letter-spacing: .1em;
    color: var(--text); text-align: center; width: 100%;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a:active { color: var(--gold-light); }
  .nav a::after { left: 50%; transform: translateX(-50%); }
  .nav .nav__cta { display: inline-flex; margin-top: 1.25rem; width: 100%; border-bottom: 0; color: #120e05; }
  .nav__cta::after { display: none; }
  .nav__cta:hover { color: #120e05; }

  .hero { min-height: auto; }
  .hero__inner { padding: 4.5rem 0 4rem; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { gap: 1.75rem; justify-content: center; text-align: center; }
  .hero__scroll { display: none; }

  .counters { grid-template-columns: 1fr 1fr; }
  .steps { gap: 2rem; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .header__inner { height: 66px; }
  .nav { inset: 66px 0 auto; max-height: calc(100dvh - 66px); }
  .brand__text { font-size: 1.3rem; }
  .brand__mark { width: 30px; height: 30px; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__grid .brand { justify-content: center; }
  .footer__blurb { margin-inline: auto; }
  .footer__bar { justify-content: center; text-align: center; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { gap: 1.25rem 2rem; }
  .hero__stats li { flex: 1 1 40%; align-items: center; }

  .counters { grid-template-columns: 1fr; }
  .grid { gap: 1.15rem; }
  .card { padding: 1.6rem 1.35rem; }
  .product__body { padding: 1.35rem 1.35rem 1.5rem; }
  .quote { padding: 1.7rem 1.4rem; }
  .filters { gap: .45rem; }
  .chip { padding: .5rem 1rem; font-size: .7rem; }
  .trust__row { gap: .75rem; letter-spacing: .16em; font-size: .66rem; }
  .fab { right: 14px; bottom: 14px; gap: .55rem; }
  .fab__btn { width: 48px; height: 48px; }
  .fab__btn svg { width: 23px; height: 23px; }
  .fab__btn--top { width: 40px; height: 40px; }
  .fab__label { display: none; }

  .wa-cta {
    display: flex; width: 100%; justify-content: center;
    padding: 1rem 1.25rem; gap: .85rem;
  }
  .wa-cta__icon { width: 42px; height: 42px; }
  .wa-cta__icon svg { width: 24px; height: 24px; }
  .wa-cta__text strong { font-size: .95rem; }
  .info--row { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
