:root {
  --bg: #07080c;
  --bg-elev: #0f1118;
  --text: #e9e9ef;
  --muted: #b7b8c7;
  --brand: #d7a35d;
  --brand-strong: #f2b35f;
  --line: #202331;
  --radius: 18px;
  --container: 1160px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 5rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #111423 0%, var(--bg) 45%);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 999;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(7, 8, 12, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2a2f41;
}

.nav nav {
  display: flex;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #1a1207;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-small {
  padding: 0.6rem 1rem;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--brand-strong);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.delivery-highlight {
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 179, 95, 0.45);
  background: rgba(242, 179, 95, 0.14);
  color: #ffdca7;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 0.95rem;
}

.price-highlight {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(242, 179, 95, 0.38);
  background: linear-gradient(120deg, rgba(242, 179, 95, 0.16), rgba(215, 163, 93, 0.08));
}

.price-highlight.wholesale {
  border-color: rgba(168, 214, 255, 0.38);
  background: linear-gradient(120deg, rgba(105, 171, 255, 0.16), rgba(92, 145, 255, 0.08));
}

.price-label {
  display: inline-block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffd597;
  font-weight: 800;
}

.price-values {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 700;
}

.price-old {
  color: #d0d3df;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-new {
  color: #ffcf86;
  font-size: 1.12em;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 4.3vw, 3.7rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.lead {
  font-size: 1.08rem;
  color: #d6d8e6;
  max-width: 56ch;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #343a52;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f3d6a6;
  background: rgba(215, 163, 93, 0.12);
}

.claim-note {
  margin: 0.5rem 0 0.2rem;
  font-size: 0.82rem;
  color: #9fa5bb;
}

.quick-points {
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.quick-points li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.quick-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.disclaimer {
  color: #9b9ead;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.hero-media img,
.hero-media video {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #292d3f;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(15, 17, 24, 0.95), rgba(10, 11, 16, 0.95));
  border-block: 1px solid #151827;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

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

.product-grid,
.company-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.social-intro {
  color: var(--muted);
  margin-top: 0;
}

.reviews-carousel {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: carousel-right 55s linear infinite;
}

.review-card {
  width: min(88vw, 320px);
  border-radius: 18px;
  border: 1px solid #d8dae2;
  background: #ffffff;
  color: #2a2d3a;
  padding: 0.95rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
}

.review-card h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.review-card p {
  margin: 0 0 0.65rem;
  color: #474c60;
}

.review-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6f758a !important;
  margin-bottom: 0.45rem !important;
}

.review-card a {
  color: #1f4cff;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.flag {
  font-weight: 700;
  font-size: 0.9rem;
}

.stars {
  color: #f2b400;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.review-card-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #ececf2;
  margin-bottom: 0.5rem;
}

.social-note {
  color: #a8abbb;
  font-size: 0.88rem;
  margin-top: 0.95rem;
}

@keyframes carousel-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.specs {
  margin: 1rem 0 0;
}

.specs div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  gap: 1rem;
}

.specs dt {
  color: var(--muted);
}

.proof,
.video-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
}

.video-shell video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #2d3248;
  background: #05060a;
}

.video-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.form input {
  width: 100%;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  border: 1px solid #2c3042;
  background: #0d1019;
  color: var(--text);
  padding: 0.75rem 0.85rem;
}

.form input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.95rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-check input {
  width: auto;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--brand-strong);
}

.form-check a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy {
  max-width: 72ch;
}

.privacy-lead {
  color: var(--muted);
  margin: 0 0 1rem;
}

.privacy-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
}

.privacy-list li {
  margin-bottom: 0.65rem;
}

.privacy-list strong {
  color: var(--text);
}

.form-msg {
  margin: 0.6rem 0 0;
  color: #f3c786;
  min-height: 1.2em;
}

.cta-wa-wrap {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.cta-wa-lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.cta-wa-phone {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-wa-phone a {
  color: var(--brand-strong);
  text-decoration: none;
}

.cta-wa-phone a:hover {
  text-decoration: underline;
}

.section-cta {
  margin-top: 1.75rem;
  text-align: center;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-inner small a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.whatsapp-float {
  display: inline-flex;
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 50;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  filter: brightness(1.06);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.whatsapp-float-icon {
  display: flex;
}

@media (max-width: 940px) {

  .hero-grid,
  .cards,
  .product-grid,
  .company-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    animation-duration: 42s;
  }

  .nav nav {
    display: none;
  }
}