:root {
  --background: #f8f8f6;
  --foreground: #202426;
  --card: #ffffff;
  --primary: #e23b2f;
  --primary-hover: #c92f24;
  --primary-foreground: #ffffff;
  --secondary: #eef0ed;
  --muted: #e9ebe8;
  --muted-foreground: #657074;
  --border: #dfe2de;
  --dark: #24292b;
  --radius: 1rem;
  --container: 1120px;
  --font: "DM Sans", system-ui, sans-serif;
  --heading: "Space Grotesk", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: #fff;
  color: var(--foreground);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
  outline: 2px solid var(--primary);
}
.hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.topbar {
  background: linear-gradient(90deg, #b80000 0%, #dd0000 48%, #e23b2f 100%);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  flex-wrap: nowrap;
}
.topbar-claim {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-claim-text {
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: .95;
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  height: 100%;
}
.topbar a { color: #fff; }
.topbar a:hover { opacity: .92; }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1;
  border: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.topbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.topbar a.topbar-cta { opacity: 1; }
.topbar-wa {
  background: #25d366;
  color: #fff;
}
.topbar a.topbar-wa:hover {
  background: #1ebe57;
  opacity: 1;
}
.topbar-catalog {
  background: rgba(255,255,255,.96);
  color: #c01712;
}
.topbar a.topbar-catalog {
  color: #c01712;
}
.topbar a.topbar-catalog:hover {
  background: #fff;
  color: #a9130f;
  opacity: 1;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1;
  opacity: .92;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .01em;
  white-space: nowrap;
  line-height: 1;
  opacity: .95;
}
.topbar-phone-ico {
  font-size: 13px;
  line-height: 1;
}
.topbar-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.28);
  display: block;
  flex: 0 0 auto;
  align-self: center;
}
.lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 2px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
}
.lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: auto;
  height: 26px;
  padding: 0 8px 0 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,.88);
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lang-flag {
  display: block;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.lang a.is-on, .lang a:hover {
  background: #fff;
  color: #c01712;
  border-color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(223,226,222,.65);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(223,226,222,.9);
  box-shadow: 0 10px 30px rgba(32,36,38,.06);
}
.header-inner,
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  height: 80px;
  position: relative;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}
.brand-logo {
  width: auto;
  height: 54px;
  max-width: min(210px, 42vw);
  object-fit: contain;
  transition: height .2s ease;
}
.site-header.is-scrolled .brand-logo { height: 48px; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(238,240,237,.72);
  border: 1px solid rgba(223,226,222,.85);
}
.nav-link,
.nav-link-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color .15s ease, background .15s ease, box-shadow .15s ease;
}
.nav-link:hover,
.nav-link-btn:hover,
.nav-link.is-on,
.nav-link-btn.is-on,
.nav-item.is-on > .nav-link-btn {
  color: var(--foreground);
  background: #fff;
  box-shadow: 0 2px 10px rgba(32,36,38,.06);
}
.nav-link.is-on,
.nav-link-btn.is-on,
.nav-item.is-on > .nav-link-btn {
  color: var(--primary);
}
.nav-chevron {
  opacity: .75;
  transition: transform .2s ease;
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron,
.nav-item.is-open .nav-chevron {
  transform: rotate(180deg);
}
.nav-item {
  position: relative;
}
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(223,226,222,.95);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(32,36,38,.12);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-sub::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(223,226,222,.95);
  border-top: 1px solid rgba(223,226,222,.95);
  transform: translateX(-50%) rotate(45deg);
}
.nav-sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--muted-foreground);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-sub a:hover,
.nav-sub a.is-on {
  background: var(--secondary);
  color: var(--primary);
}
.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub,
.nav-item.is-open .nav-sub {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-toggle {
  display: none;
  border: 0;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
  color: var(--foreground);
  margin-left: auto;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(32,36,38,.08);
  border: 1px solid rgba(223,226,222,.9);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24,28,30,.42);
  backdrop-filter: blur(2px);
  z-index: 45;
}
body.nav-open { overflow: hidden; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #e23b2f 0%, #c92f24 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(226,59,47,.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c92f24 0%, #b5281f 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(226,59,47,.28);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark {
  background: var(--foreground);
  color: #fff;
}
.header-cta {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 12px;
}
.header-cta-desktop { display: inline-flex; }
.nav-mobile-cta { display: none; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 18px;
}
.lead {
  color: var(--muted-foreground);
  line-height: 1.7;
}
.hero .lead {
  max-width: 540px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20,25,28,.94) 0%, rgba(20,25,28,.72) 37%, rgba(20,25,28,.12) 75%),
    url("/img/antislip-hero.png") center/cover;
}
.hero .container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 80px 0;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e53b2d;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .98;
  font-size: clamp(42px, 7vw, 72px);
  max-width: 720px;
  margin: 0 0 22px;
}
.hero h1 em {
  font-style: normal;
  color: #e53b2d;
}
.hero p {
  max-width: 520px;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding: 80px 0; }
.section.alt { background: var(--secondary); }
.section.dark {
  background: var(--dark);
  color: #fff;
}
.section.dark .lead { color: rgba(255,255,255,.7); }

.grid-2 {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: end;
}
.grid-2.center { align-items: center; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 28px;
  border: 1px solid var(--border);
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-weight: 800;
}
.stat-card h3 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -.04em;
}
.stat-card p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}
.stat-big {
  font-family: var(--heading);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--primary);
  line-height: 1;
  margin: 0 0 8px;
}

.product-card {
  border-radius: 2rem;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.product-card.tone-a { background: #e6e7e2; }
.product-card.tone-b { background: #e9eef0; }
.product-card.tone-c { background: #f0e2d8; }
.product-card.tone-d { background: #eef0ed; }
.product-number {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--muted-foreground);
  margin-bottom: 28px;
}
.product-card h3 {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 0 0 12px;
}
.product-card p {
  color: var(--muted-foreground);
  margin: 0 0 24px;
  flex: 1;
}
.product-card a {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: 0; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--heading);
  font-weight: 900;
}
.step h3 {
  margin: 0 0 6px;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.step p { margin: 0; color: var(--muted-foreground); font-size: 14px; }

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.logo-row span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  padding: 18px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #dce0e4;
  background-image: url("/img/page-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--foreground);
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--border);
}
.page-hero::before,
.page-hero::after { display: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--heading);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 6px 0 0;
  line-height: 1.15;
  color: var(--foreground);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.breadcrumb a:hover { color: var(--foreground); }
.breadcrumb .current { color: var(--primary); }

.prose {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 36px;
}
.prose h3 {
  font-family: var(--heading);
  color: var(--primary);
  font-size: 20px;
  margin: 1.5rem 0 .6rem;
  letter-spacing: -.03em;
}
.prose p, .prose li {
  color: #3a4246;
  margin: 0 0 1rem;
}
.prose ul { padding-left: 1.2rem; }
.prose img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
}
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.video-grid h4,
.video-card-title {
  font-family: var(--heading);
  text-align: center;
  margin: 0 0 10px;
}
.ratio-16x9 {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
  background: #000;
}
.ratio-16x9 iframe { width: 100%; height: 100%; border: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.field {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 1rem;
  padding: 14px 16px;
  margin: 0 0 12px;
  color: var(--foreground);
}
.field:focus {
  outline: 2px solid rgba(226,59,47,.25);
  border-color: var(--primary);
}
.flash {
  background: #e8f6ec;
  color: #146c2e;
  border-radius: 1rem;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.contact-boxes {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.contact-box {
  background: var(--secondary);
  border-radius: 1rem;
  padding: 16px;
  white-space: pre-line;
  font-size: 14px;
}
.contact-box strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: center;
}
.cta-panel .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-weight: 800;
  font-size: 22px;
  font-family: var(--heading);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #14181a 0%, #1b2023 42%, #121618 100%);
  color: #b8c0c4;
  padding: 0 0 0;
  margin-top: 8px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(226,59,47,.22) 0%, transparent 70%);
  pointer-events: none;
}
.site-footer .container {
  position: relative;
  z-index: 1;
  display: block;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .85fr .85fr 1.2fr;
  gap: 40px 32px;
  padding: 56px 0 40px;
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.footer-logo-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.footer-logo {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}
.footer-tagline {
  margin: 0 0 22px;
  max-width: 300px;
  line-height: 1.7;
  color: #9aa8ae;
  font-size: 14px;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.footer-cta {
  padding: 12px 18px;
  font-size: 12px;
}
.footer-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #e8ecef;
  font-size: 12px;
  font-weight: 700;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.footer-catalog:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.24);
  color: #fff;
}
.site-footer h3 {
  font-family: var(--heading);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 0 0 18px;
}
.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin: 0 0 6px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 0;
  color: #a8b2b8;
  font-weight: 600;
  font-size: 14px;
  transition: color .15s ease, transform .15s ease;
}
.footer-links a::before {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width .15s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-links a:hover::before {
  width: 10px;
}
.footer-contact li { margin: 0 0 2px; }
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #a8b2b8;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  transition: color .15s ease, transform .15s ease;
}
.footer-contact-link:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-contact-icon {
  flex-shrink: 0;
  opacity: .72;
  color: #8b9498;
  transition: color .15s ease, opacity .15s ease;
}
.footer-contact-link:hover .footer-contact-icon {
  opacity: 1;
  color: #fff;
}
.footer-contact-link-wa:hover .footer-contact-icon {
  color: #25d366;
}
.footer-col-contact .footer-contact-link span {
  word-break: break-word;
}
.site-footer a { color: inherit; }
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #fff;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0 24px;
  font-size: 13px;
  color: #7f8a90;
}
.footer-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(226,59,47,.16);
  border: 1px solid rgba(226,59,47,.35);
  color: #ffb4ad;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #8b9498;
  font-weight: 600;
  font-size: 13px;
}
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 1100px) {
  .nav-link, .nav-link-btn { padding: 0 11px; font-size: 12px; }
  .topbar-claim-text { font-size: 11px; }
  .topbar-actions { gap: 8px; }
  .header-cta { padding: 11px 16px; }
}
@media (max-width: 980px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, calc(100vw - 48px));
    margin: 0;
    padding: 88px 18px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    background: rgba(255,255,255,.98);
    border-left: 1px solid rgba(223,226,222,.95);
    box-shadow: -20px 0 50px rgba(32,36,38,.12);
    z-index: 48;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav-main {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: var(--secondary);
  }
  .nav-link,
  .nav-link-btn {
    width: 100%;
    justify-content: flex-start;
    height: auto;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
  }
  .nav-link.is-on,
  .nav-link-btn.is-on,
  .nav-item.is-on > .nav-link-btn {
    box-shadow: none;
    background: #fff;
  }
  .nav-item { width: 100%; }
  .nav-sub {
    display: none;
    position: static;
    transform: none;
    min-width: 0;
    margin: 4px 0 0;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    border-radius: 12px;
    background: rgba(255,255,255,.72);
  }
  .nav-sub::before { display: none; }
  .nav-item.is-open .nav-sub { display: block; }
  .nav-item:hover .nav-sub { display: none; }
  .nav-item.is-open:hover .nav-sub { display: block; }
  .nav-toggle { display: inline-flex; }
  .header-cta-desktop { display: none; }
  .nav-mobile-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: auto;
  }
  .grid-2, .grid-3, .grid-4, .form-grid, .cta-panel, .video-grid, .logo-row {
    grid-template-columns: 1fr;
  }
  .hero, .hero .container { min-height: 520px; }
  .topbar .container {
    height: auto;
    min-height: 0;
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 8px;
  }
  .topbar-claim {
    flex: 1 1 100%;
  }
  .topbar-claim-text {
    white-space: normal;
  }
  .topbar-actions {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: auto;
    gap: 8px 10px;
  }
  .topbar-sep { display: none; }
  .topbar-phone,
  .topbar-link,
  .lang { height: auto; }
  .brand-logo { height: 44px; }
  .header-inner,
  .site-header .container { height: 68px; }
}
@media (max-width: 640px) {
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-quick,
  .contact-offices,
  .contact-dealers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
  .footer-tagline { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { gap: 14px; }
  .page-hero { padding: 42px 0 38px; }
  .ig-item { flex-basis: calc((100% - 8px) / 2); }
  .ig-feed { padding: 0 40px; }
}

.home-slider-wrap {
  padding: 20px 0 0;
}
.home-slider {
  position: relative;
  overflow: hidden;
  background: #d9d9d9;
  width: 100%;
  aspect-ratio: 1600 / 508;
  height: auto;
  min-height: 0;
  border-radius: 1rem;
}
.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
.home-slide.is-on {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.home-slide > img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  margin: 0;
}
.home-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  color: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.home-slider-preview {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .35s ease;
}
.home-slider-btn:hover .home-slider-preview { opacity: 1; }
.home-slider-arr {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 28px;
  line-height: 70px;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}
.home-slider-btn:hover { background: rgba(0,0,0,.28); }
.home-slider-btn.prev { left: 20px; }
.home-slider-btn.next { right: 20px; }

.home-intro { padding-top: 48px; }
.home-heading {
  font-family: var(--heading);
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.25;
  max-width: 920px;
  margin: 0 auto 36px;
}
.home-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 36px;
  align-items: start;
}
.home-bullets {
  margin: 0;
  padding-left: 1.2rem;
  color: #3a4246;
  font-size: 16px;
  line-height: 1.75;
}
.home-bullets li { margin: 0 0 12px; }
.home-video h3 {
  text-align: center;
  font-family: var(--heading);
  font-size: 18px;
  margin: 12px 0 0;
}
.home-cards-wrap { padding: 56px 0; }
.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.home-card {
  text-align: center;
}
.home-card h3 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 16px;
}
.home-card img {
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 10px 28px rgba(32,36,38,.12);
}
.home-card p {
  margin: 16px 0 0;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.home-card p a:hover { color: var(--primary); }
.home-news { text-align: center; padding-top: 40px; }
.home-news-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--heading);
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.home-news-title::before,
.home-news-title::after {
  content: "";
  height: 1px;
  width: min(140px, 18vw);
  background: var(--border);
}
.home-news-sub {
  font-family: var(--heading);
  font-size: 22px;
  margin: 0 0 22px;
}
.ig-feed {
  position: relative;
  margin: 0 0 22px;
  padding: 0 48px;
}
.ig-viewport { overflow: hidden; }
.ig-track {
  display: flex;
  gap: 8px;
  transition: transform .35s ease;
}
.ig-item {
  flex: 0 0 calc((100% - 40px) / 6);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: .6rem;
  background: var(--secondary);
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-item:hover img { transform: scale(1.04); }
.ig-item img { transition: transform .35s ease; }
.ig-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16,24,32,.12);
  color: var(--foreground);
  font-size: 22px;
  cursor: pointer;
}
.ig-nav.prev { left: 0; }
.ig-nav.next { right: 0; }
.ig-more { display: inline-flex; }

.about-top {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 36px;
  align-items: start;
}
.about-copy {
  overflow: hidden;
  color: #3a4246;
  font-size: 16px;
  line-height: 1.75;
}
.about-copy p { margin: 0 0 14px; }
.about-cert-link {
  float: left;
  margin: 0 18px 12px 0;
  cursor: zoom-in;
}
.about-cert {
  display: block;
  width: 160px;
  height: auto;
  border-radius: .5rem;
  box-shadow: 0 8px 24px rgba(32,36,38,.12);
}
.about-video h3 {
  font-family: var(--heading);
  font-size: 16px;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.about-heading {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 48px 0 20px;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.about-gallery a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: .75rem;
  background: var(--secondary);
  cursor: zoom-in;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-posters {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
.about-posters a { display: block; cursor: zoom-in; }
.about-posters img {
  width: 100%;
  height: auto;
  border-radius: .75rem;
  border: 1px solid var(--border);
}

.products-lead { margin: 0 0 8px; }
.products-heading {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 40px 0 20px;
}
.pack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pack-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 18px 12px 16px;
  text-align: center;
}
.pack-card img {
  width: auto;
  height: 180px;
  max-width: 100%;
  margin: 0 auto 12px;
  object-fit: contain;
}
.pack-card h3 {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.system-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.system-photo {
  display: block;
  background: #f3f3f1;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.system-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.system-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.system-body h3 {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.system-body p { margin: 0; color: var(--muted-foreground); font-size: 13px; line-height: 1.5; }
.system-surfaces { font-size: 12px !important; }
.system-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--secondary);
  color: var(--foreground);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.system-btn {
  margin-top: auto;
  padding: 10px 14px;
  font-size: 12px;
}
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 4px 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 14px;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.product-gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: .6rem;
  background: var(--secondary);
  cursor: zoom-in;
}
.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 22px;
}
.how-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--heading);
  margin-bottom: 14px;
}
.how-card img {
  width: 100%;
  height: auto;
  margin: 0 0 14px;
  border-radius: .4rem;
}
.how-card h3 {
  font-family: var(--heading);
  font-size: 18px;
  margin: 0 0 8px;
}
.how-card p { margin: 0; color: var(--muted-foreground); font-size: 14px; line-height: 1.65; }
.tech-split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.tech-photo {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
}
.tech-kicker {
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.tech-copy h3 {
  font-family: var(--heading);
  font-size: 24px;
  margin: 0 0 14px;
}
.tech-copy p { margin: 0 0 12px; color: #3a4246; line-height: 1.7; }
.tech-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.tech-lists h3 {
  font-family: var(--heading);
  font-size: 18px;
  margin: 0 0 10px;
}
.tech-lists ul { margin: 0; padding-left: 1.1rem; color: #3a4246; line-height: 1.7; }
.tech-article p { color: #3a4246; line-height: 1.75; }

.legal-intro {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}
.legal-intro p,
.legal-page p,
.legal-article p { color: #3a4246; line-height: 1.75; }
.legal-penalties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 8px;
}
.legal-penalties article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 16px;
}
.legal-penalties strong {
  display: block;
  font-family: var(--heading);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 4px;
}
.legal-penalties span { font-size: 13px; color: var(--muted-foreground); }
.legal-gazette {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 18px;
  text-align: center;
}
.legal-gazette img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 14px;
  border-radius: .5rem;
}
.legal-std {
  columns: 1;
  margin: 0 0 28px;
  padding-left: 1.15rem;
  color: #3a4246;
  line-height: 1.7;
}
.legal-std li { margin: 0 0 8px; }
.legal-sub {
  font-family: var(--heading);
  font-size: 22px;
  margin: 8px 0 16px;
}
.refs-lead {
  color: #3a4246;
  line-height: 1.7;
  font-size: 17px;
  margin: 0 0 8px;
}
.refs-count {
  color: var(--muted-foreground);
  font-size: 13px;
  margin: 0 0 28px;
}
.refs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.refs-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  min-height: 112px;
  padding: 16px 14px;
  transition: box-shadow .2s ease, border-color .2s ease;
  cursor: zoom-in;
}
.refs-grid a:hover {
  border-color: #cfd6da;
  box-shadow: 0 8px 22px rgba(16, 24, 32, .08);
}
.refs-grid img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.franchise-lead {
  color: #3a4246;
  line-height: 1.75;
  font-size: 16px;
  margin: 0 0 14px;
}
.franchise-page .form-grid { align-items: start; }
.franchise-visual {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--secondary);
}
.franchise-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-page .form-grid { align-items: start; }
.contact-visual img { aspect-ratio: 940 / 350; object-fit: cover; }
.captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 16px 0 16px;
}
.captcha-img {
  display: block;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #eef3f0;
  flex: 0 0 auto;
}
.captcha-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted, #657074);
  min-width: 140px;
  flex: 1;
}
.captcha-label .field { margin: 0; }
.franchise-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 22px;
}
.franchise-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.franchise-fields .span-2 { grid-column: 1 / -1; }
.franchise-fields .field { margin-bottom: 12px; }
.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 36px;
}
.contact-quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 18px 20px;
}
.contact-quick-card span {
  display: block;
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}
.contact-quick-card strong {
  font-family: var(--heading);
  font-size: 18px;
  color: var(--foreground);
}
.contact-quick-card:hover strong { color: var(--primary); }
.contact-offices,
.contact-dealers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.contact-dealers { grid-template-columns: repeat(3, 1fr); }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 20px;
}
.contact-card h3 {
  font-family: var(--heading);
  font-size: 17px;
  margin: 0 0 10px;
}
.contact-card p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #3a4246;
  line-height: 1.55;
}
.contact-card a { color: var(--primary); }
.contact-company { font-weight: 600; color: var(--foreground) !important; }

@media (max-width: 980px) {
  .home-intro-grid,
  .home-cards,
  .about-top,
  .how-grid,
  .tech-split,
  .tech-lists,
  .legal-intro,
  .legal-penalties { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(3, 1fr); }
  .franchise-fields { grid-template-columns: 1fr; }
  .contact-quick,
  .contact-offices,
  .contact-dealers { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-slider-btn { width: 48px; height: 48px; }
  .home-slider-arr { font-size: 22px; line-height: 48px; }
  .ig-item { flex-basis: calc((100% - 24px) / 4); }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-cert-link { float: none; display: block; margin: 0 auto 18px; width: 160px; }
  .about-cert { margin: 0; }
  .pack-grid,
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .product-gallery { grid-template-columns: repeat(2, 1fr); }
  .pack-card img { height: 140px; }
}

/* Lightbox */
.lb-open { overflow: hidden; }
.lb {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 12, .88);
  padding: 24px;
}
.lb.is-on { display: flex; }
.lb-img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-x {
  top: 16px;
  right: 16px;
  transform: none;
  font-size: 32px;
}
@media (max-width: 640px) {
  .lb-btn { width: 40px; height: 40px; font-size: 24px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

