:root {
  --bg: #050505;
  --surface: #151515;
  --surface-2: #0d0d0d;
  --red: #e2231a;
  --red-dark: #8f130f;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(226, 35, 26, 0.42);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(226, 35, 26, 0.18), transparent 31rem),
    linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #050505 100%);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: var(--text);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  position: relative;
  padding: 72px 0;
  scroll-margin-top: 82px;
}

#topo {
  scroll-margin-top: 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 28px;
}

.section-code,
.brand-line {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.0;
  font-weight: 900;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.82rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  width: 1.8rem;
  height: 0.55rem;
  background: currentColor;
  clip-path: polygon(0 42%, 74% 42%, 74% 0, 100% 50%, 74% 100%, 74% 58%, 0 58%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--text);
  box-shadow: 0 16px 44px rgba(226, 35, 26, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f02a20;
  box-shadow: 0 18px 52px rgba(226, 35, 26, 0.42);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--line-strong);
  background: rgba(226, 35, 26, 0.08);
}

.btn-small {
  min-height: 42px;
  padding: 0.72rem 0.82rem;
  background: var(--red);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.9);
}

.header-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 146px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, rgba(0,0,0,.82) 62%, transparent);
}

.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 8%;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(226, 35, 26, 0.28), rgba(226, 35, 26, 0.08) 32%, transparent 68%);
  filter: blur(10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 4.5rem;
}

.hero-content {
  padding-top: 2rem;
}

.brand-line {
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  max-width: 620px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.3rem, 3.45vw, 3.95rem);
  line-height: 1.04;
}

.hero-title-line {
  white-space: nowrap;
}

.hero-title-accent {
  display: inline-block;
  color: var(--red);
}

.hero-subtitle {
  width: min(620px, 100%);
  margin-bottom: 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-points {
  display: grid;
  gap: 0.78rem;
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 700;
}

.hero-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--red) 0 3px, transparent 4px),
    rgba(226,35,26,0.08);
  box-shadow: 0 0 18px rgba(226,35,26,0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 1.4rem;
  background: rgba(255,255,255,0.03);
}

.hero-stat:not(:last-child) {
  border-right: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.18rem;
}

.hero-stat span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.hero-stat-divider { display: none; }

.hero-visual {
  position: relative;
}

.hero-proof-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(5,5,5,0.78);
  box-shadow: 0 26px 70px rgba(0,0,0,0.36);
  backdrop-filter: blur(12px);
}

.hero-proof-item {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 0.1rem;
  padding: 1rem 1.45rem;
}

.hero-proof-item + .hero-proof-item {
  border-left: 1px solid rgba(255,255,255,0.10);
}

.hero-proof-item span {
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1;
  font-weight: 900;
}

.hero-proof-item small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

/* ── Hero slider ───────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 680px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226,35,26,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
  background: #080808;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.04);
  pointer-events: none;
}

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

/* ── Gradiente preto no topo — cobre título da lâmina ── */
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 32%;
  background: linear-gradient(
    180deg,
    #000000 0%,
    #000000 38%,
    rgba(0,0,0,0.6) 68%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
  border-radius: 12px 12px 0 0;
}


.hero-slide img {
  width: 100%;
  height: 155%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-top: -26%;
}

.hero-slide-label {
  position: absolute;
  left: 16px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(5,5,5,0.78);
  backdrop-filter: blur(8px);
  border-left: 2px solid var(--red);
  padding: 0.6rem 1rem;
  border-radius: 0 4px 4px 0;
}

.hero-slide-cat {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-slide-name {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.hero-slider-badge {
  position: absolute;
  right: 16px;
  bottom: 64px;
  display: grid;
  gap: 0.12rem;
  min-width: 148px;
  border-left: 2px solid var(--red);
  padding: 0.65rem 0.9rem;
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(6px);
  border-radius: 0 4px 4px 0;
}

.hero-slider-badge span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slider-badge strong {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.hero-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.hero-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}

.hero-slider-dot.is-active {
  background: var(--red);
  width: 20px;
  border-radius: 4px;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(4px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.hero-slider:hover .hero-slider-btn { opacity: 1; }

.hero-slider-btn:hover {
  background: rgba(226,35,26,0.55);
  border-color: var(--red);
}

.hero-slider-prev { left: 12px; }
.hero-slider-next { right: 12px; }

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 36%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(226, 35, 26, 0.96), transparent);
  box-shadow: 0 0 22px rgba(226, 35, 26, 0.75);
  animation: scan 4.8s ease-in-out infinite;
}

.tech-readout {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 0.2rem;
  min-width: 180px;
  border-left: 2px solid var(--red);
  padding: 0.9rem 1rem;
  background: rgba(5, 5, 5, 0.74);
}

.tech-readout span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.tech-readout strong {
  font-size: 2rem;
  line-height: 1;
}

/* ── Marquee strip ────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--red);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.marquee-dot {
  font-size: 0.75rem !important;
  opacity: 0.55;
  flex-shrink: 0;
}

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

.products-section {
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.55), rgba(5, 5, 5, 0));
}

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

.product-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card::before,
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(226, 35, 26, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover,
.benefit-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.36), 0 0 34px rgba(226, 35, 26, 0.1);
}

.product-card:hover::before,
.benefit-card:hover::before {
  opacity: 1;
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #080808;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.94));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.05);
}

.product-body {
  position: relative;
  min-height: 184px;
  padding: 1.35rem 1.25rem 0.6rem;
}

.product-body span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 0.7rem;
  font-size: 1.48rem;
  font-weight: 900;
}

.product-body p {
  margin-bottom: 0;
}

.product-actions {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 0.7rem;
  padding: 0 1.25rem 1.25rem;
}

.product-actions .btn {
  width: 100%;
  font-size: 0.68rem;
}

.benefits-section {
  padding-top: 56px;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 3rem;
  align-items: start;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  display: grid;
  min-height: 178px;
  grid-template-columns: auto 1fr;
  column-gap: 1.2rem;
  padding: 1.45rem;
}

.benefit-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(226, 35, 26, 0.36);
  border-radius: 4px;
  background: rgba(226, 35, 26, 0.09);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-card h3 {
  margin-bottom: 0.55rem;
  font-weight: 900;
}

.benefit-card p {
  grid-column: 2;
  margin-bottom: 0;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(226, 35, 26, 0.08), transparent 32%),
    #080808;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  height: 560px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.75));
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.1) brightness(0.82);
}

.about-content p {
  max-width: 660px;
  font-size: 1.1rem;
}

.about-lines {
  display: grid;
  max-width: 620px;
  margin-top: 2.1rem;
  border-top: 1px solid var(--line);
}

.about-lines span {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.authority-section {
  padding: 0;
  background: var(--red);
  color: var(--text);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.22);
}

.authority-item {
  min-height: 126px;
  border-right: 1px solid rgba(255,255,255,.22);
  padding: 1.25rem;
}

.authority-item span {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 1.25rem;
  background: var(--text);
}

.authority-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-section {
  padding: 76px 0 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(226, 35, 26, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.testimonials-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(226,35,26,0.10), transparent 28%),
    linear-gradient(180deg, rgba(21,21,21,0.96), rgba(8,8,8,0.96));
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
}

.testimonials-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.28;
}

.testimonials-head,
.testimonials-grid,
.testimonials-cta,
.trust-row {
  position: relative;
  z-index: 1;
}

.testimonials-head {
  display: block;
  max-width: 820px;
  margin-bottom: 1.75rem;
}

.testimonials-head h2 {
  max-width: 760px;
  margin-bottom: 0.85rem;
  font-size: clamp(2.25rem, 4.2vw, 4.8rem);
}

.testimonials-head p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

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

.testimonial-card {
  min-height: 238px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226,35,26,0.46);
  box-shadow: 0 20px 54px rgba(226,35,26,0.12);
}

.testimonial-stars {
  margin-bottom: 1rem;
  color: #ffc341;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.testimonial-card p {
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,0.86);
  font-size: 0.98rem;
}

.testimonial-author {
  display: grid;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-author span {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.testimonial-author small {
  color: var(--muted);
}

.testimonials-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--red), #b80f0a);
  box-shadow: 0 26px 70px rgba(226,35,26,0.22);
}

.testimonials-cta strong,
.testimonials-cta span {
  display: block;
}

.testimonials-cta strong {
  font-size: 1rem;
  font-weight: 900;
}

.testimonials-cta span {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.btn-light {
  background: var(--text);
  color: var(--red);
  border-color: transparent;
}

.btn-light:hover {
  color: var(--text);
  background: #111;
  border-color: rgba(255,255,255,0.22);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.trust-row div {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  background: rgba(0,0,0,0.28);
}

.trust-row span,
.trust-row small {
  display: block;
}

.trust-row span {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-row small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Onde Comprar ─────────────────────────────────── */
.onde-comprar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.onde-comprar-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.046), rgba(255,255,255,0.016));
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.onde-comprar-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.onde-comprar-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,35,26,0.36);
  border-radius: 4px;
  background: rgba(226,35,26,0.09);
  color: var(--red);
}

.onde-comprar-icon svg {
  width: 26px;
  height: 26px;
}

.onde-comprar-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.onde-comprar-card p {
  margin-bottom: 0;
  flex: 1;
}

.onde-comprar-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── Social links ─────────────────────────────────── */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(226,35,26,0.4);
  border-radius: 4px;
  background: rgba(226,35,26,0.08);
  color: var(--red);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(226,35,26,0.22);
  border-color: var(--red);
  transform: translateY(-2px);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3.4rem;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  padding: 1.15rem 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 3rem 1.35rem 0;
}

.faq-answer p {
  margin-bottom: 0;
}

/* ── Contact section ──────────────────────────────── */
.contact-section {
  background: linear-gradient(180deg, rgba(226,35,26,0.06), transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.contact-details {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-details li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.contact-details a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.016));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8b8b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: #151515;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(226,35,26,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184,184,184,0.45);
}

.contact-btn {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  justify-content: center;
  gap: 0.6rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(184,184,184,0.55);
  margin: 0;
}

@media (max-width: 1040px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .onde-comprar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero-cards-stack { height: 380px; }
  .hero-card-badge { right: 10px; bottom: 10px; min-width: 130px; }
  .hero-card-badge strong { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
}

.final-cta {
  padding-top: 0;
}

.final-cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(226, 35, 26, 0.32);
  border-radius: 6px;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(226, 35, 26, 0.26), transparent 42%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    #0a0a0a;
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.final-cta-box h2 {
  max-width: 760px;
}

.final-cta-box p {
  max-width: 620px;
  margin-bottom: 0;
}

/* ── Floating WhatsApp ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem 0.75rem 0.9rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
  animation: wa-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) 1.5s both;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
}

.wa-float-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* pulse ring */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 700px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 0.85rem;
    border-radius: 50%;
  }
  .wa-float-label { display: none; }
}

/* ── Hover Footer ─────────────────────────────────────── */
.hover-footer {
  position: relative;
  margin: 0 24px 24px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.hf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(125% 125% at 50% 10%, rgba(15,15,17,0.9) 50%, rgba(226,35,26,0.18) 100%);
  pointer-events: none;
}

.hf-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
  padding: 3.5rem 2.5rem 2rem;
}

.hf-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
}

.hf-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.hf-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 260px;
  margin: 0;
}

.hf-heading {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.hf-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hf-links li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hf-links li svg {
  flex-shrink: 0;
  color: var(--red);
}

.hf-links a,
.hf-links span {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hf-links a:hover,
.hf-links a:focus-visible {
  color: var(--red);
}

.hf-contact {
  font-style: normal;
}

.hf-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 1.5rem;
}

.hf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hf-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
}

.hf-copy {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.hf-dev {
  font-size: 0.75rem;
  color: rgba(184,184,184,0.5);
  margin: 0;
}

.hf-dev a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hf-dev a:hover { opacity: 0.75; }

/* ── Text hover SVG ───────────────────────────────────── */
.hf-text-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(120px, 18vw, 220px);
  margin-top: -5rem;
  margin-bottom: -2.5rem;
  overflow: hidden;
  user-select: none;
  cursor: default;
}

.hf-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* stroke draw animation */
.hf-text-draw {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: hf-draw 4s ease-in-out forwards;
}

@keyframes hf-draw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1040px) {
  .hf-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hover-footer {
    margin: 0 12px 12px;
    border-radius: 14px;
  }

  .hf-inner {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .hf-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hf-text-wrap {
    display: none;
  }

  .hf-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-120px);
    opacity: 0.38;
  }
  50% {
    transform: translateY(150px);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 20px 1rem;
    background: rgba(5, 5, 5, 0.98);
    transform: translateY(-130%);
    transition: transform 0.28s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .benefits-layout,
  .about-grid,
  .faq-layout,
  .footer-grid,
  .onde-comprar-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  .hero-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .hero-proof-item:nth-child(3) {
    border-left: 0;
  }

  .hero-proof-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .scan-frame {
    min-height: 560px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-head,
  .testimonials-cta {
    grid-template-columns: 1fr;
  }

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

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 52px 0;
  }

  .brand img {
    width: 132px;
  }

  .header-shell {
    min-height: 74px;
  }

  .main-nav {
    inset: 74px 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.75rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .product-actions .btn {
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.06;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-proof-item,
  .hero-proof-item:nth-child(3) {
    border-left: 0;
  }

  .hero-proof-item + .hero-proof-item {
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .scan-frame {
    min-height: 470px;
  }

  .hero-product-main {
    width: 96%;
    right: -20%;
  }

  .hero-product-secondary {
    width: 82%;
    left: -36%;
  }

  .tech-readout {
    right: 16px;
    bottom: 16px;
  }

  .products-grid,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .product-body {
    min-height: auto;
  }

  .benefit-card {
    grid-template-columns: 1fr;
  }

  .benefit-card p {
    grid-column: auto;
  }

  .about-media {
    height: 420px;
  }

  .authority-item {
    min-height: 104px;
  }

  .testimonials-section {
    padding-top: 48px;
  }

  .testimonials-panel {
    padding: 1rem;
  }

  .testimonials-head h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .testimonials-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .faq-answer {
    padding-right: 0;
  }
}

/* ── Visual effects ───────────────────────────────────── */

/* Benefit cards — glow on hover */
.benefit-card:hover {
  box-shadow: 0 0 0 1px rgba(226,35,26,0.4),
              0 8px 40px rgba(226,35,26,0.15),
              0 24px 68px rgba(0,0,0,0.36);
}

/* FAQ items — highlight on open */
.faq-item:has(.faq-question[aria-expanded="true"]) {
  background: rgba(226,35,26,0.04);
  border-bottom-color: rgba(226,35,26,0.3);
}

/* authority section items — shimmer on hover */
.authority-item {
  transition: background 0.25s ease;
}
.authority-item:hover {
  background: rgba(255,255,255,0.07);
}

/* Onde-comprar cards — left border glow on hover */
.onde-comprar-card:hover {
  border-color: var(--red);
  box-shadow: -3px 0 0 0 var(--red),
              0 8px 32px rgba(226,35,26,0.18),
              0 24px 60px rgba(0,0,0,0.3);
}

/* section-head — red underline animate in */
.section-head.is-visible .section-code::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-top: 6px;
  animation: line-in 0.5s ease 0.3s both;
}

@keyframes line-in {
  from { width: 0; opacity: 0; }
  to   { width: 32px; opacity: 1; }
}

/* Hero stat numbers — scale in */
.hero-stat.is-visible strong {
  animation: stat-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes stat-pop {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Stagger hero stats */
.hero-stat:nth-child(1) strong { animation-delay: 0.1s; }
.hero-stat:nth-child(3) strong { animation-delay: 0.22s; }
.hero-stat:nth-child(5) strong { animation-delay: 0.34s; }

/* product-card — shimmer gradient on hover */
.product-card:hover .product-media::after {
  background: linear-gradient(180deg, transparent 50%, rgba(226,35,26,0.15) 100%);
}

/* final-cta-box — pulse border */
.final-cta-box {
  animation: border-pulse 3.5s ease-in-out infinite;
}

@keyframes border-pulse {
  0%, 100% { border-color: rgba(226,35,26,0.32); }
  50%       { border-color: rgba(226,35,26,0.65); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* WordPress/Elementor theme isolation.
   Keeps global theme colors from overriding the STARKX landing template. */
body.starkx-page-template,
body.starkx-page-template.custom-background {
  margin: 0 !important;
  color: var(--text) !important;
  background:
    radial-gradient(circle at 78% 8%, rgba(226, 35, 26, 0.18), transparent 31rem),
    linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #050505 100%) !important;
  font-family: var(--font) !important;
  overflow-x: hidden !important;
}

body.starkx-page-template *,
body.starkx-page-template *::before,
body.starkx-page-template *::after {
  box-sizing: border-box !important;
}

body.starkx-page-template a {
  color: inherit !important;
  text-decoration: none !important;
}

body.starkx-page-template .container {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.starkx-page-template h1,
body.starkx-page-template h2,
body.starkx-page-template h3 {
  color: var(--text) !important;
  font-family: var(--font) !important;
  letter-spacing: 0 !important;
}

body.starkx-page-template p,
body.starkx-page-template address,
body.starkx-page-template .faq-answer p {
  color: var(--muted) !important;
  font-family: var(--font) !important;
}

body.starkx-page-template .site-header {
  background: rgba(5, 5, 5, 0.9) !important;
  border-bottom-color: var(--line) !important;
  box-shadow: none !important;
}

body.starkx-page-template .main-nav a {
  color: rgba(255, 255, 255, 0.76) !important;
  background: transparent !important;
}

body.starkx-page-template .main-nav a:hover,
body.starkx-page-template .main-nav a:focus-visible {
  color: var(--text) !important;
}

body.starkx-page-template .btn,
body.starkx-page-template button.btn,
body.starkx-page-template a.btn {
  min-height: 48px !important;
  border-radius: 4px !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: none;
}

body.starkx-page-template .btn-primary,
body.starkx-page-template .btn-small {
  border-color: transparent !important;
  background: var(--red) !important;
  color: var(--text) !important;
  box-shadow: 0 16px 44px rgba(226, 35, 26, 0.32) !important;
}

body.starkx-page-template .btn-secondary,
body.starkx-page-template .btn-ghost {
  border-color: var(--line) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--text) !important;
}

body.starkx-page-template .faq-question,
body.starkx-page-template .faq-question:hover,
body.starkx-page-template .faq-question:focus {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--text) !important;
  box-shadow: none !important;
  outline-color: var(--red) !important;
}

body.starkx-page-template .faq-question span {
  color: var(--text) !important;
}

body.starkx-page-template .faq-question svg {
  stroke: var(--red) !important;
}

body.starkx-page-template .product-card,
body.starkx-page-template .benefit-card,
body.starkx-page-template .scan-frame,
body.starkx-page-template .final-cta-box {
  border-color: var(--line) !important;
  background-color: transparent !important;
}

body.starkx-page-template .authority-section {
  background: var(--red) !important;
}

body.starkx-page-template .authority-item p {
  color: var(--text) !important;
}

@media (max-width: 700px) {
  body.starkx-page-template .container {
    width: min(100% - 28px, 1180px) !important;
  }
}

/* Premium distributors static page */
.static-distributors-page .site-header .header-shell,
.starkx-distributors-page .site-header .header-shell {
  grid-template-columns: auto 1fr auto;
}
.static-distributors-page .distributors-nav,
.starkx-distributors-page .distributors-nav {
  display: flex;
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.premium-dealers-hero,
.distributors-hero {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  background: radial-gradient(circle at 82% 22%, rgba(226, 35, 26, 0.24), transparent 32%), linear-gradient(180deg, rgba(255,255,255,0.03), transparent 42%), #050505;
}
.premium-dealers-hero::before,
.distributors-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.88), transparent 86%);
}
.distributors-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.dealers-hero-card,
.distributors-panel {
  min-height: 380px;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(226, 35, 26, 0.2), transparent 52%), radial-gradient(circle at 35% 20%, rgba(255,255,255,0.08), transparent 34%), #090909;
  box-shadow: 0 30px 90px rgba(0,0,0,0.52);
}
.dealers-hero-logo,
.distributors-panel span {
  color: rgba(255,255,255,0.08);
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.78;
}
.dealers-hero-card strong,
.distributors-panel strong {
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 0.95;
}
.dealers-hero-card span,
.distributors-panel small {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dealers-showcase-section { background: linear-gradient(180deg, #050505, #090909 42%, #050505); }
.distributors-section-header { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.dealers-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.035);
}
.dealers-toolbar span,
.dealers-toolbar a {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.dealers-toolbar a { color: var(--red); }
.dealers-showcase-grid,
.distributors-art-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}
.dealer-showcase-card,
.dealer-art-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.016));
  box-shadow: 0 18px 52px rgba(0,0,0,0.32);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.dealer-showcase-card:hover,
.dealer-art-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 35, 26, 0.55);
  box-shadow: 0 26px 70px rgba(0,0,0,0.46), 0 0 34px rgba(226,35,26,0.13);
}
.dealer-art-link,
.dealer-art-card img { display: block; }
.dealer-showcase-card img,
.dealer-art-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.dealer-card-footer {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}
.dealer-card-footer span {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dealer-wa-btn {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  font-size: 0.72rem;
}
.dealers-final-section { padding-top: 2rem; }
@media (max-width: 1180px) {
  .dealers-showcase-grid,
  .distributors-art-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1040px) {
  .distributors-hero-grid { grid-template-columns: 1fr; }
  .dealers-hero-card,
  .distributors-panel { min-height: 280px; }
}
@media (max-width: 820px) {
  .static-distributors-page .distributors-nav,
  .starkx-distributors-page .distributors-nav { display: none; }
  .static-distributors-page .site-header .header-shell,
  .starkx-distributors-page .site-header .header-shell { grid-template-columns: auto auto; }
  .dealers-showcase-grid,
  .distributors-art-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dealers-toolbar { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .premium-dealers-hero,
  .distributors-hero { padding-top: 112px; }
  .dealers-showcase-grid,
  .distributors-art-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
}
/* End premium distributors static page */

/* Dealers hero workshop image */
.dealers-hero-image-card {
  position: relative;
  min-height: 380px;
  padding: 0;
  overflow: hidden;
  align-content: stretch;
  background: #050505;
}

.dealers-hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.05) saturate(1.04);
}

.dealers-hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.72) 100%),
    radial-gradient(circle at 70% 20%, rgba(226,35,26,0.18), transparent 38%);
}

.dealers-hero-image-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 1.8rem);
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 2;
  display: grid;
  gap: 0.25rem;
}

.dealers-hero-image-caption span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dealers-hero-image-caption strong {
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 0.98;
}

@media (max-width: 1040px) {
  .dealers-hero-image-card,
  .dealers-hero-image-card img {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .dealers-hero-image-card,
  .dealers-hero-image-card img {
    min-height: 250px;
  }
}
/* End dealers hero workshop image */

/* Supplier cards section */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.supplier-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 18px 52px rgba(0,0,0,0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.supplier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226,35,26,0.5);
  box-shadow: 0 26px 70px rgba(0,0,0,0.46), 0 0 32px rgba(226,35,26,0.12);
}

.supplier-logo-box {
  height: 160px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 6px;
  background: #fff;
}

.supplier-logo {
  display: block;
  width: 100%;
  max-height: 124px;
  object-fit: contain;
}

.supplier-tag {
  width: fit-content;
  padding: 0.48rem 0.7rem;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.supplier-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.12;
}

.supplier-infos {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.supplier-infos p {
  margin: 0;
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.supplier-infos strong {
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplier-wa {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 1180px) {
  .suppliers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .suppliers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .suppliers-grid { grid-template-columns: 1fr; }
  .supplier-card { min-height: auto; }
}
/* End supplier cards section */
/* ── STÄRKX 404 ───────────────────────────────────── */
.not-found-hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 22%, rgba(226,35,26,0.22), transparent 36%), linear-gradient(180deg, #050505 0%, #090909 50%, #050505 100%);
}
.not-found-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  pointer-events: none;
}
.not-found-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.not-found-copy h1 {
  max-width: 780px;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}
.not-found-panel {
  min-height: 390px;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(226,35,26,0.22), rgba(255,255,255,0.025) 42%, rgba(0,0,0,0.65)), #0a0a0a;
  box-shadow: 0 34px 90px rgba(0,0,0,0.42), 0 0 55px rgba(226,35,26,0.12);
  overflow: hidden;
}
.not-found-panel span {
  color: rgba(255,255,255,0.08);
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 950;
  line-height: 0.75;
}
.not-found-panel strong {
  color: var(--text);
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 0.95;
}
.not-found-panel small {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.supplier-wa {
  justify-content: center;
  text-align: center;
  white-space: normal;
}
@media (max-width: 900px) {
  .not-found-grid { grid-template-columns: 1fr; }
  .not-found-panel { min-height: 280px; }
}
@media (max-width: 520px) {
  .not-found-hero { padding-top: 112px; }
  .not-found-copy h1 { font-size: clamp(2.7rem, 17vw, 4.8rem); }
}
/* STÄRKX requested refinements */
.site-header,
body.starkx-page-template .site-header {
  background: #050505 !important;
  border-bottom-color: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

.header-shell {
  background: #050505;
}

.static-distributors-page .distributors-nav,
.starkx-distributors-page .distributors-nav {
  display: flex;
}
/* Keep short heading phrases together */
.heading-nowrap {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .heading-nowrap {
    white-space: normal;
  }
}
