:root {
  --orange: #ff5a00;
  --orange-2: #ff7a00;
  --orange-deep: #e04e00;
  --black: #181818;
  --graphite: #292929;
  --white: #ffffff;
  --fog: #f5f5f5;
  --muted: #6d6d6d;
  --text: #2a2a2a;
  --line: #e6e6e6;
  --line-dark: rgba(255, 255, 255, 0.1);
  --header: 88px;
  --radius: 8px;
  --shadow: 0 12px 32px rgba(24, 24, 24, 0.08);
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header) + 10px);
}

.section {
  padding: 72px 0;
}

.section--fog {
  background: var(--fog);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.home-products__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.home-products__head .section-head {
  margin-bottom: 0;
}

.home-products .related__nav {
  display: flex;
  gap: 8px;
}

.home-products .related__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.home-products .related__arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.home-products .related__arrow svg {
  pointer-events: none;
}

.home-products .related__arrow:first-child svg {
  transform: rotate(180deg);
}

.home-products .related__track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -8px;
  padding: 4px 8px 8px;
  min-height: 338px;
}

.home-products .related__track::-webkit-scrollbar {
  display: none;
}

.home-products .product-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(240px, 78vw);
  max-width: min(240px, 78vw);
  align-self: stretch;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

.home-products .related__track .product-card:hover {
  transform: none;
}

.home-products .product-card a {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 100%;
  padding: 0 0 16px;
}

.home-products .product-card__img {
  position: relative;
  width: 100%;
  height: 180px;
  max-height: 180px;
  overflow: hidden;
  background: #ffffff;
}

.home-products .product-card__off {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #1b7a3a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.home-products .product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.home-products .product-card__placeholder {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  background: #ececec;
}

.home-products .product-card h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 14px 14px 6px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.35;
  min-height: 2.7em;
}

.home-products .product-card__brand,
.home-products .product-card__mkt {
  margin: 0 14px 6px;
  color: var(--muted);
  font-size: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 1.25em;
}

.home-products .product-card__price {
  margin: auto 14px 8px;
  color: var(--black);
  font-weight: 800;
  font-size: 1.15rem;
}

.home-products .product-card__price span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-products .product-card__old {
  display: block;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: line-through;
  min-height: 1.2em;
}

.home-products .product-card__old:empty {
  visibility: hidden;
}

.home-products__cta {
  margin-top: 28px;
}

.section-head h2,
.display {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--black);
}

.section--dark .section-head h2,
.section--dark .display {
  color: var(--white);
}

.section-head .lead {
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line-dark);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.header-cta {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 8, 8, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: min(86vw, 360px);
  display: flex;
  flex-direction: column;
  padding: 20px 22px 28px;
  background: #111;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  overflow: hidden;
}

body.nav-open .nav-drawer {
  transform: translateX(0);
}

.nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.nav-drawer__top .logo img {
  height: 52px;
}

.nav-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-close svg {
  display: block;
}

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
  min-height: 0;
}

.nav-drawer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.nav-drawer__links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--orange);
}

.nav-drawer__cta {
  padding-top: 20px;
}

.nav-drawer__cta .btn {
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.88) 0%, rgba(24, 24, 24, 0.62) 48%, rgba(24, 24, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.2) 0%, rgba(24, 24, 24, 0.55) 100%);
}

.hero-mark {
  position: absolute;
  right: -4%;
  bottom: 8%;
  width: min(38vw, 280px);
  opacity: 0.12;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 32px 0 28px;
  max-width: 760px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.speed-mini {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 28px;
}

.speed-mini i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #f5c14a, var(--orange));
  border-radius: 1px;
}

.speed-mini i:nth-child(2),
.speed-mini i:nth-child(4) {
  width: 78%;
  margin-left: auto;
}

.hero h1 {
  font-size: clamp(1.7rem, 5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero .lead {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 639px) {
  .hero-actions .btn,
  .cta-actions .btn,
  .ig-actions .btn,
  .nav-drawer .btn {
    width: 100%;
  }
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line-dark);
}

.hero-platforms span,
.hero-platforms a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.18s ease;
}

.hero-platforms a:hover,
.hero-platforms a:focus-visible {
  color: var(--orange);
}

.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust .wrap {
  padding-block: 8px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #f0d4c4;
  background: #fff4ed;
  color: var(--orange);
  border-radius: 8px;
}

.trust-item strong {
  display: block;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: #ffd4ba;
  box-shadow: var(--shadow);
}

.cat-card svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  margin-bottom: 20px;
}

.cat-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

.cat-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.cat-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cat-card span svg {
  width: 14px;
  height: 14px;
  margin: 0;
  transition: transform 0.2s ease;
}

.cat-card:hover span svg {
  transform: translateX(4px);
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.section-cta {
  margin-top: 28px;
}

.store-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 0 0 0 transparent;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.store-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.store-card:nth-child(1)::before {
  background: #ffe600;
}

.store-card:nth-child(2)::before {
  background: #ee4d2d;
}

.store-card:nth-child(3)::before {
  background: #0086ff;
}

.store-card:nth-child(4)::before {
  background: #ff9900;
}

.store-card:nth-child(5)::before {
  background:rgb(0, 0, 0);
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: #ffd4ba;
  box-shadow: var(--shadow);
}

.store-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
}

.store-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
}

.store-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.store-card:hover .store-cta svg {
  transform: translateX(4px);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.why-card {
  padding: 8px 0 22px;
  border-bottom: 1px solid var(--line);
}

.why-card:last-child {
  border-bottom: 0;
}

.why-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-num svg {
  width: 20px;
  height: 20px;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
}

.about {
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-copy .lead,
.about-copy p + p {
  margin-top: 16px;
}

.about-copy p {
  color: var(--text);
  font-size: 1.02rem;
}

.about-stats {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.stat {
  padding: 16px 18px;
  background: var(--white);
  border-left: 3px solid var(--orange);
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 280px;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-media::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 6px;
  background: var(--orange);
}

.channels {
  text-align: center;
}

.channels .section-head {
  margin-inline: auto;
}

.channel-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 12px 0 28px;
}

.channel-node {
  min-width: 180px;
  padding: 14px 18px;
  background: var(--graphite);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
}

.channel-arrow {
  width: 2px;
  height: 22px;
  background: var(--orange);
  position: relative;
}

.channel-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateX(-50%) rotate(45deg);
}

.channels-msg {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.ig-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--graphite);
  border-radius: 10px;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ig-item:hover img {
  transform: scale(1.05);
}

.ig-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24, 24, 24, 0.35) 100%);
}

.ig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wa {
  background: var(--black);
  color: var(--white);
}

.wa .lead {
  color: rgba(255, 255, 255, 0.75);
  margin: 14px 0 24px;
}

.wa .section-head h2,
.wa h2 {
  color: var(--white);
}

.wa-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.wa-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.wa-list li {
  padding: 16px 18px;
  background: var(--graphite);
  border-left: 3px solid var(--orange);
}

.wa-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.wa-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

.wa-dock {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-dock__menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(268px, calc(100vw - 32px));
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(24, 24, 24, 0.16);
  transform-origin: bottom right;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.wa-dock.is-open .wa-dock__menu {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.wa-dock__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--black);
  text-decoration: none;
  transition: background 0.18s ease;
}

.wa-dock__option:hover,
.wa-dock__option:focus-visible {
  background: #f3fbf6;
  color: var(--black);
}

.wa-dock__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e8f8ee;
  color: #128c4a;
}

.wa-dock__icon--channel {
  background: #fff4ed;
  color: var(--orange);
}

.wa-dock__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wa-dock__copy strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.wa-dock__copy small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.wa-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
  background: #1ebe57;
  color: #fff;
  transform: scale(1.06);
}

.wa-dock.is-open .wa-float {
  transform: rotate(8deg) scale(1.04);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--black);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final .bg {
  position: absolute;
  inset: 0;
}

.cta-final .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}

.cta-final .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.78);
}

.cta-final .wrap {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-final .lead {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background: #121212;
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand img {
  height: 86px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 26ch;
  font-weight: 500;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  padding: 5px 0;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-social svg {
  display: block;
}

.footer-legal {
  margin-top: 14px;
}

.footer-copy {
  padding-top: 22px;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 28px 20px;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .cat-grid,
  .store-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  :root {
    --header: 96px;
  }

  .wrap {
    width: min(calc(100% - 80px), var(--max));
  }

  .nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .nav-drawer,
  .nav-backdrop {
    display: none !important;
  }

  .logo img {
    height: 58px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 48px 0 44px;
  }

  .hero-mark {
    width: min(42vw, 360px);
  }

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

  .trust-item,
  .trust-item:nth-child(odd) {
    justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 32px 24px;
  }

  .trust-item:last-child {
    border-right: 0;
  }

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

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

  .why-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }

  .why-card {
    padding: 0;
    border: 0;
  }

  .about {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .wa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .channel-flow {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .channel-arrow {
    width: 36px;
    height: 2px;
    margin: 0 6px;
  }

  .channel-arrow::after {
    left: auto;
    right: -2px;
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .cat-grid,
  .store-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
