/* ===================================================================
   Disinfex — light-mode sales site
   Brand: blue #0d93ec · navy #0c2233 · teal #23cfc4
   Mobile-first, animated, fast.
   =================================================================== */

:root {
  --blue: #0d93ec;
  --blue-dark: #0b7fcf;
  --navy: #0c2233;
  --teal: #23cfc4;

  --bg: #ffffff;
  --bg-soft: #f4faff;      /* light section alt */
  --bg-tint: #eaf5fe;      /* blue tint surface */
  --ink: #0c2233;          /* primary text (navy) */
  --ink-2: #4a5a67;        /* secondary text */
  --ink-3: #8a97a1;        /* muted */
  --line: #e2ebf2;         /* borders */
  --white: #ffffff;

  --font: 'Manrope', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --sp-8: 8px; --sp-12: 12px; --sp-16: 16px; --sp-20: 20px; --sp-24: 24px;
  --sp-32: 32px; --sp-40: 40px; --sp-56: 56px; --sp-72: 72px; --sp-80: 80px;

  --page-max: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(12, 34, 51, .06);
  --shadow: 0 12px 40px rgba(12, 34, 51, .10);
  --shadow-blue: 0 12px 30px rgba(13, 147, 236, .28);
  --header-h: 66px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--sp-20);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 26px;
  transition: transform .16s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 14px 34px rgba(13,147,236,.42); }
.btn-sm { padding: 11px 18px; font-size: 14px; box-shadow: none; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-16); }
.brand-logo { height: 38px; width: auto; }

.nav-links { display: none; gap: 2px; }
.nav-link {
  color: var(--ink-2); font-size: 15px; font-weight: 500;
  padding: 8px 13px; border-radius: 10px;
  transition: color .16s ease, background-color .16s ease;
}
.nav-link:hover { color: var(--blue); background: var(--bg-tint); }

.header-right { display: flex; align-items: center; gap: var(--sp-12); }
.lang-switch { display: inline-flex; padding: 3px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-pill); }
.lang-btn {
  border: 0; background: transparent; color: var(--ink-3);
  font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill);
  transition: color .16s ease, background-color .16s ease;
}
.lang-btn.is-active { background: var(--blue); color: #fff; }
.header-right .btn-sm { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + var(--sp-40));
  padding-bottom: var(--sp-56);
  min-height: 92svh; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-40); align-items: center; }
.hero-copy { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  color: var(--blue); background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); margin-bottom: var(--sp-20);
}
.hero-title {
  font-size: clamp(32px, 8vw, 58px); font-weight: 800; line-height: 1.08;
  letter-spacing: -.02em; color: var(--navy); margin-bottom: var(--sp-16);
}
.hero-sub { font-size: clamp(16px, 4vw, 20px); color: var(--ink-2); max-width: 54ch; margin-inline: auto var(--sp-32); }

.hero-form { max-width: 480px; margin-inline: auto; }
.field-join {
  display: flex; align-items: stretch; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 6px; box-shadow: var(--shadow);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field-join:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,147,236,.14), var(--shadow); }
.field-join .input {
  flex: 1; min-width: 0; border: 0; background: transparent; color: var(--ink);
  font-size: 16px; font-weight: 600; padding: 12px 18px;
}
.field-join .input:focus { outline: none; }
.field-join .btn { white-space: nowrap; padding: 14px 22px; }

.form-note { font-size: 13px; color: var(--ink-3); margin-top: var(--sp-12); }
.form-status { font-size: 14px; font-weight: 600; margin-top: var(--sp-12); min-height: 20px; }
.form-status.ok { color: #16a34a; }
.form-status.err { color: #dc2626; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--sp-20) var(--sp-32); margin-top: var(--sp-32); }
.hero-badges li { display: flex; flex-direction: column; align-items: center; }
.hero-badges strong { font-size: 26px; font-weight: 800; color: var(--navy); }
.hero-badges span { font-size: 13px; color: var(--ink-2); }

.hero-art { display: none; }
.hero-mark { width: min(360px, 70%); margin-inline: auto; filter: drop-shadow(0 24px 50px rgba(13,147,236,.35)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Sections ---------- */
.section { padding-block: var(--sp-72); }
.section-alt { background: var(--bg-soft); }
@media (min-width: 768px) { .section { padding-block: 96px; } }

.section-head { max-width: 640px; margin-bottom: var(--sp-40); }
.section-kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: var(--sp-12);
}
.section-title { font-size: clamp(27px, 6vw, 42px); font-weight: 800; line-height: 1.14; letter-spacing: -.02em; color: var(--navy); margin-bottom: var(--sp-16); }
.section-lead { font-size: clamp(15px, 4vw, 18px); color: var(--ink-2); max-width: 56ch; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: var(--sp-16); }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-32) var(--sp-24); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(13,147,236,.4); }
.card-ico { width: 64px; height: 64px; border-radius: 16px; margin-bottom: var(--sp-20); }
.card-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: var(--sp-8); }
.card-text { font-size: 15px; color: var(--ink-2); margin-bottom: var(--sp-16); }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card-tags li { font-size: 12px; font-weight: 600; color: var(--blue); background: var(--bg-tint); padding: 5px 12px; border-radius: var(--radius-pill); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: 1fr; gap: var(--sp-16); }
@media (min-width: 560px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-24); transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature img { width: 44px; height: 44px; margin-bottom: var(--sp-16); }
.feature h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--ink-2); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--sp-16); counter-reset: s; }
@media (min-width: 600px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: var(--sp-24); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { display: inline-block; font-size: 15px; font-weight: 800; color: #fff; background: var(--blue); width: 40px; height: 40px; line-height: 40px; text-align: center; border-radius: 12px; margin-bottom: var(--sp-16); }
.step-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-text { font-size: 14px; color: var(--ink-2); }

/* ---------- Prices / Calc ---------- */
.prices-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-32); align-items: start; }
@media (min-width: 900px) { .prices-grid { grid-template-columns: 1.05fr .95fr; gap: var(--sp-56); align-items: center; } }
.perk-list { margin-top: var(--sp-24); display: grid; gap: var(--sp-12); }
.perk-list li { position: relative; padding-left: 32px; font-size: 16px; font-weight: 600; color: var(--navy); }
.perk-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; line-height: 22px; text-align: center;
  color: #fff; background: var(--teal); border-radius: 50%; font-size: 13px; font-weight: 800;
}
.calc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-32) var(--sp-24); box-shadow: var(--shadow); }
.section-alt .calc-card { box-shadow: var(--shadow); }
.calc-title { font-size: 23px; font-weight: 800; color: var(--navy); margin-bottom: var(--sp-16); }
.lbl { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin: var(--sp-16) 0 6px; }
.calc-card .lbl:first-of-type { margin-top: 0; }

.input { font-family: var(--font); font-size: 16px; color: var(--ink); }
.input-block {
  width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-weight: 500;
  transition: border-color .16s ease, box-shadow .16s ease;
}
textarea.input-block { resize: vertical; }
.input-block::placeholder { color: var(--ink-3); font-weight: 500; }
.input-block:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,147,236,.13); }
select.input-block { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%234a5a67' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.calc-card .btn-block { margin-top: var(--sp-24); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: 1fr; gap: var(--sp-16); }
@media (min-width: 800px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-24); box-shadow: var(--shadow-sm); }
.stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: var(--sp-12); }
.review p { font-size: 15px; color: var(--ink); margin-bottom: var(--sp-16); }
.review figcaption { font-size: 14px; color: var(--ink-2); }
.review figcaption strong { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-list { display: grid; gap: var(--sp-12); }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px var(--sp-20); box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(13,147,236,.4); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  font-size: 17px; font-weight: 700; color: var(--navy);
  padding: var(--sp-16) 40px var(--sp-16) 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; line-height: 26px; text-align: center;
  color: var(--blue); background: var(--bg-tint); border-radius: 50%;
  font-size: 20px; font-weight: 600; transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-item p { font-size: 15px; color: var(--ink-2); padding: 0 0 var(--sp-16); margin-top: -4px; }

/* ---------- CTA ---------- */
.cta-section { background: linear-gradient(135deg, var(--blue) 0%, #0b7fcf 100%); }
.cta-inner { max-width: 620px; margin-inline: auto; text-align: center; }
.cta-mark { width: 60px; height: 60px; margin: 0 auto var(--sp-16); }
.cta-title { font-size: clamp(26px, 6vw, 40px); font-weight: 800; color: #fff; margin-bottom: var(--sp-12); }
.cta-sub { color: rgba(255,255,255,.9); font-size: 18px; margin-bottom: var(--sp-32); }
.cta-form { display: grid; gap: var(--sp-12); text-align: left; }
.cta-form .input-block { border-color: transparent; }
.cta-form .btn-primary { background: var(--navy); box-shadow: 0 10px 26px rgba(12,34,51,.35); }
.cta-form .btn-primary:hover { background: #071825; }
.cta-form .form-status { color: #fff; }
.cta-form .form-status.ok { color: #d1fae5; }
.cta-form .form-status.err { color: #fecaca; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #fff; padding-top: var(--sp-72); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-40); padding-bottom: var(--sp-40); }
@media (min-width: 720px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: var(--sp-16); }
.footer-desc { color: rgba(255,255,255,.6); font-size: 15px; max-width: 40ch; }
.footer-col h4 { font-size: 16px; font-weight: 800; margin-bottom: var(--sp-16); }
.footer-link { display: block; color: rgba(255,255,255,.7); font-size: 15px; padding: 5px 0; transition: color .16s ease; }
.footer-link:hover { color: #fff; }
.footer-bottom { padding-block: var(--sp-24); border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: 13px; }

/* ---------- FAB group (mobile: Telegram + Call) ---------- */
.fab-group {
  position: fixed; right: 14px; bottom: 14px; z-index: 40;
  display: flex; align-items: center; gap: 10px;
}
.fab {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 15px;
  border-radius: var(--radius-pill);
}
.fab-call {
  background: var(--blue); padding: 13px 18px; box-shadow: var(--shadow-blue);
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab-call img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.fab-tg {
  background: #229ED9; width: 52px; height: 52px; justify-content: center;
  box-shadow: 0 10px 26px rgba(34,158,217,.45);
}
.fab-tg span { position: absolute; left: -9999px; }
.fab-tg svg { width: 24px; height: 24px; }
@keyframes fabPulse { 0%,100% { box-shadow: 0 10px 26px rgba(13,147,236,.4); } 50% { box-shadow: 0 10px 40px rgba(13,147,236,.7); } }
@media (min-width: 900px) { .fab-group { display: none; } }

/* ---------- Mobile refinements ---------- */
@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: var(--sp-40);
  }
  /* Stacked, full-width, easy-to-tap hero form */
  .field-join {
    flex-direction: column;
    border-radius: 20px;
    padding: 8px;
    gap: 8px;
  }
  .field-join .input { text-align: center; padding: 13px 14px; }
  .field-join .btn { width: 100%; padding: 15px; }

  .eyebrow { font-size: 12px; padding: 7px 14px; }
  .hero-badges { gap: var(--sp-16) var(--sp-24); }
  .hero-badges strong { font-size: 22px; }

  .section { padding-block: var(--sp-56); }
  .card, .feature, .step, .review, .calc-card { padding: var(--sp-20); }
  .btn { padding: 15px 22px; }
  .fab { padding: 12px 16px; font-size: 14px; }
}

/* Kill any horizontal overflow on small screens */
@media (max-width: 400px) {
  .container { padding-inline: 16px; }
  .hero-title { font-size: 30px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mark, .fab { animation: none; }
}

/* ===================================================================
   3D + PHOTO ENHANCEMENTS
   =================================================================== */

/* ---------- Generic 3D tilt wrapper (transform set inline by JS) ---------- */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
  will-change: transform;
}
[data-tilt].tilting { transition: box-shadow .3s ease; }
/* Resting 3D pose for the hero scene (JS overrides on pointer move) */
.hero-scene { transform: perspective(1000px) rotateX(3deg) rotateY(-11deg) translateY(var(--py, 0px)); }

/* ---------- Hero 3D photo scene ---------- */
.hero-scene {
  position: relative;
  width: min(460px, 92%);
  aspect-ratio: 5 / 5;
  margin-inline: auto;
}
.hero-glow {
  position: absolute; inset: 6% 6% 10% 6%; z-index: 0;
  background: radial-gradient(60% 60% at 60% 40%, rgba(13,147,236,.45), transparent 70%);
  filter: blur(34px); transform: translateZ(-40px);
}
.hero-photo {
  position: absolute; overflow: hidden;
  border-radius: 22px; border: 4px solid #fff;
  box-shadow: 0 30px 60px rgba(12,34,51,.28);
  transform: translateZ(var(--z, 40px));
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { inset: 4% 0 auto 2%; width: 78%; aspect-ratio: 16/12; z-index: 1; }
.hero-photo-sub  { right: 0; bottom: 4%; width: 56%; aspect-ratio: 16/10; z-index: 2; }

.hero-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 10px 14px; box-shadow: var(--shadow);
  transform: translateZ(var(--z, 80px));
}
.hero-chip strong { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-chip small { display: block; font-size: 12px; color: var(--ink-2); }
.hero-chip-rating { top: -5%; right: 13%; animation: floaty 5.5s ease-in-out infinite; }
.hero-chip-rating .chip-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.hero-chip-guarantee { bottom: 0; left: 0; gap: 10px; animation: floaty 7s ease-in-out infinite reverse; }
.hero-chip-guarantee img { width: 30px; height: 30px; }

/* ---------- Service cards with photos ---------- */
.card { padding: 0; overflow: hidden; }
.card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-tint); }
.card-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.card:hover .card-photo { transform: scale(1.07); }
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,34,51,.35));
}
.card .card-ico {
  position: absolute; left: 16px; bottom: -22px; z-index: 2;
  width: 60px; height: 60px; border-radius: 16px; margin: 0;
  border: 3px solid #fff; box-shadow: var(--shadow-sm);
  transform: translateZ(30px);
}
.card-body { padding: var(--sp-32) var(--sp-24) var(--sp-24); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; gap: var(--sp-16);
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .shot-lg { grid-row: span 2; }
  .shot-wide { grid-column: span 2; }
}
@media (min-width: 980px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .shot-lg { grid-column: span 1; grid-row: span 2; }
  .shot-wide { grid-column: span 2; grid-row: span 1; }
}
.shot {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); min-height: 220px; margin: 0;
  border: 1px solid var(--line);
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12,34,51,.72));
  opacity: .85; transition: opacity .3s ease;
}
.shot:hover img { transform: scale(1.08); }
.shot figcaption {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: 16px 18px; color: #fff; font-weight: 700; font-size: 16px;
  transform: translateZ(30px);
}

/* ---------- Desktop layout ---------- */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .header-right .btn-sm { display: inline-flex; }
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
  .hero-copy { text-align: left; }
  .hero-sub { margin-inline: 0 var(--sp-32); }
  .hero-form { margin-inline: 0; }
  .hero-badges { justify-content: flex-start; }
  .hero-art { display: block; }
}

/* ---------- Reduced motion / touch ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-chip-rating, .hero-chip-guarantee { animation: none; }
  [data-tilt], .card-photo, .shot img { transition: none; }
}
