/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #16161a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-mute: #71717a;
  --accent: #e11d2e;
  --accent-dark: #a30c1c;
  --accent-soft: rgba(225, 29, 46, 0.12);
  --accent-glow: rgba(225, 29, 46, 0.32);

  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --max: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.logo-wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
  color: #fff;
  line-height: 1;
  text-transform: lowercase;
}
.logo-badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 11px;
  padding: 5px 8px 4px;
  letter-spacing: 0.08em;
  border-radius: 3px;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: #fff;
  margin-top: 4px;
  text-align: center;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.nav {
  display: flex;
  gap: 36px;
  font-weight: 600;
  font-size: 15px;
}
.nav a {
  position: relative;
  padding: 6px 0;
  color: var(--text);
  opacity: .9;
  transition: opacity .15s;
}
.nav a:hover { opacity: 1; }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--accent);
  transition: background .15s, transform .15s, border-color .15s;
  position: relative;
}
.icon-btn:hover { background: var(--accent-soft); border-color: var(--accent); transform: translateY(-1px); }
.icon-btn .badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 6px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .12s ease, box-shadow .2s ease, background .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}
.btn-primary:hover { background: #c8101f; transform: translateY(-1px); box-shadow: 0 14px 34px -10px var(--accent-glow); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 20px 36px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 96px;
  padding-bottom: 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 110% 50%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #0d0d10 60%, #0a0a0c 100%);
  z-index: -2;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 80% 50%, #000 30%, transparent 75%);
  z-index: -1;
}
.hero-diagonal {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-diagonal .shard {
  position: absolute;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 70%, rgba(0,0,0,0) 100%);
  opacity: 0.92;
  transform: skewX(-22deg);
}
.hero-diagonal .shard.a { top: -40%; left: -10%; width: 22%; height: 180%; opacity: 0.85; }
.hero-diagonal .shard.b { top: -40%; left: 6%; width: 6%; height: 180%; opacity: 0.45; background: linear-gradient(135deg, #6b0411, #1a0306); }
.hero-diagonal .shard.c { top: -40%; left: 14%; width: 3%; height: 180%; opacity: 0.6; }
.hero-diagonal .stripes {
  position: absolute;
  top: -10%; left: -8%;
  width: 36%; height: 130%;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 14px);
  transform: skewX(-22deg);
  mask-image: linear-gradient(135deg, #000 30%, transparent 75%);
}
.hero-dots {
  position: absolute;
  width: 140px; height: 140px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.35) 1.2px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.hero-dots.tl { top: 120px; left: calc(var(--pad-x) + 200px); }
.hero-dots.mid { top: 40%; left: 38%; width: 100px; height: 100px; opacity: 0.35; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.55;
}
.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  align-items: start;
}
.hero-stats .stat strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  display: block;
}
.hero-stats .stat span {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* Hero showcase right side */
.hero-showcase {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.hero-showcase .panel {
  position: absolute;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #18181b 0%, #0e0e10 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-showcase .panel.main {
  inset: 0;
  display: flex;
  flex-direction: column;
}
.hero-showcase .panel .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.hero-showcase .panel .head .dots-row {
  display: flex; gap: 6px;
}
.hero-showcase .panel .head .dots-row span {
  width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,0.1);
}
.hero-showcase .panel .head .dots-row span.r { background: var(--accent); }
.hero-showcase .panel .head .label {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
.product-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px dashed var(--line);
}
.product-row:last-child { border-bottom: none; }
.product-row .thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(45deg, rgba(225,29,46,0.18) 0 6px, rgba(225,29,46,0.04) 6px 12px),
    var(--bg-3);
  border: 1px solid var(--line);
  flex: 0 0 auto;
  display: grid; place-items: center;
  color: var(--accent);
}
.product-row .info { flex: 1; min-width: 0; }
.product-row .info .name {
  font-weight: 600; font-size: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-row .info .meta {
  font-size: 12px; color: var(--text-mute);
  font-family: var(--f-mono);
  margin-top: 2px;
}
.product-row .price {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  white-space: nowrap;
}
.hero-showcase .floating-card {
  position: absolute;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.hero-showcase .floating-card.delivery {
  bottom: -20px; left: -20px;
  animation: float 6s ease-in-out infinite;
}
.hero-showcase .floating-card.support {
  top: 30px; right: -30px;
  animation: float 6s ease-in-out infinite reverse;
}
.floating-card .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
.floating-card .label { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--f-mono); }
.floating-card .value { font-weight: 700; font-size: 14px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: 28px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  animation: bob 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Services ---------- */
.section {
  padding-block: clamp(72px, 9vw, 128px);
  position: relative;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head .title-block { max-width: 720px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-top: 14px;
}
.section-head p {
  color: var(--text-dim);
  margin-top: 16px;
  font-size: 17px;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  padding: 28px 24px 30px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #1a0508 0%, #2a0a10 100%);
  border: 1px solid rgba(225, 29, 46, 0.35);
  overflow: hidden;
  transition: transform .25s ease, border-color .2s, box-shadow .3s;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(225,29,46,0.35), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px);
  opacity: .8;
  z-index: -1;
  transition: opacity .25s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 24px 60px -30px var(--accent-glow); }
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
}
.service-card h3 {
  font-size: 22px;
  margin-top: 24px;
  line-height: 1.1;
}
.service-card p {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.service-card .arrow {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: .85;
  transition: gap .2s;
}
.service-card:hover .arrow { gap: 14px; }

/* ---------- Stats strip ---------- */
.stats-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(225,29,46,0.04));
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.stat-cell .num .pct { color: var(--accent); }
.stat-cell .lbl {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 14px;
  display: block;
}

/* ---------- Catalog ---------- */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all .15s;
}
.cat-tab:hover { color: var(--text); border-color: var(--line-strong); }
.cat-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6); }
.product-card .ph {
  aspect-ratio: 4 / 3;
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 8px, transparent 8px 16px),
    var(--bg-3);
  display: grid; place-items: center;
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--line);
}
.product-card .ph .tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
}
.product-card .ph .glyph {
  font-size: 56px;
  color: rgba(255,255,255,0.22);
}
.product-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .brand {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.product-card .name { font-weight: 600; font-size: 15px; line-height: 1.3; }
.product-card .specs { font-size: 12px; color: var(--text-mute); margin-top: 4px; }
.product-card .foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.product-card .price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
}
.product-card .price small { font-family: var(--f-body); font-weight: 500; color: var(--text-mute); font-size: 11px; display: block; margin-bottom: -2px; }
.product-card button.add {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  transition: background .15s, color .15s;
}
.product-card button.add:hover { background: var(--accent); color: #fff; }
.product-card button.add.added { background: #16a34a; color: #fff; }

/* ---------- Brands ---------- */
.brands-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.brands-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; gap: 24px; flex-wrap: wrap;
}
.brands-head h2 {
  font-size: clamp(24px, 3vw, 36px);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.brand-tile {
  height: 120px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  padding: 24px 28px;
  overflow: hidden;
  position: relative;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .25s;
}
.brand-tile img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  margin: auto;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.78;
  transition: filter .2s, opacity .2s, transform .2s;
}
.brand-tile:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(0,0,0,0.5);
}
.brand-tile:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.why-row:last-child { border-bottom: none; }
.why-row .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  border: 1px solid rgba(225,29,46,0.2);
}
.why-row h4 { font-size: 18px; font-weight: 700; font-family: var(--f-display); }
.why-row p { color: var(--text-dim); margin-top: 6px; font-size: 14px; line-height: 1.55; }

.why-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(225,29,46,0.18), transparent 60%),
    linear-gradient(180deg, #1a0508 0%, #0a0a0c 70%);
  display: grid; place-items: center;
}
.why-visual .center {
  text-align: center;
  padding: 32px;
}
.why-visual .center .big {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
  line-height: 1;
}
.why-visual .center .lbl {
  margin-top: 8px;
  color: var(--text-dim);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 70%);
  pointer-events: none;
}
.why-visual .corner-mark {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.why-visual .corner-mark.tl { top: 18px; left: 20px; }
.why-visual .corner-mark.br { bottom: 18px; right: 20px; }

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proc-step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.proc-step:last-child { border-right: none; }
.proc-step .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: block;
}
.proc-step h4 { font-size: 18px; font-weight: 700; }
.proc-step p { color: var(--text-dim); font-size: 13px; margin-top: 8px; line-height: 1.5; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 18px;
}
.testi-card .quote {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.testi-card .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testi-card .who .avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.testi-card .who .name { font-weight: 600; font-size: 14px; }
.testi-card .who .role { color: var(--text-mute); font-size: 12px; }
.testi-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }

/* ---------- Contact CTA ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(225,29,46,0.3);
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(225,29,46,0.2), transparent 60%),
    linear-gradient(135deg, #1a0508 0%, #0a0a0c 100%);
}
.contact-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background:
    linear-gradient(180deg, rgba(225,29,46,0.95) 0%, rgba(180,12,28,0.95) 100%);
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 20px);
  pointer-events: none;
}
.contact-left h2 { font-size: clamp(28px, 3.2vw, 44px); color: #fff; position: relative; }
.contact-left p { color: rgba(255,255,255,0.85); margin-top: 16px; font-size: 16px; max-width: 380px; position: relative; }
.contact-left .channels { display: flex; flex-direction: column; gap: 14px; position: relative; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.contact-channel .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  display: grid; place-items: center;
}
.contact-channel .label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
.contact-channel .value { font-weight: 700; font-size: 15px; }

.contact-right {
  padding: 48px;
  display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: var(--text-dim); font-family: var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #1a1a1f;
}
.field textarea { resize: vertical; min-height: 90px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success {
  padding: 18px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 10px;
  color: #4ade80;
  font-size: 14px;
  display: flex; gap: 10px; align-items: center;
}
.form-error {
  padding: 18px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.btn[disabled] { opacity: 0.65; cursor: wait; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 64px 32px;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid p { color: var(--text-dim); font-size: 14px; margin-top: 16px; line-height: 1.6; }
.footer-grid h5 { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; color: var(--text); }
.footer-grid h2.footer-h { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px; color: var(--text); }

/* Skip-to-content link — only visible when focused (Tab key) */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 12px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  width: auto;
  height: auto;
  overflow: visible;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid li { color: var(--text-dim); font-size: 14px; }
.footer-grid li a:hover { color: var(--accent); }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: all .15s;
}
.socials a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: var(--text-mute);
  font-size: 13px;
}
.footer-bottom .legal { font-family: var(--f-mono); letter-spacing: 0.06em; }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  z-index: 60;
  box-shadow: 0 14px 40px -8px rgba(37,211,102,0.5);
  transition: transform .15s;
}
.fab:hover { transform: translateY(-2px) scale(1.04); }
.fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Cart Drawer ---------- */
.drawer-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 70;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 71;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-size: 18px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); align-items: center; }
.cart-row .ph { width: 56px; height: 56px; border-radius: 8px; background: var(--bg-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); }
.cart-row .n { font-weight: 600; font-size: 14px; }
.cart-row .m { color: var(--text-mute); font-size: 12px; font-family: var(--f-mono); }
.cart-row .p { font-weight: 700; font-family: var(--f-display); }
.cart-row .qty { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.cart-row .qty button { width: 22px; height: 22px; border-radius: 4px; background: var(--bg-3); border: 1px solid var(--line); display: grid; place-items: center; font-size: 14px; }
.cart-row .qty button:hover { border-color: var(--accent); color: var(--accent); }
.cart-row .qty span { font-size: 13px; min-width: 18px; text-align: center; font-family: var(--f-mono); }
.drawer-empty { padding: 60px 20px; text-align: center; color: var(--text-mute); }
.drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.drawer-total .lbl { color: var(--text-dim); font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.drawer-total .val { font-family: var(--f-display); font-weight: 800; font-size: 22px; }

/* ---------- Hero background image ---------- */
.hero-bgimg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-bgimg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-bgimg-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(10,10,12,0.96) 28%, rgba(10,10,12,0.78) 45%, rgba(10,10,12,0.35) 65%, rgba(10,10,12,0.15) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0) 30%, rgba(10,10,12,0) 70%, rgba(10,10,12,0.65) 100%);
}
.hero-inner-single { grid-template-columns: minmax(0, 1fr) !important; }
.hero-inner-single > div { max-width: 720px; }

/* ---------- O Que Fazemos ---------- */
.wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.wwd-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.wwd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wwd-media-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.wwd-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225,29,46,0.18) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}
.wwd-content h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  margin-top: 14px;
}
.wwd-lead {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 540px;
}
.wwd-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.wwd-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.wwd-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  border: 1px solid rgba(225,29,46,0.2);
}
.wwd-points strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.wwd-points span {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 2px;
  line-height: 1.5;
}

/* ---------- Video Banner ---------- */
.video-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
}
.video-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.05) contrast(1.05);
}
.video-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.35) 0%, rgba(10,10,12,0.1) 40%, rgba(10,10,12,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.2) 50%, rgba(10,10,12,0.6) 100%);
}
.video-banner-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-block: 64px;
  width: 100%;
}
.video-banner-title {
  font-size: clamp(28px, 3.6vw, 48px);
  color: #fff;
  margin-top: 14px;
}
.video-banner p {
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
  font-size: 16px;
  max-width: 480px;
}
.video-controls {
  display: flex;
  gap: 10px;
}
.video-ctl {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .15s, border-color .15s, transform .12s;
}
.video-ctl:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

@media (max-width: 980px) {
  .wwd-grid { grid-template-columns: 1fr; gap: 32px; }
  .wwd-points { grid-template-columns: 1fr; }
  .video-banner-inner { flex-direction: column; align-items: start; }
  .hero-bgimg img { object-position: 70% center; }
  .hero-bgimg-fade {
    background:
      linear-gradient(180deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.6) 40%, rgba(10,10,12,0.95) 100%);
  }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-showcase { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid var(--line); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .proc-step:nth-child(2) { border-right: none; }
  .proc-step { border-bottom: 1px solid var(--line); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; }
  .process { grid-template-columns: 1fr; }
  .proc-step { border-right: none; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
}
