:root {
  --red: #d7192d;
  --red-dark: #820f1f;
  --blue: #2457ff;
  --ink: #050507;
  --paper: #f6f8fb;
  --muted: #aeb8c7;
  --line: rgba(255,255,255,.16);
  --glass: rgba(12,14,20,.66);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-nav {
  position: fixed;
  z-index: 50;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1480px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 20px 14px 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 80px rgba(0,0,0,.36);
}

.brand-lockup img {
  width: 214px;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  padding: 12px 14px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.nav-links a:hover { color: #fff; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #07080b;
  font-size: 1.4rem;
}

.quote-btn,
.premium-btn,
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.quote-btn,
.premium-btn.light {
  background: linear-gradient(135deg, #fff, #bac5d3);
  color: #050507;
}

.premium-btn.red {
  background: linear-gradient(135deg, #ed2339, #8d1124);
  color: #fff;
  box-shadow: 0 14px 42px rgba(215,25,45,.34);
}

.premium-btn.ghost {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.quote-btn:hover,
.premium-btn:hover,
.product-cta:hover {
  transform: translateY(-2px);
}

.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 5vw, 104px) 90px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity .9s ease, transform 1.4s ease;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.82) 38%, rgba(0,0,0,.42) 100%),
    var(--hero-image) center/cover;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--ink));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(255,255,255,.12), transparent 25%),
    radial-gradient(circle at 16% 82%, rgba(36,87,255,.18), transparent 25%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.eyebrow,
.section-head span {
  color: #dce8ff;
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 30px 0 18px;
  max-width: 1160px;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 1000;
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 880px;
  color: #dce3ee;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 5vw, 96px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-controls button,
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}

.hero-dots button.is-active { background: #fff; }

.quick-dock {
  position: fixed;
  z-index: 45;
  right: 28px;
  top: 32vh;
  display: grid;
  gap: 22px;
  padding: 24px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.quick-dock a {
  color: #050507;
  font-size: 1.45rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 34px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #18b85e;
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 0 0 14px rgba(24,184,94,.18), 0 24px 60px rgba(0,0,0,.35);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1b1e25;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 120px;
  padding: 28px;
  background: #090b10;
}

.trust-strip strong {
  display: block;
  font-size: 1.25rem;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.product-showcase,
.catalog-zone,
.experience-grid,
.contact-section {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 5vw, 96px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-head.compact { max-width: 760px; }

.section-head span { color: var(--red); }
.section-head h2,
.contact-panel h2 {
  margin: 14px 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 1000;
  line-height: .96;
}

.section-head p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 420px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 18px;
}

.product-rail::-webkit-scrollbar { display: none; }

.catalog-card {
  scroll-snap-align: start;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #151820, #090a0e);
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
}

.catalog-card.is-sale {
  border-color: rgba(215,25,45,.58);
  box-shadow: 0 28px 90px rgba(215,25,45,.2);
}

.product-media {
  position: relative;
  height: 250px;
  background: center/cover;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.76));
}

.product-media span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,25,45,.9);
  font-weight: 900;
}

.catalog-card.is-sale .product-media span {
  background: linear-gradient(135deg, #ff3348, #8d1124);
  text-transform: uppercase;
}

.product-body {
  padding: 26px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #9ea8b8;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-card h3 {
  min-height: 68px;
  margin: 20px 0 12px;
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 1.05;
}

.catalog-card p {
  min-height: 78px;
  color: #c5ceda;
  line-height: 1.65;
}

.price-panel,
.detail-price-panel {
  position: relative;
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(255,255,255,.04);
}

.catalog-card.is-sale .price-panel,
.detail-price-panel.is-sale {
  border-color: rgba(255,60,80,.42);
  background:
    linear-gradient(135deg, rgba(215,25,45,.24), rgba(255,255,255,.04)),
    rgba(255,255,255,.045);
}

.price-panel strong,
.detail-price-panel strong {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
}

.price-panel small,
.detail-price-panel small {
  color: #ffd8dd;
  font-weight: 900;
}

.price-before {
  color: #9ba6b6;
  font-size: .94rem;
  font-weight: 850;
  text-decoration: line-through;
}

.sale-ribbon {
  justify-self: start;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3348, #8d1124);
  color: #fff;
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.compat-line {
  min-height: 0 !important;
  margin: -8px 0 18px;
  color: #98a2b3 !important;
  font-size: .92rem;
}

.catalog-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.catalog-card dl div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.catalog-card dt {
  color: #8792a3;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card dd {
  margin: 6px 0 0;
  font-weight: 950;
}

.old-price {
  display: block;
  color: #98a2b3;
  text-decoration: line-through;
  font-size: .82rem;
  margin-bottom: 4px;
}

.sale-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-style: normal;
  font-size: .72rem;
  text-transform: uppercase;
}

.product-cta {
  width: 100%;
  background: #fff;
  color: #08090c;
}

.catalog-zone {
  background: #f4f6fa;
  color: #101218;
}

.catalog-tools {
  display: grid;
  gap: 20px;
}

.catalog-tools label {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  padding: 18px 22px;
  border: 1px solid #dfe4ee;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(19, 29, 45, .08);
}

.catalog-tools input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row button {
  padding: 10px 16px;
  border: 1px solid #d8deea;
  border-radius: 999px;
  background: #fff;
  color: #111318;
  font-weight: 850;
}

.catalog-full-link {
  width: fit-content;
  margin-top: 6px;
}

.brand-marquee {
  overflow: hidden;
  margin-top: 46px;
  border-block: 1px solid #dfe4ee;
  white-space: nowrap;
}

.brand-marquee div {
  display: inline-flex;
  gap: 14px;
  padding: 22px 0;
  animation: marquee 28s linear infinite;
}

.brand-marquee span {
  padding: 14px 20px;
  border-radius: 999px;
  background: #fff;
  font-weight: 950;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.experience-grid {
  background:
    radial-gradient(circle at 10% 20%, rgba(36,87,255,.16), transparent 26%),
    #08090d;
}

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

.experience-cards article,
.contact-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}

.experience-cards article {
  min-height: 260px;
  padding: 30px;
}

.experience-cards i {
  color: #fff;
  font-size: 2rem;
}

.experience-cards h3 {
  margin: 24px 0 12px;
  font-size: 1.45rem;
}

.experience-cards p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  background: #050507;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 68px);
}

.contact-panel .eyebrow { color: var(--red); }

.map-panel {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.map-copy {
  padding: clamp(28px, 4vw, 46px);
}

.map-copy span {
  color: var(--red);
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.map-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.map-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.map-copy .premium-btn {
  margin-top: 18px;
}

.map-frame {
  min-height: 420px;
  background: #101218;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.22) contrast(1.04) saturate(.86);
}

.contact-actions {
  display: grid;
  justify-items: end;
  gap: 24px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 1.2rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 96px);
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
}

.site-footer img { width: 170px; }
.site-footer a { color: #fff; font-weight: 850; }

.catalog-page,
.product-page,
.thanks-page {
  min-height: 100vh;
  padding: 150px clamp(20px, 5vw, 96px) 90px;
  background:
    radial-gradient(circle at 80% 10%, rgba(36,87,255,.18), transparent 24%),
    radial-gradient(circle at 15% 12%, rgba(215,25,45,.18), transparent 22%),
    #050507;
}

.catalog-page-head h1,
.product-info h1,
.thanks-page h1 {
  max-width: 980px;
  margin: 18px 0 24px;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 1000;
  line-height: .9;
}

.catalog-search-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(160px, 240px) minmax(160px, 240px) auto;
  gap: 12px;
  margin-top: 34px;
}

.catalog-search-form input,
.catalog-search-form select,
.quote-form input,
.quote-form textarea {
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 16px;
  outline: 0;
}

.catalog-search-form option {
  color: #111318;
}

.catalog-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.empty-state {
  color: var(--muted);
  font-size: 1.25rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.product-gallery,
.product-info {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  padding: clamp(18px, 3vw, 30px);
}

.product-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.product-info > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.spec-grid div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
}

.spec-grid span {
  display: block;
  color: #8792a3;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  margin-top: 8px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.quote-form {
  display: none;
  gap: 12px;
  margin-top: 18px;
}

.quote-form.is-open {
  display: grid;
}

.quote-form textarea {
  min-height: 120px;
  padding-top: 14px;
}

.thanks-page {
  display: grid;
  place-items: center;
  text-align: center;
}

.thanks-page section {
  max-width: 800px;
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: auto auto;
    border-radius: 24px;
  }

  .brand-lockup img { width: 168px; }
  .menu-toggle { display: grid; place-items: center; justify-self: end; }
  .quote-btn { display: none; }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-links.is-open { display: flex; }

  .hero-slide { padding-top: 130px; }
  .quick-dock { display: none; }
  .trust-strip,
  .experience-cards,
  .contact-panel,
  .map-panel { grid-template-columns: 1fr; }
  .contact-actions { justify-items: start; }
  .map-frame,
  .map-frame iframe { min-height: 340px; }
}

@media (max-width: 620px) {
  .site-nav {
    top: 12px;
    width: calc(100vw - 24px);
    padding: 10px 14px;
  }

  .hero-slide {
    min-height: 92vh;
    padding-inline: 20px;
  }

  .hero-content h1 { font-size: clamp(3.2rem, 17vw, 5.5rem); }
  .hero-actions .premium-btn { width: 100%; }
  .hero-controls { left: 20px; right: auto; }
  .carousel-shell { grid-template-columns: 1fr; }
  .carousel-arrow { display: none; }
  .product-rail { grid-auto-columns: minmax(280px, 88vw); }
  .catalog-card dl { grid-template-columns: 1fr; }
  .catalog-search-form,
  .product-detail,
  .spec-grid { grid-template-columns: 1fr; }
  .whatsapp-float {
    width: 64px;
    height: 64px;
    right: 20px;
    bottom: 22px;
    font-size: 1.8rem;
  }
}
