/* CTS Tools — Pacini Car Lifts
   Palette: graphite black, Pacini red, bone white */

:root {
  --bg: #0b0b0d;
  --bg-raise: #121215;
  --panel: #17171b;
  --line: #26262c;
  --red: #d2202f;
  --red-deep: #8e1b26;
  --text: #f4f2ef;
  --muted: #a8a5ad;
  --whatsapp: #25d366;
  --radius: 14px;
  --container: 1180px;
  --font-display: "Inter Tight", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.section-title { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 560px; font-size: 17px; }

/* ---------- Nav ---------- */

/* Frosted background lives on a pseudo-element, NOT on the header itself:
   backdrop-filter on the header makes it the containing block for the
   position:fixed mobile menu inside it (open menu squashes to header height).
   See vault: Website build SOP > Mobile nav. */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(11, 11, 13, 0);
  transition: background 0.35s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav.scrolled::before {
  background: rgba(11, 11, 13, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}
.brand-main {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.brand-main span { color: var(--red); }
.brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(210, 32, 47, 0.35);
}
.nav-call:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(210, 32, 47, 0.45); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,13,0.62) 0%, rgba(11,11,13,0.28) 42%, rgba(11,11,13,0) 65%),
    linear-gradient(to top, rgba(11,11,13,1) 0%, rgba(11,11,13,0) 18%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,242,239,0.66);
  margin-bottom: 22px;
}
.hero-eyebrow b { color: var(--red); font-weight: 600; }
.hero h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 560px;
  margin-bottom: 20px;
}
.hero-lede {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: rgba(244, 242, 239, 0.72);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(244,242,239,0.14);
  max-width: 560px;
}
.hero-meta div { line-height: 1.4; }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.hero-meta small { color: rgba(244,242,239,0.6); font-size: 12.5px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: 0;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px rgba(210, 32, 47, 0.4);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(210, 32, 47, 0.5); }
.btn-whatsapp {
  background: #fff;
  color: #111;
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: var(--whatsapp); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,255,255,0.15); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--red); color: #fff; }

/* ---------- Trust bar ---------- */

.trustbar {
  border-block: 1px solid var(--line);
  background: var(--bg-raise);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.trust-item svg { width: 26px; height: 26px; stroke: var(--red); flex-shrink: 0; }
.trust-item div { line-height: 1.3; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
}
.trust-item small { color: var(--muted); font-size: 12.5px; }

/* ---------- Sections ---------- */

.section { padding: clamp(72px, 10vw, 120px) 0; }
.section-dark { background: var(--bg); }
.section-raise { background: var(--bg-raise); border-block: 1px solid var(--line); }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }

/* ---------- Product grid ---------- */

.lift-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.lift-card {
  grid-column: span 2;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lift-card:nth-child(1), .lift-card:nth-child(2) { grid-column: span 3; }
.lift-card:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 32, 47, 0.55);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}
.lift-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.lift-card:nth-child(1) .lift-card-media, .lift-card:nth-child(2) .lift-card-media { aspect-ratio: 16 / 10; }
.lift-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lift-card:hover .lift-card-media img { transform: scale(1.05); }
.chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 11, 13, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(244,242,239,0.16);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}
.lift-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.lift-card-body h3 { font-size: 21px; }
.lift-card-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.lift-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
}
.price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.2s;
}
.lift-card:hover .card-link { gap: 11px; }

/* ---------- Compare (F vs FE) ---------- */

.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
.compare-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
}
.compare-col.featured { border-color: rgba(210, 32, 47, 0.6); }
.compare-col.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--red);
}
.compare-model {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
}
.compare-tag {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  display: block;
}
.compare-list { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
.compare-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
}
.compare-list svg {
  width: 20px; height: 20px;
  stroke: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}
.compare-price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--muted); }

/* ---------- Video strip ---------- */

.video-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}
.phone {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 10px;
  transition: transform 0.3s, border-color 0.3s;
}
.phone:hover { transform: translateY(-5px); border-color: rgba(210,32,47,0.5); }
.phone video {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
.phone-caption {
  text-align: center;
  padding: 13px 6px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.phone-caption small { display: block; color: var(--muted); font-family: var(--font-body); font-weight: 400; font-size: 12px; margin-top: 3px; }

/* ---------- Why us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.why-card svg { width: 30px; height: 30px; stroke: var(--red); margin-bottom: 18px; }
.why-card h3 { font-size: 18.5px; margin-bottom: 9px; }
.why-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--bg);
  padding: clamp(40px, 6vw, 80px) 0;
}
.cta-band-inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #1a1114 0%, var(--panel) 60%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-band-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
}
.cta-band h2 { font-size: clamp(22px, 2.8vw, 32px); margin-bottom: 10px; }
.cta-band p { color: var(--muted); max-width: 440px; font-size: 15px; }
.cta-band .phone-big {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-band .phone-big:hover { color: var(--red); }
.cta-band-right { text-align: right; }
@media (max-width: 700px) {
  .cta-band-right { text-align: left; }
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
}
.stat strong span { color: var(--red); }
.stat small {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Image banner ---------- */

.banner {
  position: relative;
  height: clamp(320px, 48vw, 520px);
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,0.85), rgba(11,11,13,0.1) 55%);
}
.banner-caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 0 24px 34px;
}
.banner-caption .inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.banner-caption h3 { font-size: clamp(20px, 2.6vw, 28px); }
.banner-caption span { color: var(--muted); font-size: 14px; }

/* ---------- Enquiry form ---------- */

.cform {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .cform-row { grid-template-columns: 1fr; }
}
.cform label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 7px;
  color: var(--muted);
}
.cform input, .cform select, .cform textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}
.cform select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.cform textarea { min-height: 120px; resize: vertical; }
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none;
  border-color: var(--red);
}
.cform-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cform-note { color: var(--muted); font-size: 14px; }
.cform-note.ok { color: #7fd39a; }
.cform-note.err { color: #f0a89c; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- FAQ ---------- */

.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  transition: color 0.2s;
}
.faq summary:hover { color: var(--red); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--red); }
.faq details p {
  color: var(--muted);
  font-size: 15px;
  padding: 0 4px 24px;
  max-width: 640px;
}

/* ---------- Product page ---------- */

.product-hero {
  padding: 150px 0 56px;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.product-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3.4;
}
.product-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.product-hero h1 { font-size: clamp(34px, 4.6vw, 54px); margin-bottom: 16px; }
.product-hero .lede { color: var(--muted); font-size: 16.5px; margin-bottom: 28px; max-width: 480px; }

.price-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.price-rows { display: grid; gap: 10px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  color: var(--muted);
}
.price-row strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--text);
}
.price-row.hl strong { color: var(--red); }
.price-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.price-call {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
}
.price-call small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* Specs */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.spec {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.spec small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}
.spec strong { font-family: var(--font-display); font-size: 20px; font-weight: 800; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery a {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: block;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery a:hover img { transform: scale(1.05); }

.drawing-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  max-width: 640px;
  margin: 0 auto;
}
.drawing-panel img { margin: 0 auto; }

/* Product page split video */
.product-video-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 10px;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
  padding: 56px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 42px;
}
.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: var(--muted); font-size: 14.5px; transition: color 0.2s; }
.footer a:hover { color: var(--text); }
.footer-blurb { color: var(--muted); font-size: 14.5px; max-width: 320px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--text); }

/* ---------- Mobile call bar ---------- */

.mobile-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  background: rgba(11,11,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border-radius: 12px;
}
.mobile-bar .m-call { background: var(--red); color: #fff; }
.mobile-bar .m-wa { background: var(--whatsapp); color: #fff; }
.mobile-bar .m-wa svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .lift-grid { grid-template-columns: 1fr 1fr; }
  .lift-card, .lift-card:nth-child(1), .lift-card:nth-child(2) { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
}

@media (max-width: 760px) {
  /* Closed menu: visibility + transform per the mobile-nav SOP, so it can't
     leak taps, focus, or paint while "hidden" (opacity-only hiding does) */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 13, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, visibility 0s linear 0.3s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity 0.3s, transform 0.3s, visibility 0s;
  }
  .nav-links a { font-size: 22px; font-family: var(--font-display); font-weight: 700; color: var(--text); }
  .nav-links .nav-call { font-size: 18px; padding: 15px 30px; }
  .nav-toggle { display: block; }
  .hero { align-items: flex-end; }
  .hero-content { padding-bottom: 54px; }
  .hero-media img { object-position: 68% center; }
  .hero::after {
    background:
      linear-gradient(to top, rgba(11,11,13,0.96) 8%, rgba(11,11,13,0.45) 45%, rgba(11,11,13,0.2) 100%);
  }
  .hero-meta { gap: 20px; flex-wrap: wrap; margin-top: 34px; }
  .lift-grid { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .video-strip { grid-template-columns: 1fr; max-width: 320px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .product-video-grid { grid-template-columns: 1fr; }
  .product-video-grid .phone { max-width: 300px; margin: 0 auto; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .footer-grid { grid-template-columns: 1fr; }
}
