:root {
  --black: #111111;
  --graphite: #1a1a1e;
  --card-dark: #202024;
  --yellow: #ffc400;
  --yellow-deep: #f5a900;
  --white: #ffffff;
  --muted: #f5f5f3;
  --border: #e5e7eb;
  --text: #222225;
  --gray: #6b7280;
  --whatsapp: #25d366;
  --whatsapp-hover: #1db954;
  --container: 1180px;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main,
section,
.hero-copy,
.hero-panel {
  min-width: 0;
  max-width: 100%;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: absolute;
  top: 0;
  left: -999px;
  z-index: 1000;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}
.site-header.scrolled {
  background: rgba(17, 17, 17, .98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}
.brand-logo {
  width: 154px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.brand span {
  display: grid;
  line-height: .92;
  text-transform: uppercase;
}
.brand strong {
  font-size: 1.32rem;
  letter-spacing: .035em;
  font-weight: 900;
}
.brand em {
  color: var(--yellow);
  font-style: normal;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .07em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
  font-size: .94rem;
  transition: color 180ms var(--ease);
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--yellow); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-chip {
  display: grid;
  min-width: 178px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 196, 0, .35);
  border-radius: 8px;
  color: var(--white);
  line-height: 1.15;
}
.phone-chip span { color: rgba(255, 255, 255, .7); font-size: .75rem; }
.phone-chip strong { font-size: .95rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 4px;
}
.mobile-nav {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, .08);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 15px 24px;
  background: #151517;
  color: var(--white);
  font-weight: 750;
}

.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}
.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }
.btn-wa { background: var(--whatsapp); color: var(--white); }
.btn-wa:hover,
.btn-wa:focus-visible { background: var(--whatsapp-hover); }
.btn-dark { background: var(--black); color: var(--white); border-color: rgba(255, 255, 255, .12); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--border); }
.btn-outline { color: var(--white); border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .06); }
.btn-lg { min-height: 56px; padding-inline: 28px; font-size: 1rem; }

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

/* ---------- Faixa de plantão de vendas (ticker) ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.hero-ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background: rgba(26, 26, 30, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 196, 0, 0.4);
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 14px 0;
  animation: tickerScroll 30s linear infinite;
  will-change: transform;
}
.ticker-group { display: flex; align-items: center; flex: none; }
.tk-item {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 0 20px; font-weight: 700; font-size: 0.92rem; color: var(--white); letter-spacing: 0.01em;
}
.tk-sep { color: rgba(255, 196, 0, 0.5); font-weight: 700; }
.tk-hl { color: var(--yellow); font-weight: 800; }
.tk-zap {
  width: 16px; height: 16px; flex: none; fill: var(--yellow);
  filter: drop-shadow(0 0 5px rgba(255, 196, 0, 0.45));
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .ticker-track { animation-duration: 40s; padding: 11px 0; }
  .tk-item { font-size: 0.8rem; padding: 0 15px; gap: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; transform: none; }
}
.hero-bg,
.hero-bg img,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { z-index: -3; }
.hero-bg {
  transition: opacity 700ms var(--ease);
}
.hero.has-video .hero-bg {
  opacity: 0;
}
.hero-bg img { object-fit: cover; object-position: center right; }
.hero-video {
  z-index: -2;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transform: scale(1.01);
  filter: saturate(.95) contrast(1.04) brightness(.9);
  transition: opacity 900ms var(--ease);
}
.hero-video.is-ready {
  opacity: .68;
}
.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 56%, rgba(255, 196, 0, .16), transparent 28%),
    linear-gradient(90deg, rgba(17, 17, 17, .99) 0%, rgba(17, 17, 17, .94) 42%, rgba(17, 17, 17, .42) 72%, rgba(17, 17, 17, .5) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, .94), transparent 40%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
  padding: 66px 0 76px;
}
.hero-copy {
  max-width: 760px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 8px;
  background: var(--yellow);
}
.hero h1,
.section h2,
.final-box h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}
.hero h1,
.final-box h2 { color: var(--white); }
.hero h1 span { color: var(--yellow); }
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  color: rgba(255, 255, 255, .9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-proof span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
  font-size: .88rem;
  font-weight: 700;
}
.hero-panel {
  align-self: center;
  padding: 32px;
  border: 1px solid rgba(255, 196, 0, .36);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(32, 32, 36, .82), rgba(17, 17, 17, .76));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36), 0 0 44px rgba(255, 196, 0, .12);
  backdrop-filter: blur(10px);
}
.hero .hero-panel {
  display: none;
}
.panel-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  margin-bottom: 24px;
}
.hero-panel h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.hero-panel p,
.hero-panel li {
  color: rgba(255, 255, 255, .74);
}
.hero-panel ul {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  margin: 20px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.hero-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--yellow);
}
.panel-link {
  color: var(--yellow);
  font-weight: 850;
}

.trust-strip {
  background: #151517;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}
.trust-grid article {
  padding: 24px 18px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, .08);
}
.trust-grid article:last-child { border-right: 1px solid rgba(255, 255, 255, .08); }
.mini-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(255, 196, 0, .1);
  border: 1px solid rgba(255, 196, 0, .2);
}
.mini-icon svg { width: 21px; height: 21px; }
.trust-grid strong { display: block; font-size: 1rem; }
.trust-grid span { color: rgba(255, 255, 255, .62); font-size: .9rem; }

.section { padding: 98px 0; }
.section-muted { background: var(--muted); }
.section-dark {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-head h2,
.split-copy h2,
.store-card h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 930;
  margin: 0;
}
.section-head p,
.split-copy p,
.store-card p,
.final-box p {
  color: var(--gray);
  font-size: 1.08rem;
}
.section-dark .section-head p,
.section-dark .step p { color: rgba(255, 255, 255, .68); }

.service-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.category-card,
.step,
.store-card,
.map-card,
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .06);
}
.service-card,
.category-card {
  padding: 30px;
  min-height: 235px;
}
.service-card.featured {
  background: linear-gradient(180deg, var(--card-dark), #17171a);
  color: var(--white);
  border-color: rgba(255, 196, 0, .32);
  box-shadow: var(--shadow);
}
.card-icon,
.step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 196, 0, .15);
  color: var(--yellow-deep);
  font-weight: 950;
  margin-bottom: 24px;
}
.card-icon svg { width: 24px; height: 24px; }
.service-card h3,
.category-card h3,
.step h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.service-card p,
.category-card p {
  margin: 0;
  color: var(--gray);
}
.featured p { color: rgba(255, 255, 255, .72); }
.center-cta { margin-top: 34px; }

.category-grid { grid-template-columns: repeat(4, 1fr); }
.category-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.category-card::before { content: none; }
.category-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  margin-bottom: 24px;
  box-shadow: 0 14px 30px rgba(255, 196, 0, .18);
  color: var(--black);
}
.category-icon svg { width: 24px; height: 24px; }
.category-card a {
  margin-top: auto;
  color: var(--black);
  font-weight: 900;
  border-bottom: 2px solid var(--yellow);
  width: fit-content;
}

.brands-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.products {
  background: var(--white);
}
.product-group {
  padding: 30px 0 34px;
  border-top: 1px solid var(--border);
}
.product-group:last-child {
  padding-bottom: 0;
}
.product-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
}
.product-group-head h3 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  line-height: 1.15;
}
.product-group-head p {
  max-width: 760px;
  margin: 0;
  color: var(--gray);
}
.carousel-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.carousel-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}
.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
}
.carousel-controls button:disabled {
  opacity: .35;
  cursor: default;
  background: var(--muted);
  border-color: var(--border);
}
.carousel-controls svg {
  width: 20px;
  height: 20px;
}
.product-carousel {
  overflow: hidden;
  padding: 2px;
  touch-action: pan-y;
}
.product-track {
  display: flex;
  gap: 16px;
  transform: translate3d(0, 0, 0);
  transition: transform 500ms var(--ease);
  will-change: transform;
}
.product-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.product-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--black);
}
.product-card h4 {
  margin: 0;
  padding: 14px 16px 16px;
  font-size: 1rem;
}
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.brand-chips span {
  display: inline-flex;
  min-width: 128px;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 196, 0, .25);
  font-size: 1.04rem;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 54px;
  align-items: start;
}
.section-dark .section-kicker { color: var(--yellow); }
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.step {
  padding: 28px;
  background: linear-gradient(180deg, #202024, #17171a);
  border-color: rgba(255, 255, 255, .09);
  color: var(--white);
}

.split-grid,
.store-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.reverse { grid-template-columns: .82fr 1.18fr; }
.image-stack picture,
.portrait-card,
.map-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--black);
}
.image-stack img,
.portrait-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.portrait-card img { aspect-ratio: 4 / 5; }
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 750;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 196, 0, .16);
}

.store-card {
  padding: 36px;
}
.store-card address {
  margin: 24px 0;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--muted);
  font-style: normal;
  font-weight: 800;
}
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.map-wrap {
  min-height: 440px;
  width: 100%;
  background: linear-gradient(135deg, #202024, #111);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}

.faq-grid { align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq details { padding: 0 24px; }
.faq summary {
  padding: 22px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--yellow-deep);
  font-size: 1.4rem;
}
.faq details[open] summary::after { content: "-"; }
.faq details p {
  margin: 0 0 22px;
  color: var(--gray);
}

.final-cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 196, 0, .18), transparent 25%),
    linear-gradient(135deg, #111, #1a1a1e);
  color: var(--white);
}
.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 196, 0, .28);
  background: rgba(255, 255, 255, .04);
}
.final-box h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.final-box p { color: rgba(255, 255, 255, .72); }
.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  padding: 62px 0 26px;
  background: #0d0d0e;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr 1fr .7fr;
  gap: 38px;
}
.footer-brand { margin-bottom: 16px; }
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--yellow);
}
.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 8px;
}
.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.mobile-sticky { display: none; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .28), 0 8px 24px rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 255, 255, .18);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}
.mobile-break { display: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js .hero .reveal {
  opacity: 1;
  transform: none;
}
.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

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

@media (max-width: 1060px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .phone-chip { display: none; }
  .hero-grid,
  .process-grid,
  .split-grid,
  .store-grid,
  .faq-grid,
  .brands-layout,
  .reverse {
    grid-template-columns: 1fr;
  }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 66px; }
  body {
    padding-bottom: 84px;
    overflow-x: hidden;
  }
  main,
  section {
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .btn { max-width: 100%; }
  .header-inner {
    min-height: 64px;
    gap: 12px;
  }
  .brand { gap: 9px; }
  .brand-logo {
    width: 126px;
    height: 44px;
  }
  .brand strong {
    font-size: 1rem;
    letter-spacing: .02em;
  }
  .brand em {
    font-size: .72rem;
    letter-spacing: .055em;
  }
  .header-wa { display: none; }
  .nav-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    background: rgba(255, 255, 255, .04);
  }
  .mobile-nav {
    padding: 6px 18px 16px;
    gap: 8px;
    background: rgba(17, 17, 17, .98);
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
  .mobile-nav a {
    border-radius: 8px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, .06);
  }
  .hero {
    min-height: auto;
  }
  .hero-bg img {
    object-position: 62% center;
  }
  .hero-video {
    object-position: 64% center;
    filter: saturate(.88) contrast(1.08) brightness(.78);
    transform: none;
  }
  .hero-video.is-ready {
    opacity: .5;
  }
  .hero-shade {
    background:
      radial-gradient(circle at 72% 48%, rgba(255, 196, 0, .14), transparent 28%),
      linear-gradient(90deg, rgba(17, 17, 17, .98) 0%, rgba(17, 17, 17, .9) 50%, rgba(17, 17, 17, .62) 100%),
      linear-gradient(180deg, rgba(17, 17, 17, .9) 0%, rgba(17, 17, 17, .62) 42%, rgba(17, 17, 17, .98) 100%);
  }
  .hero-grid {
    width: 100%;
    padding: 52px 18px 36px;
    gap: 22px;
    align-content: start;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 9.6vw, 2.62rem);
    line-height: .96;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }
  .hero-copy,
  .hero-panel {
    width: 100%;
  }
  .mobile-break { display: inline; }
  .eyebrow,
  .section-kicker {
    margin-bottom: 14px;
    font-size: .68rem;
    letter-spacing: .095em;
  }
  .eyebrow::before,
  .section-kicker::before { width: 24px; }
  .hero-lead {
    margin-top: 20px;
    max-width: 31rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .86);
    overflow-wrap: break-word;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 26px 0 18px;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }
  .hero-proof span {
    width: 100%;
    justify-content: flex-start;
    padding: 7px 0 7px 19px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .82);
    font-size: .84rem;
    position: relative;
  }
  .hero-proof span::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
  }
  .hero-actions .btn {
    width: 100%;
    justify-self: stretch;
    min-height: 52px;
  }
  .hero-panel {
    padding: 22px;
    border-radius: 8px;
    overflow: hidden;
  }
  .hero-panel h2 { font-size: 1.18rem; }
  .hero-panel p,
  .hero-panel li { overflow-wrap: anywhere; }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .trust-grid article {
    min-width: 0;
    min-height: 118px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
  }
  .mini-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  .mini-icon svg {
    width: 19px;
    height: 19px;
  }
  .trust-grid strong { font-size: .96rem; }
  .trust-grid span { font-size: .84rem; }
  .service-grid,
  .category-grid,
  .steps,
  .footer-grid,
  .final-box {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
  .section-head {
    margin-bottom: 24px;
  }
  .section-head h2,
  .split-copy h2,
  .store-card h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: 0;
  }
  .section-head p,
  .split-copy p,
  .store-card p,
  .final-box p {
    font-size: .98rem;
    line-height: 1.62;
    overflow-wrap: break-word;
  }
  .service-card,
  .category-card,
  .step,
  .store-card {
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  }
  .service-card,
  .category-card {
    min-height: auto;
  }
  .service-card {
    padding: 20px;
  }
  .card-icon,
  .step span {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }
  .service-card h3,
  .category-card h3,
  .step h3 {
    font-size: 1.08rem;
  }
  .category-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    padding: 18px;
  }
  .category-icon {
    grid-row: 1 / 4;
    width: 38px;
    height: 38px;
    margin: 0;
  }
  .category-icon svg {
    width: 20px;
    height: 20px;
  }
  .category-card a {
    margin-top: 10px;
  }
  .category-card { min-height: auto; }
  .brand-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-group {
    padding: 24px 0 28px;
  }
  .product-group-head {
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .product-group-head h3 {
    font-size: 1.2rem;
  }
  .product-group-head p {
    font-size: .86rem;
    line-height: 1.5;
  }
  .carousel-controls {
    display: none;
  }
  .product-carousel {
    margin: 0;
    padding: 2px;
  }
  .product-track {
    gap: 12px;
  }
  .product-card {
    flex-basis: 100%;
  }
  .product-card h4 {
    padding: 12px 14px 14px;
  }
  .product-card img {
    height: 230px;
  }
  .brand-chips span {
    min-width: 0;
    padding: 12px 10px;
    font-size: .94rem;
    border-radius: 8px;
  }
  .process-grid {
    gap: 28px;
  }
  .step {
    padding: 18px;
  }
  .image-stack picture,
  .portrait-card,
  .map-card {
    border-radius: 8px;
  }
  .split-grid,
  .store-grid,
  .faq-grid {
    gap: 28px;
  }
  .check-list {
    gap: 10px;
    margin-top: 20px;
  }
  .check-list li {
    padding-left: 24px;
    font-size: .95rem;
  }
  .check-list li::before {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 4px rgba(255, 196, 0, .16);
  }
  .faq details {
    padding: 0 18px;
  }
  .faq summary {
    padding: 18px 0;
    font-size: .94rem;
  }
  .store-actions .btn,
  .final-actions .btn { width: 100%; }
  .map-wrap,
  .map-wrap iframe { min-height: 340px; height: 340px; }
  .final-box {
    padding: 22px;
    gap: 22px;
  }
  .mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 140;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(17, 17, 17, .92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
    backdrop-filter: blur(16px);
  }
  .mobile-sticky .btn {
    min-height: 48px;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: .92rem;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .whatsapp-float {
    display: none;
  }
}
