:root {
  --ink: #050706;
  --ink-soft: #0b0f0d;
  --panel: #101612;
  --panel-2: #151d18;
  --line: rgba(220, 227, 221, 0.13);
  --line-strong: rgba(115, 255, 69, 0.3);
  --green: #73ff45;
  --green-soft: #9aff66;
  --green-deep: #1d7a3d;
  --gold: #caa34b;
  --gold-soft: #eed889;
  --white: #fff;
  --silver: #dce3dd;
  --muted: #8e9a92;
  --danger: #ff7777;
  --success: #73ff45;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --container: min(1220px, calc(100% - 40px));
  --header-h: 120px;
  --ease: cubic-bezier(0.2, 0.72, 0.18, 1);
  --font-body: "Segoe UI Variable Text", "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Bahnschrift Condensed", "Arial Narrow", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-tech: "Bahnschrift", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(25, 76, 44, 0.13), transparent 34rem),
    var(--ink);
  color: var(--silver);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.intro-open {
  overflow: hidden;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(84px, 11vw, 150px) 0;
}

.section--tight {
  padding: clamp(64px, 8vw, 100px) 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
  box-shadow: 0 0 14px currentColor;
}

.display,
h1,
h2,
h3 {
  margin-top: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.3rem, 7.4vw, 7.6rem);
}

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

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 720px;
  color: #b6c0b9;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

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

.accent {
  color: var(--green);
}

.gold {
  color: var(--gold-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  z-index: 220;
  inset: 0 auto auto 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold-soft));
  box-shadow: 0 0 16px var(--green);
}

.ambient-light {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 680px;
  height: 680px;
  transform: translate3d(calc(var(--mouse-x, 50vw) - 340px), calc(var(--mouse-y, 50vh) - 340px), 0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 255, 69, 0.12) 0%, rgba(52, 176, 63, 0.055) 34%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.82;
  pointer-events: none;
  will-change: transform;
}

.intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020303;
  transition: opacity 0.75s var(--ease), visibility 0.75s;
}

.intro.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.intro__core {
  position: relative;
  width: min(660px, 86vw);
  text-align: center;
}

.intro__line {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--green);
  box-shadow: 0 0 28px 5px rgba(115, 255, 69, 0.5);
  animation: intro-line 1.3s 0.1s var(--ease) forwards;
}

.intro__logo {
  position: relative;
  width: min(360px, 64vw);
  margin-inline: auto;
  filter: brightness(0.22) saturate(0.7);
  opacity: 0;
  animation: intro-logo 1.2s 0.65s var(--ease) forwards;
}

.intro__logo img {
  width: 100%;
  background: #fff;
}

.intro__logo::after {
  position: absolute;
  inset: 0;
  transform: translateX(-150%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), rgba(115, 255, 69, 0.42), transparent);
  mix-blend-mode: screen;
  content: "";
  animation: sweep 1.1s 1s var(--ease) forwards;
}

.intro__tagline {
  margin: 24px 0 0;
  color: var(--silver);
  font-size: clamp(0.72rem, 1.7vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.44em;
  opacity: 0;
  animation: intro-tag 0.7s 1.2s forwards;
}

.intro__skip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(115, 255, 69, 0.18);
  background: rgba(5, 7, 6, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 226px;
  height: 54px;
  overflow: hidden;
  border-left: 1px solid rgba(202, 163, 75, 0.45);
  background-color: #00291b;
  background-image:
    linear-gradient(90deg, transparent 76%, #00291b 96%),
    url("../images/gallery/garanti-belgesi-7-yil.jpeg");
  background-position: 0 0;
  background-size: 520px auto;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.2);
  text-indent: -9999px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.6vw, 26px);
}

.nav a,
.header__language {
  position: relative;
  padding: 10px 0;
  color: #c2cbc5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav a::after,
.header__language::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  content: "";
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after,
.header__language:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a[aria-current="page"] {
  color: var(--white);
}

.header__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
}

.header__language {
  color: var(--white);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--green);
  color: #071007;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.28s var(--ease), background 0.28s, box-shadow 0.28s;
}

.button::after {
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transition: transform 0.65s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-soft);
  box-shadow: 0 12px 35px rgba(115, 255, 69, 0.2);
}

.button:hover::after {
  transform: translateX(110%) skewX(-18deg);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: var(--green);
  background: rgba(115, 255, 69, 0.08);
}

.button--gold {
  background: linear-gradient(120deg, #9d7626, var(--gold-soft));
  color: #080a08;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--white);
  content: "";
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 190;
  inset: 0;
  visibility: hidden;
  display: grid;
  align-items: center;
  padding: 110px max(24px, 8vw) 40px;
  background:
    radial-gradient(circle at 82% 20%, rgba(115, 255, 69, 0.12), transparent 28rem),
    rgba(4, 6, 5, 0.98);
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.7rem, 7vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s;
}

.mobile-menu.is-open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.04s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.08s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.12s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.16s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.2s; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: 0.24s; }
.mobile-menu.is-open a:nth-child(8) { transition-delay: 0.28s; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-h) + 90px) 0 80px;
  background: #030504;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 5, 4, 0.98) 0%, rgba(3, 5, 4, 0.82) 38%, rgba(3, 5, 4, 0.08) 70%),
    linear-gradient(0deg, #030504 0%, transparent 35%),
    url("../images/hero/kronshield-cinematic-car.png");
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.025);
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(115, 255, 69, 0.22) 50%, transparent 50.15%),
    repeating-linear-gradient(90deg, transparent 0 139px, rgba(255, 255, 255, 0.018) 140px);
  mask-image: linear-gradient(90deg, transparent, #000 48%, transparent 88%);
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
}

.hero__copy {
  width: min(790px, 72%);
}

.hero__copy h1 {
  max-width: 850px;
  margin-bottom: 28px;
}

.hero__copy h1 .line {
  display: block;
}

.hero__copy h1 .line--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.64);
}

.hero__copy .lead {
  max-width: 680px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  color: #d9e2dc;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero__whatsapp::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  content: "";
}

.hero__specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(900px, 100%);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.hero__spec {
  min-height: 74px;
  display: grid;
  align-content: center;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}

.hero__spec:first-child {
  border-left: 1px solid var(--line);
}

.hero__spec strong {
  color: var(--white);
  font-size: 0.92rem;
}

.hero__spec span {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll::after {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  content: "";
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item__number {
  color: var(--green);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.trust-item small {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(115, 255, 69, 0.1), transparent 180px),
    var(--panel);
  transition: transform 0.38s var(--ease), background-color 0.38s;
}

.feature-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  content: "";
  transition: transform 0.38s var(--ease);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(115, 255, 69, 0.35);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(45deg);
}

.feature-card__icon span {
  transform: rotate(-45deg);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.protection-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.protection-copy h2 {
  margin-bottom: 28px;
}

.protection-copy .tech-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.tech-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #c8d0ca;
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
}

.tech-pill::after {
  width: 8px;
  height: 8px;
  border: 1px solid var(--green);
  transform: rotate(45deg);
  content: "";
}

.car-compare {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #070a08;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.car-compare__base,
.car-compare__after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(4, 6, 5, 0.16), transparent),
    url("../images/hero/kronshield-cinematic-car.png");
  background-position: center;
  background-size: cover;
}

.car-compare__base {
  filter: grayscale(0.7) brightness(0.58) contrast(0.95);
}

.car-compare__after {
  width: var(--compare, 62%);
  overflow: hidden;
  border-right: 1px solid var(--green);
  filter: saturate(1.08) brightness(1.05) contrast(1.07);
  box-shadow: 12px 0 35px rgba(115, 255, 69, 0.12);
}

.car-compare__after::after {
  position: absolute;
  inset: 0;
  width: calc(100vw - 5vw);
  background:
    linear-gradient(105deg, transparent 52%, rgba(255, 255, 255, 0.22) 54%, transparent 57%),
    linear-gradient(0deg, rgba(115, 255, 69, 0.06), transparent);
  content: "";
  animation: film-sweep 4.5s ease-in-out infinite;
}

.car-compare__handle {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: var(--compare, 62%);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--green);
  border-radius: 50%;
  background: rgba(3, 5, 4, 0.82);
  box-shadow: 0 0 28px rgba(115, 255, 69, 0.36);
  color: var(--green);
  font-weight: 900;
  pointer-events: none;
}

.car-compare input {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.car-compare__label {
  position: absolute;
  z-index: 3;
  top: 18px;
  padding: 7px 10px;
  background: rgba(3, 5, 4, 0.76);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.car-compare__label--before {
  left: 18px;
}

.car-compare__label--after {
  right: 18px;
  color: var(--green);
}

.product-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(15, 36, 23, 0.25), transparent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1500px;
}

.product-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 22%, rgba(3, 6, 4, 0.98) 76%),
    var(--product-image, url("../images/gallery/kronshield-ambalaj.jpeg")) center/cover no-repeat;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), 0 28px 42px -28px rgba(115, 255, 69, 0.28);
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--scroll-y, 0px));
  transform-style: preserve-3d;
  transition: border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}

.product-card:hover {
  border-color: rgba(115, 255, 69, 0.42);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42), 0 32px 48px -24px rgba(115, 255, 69, 0.38);
}

.product-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.13) 43%, transparent 56%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.product-card:hover::before {
  transform: translateX(120%);
}

.product-card__content {
  position: relative;
  z-index: 2;
  transform: translateZ(35px);
}

.product-card__series {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.product-card p {
  color: #b0bbb3;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 26px;
}

.product-card__meta span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: #d2dad4;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card .button {
  width: 100%;
}

.series-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 68px;
  background: var(--line);
  border: 1px solid var(--line);
}

.series-card {
  position: relative;
  min-height: 330px;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(115, 255, 69, 0.12), transparent 22rem),
    var(--panel);
}

.series-card--diamond {
  background:
    radial-gradient(circle at 80% 15%, rgba(238, 216, 137, 0.14), transparent 22rem),
    linear-gradient(145deg, #121812, #07100b);
}

.series-card__warranty {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--gold-soft);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.8;
  opacity: 0.14;
}

.series-card h3 {
  max-width: 360px;
  margin-top: 80px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.series-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.series-card li {
  display: inline-flex;
  margin: 0 12px 8px 0;
  color: #b7c2ba;
  font-size: 0.82rem;
}

.series-card li::before {
  margin-right: 8px;
  color: var(--green);
  content: "◆";
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.technology-card {
  min-height: 290px;
  padding: 28px;
  background: linear-gradient(145deg, #101612, #090d0b);
}

.technology-card__index {
  display: block;
  margin-bottom: 74px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
}

.technology-card h3 {
  font-size: 1.25rem;
}

.technology-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  border-right: 0;
  counter-increment: process;
}

.process-step:last-child {
  border-right: 1px solid var(--line);
}

.process-step::before {
  display: block;
  margin-bottom: 74px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  content: "0" counter(process);
}

.process-step::after {
  position: absolute;
  top: 37px;
  right: -16px;
  z-index: 2;
  width: 31px;
  height: 1px;
  background: var(--green);
  content: "";
}

.process-step:last-child::after {
  display: none;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
}

.video-card {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #030403;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  background: linear-gradient(0deg, rgba(3, 5, 4, 0.95), transparent 56%);
  pointer-events: none;
}

.gallery-stack {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 22px;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s;
}

.gallery-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.gallery-card__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 24px 22px;
  background: linear-gradient(0deg, rgba(3, 5, 4, 0.95), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
}

.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial,
.blog-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
}

.testimonial__stars {
  margin-bottom: 36px;
  color: var(--gold-soft);
  letter-spacing: 0.16em;
}

.testimonial blockquote {
  margin: 0 0 36px;
  color: #d5ddd7;
  font-size: 1.02rem;
}

.testimonial footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial footer strong {
  color: var(--white);
}

.blog-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 255, 69, 0.35);
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 72px 0 28px;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.blog-card__link {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--green), var(--green)) center / 12px 1px no-repeat,
    linear-gradient(var(--green), var(--green)) center / 1px 12px no-repeat;
  content: "";
  transition: background-size 0.3s;
}

.faq-question[aria-expanded="true"]::after {
  background-size: 12px 1px, 0 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.45s var(--ease);
}

.faq-answer p {
  max-width: 850px;
  padding: 0 0 26px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 40px;
  padding: clamp(42px, 7vw, 86px);
  overflow: hidden;
  border: 1px solid rgba(115, 255, 69, 0.22);
  background:
    linear-gradient(110deg, rgba(5, 7, 6, 0.98), rgba(8, 22, 13, 0.8)),
    url("../images/hero/kronshield-cinematic-car.png") center/cover;
}

.cta-panel::after {
  position: absolute;
  right: 8%;
  bottom: -80%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(115, 255, 69, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(115, 255, 69, 0.08);
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 0;
}

.cta-panel__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.page-hero {
  position: relative;
  min-height: 74svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 120px) 0 78px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.98), rgba(3, 5, 4, 0.48)),
    url("../images/hero/kronshield-cinematic-car.png") center/cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--ink), transparent 35%),
    repeating-linear-gradient(90deg, transparent 0 149px, rgba(255, 255, 255, 0.018) 150px);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
}

.page-hero .lead {
  max-width: 720px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 8vw, 110px);
}

.prose {
  color: #b6c0b9;
}

.prose h2 {
  margin: 64px 0 24px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.prose h3 {
  margin: 42px 0 16px;
  color: var(--white);
}

.prose p,
.prose li {
  max-width: 780px;
}

.prose a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.info-panel {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.info-panel h3 {
  margin-bottom: 24px;
}

.info-panel__item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.info-panel__item strong {
  color: var(--white);
  text-align: right;
}

.data-grid,
.application-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.data-card,
.application-card,
.location-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
}

.data-card__value {
  display: block;
  margin-bottom: 58px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
}

.data-card p,
.application-card p,
.location-card p {
  color: var(--muted);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  background: rgba(115, 255, 69, 0.07);
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.comparison-table td {
  color: #aeb8b0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: #b7c1ba;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--green);
  background: rgba(115, 255, 69, 0.08);
  color: var(--white);
}

.search-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.8fr);
  gap: 12px;
  margin-bottom: 34px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #d6ded8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #0b100d;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(115, 255, 69, 0.08);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
}

.field__error {
  min-height: 1.1em;
  color: var(--danger);
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field--full {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #aeb8b0;
  font-size: 0.82rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--green);
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: var(--white);
  font-size: 1.18rem;
}

.map-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(115, 255, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 255, 69, 0.04) 1px, transparent 1px),
    #0b100d;
  background-size: 34px 34px;
  color: var(--muted);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
}

.gallery-grid .gallery-card {
  grid-column: span 4;
  grid-row: span 4;
  min-height: 0;
}

.gallery-grid .gallery-card:nth-child(1),
.gallery-grid .gallery-card:nth-child(6) {
  grid-column: span 8;
  grid-row: span 5;
}

.lightbox {
  position: fixed;
  z-index: 900;
  inset: 0;
  visibility: hidden;
  display: grid;
  place-items: center;
  padding: 70px;
  background: rgba(0, 0, 0, 0.93);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 78vh;
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 16px;
  color: var(--silver);
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.lightbox__close {
  top: 22px;
  right: 22px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
}

.lightbox__prev {
  left: 22px;
}

.lightbox__next {
  right: 22px;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: 64px;
}

.article-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 24px;
  border-left: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.018);
}

.article-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-toc a:hover {
  color: var(--green);
}

.warranty-visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.warranty-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.warranty-visual img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.warranty-visual:hover img {
  transform: scale(1.018);
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  text-align: center;
}

.error-page__code {
  margin-bottom: 12px;
  color: transparent;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(8rem, 28vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(115, 255, 69, 0.32);
}

.site-footer {
  position: relative;
  padding: 82px 0 26px;
  border-top: 1px solid var(--line);
  background: #030504;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.72fr);
  gap: 52px;
  padding-bottom: 62px;
}

.footer__about p {
  max-width: 390px;
  margin: 24px 0;
  color: var(--muted);
}

.footer__title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer__links a:hover {
  color: var(--green);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #6f7972;
  font-size: 0.72rem;
}

.footer__bottom a:hover {
  color: var(--green);
}

.floating-whatsapp {
  position: fixed;
  z-index: 180;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115, 255, 69, 0.45);
  border-radius: 50%;
  background: #0e2515;
  box-shadow: 0 0 28px rgba(115, 255, 69, 0.18);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(115, 255, 69, 0.32);
}

.floating-whatsapp::after {
  position: absolute;
  right: 68px;
  width: max-content;
  padding: 7px 10px;
  background: #101612;
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 700;
  content: attr(data-tooltip);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.floating-whatsapp:hover::after {
  opacity: 1;
}

.mobile-action-bar {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 850;
  right: 20px;
  bottom: 20px;
  width: min(490px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 13, 9, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.45s var(--ease), opacity 0.45s;
}

.cookie-banner.is-hidden {
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.84rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner .button {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.68rem;
}

[data-reveal] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.85s var(--ease), opacity 0.85s var(--ease);
}

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

.no-results {
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}

/* Premium presenter-led homepage */
.hero--presenter {
  min-height: 980px;
  align-items: stretch;
  padding: 0;
  isolation: isolate;
  background: #020604;
}

.hero--presenter::before {
  inset: 0;
  transform: none;
  background-image:
    linear-gradient(90deg, rgba(1, 5, 3, 0.99) 0%, rgba(1, 5, 3, 0.95) 28%, rgba(1, 5, 3, 0.46) 47%, rgba(1, 5, 3, 0.05) 73%),
    linear-gradient(0deg, #020604 0%, rgba(2, 6, 4, 0.08) 27%, rgba(2, 6, 4, 0.12) 76%, #020604 100%),
    url("../images/hero/kronshield-presenter-hero.png");
  background-position: center;
  background-size: cover;
  animation: hero-presenter-breathe 14s ease-in-out infinite alternate;
}

.hero--presenter::after {
  z-index: -1;
  background:
    radial-gradient(circle at 68% 38%, rgba(202, 163, 75, 0.1), transparent 17rem),
    linear-gradient(90deg, transparent 49.9%, rgba(202, 163, 75, 0.2) 50%, transparent 50.1%),
    repeating-linear-gradient(90deg, transparent 0 159px, rgba(255, 255, 255, 0.018) 160px);
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 90%, transparent);
  opacity: 0.7;
}

.hero--presenter .hero__inner {
  min-height: 980px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 220px;
}

.hero--presenter .hero__copy {
  width: 100%;
  max-width: 610px;
  padding-top: 26px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__kicker::before {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: 0 0 16px rgba(202, 163, 75, 0.48);
  content: "";
}

.hero--presenter .hero__copy h1 {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.3vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero--presenter .hero__copy h1 .line--accent {
  margin-top: 8px;
  color: var(--green);
  text-shadow: 0 0 32px rgba(115, 255, 69, 0.12);
}

.hero--presenter .hero__copy .lead {
  max-width: 520px;
  margin-bottom: 26px;
  color: #c3cdc6;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.hero--presenter .hero__copy .lead strong {
  color: var(--gold-soft);
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(202, 163, 75, 0.18);
  color: #d7dfd9;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero__benefits li:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid rgba(202, 163, 75, 0.18);
}

.hero__benefits li:nth-child(even) {
  padding-left: 18px;
}

.hero__benefits span {
  color: var(--green);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.button--goldline {
  border-color: rgba(202, 163, 75, 0.6);
  color: var(--gold-soft);
}

.button--goldline:hover {
  border-color: var(--gold-soft);
  background: rgba(202, 163, 75, 0.1);
  box-shadow: 0 12px 35px rgba(202, 163, 75, 0.14);
}

.hero__visual {
  position: relative;
  align-self: stretch;
  pointer-events: none;
}

.hero__warranty {
  position: absolute;
  z-index: 2;
  top: 20%;
  right: 1%;
  width: 150px;
  min-height: 180px;
  display: grid;
  place-content: center;
  padding: 24px 16px 30px;
  clip-path: polygon(50% 0, 92% 14%, 86% 75%, 50% 100%, 14% 75%, 8% 14%);
  background:
    linear-gradient(145deg, rgba(244, 217, 137, 0.95), #8d6620 28%, #022c1c 29%, #001b12 74%, #b98a2e 75%, #f1d57f);
  color: var(--white);
  text-align: center;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.5));
}

.hero__warranty span,
.hero__warranty small {
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__warranty strong {
  color: var(--gold-soft);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.hero__product-stack {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 94px;
  width: min(590px, 95%);
  height: 210px;
  perspective: 1000px;
  background: url("../images/hero/kronshield-product-stack.png") center / cover no-repeat;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.6));
}

.hero__product {
  position: absolute;
  right: 0;
  width: 100%;
  height: 84px;
  overflow: hidden;
  border: 1px solid rgba(202, 163, 75, 0.58);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(0, 23, 15, 0.08), rgba(0, 23, 15, 0.36)),
    url("../images/gallery/kronshield-ambalaj.jpeg") center 43% / 132% auto no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -24px 40px rgba(0, 0, 0, 0.32);
}

.hero__product::after {
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(100deg, transparent 30%, rgba(255, 235, 173, 0.2), transparent 70%);
  content: "";
  animation: product-sweep 5.5s 1.5s ease-in-out infinite;
}

.hero__product--one {
  top: 0;
  transform: rotateX(1deg) rotateY(-3deg);
}

.hero__product--two {
  top: 64px;
  right: 10px;
  transform: rotateX(1deg) rotateY(-2deg);
}

.hero__product--three {
  top: 128px;
  right: 20px;
  transform: rotateX(1deg) rotateY(-1deg);
}

.hero--presenter .hero__specs {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 26px;
  left: 0;
  grid-template-columns: repeat(5, 1fr);
  width: var(--container);
  margin: 0 auto;
  border: 1px solid rgba(202, 163, 75, 0.42);
  background: rgba(2, 9, 6, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(20px);
}

.hero--presenter .hero__spec {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid rgba(202, 163, 75, 0.2);
}

.hero--presenter .hero__spec:first-child {
  border-left: 0;
}

.hero--presenter .hero__spec:last-child {
  border-right: 0;
}

.hero__spec-icon {
  min-width: 44px;
  color: var(--green);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
  text-shadow: 0 0 18px rgba(115, 255, 69, 0.28);
}

.hero--presenter .hero__spec strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero--presenter .hero__spec small {
  display: block;
  margin-top: 3px;
  color: #8f9c94;
  font-size: 0.62rem;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body[data-page="home"] #neden {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(115, 255, 69, 0.065), transparent 30rem),
    linear-gradient(180deg, #030805, #050706);
}

body[data-page="home"] #neden::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, transparent 0 120px, rgba(255, 255, 255, 0.012) 121px);
  content: "";
  pointer-events: none;
}

body[data-page="home"] #neden .feature-grid {
  border-color: rgba(202, 163, 75, 0.28);
  background: rgba(202, 163, 75, 0.18);
}

body[data-page="home"] #neden .feature-card {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(115, 255, 69, 0.11), transparent 180px),
    linear-gradient(145deg, rgba(13, 27, 20, 0.97), rgba(5, 11, 8, 0.98));
}

body[data-page="home"] #neden .feature-card__icon {
  border-color: rgba(202, 163, 75, 0.58);
  color: var(--gold-soft);
  box-shadow: inset 0 0 22px rgba(202, 163, 75, 0.06);
}

.partner-contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  border: 1px solid rgba(202, 163, 75, 0.38);
  background:
    linear-gradient(120deg, rgba(8, 24, 16, 0.98), rgba(3, 9, 6, 0.96)),
    url("../images/hero/kronshield-presenter-hero.png") right center / cover no-repeat;
  box-shadow: var(--shadow);
}

.partner-contact__copy,
.partner-contact__details {
  padding: clamp(34px, 5vw, 66px);
}

.partner-contact__copy {
  border-right: 1px solid rgba(202, 163, 75, 0.2);
}

.partner-contact__copy h2 {
  max-width: 650px;
  margin-bottom: 20px;
}

.partner-contact__details {
  display: grid;
  align-content: center;
  gap: 16px;
  background: rgba(0, 7, 4, 0.64);
  backdrop-filter: blur(14px);
}

.partner-contact__item {
  display: grid;
  gap: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(202, 163, 75, 0.18);
}

.partner-contact__item span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-contact__item strong,
.partner-contact__item a {
  color: var(--white);
  font-size: 1.1rem;
}

@keyframes hero-presenter-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.035); }
}

@keyframes product-sweep {
  0%, 38% { transform: translateX(-120%); }
  58%, 100% { transform: translateX(120%); }
}

/* Reference-faithful homepage composition */
.hero--presenter {
  min-height: 960px;
}

.hero--presenter .hero__inner {
  min-height: 960px;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 165px;
}

.hero--presenter .hero__copy {
  max-width: 430px;
  padding-top: 6px;
}

.hero--presenter .hero__copy h1 {
  max-width: 430px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 4.7vw, 5.35rem);
  line-height: 0.94;
}

.hero--presenter .hero__copy h1 .line--accent {
  margin-top: 5px;
}

.hero--presenter .hero__copy .lead {
  max-width: 390px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.65;
}

.hero--presenter .hero__benefits {
  grid-template-columns: 1fr;
  width: 360px;
  margin-bottom: 24px;
}

.hero--presenter .hero__benefits li,
.hero--presenter .hero__benefits li:nth-child(odd),
.hero--presenter .hero__benefits li:nth-child(even) {
  min-height: 38px;
  padding: 0;
  border-right: 0;
  border-bottom-color: rgba(115, 255, 69, 0.12);
  font-size: 0.75rem;
}

.hero__benefit-icon {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border: 1px solid rgba(115, 255, 69, 0.62);
  transform: rotate(45deg);
}

.hero__benefit-icon::before,
.hero__benefit-icon::after {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(115, 255, 69, 0.35);
  content: "";
}

.hero__benefit-icon::after {
  inset: 7px -5px;
  border-width: 1px 0 0;
}

.hero--presenter .hero__actions {
  display: grid;
  grid-template-columns: 236px;
  align-items: start;
  gap: 10px;
}

.hero--presenter .hero__actions .button {
  width: 236px;
}

.hero--presenter .hero__whatsapp {
  min-height: 36px;
  justify-content: flex-start;
  margin-left: 0;
  padding-left: 2px;
  font-size: 0.77rem;
}

.hero__brand-lockup {
  position: absolute;
  z-index: 3;
  top: 13%;
  right: 0;
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.58));
}

.hero__brand-image {
  width: 320px;
  height: 92px;
  display: block;
  background-color: #002a1b;
  background-image:
    linear-gradient(90deg, transparent 78%, #002a1b 98%),
    url("../images/gallery/garanti-belgesi-7-yil.jpeg");
  background-position: 0 0;
  background-size: 760px auto;
  background-repeat: no-repeat;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 88%, transparent 100%);
}

.hero__brand-lockup small {
  margin-top: -5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero--presenter .hero__warranty {
  top: 38%;
  right: 3%;
  width: 132px;
  min-height: 160px;
}

.hero--presenter .hero__product-stack {
  right: 14%;
  bottom: 112px;
  width: min(570px, 88%);
  height: 204px;
}

.hero--presenter .hero__specs {
  bottom: 18px;
}

.home-about {
  padding: 54px 0 34px;
  border-top: 1px solid rgba(202, 163, 75, 0.25);
  background:
    radial-gradient(circle at 76% 10%, rgba(115, 255, 69, 0.07), transparent 30rem),
    #020805;
}

.home-about__panel {
  display: grid;
  grid-template-columns: 1.22fr repeat(3, minmax(0, 0.9fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(202, 163, 75, 0.3);
  background: rgba(0, 6, 4, 0.76);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.home-about__copy {
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
  border-right: 1px solid rgba(202, 163, 75, 0.2);
  background:
    linear-gradient(145deg, rgba(8, 28, 18, 0.74), rgba(2, 9, 6, 0.35));
}

.home-about__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.home-about__copy p {
  color: #aab6ae;
  font-size: 0.88rem;
  line-height: 1.72;
}

.home-about__copy .button {
  margin-top: 8px;
}

.home-about__card {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px 20px;
  border: 1px solid rgba(202, 163, 75, 0.28);
  background-color: #07110c;
  background-image:
    linear-gradient(0deg, rgba(1, 6, 4, 0.97) 0%, rgba(1, 6, 4, 0.18) 58%, rgba(1, 6, 4, 0.02) 100%),
    url("../images/hero/kronshield-cinematic-car.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.4s var(--ease), border-color 0.4s, filter 0.4s;
}

.home-about__card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 58%, rgba(115, 255, 69, 0.11));
  content: "";
}

.home-about__card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 255, 69, 0.48);
  filter: brightness(1.08);
}

.home-about__card--healing {
  background-image:
    linear-gradient(0deg, rgba(1, 6, 4, 0.97) 0%, rgba(1, 6, 4, 0.13) 62%, rgba(1, 6, 4, 0.02) 100%),
    url("../images/hero/ppf-self-healing-application.png");
  background-position: center 42%;
}

.home-about__card--water {
  background-position: 45% 42%;
  background-size: auto 126%;
}

.home-about__card--water::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.48) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.3) 0 2px, transparent 3px);
  background-size: 42px 50px, 58px 62px, 74px 70px;
  content: "";
  opacity: 0.52;
}

.home-about__card--gloss {
  background-image:
    linear-gradient(0deg, rgba(1, 6, 4, 0.98) 0%, rgba(1, 6, 4, 0.12) 62%),
    url("../images/hero/ppf-high-gloss-headlight.png");
  background-position: center 48%;
}

.home-about__card span,
.home-about__card strong,
.home-about__card small {
  position: relative;
  z-index: 2;
}

.home-about__card span {
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-about__card strong {
  color: var(--green);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-about__card small {
  color: #c4cdc7;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-service-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  border-block: 1px solid rgba(202, 163, 75, 0.24);
}

.home-service-rail > div {
  min-height: 96px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 0 12px;
  padding: 18px 24px;
  border-right: 1px solid rgba(202, 163, 75, 0.16);
}

.home-service-rail > div:last-child {
  border-right: 0;
}

.home-service-rail span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--green);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.home-service-rail strong {
  color: var(--gold-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.home-service-rail small {
  color: var(--muted);
  font-size: 0.66rem;
}

/* Customer reference composition */
.header__language {
  display: none;
}

.site-header {
  height: var(--header-h);
  border-bottom-color: rgba(202, 163, 75, 0.3);
  background: rgba(0, 12, 8, 0.94);
}

.brand {
  width: 330px;
  height: 84px;
  border-left: 0;
  background-size: 760px auto;
  box-shadow: none;
}

.nav {
  gap: clamp(12px, 1.45vw, 22px);
}

.nav a {
  color: #f2f2ed;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.header__cta {
  min-width: 152px;
  min-height: 46px;
  padding-inline: 17px;
  border-radius: 4px;
  background: #2d6f27;
  color: #fff;
  font-size: 0.68rem;
}

.hero__benefit-icon,
.hero__benefit-icon::before,
.hero__benefit-icon::after {
  border: 0;
  background: var(--green);
}

.hero__benefit-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  transform: none;
  mask: center / contain no-repeat;
}

.hero__benefit-icon::before,
.hero__benefit-icon::after {
  display: none;
}

.hero__benefits li:nth-child(1) .hero__benefit-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.6' d='M24 3l17 10v22L24 45 7 35V13L24 3zm0 8l10 6v14l-10 6-10-6V17l10-6zm0 7v12m-6-6h12'/%3E%3C/svg%3E");
}

.hero__benefits li:nth-child(2) .hero__benefit-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' d='M24 4C17 14 11 21 11 29a13 13 0 0026 0C37 21 31 14 24 4zM4 38c6-4 12-4 18 0s12 4 22 0'/%3E%3C/svg%3E");
}

.hero__benefits li:nth-child(3) .hero__benefit-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M24 2l3.7 14.3L42 20l-14.3 3.7L24 38l-3.7-14.3L6 20l14.3-3.7L24 2zm15 27l1.8 7.2L48 38l-7.2 1.8L39 47l-1.8-7.2L30 38l7.2-1.8L39 29z'/%3E%3C/svg%3E");
}

.hero__benefits li:nth-child(4) .hero__benefit-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.6'%3E%3Ccircle cx='24' cy='24' r='9'/%3E%3Cpath d='M24 2v8m0 28v8M2 24h8m28 0h8M8.5 8.5l6 6m19 19l6 6m0-31l-6 6m-19 19l-6 6'/%3E%3C/g%3E%3C/svg%3E");
}

.hero__benefits li:nth-child(5) .hero__benefit-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.6' d='M7 39L34 12l7 7-27 27H7v-7zm19-19l7 7M11 34l7 7M5 9h18M5 15h12'/%3E%3C/svg%3E");
}

.hero__spec-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: var(--green);
  mask: center / contain no-repeat;
}

.hero__spec:nth-child(1) .hero__spec-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.4' d='M7 12l17-8 17 8-17 8-17-8zm0 8l17 8 17-8M7 28l17 8 17-8M7 36l17 8 17-8'/%3E%3C/svg%3E");
}

.hero__spec:nth-child(2) .hero__spec-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.3' d='M24 3l17 10v22L24 45 7 35V13L24 3zm0 8l10 6v14l-10 6-10-6V17l10-6m-2 3l-5 9 7 4-3 9 10-13-7-3 3-11z'/%3E%3C/svg%3E");
}

.hero__spec:nth-child(3) .hero__spec-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' d='M24 3C17 14 10 23 10 31a14 14 0 0028 0C38 23 31 14 24 3zM16 34c5 3 11 3 16-1'/%3E%3C/svg%3E");
}

.hero__spec:nth-child(4) .hero__spec-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M22 2l3.5 14.5L40 20l-14.5 3.5L22 38l-3.5-14.5L4 20l14.5-3.5L22 2zm17 25l2 7 7 2-7 2-2 7-2-7-7-2 7-2 2-7z'/%3E%3C/svg%3E");
}

.hero__spec:nth-child(5) .hero__spec-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.5'%3E%3Ccircle cx='24' cy='24' r='14'/%3E%3Cpath d='M24 2v7m0 30v7M2 24h7m30 0h7M8.5 8.5l5 5m21 21l5 5m0-31l-5 5m-21 21l-5 5'/%3E%3C/g%3E%3Ctext x='15' y='29' font-size='13' font-family='Arial' font-weight='bold'%3EUV%3C/text%3E%3C/svg%3E");
}

.service-icon {
  width: 46px;
  height: 46px;
  grid-row: 1 / 3;
  align-self: center;
  background: var(--green);
  mask: center / contain no-repeat;
}

.service-icon--support {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M8 27v-6a16 16 0 0132 0v6M8 24H5v12h7V24H8zm32 0h3v12h-7V24h4zM40 36c0 5-4 8-10 8h-5'/%3E%3Ccircle cx='22' cy='44' r='2' fill='black'/%3E%3C/g%3E%3C/svg%3E");
}

.service-icon--map {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' d='M4 10l12-5 16 5 12-5v33l-12 5-16-5-12 5V10zm12-5v33m16-28v33M9 22h3m8-7h5m11 14h4'/%3E%3C/svg%3E");
}

.service-icon--truck {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M3 11h25v24H3V11zm25 9h9l8 9v6H28V20zM8 35a5 5 0 0010 0m15 0a5 5 0 0010 0M3 18h17'/%3E%3C/g%3E%3C/svg%3E");
}

.service-icon--card {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.5'%3E%3Crect x='4' y='9' width='40' height='30' rx='4'/%3E%3Cpath d='M4 18h40M10 31h9'/%3E%3C/g%3E%3C/svg%3E");
}

@media (min-width: 901px) {
  body[data-page="home"] {
    --container: min(980px, calc(100% - 72px));
  }

  body[data-page="home"] .hero--presenter {
    min-height: 1025px;
  }

  body[data-page="home"] .hero--presenter::before {
    background-image:
      linear-gradient(90deg, rgba(1, 5, 3, 0.99) 0%, rgba(1, 5, 3, 0.93) 25%, rgba(1, 5, 3, 0.2) 48%, rgba(1, 5, 3, 0.02) 78%),
      linear-gradient(0deg, #020604 0%, rgba(2, 6, 4, 0.03) 31%, rgba(2, 6, 4, 0.05) 82%, #020604 100%),
      url("../images/hero/kronshield-presenter-hero.png");
    background-position: center, center, center 88px;
    background-size: auto, auto, min(100%, 1672px) auto;
    background-repeat: no-repeat;
    animation: none;
  }

  body[data-page="home"] .hero--presenter .hero__inner {
    min-height: 1025px;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    padding-top: 180px;
    padding-bottom: 132px;
  }

  body[data-page="home"] .hero--presenter .hero__copy {
    max-width: 300px;
    padding-top: 0;
  }

  body[data-page="home"] .hero--presenter .hero__copy h1 {
    width: 430px;
    max-width: none;
    margin-bottom: 22px;
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    font-size: 3.35rem;
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: 0;
  }

  body[data-page="home"] .hero--presenter .hero__copy h1 .line {
    width: 140%;
    transform: scaleX(0.85);
    transform-origin: left center;
  }

  body[data-page="home"] .hero--presenter .hero__copy h1 .line--accent {
    margin-top: 5px;
    transform: scaleX(0.58);
  }

  body[data-page="home"] .hero--presenter .hero__copy .lead {
    max-width: 280px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  body[data-page="home"] .hero--presenter .hero__benefits {
    width: 290px;
    margin-bottom: 24px;
  }

  body[data-page="home"] .hero--presenter .hero__benefits li,
  body[data-page="home"] .hero--presenter .hero__benefits li:nth-child(odd),
  body[data-page="home"] .hero--presenter .hero__benefits li:nth-child(even) {
    min-height: 43px;
    border: 0;
    font-size: 0.82rem;
    font-weight: 500;
  }

  body[data-page="home"] .hero--presenter .hero__actions {
    grid-template-columns: 220px;
    gap: 10px;
  }

  body[data-page="home"] .hero--presenter .hero__actions .button {
    width: 220px;
    min-height: 44px;
  }

  body[data-page="home"] .hero__brand-lockup {
    top: -45px;
    right: 50px;
    width: 300px;
    transform: none;
  }

  body[data-page="home"] .hero__brand-image {
    width: 300px;
    height: 300px;
    background: url("../images/logo/kronshield-hero-transparent.png") center / contain no-repeat;
    mask-image: none;
  }

  body[data-page="home"] .hero__brand-lockup small {
    position: absolute;
    top: 226px;
    left: 0;
    width: 100%;
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.53rem;
    letter-spacing: 0.2em;
    text-align: center;
  }

  body[data-page="home"] .hero--presenter .hero__warranty {
    top: 245px;
    right: 75px;
    width: 150px;
    min-height: 182px;
  }

  body[data-page="home"] .hero--presenter .hero__product-stack {
    right: 40px;
    bottom: -20px;
    width: 756px;
    height: 285px;
  }

  body[data-page="home"] .hero__product {
    height: 105px;
  }

  body[data-page="home"] .hero__product--two {
    top: 80px;
  }

  body[data-page="home"] .hero__product--three {
    top: 160px;
  }

  body[data-page="home"] .hero--presenter .hero__specs {
    bottom: 4px;
  }

  body[data-page="home"] .hero--presenter .hero__spec {
    min-height: 104px;
    gap: 11px;
    padding: 15px 14px;
  }

  body[data-page="home"] .home-about {
    padding: 28px 0 24px;
  }

  body[data-page="home"] .home-about__panel {
    grid-template-columns: 292px repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  body[data-page="home"] .home-about__copy,
  body[data-page="home"] .home-about__card {
    min-height: 300px;
  }

  body[data-page="home"] .home-about__copy {
    justify-content: flex-start;
    padding: 22px 20px;
  }

  body[data-page="home"] .home-about__copy .eyebrow {
    margin-bottom: 16px;
    color: var(--green);
    font-size: 1.05rem;
  }

  body[data-page="home"] .home-about__copy p {
    margin-bottom: 18px;
    font-size: 0.8rem;
    line-height: 1.7;
  }

  body[data-page="home"] .home-about__copy .button {
    min-height: 42px;
    margin-top: auto;
  }

  body[data-page="home"] .home-about__card {
    padding: 18px 14px;
  }

  body[data-page="home"] .home-about__card strong {
    font-size: 1.05rem;
  }

  body[data-page="home"] .home-about__card small {
    font-size: 0.58rem;
  }

  body[data-page="home"] .home-service-rail {
    margin-top: 18px;
    border: 0;
  }

  body[data-page="home"] .home-service-rail > div {
    min-height: 82px;
    grid-template-columns: 48px 1fr;
    gap: 0 12px;
    padding: 14px 16px;
    border: 0;
  }

  body[data-page="home"] .home-service-rail strong {
    color: #d9dedb;
    font-size: 0.76rem;
  }

  body[data-page="home"] .home-service-rail small {
    color: #d9dedb;
    font-size: 0.7rem;
    text-transform: uppercase;
  }
}

@media (min-width: 901px) and (max-height: 920px) {
  body[data-page="home"] .hero--presenter::before {
    background-position: center, center, center 88px;
    background-size: auto, auto, auto calc(100svh - 88px);
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .header__inner {
    width: calc(100% - 40px);
    gap: 13px;
  }

  .brand {
    width: 318px;
    height: 82px;
    background-size: 732px auto;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 0.67rem;
  }

  .header__cta {
    min-width: 146px;
    padding-inline: 13px;
  }
}

/* Homepage V2: cinematic intro and premium middle-page rhythm */
.intro {
  background:
    radial-gradient(circle at 50% 48%, rgba(22, 107, 59, 0.24), transparent 24rem),
    radial-gradient(circle at 50% 48%, rgba(202, 163, 75, 0.08), transparent 34rem),
    #010503;
}

.intro::before,
.intro::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.intro::before {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(202, 163, 75, 0.16) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(115, 255, 69, 0.1) 50%, transparent 50.1%);
  mask-image: radial-gradient(circle at center, #000 0 32%, transparent 68%);
}

.intro::after {
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.1) 48%, transparent 61%);
  transform: translateX(-110%);
  animation: intro-v2-sweep 1.25s 0.5s var(--ease) forwards;
}

.intro__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(115, 255, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 255, 69, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
  opacity: 0;
  animation: intro-v2-grid 1s 0.2s forwards;
}

.intro__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(202, 163, 75, 0.32);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: intro-v2-orbit 1.4s 0.2s var(--ease) forwards;
}

.intro__orb::before,
.intro__orb::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(115, 255, 69, 0.8);
  content: "";
}

.intro__orb::before {
  top: 12%;
  left: 18%;
}

.intro__orb::after {
  right: 13%;
  bottom: 16%;
}

.intro__orb--one {
  width: min(560px, 80vw);
  height: min(560px, 80vw);
}

.intro__orb--two {
  width: min(700px, 94vw);
  height: min(700px, 94vw);
  border-color: rgba(115, 255, 69, 0.12);
  animation-delay: 0.35s;
}

.intro__core {
  z-index: 3;
  width: min(720px, 90vw);
}

.intro__line {
  top: 68%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), var(--gold), transparent);
  box-shadow: 0 0 24px rgba(115, 255, 69, 0.22);
  animation-duration: 1.05s;
}

.intro__logo {
  width: min(470px, 78vw);
  height: min(420px, 62vh);
  display: grid;
  place-items: center;
  filter: none;
  animation: intro-v2-logo 1s 0.18s var(--ease) both;
}

.intro__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 24px rgba(202, 163, 75, 0.14));
}

.intro__logo::after {
  inset: 10% 0;
  animation-duration: 0.9s;
  animation-delay: 0.7s;
}

.intro__tagline {
  margin-top: -24px;
  color: var(--gold-soft);
  font-size: clamp(0.66rem, 1.2vw, 0.8rem);
  letter-spacing: 0.52em;
  animation-delay: 0.8s;
}

.intro__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #8d9d93;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: intro-tag 0.55s 1.05s forwards;
}

.intro__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(115, 255, 69, 0.8);
  animation: signal 1.2s infinite;
}

.intro__skip {
  right: 32px;
  bottom: 28px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(202, 163, 75, 0.35);
  color: #89958d;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes intro-v2-logo {
  from { transform: scale(0.76); opacity: 0; filter: blur(14px); }
  62% { transform: scale(1.025); opacity: 1; filter: blur(0); }
  to { transform: scale(1); opacity: 1; filter: blur(0); }
}

@keyframes intro-v2-grid {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 0.6; transform: scale(1); }
}

@keyframes intro-v2-orbit {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.72) rotate(-18deg); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
}

@keyframes intro-v2-sweep {
  to { transform: translateX(110%); }
}

body[data-page="home"] .section:not(.home-about):not(.section--tight) {
  padding: clamp(78px, 7vw, 108px) 0;
}

body[data-page="home"] .section-heading {
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 46px;
}

body[data-page="home"] .section-heading h2 {
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  line-height: 0.98;
}

body[data-page="home"] .section-heading .lead {
  color: #a9b5ad;
  font-size: 0.98rem;
  line-height: 1.75;
}

body[data-page="home"] .section--protection-v2 {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 48%, rgba(115, 255, 69, 0.09), transparent 27rem),
    linear-gradient(180deg, #020604, #06110b 52%, #020604);
}

.section--protection-v2::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.92%, rgba(202, 163, 75, 0.09) 50%, transparent 50.08%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.018) 120px);
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 88%, transparent);
  pointer-events: none;
}

.section--protection-v2 .protection-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
}

.section--protection-v2 .protection-copy {
  padding: 34px;
  border: 1px solid rgba(202, 163, 75, 0.2);
  background: linear-gradient(145deg, rgba(9, 26, 17, 0.88), rgba(2, 8, 5, 0.48));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.section--protection-v2 .protection-copy h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.92;
}

.section--protection-v2 .tech-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.section--protection-v2 .tech-pill {
  min-height: 58px;
  justify-content: flex-start;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid rgba(115, 255, 69, 0.14);
  background: rgba(0, 14, 9, 0.58);
  font-size: 0.68rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.section--protection-v2 .tech-pill::before {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(115, 255, 69, 0.35);
  border-radius: 50%;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.57rem;
  content: "SH";
}

.section--protection-v2 .tech-pill:nth-child(2)::before { content: "H₂O"; }
.section--protection-v2 .tech-pill:nth-child(3)::before { content: "UV"; }
.section--protection-v2 .tech-pill:nth-child(4)::before { content: "HD"; }
.section--protection-v2 .tech-pill:nth-child(5)::before { content: "SC"; }

.section--protection-v2 .tech-pill::after {
  display: none;
}

.section--protection-v2 .tech-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(115, 255, 69, 0.4);
  background: rgba(21, 72, 42, 0.2);
}

.section--protection-v2 .car-compare {
  border-color: rgba(202, 163, 75, 0.34);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.5),
    0 0 0 10px rgba(255, 255, 255, 0.015),
    0 0 60px rgba(115, 255, 69, 0.09);
}

.product-section {
  padding-block: clamp(86px, 8vw, 118px) !important;
  background:
    radial-gradient(circle at 50% 40%, rgba(202, 163, 75, 0.07), transparent 28rem),
    linear-gradient(180deg, #020604, #07130c 48%, #020604);
}

.series-duo {
  gap: 18px;
  margin-bottom: 40px;
  border: 0;
  background: transparent;
}

.series-card {
  min-height: 350px;
  border: 1px solid rgba(115, 255, 69, 0.18);
  background:
    linear-gradient(105deg, rgba(5, 17, 11, 0.97), rgba(5, 18, 11, 0.68)),
    url("../images/hero/kronshield-product-stack.png") 120% 90% / 68% auto no-repeat;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.series-card--diamond {
  border-color: rgba(202, 163, 75, 0.35);
  background:
    radial-gradient(circle at 86% 18%, rgba(238, 216, 137, 0.13), transparent 14rem),
    linear-gradient(125deg, rgba(14, 25, 17, 0.98), rgba(4, 12, 8, 0.87)),
    url("../images/hero/kronshield-presenter-hero.png") 88% center / cover no-repeat;
}

.series-card::before {
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.1), transparent 62%);
  content: "";
  transition: transform 0.85s var(--ease);
}

.series-card:hover {
  transform: translateY(-7px);
  border-color: rgba(115, 255, 69, 0.45);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.4), 0 18px 40px rgba(115, 255, 69, 0.08);
}

.series-card:hover::before {
  transform: translateX(120%);
}

.series-card h3,
.series-card p,
.series-card ul,
.series-card .eyebrow {
  position: relative;
  z-index: 1;
}

.product-section .product-grid {
  gap: 18px;
}

.product-section .product-card {
  min-height: 450px;
  border-color: rgba(202, 163, 75, 0.22);
  background:
    linear-gradient(180deg, rgba(1, 7, 4, 0.08) 0%, rgba(1, 7, 4, 0.46) 34%, rgba(1, 7, 4, 0.98) 68%, #010503 100%),
    var(--product-image) center top / cover no-repeat;
  box-shadow:
    inset 0 3px 0 rgba(202, 163, 75, 0.48),
    0 28px 70px rgba(0, 0, 0, 0.34);
}

.product-section .product-card:nth-child(1) {
  --product-image: url("../images/hero/kronshield-product-stack.png");
}

.product-section .product-card:nth-child(2) {
  --product-image: url("../images/hero/kronshield-cinematic-car.png");
}

.product-section .product-card:nth-child(3) {
  --product-image: url("../images/hero/ppf-high-gloss-headlight.png");
}

.product-section .product-card__content {
  margin: 0 -10px -10px;
  padding: 20px;
  border-top: 1px solid rgba(115, 255, 69, 0.18);
  background: linear-gradient(145deg, rgba(3, 13, 8, 0.92), rgba(1, 6, 3, 0.97));
  box-shadow: 0 -20px 40px rgba(1, 7, 4, 0.55);
  backdrop-filter: blur(12px);
}

.product-section .product-card h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
}

.product-section .product-card p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.86rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-section .product-card__meta {
  gap: 6px;
  margin: 14px 0 18px;
}

.product-section .product-card__meta span {
  padding: 5px 7px;
  background: rgba(255, 255, 255, 0.025);
}

.section--technology-v2 {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 7, 4, 0.96), rgba(4, 18, 10, 0.72), rgba(1, 7, 4, 0.96)),
    url("../images/hero/kronshield-cinematic-car.png") center 44% / cover fixed;
}

.section--technology-v2::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #020604, transparent 28%, transparent 72%, #020604);
  content: "";
}

.section--technology-v2 .container {
  position: relative;
  z-index: 1;
}

.technology-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}

.technology-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid rgba(202, 163, 75, 0.2);
  background: linear-gradient(150deg, rgba(7, 24, 15, 0.92), rgba(1, 7, 4, 0.82));
  backdrop-filter: blur(14px);
  transition: transform 0.38s var(--ease), border-color 0.38s, background 0.38s;
}

.technology-card::before {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 8px 0 48px;
  border: 1px solid rgba(115, 255, 69, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 255, 69, 0.12), transparent 68%);
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
  content: "SH";
  box-shadow: inset 0 0 18px rgba(115, 255, 69, 0.05);
}

.technology-card:nth-child(2)::before { content: "H₂O"; }
.technology-card:nth-child(3)::before { content: "UV"; }
.technology-card:nth-child(4)::before { content: "TPU"; }
.technology-card:nth-child(5)::before { content: "HD"; }

.technology-card::after {
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green), var(--gold-soft));
  content: "";
  transition: transform 0.38s var(--ease);
}

.technology-card:hover {
  transform: translateY(-7px);
  border-color: rgba(115, 255, 69, 0.42);
  background: linear-gradient(150deg, rgba(16, 49, 29, 0.94), rgba(2, 11, 7, 0.88));
}

.technology-card:hover::after {
  transform: scaleX(1);
}

.technology-card__index {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  color: var(--gold-soft);
  opacity: 0.72;
}

.section--applications-v2 {
  background:
    radial-gradient(circle at 20% 48%, rgba(115, 255, 69, 0.055), transparent 28rem),
    #020704;
}

.application-grid {
  gap: 14px;
}

.application-grid .data-card {
  min-height: 235px;
  overflow: hidden;
  padding: 26px;
  border-color: rgba(202, 163, 75, 0.2);
  background:
    radial-gradient(circle at 86% 18%, rgba(115, 255, 69, 0.09), transparent 9rem),
    linear-gradient(145deg, rgba(10, 27, 18, 0.94), rgba(3, 10, 6, 0.96));
  transition: transform 0.36s var(--ease), border-color 0.36s;
}

.application-grid .data-card::before {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(115, 255, 69, 0.32);
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  content: "360°";
}

.application-grid .data-card:nth-child(2)::before { content: "FR"; }
.application-grid .data-card:nth-child(3)::before { content: "LED"; }
.application-grid .data-card:nth-child(4)::before { content: "IN"; }
.application-grid .data-card:nth-child(5)::before { content: "SAT"; }
.application-grid .data-card:nth-child(6)::before { content: "CLR"; }

.application-grid .data-card::after {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(202, 163, 75, 0.12);
  border-radius: 50%;
  content: "";
}

.application-grid .data-card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 255, 69, 0.4);
}

.application-grid .data-card__value {
  position: absolute;
  top: 24px;
  right: 24px;
  margin: 0;
  color: var(--gold-soft);
}

.section--process-v2 {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 8, 5, 0.97), rgba(8, 24, 15, 0.78)),
    url("../images/hero/ppf-self-healing-application.png") right 38% / 54% auto no-repeat;
}

.section--process-v2::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020604 0%, rgba(2, 6, 4, 0.92) 35%, rgba(2, 6, 4, 0.18) 100%);
  content: "";
}

.section--process-v2 .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  gap: 12px;
}

.process-step {
  min-height: 270px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(202, 163, 75, 0.22);
  background: rgba(1, 10, 6, 0.8);
  backdrop-filter: blur(13px);
  transition: transform 0.36s var(--ease), border-color 0.36s, background 0.36s;
}

.process-step:last-child {
  border-right: 1px solid rgba(202, 163, 75, 0.22);
}

.process-step::before {
  position: absolute;
  top: 22px;
  right: 24px;
  margin: 0;
  color: rgba(238, 216, 137, 0.7);
  font-size: 0.68rem;
}

.process-step::after {
  top: 55px;
  right: -13px;
  width: 26px;
  background: linear-gradient(90deg, var(--green), var(--gold-soft));
  box-shadow: 0 0 14px rgba(115, 255, 69, 0.35);
}

.process-step__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 12px 0 56px;
  border: 1px solid rgba(115, 255, 69, 0.36);
  border-radius: 50%;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.59rem;
}

.process-step__icon::before { content: "SCAN"; }
.process-step:nth-child(2) .process-step__icon::before { content: "CLEAN"; }
.process-step:nth-child(3) .process-step__icon::before { content: "APPLY"; }
.process-step:nth-child(4) .process-step__icon::before { content: "QC"; }

.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(115, 255, 69, 0.42);
  background: rgba(9, 36, 20, 0.88);
}

.section--showcase-v2 {
  background:
    radial-gradient(circle at 76% 50%, rgba(202, 163, 75, 0.07), transparent 30rem),
    #020604;
}

.section--showcase-v2 .showcase-layout {
  gap: 16px;
}

.section--showcase-v2 .video-card {
  min-height: 560px;
  border-color: rgba(202, 163, 75, 0.28);
}

.section--showcase-v2 .gallery-stack {
  gap: 16px;
}

.section--showcase-v3 {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(115, 255, 69, 0.065), transparent 25rem),
    radial-gradient(circle at 90% 72%, rgba(202, 163, 75, 0.08), transparent 27rem),
    linear-gradient(180deg, #020604 0%, #06100a 50%, #020604 100%);
}

.section--showcase-v3::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(202, 163, 75, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 163, 75, 0.038) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.section--showcase-v3 .container {
  position: relative;
  z-index: 2;
}

.showcase-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(390px, 0.72fr);
  align-items: stretch;
  gap: 18px;
}

.showcase-v3__feature,
.showcase-v3__proof {
  overflow: hidden;
  border: 1px solid rgba(202, 163, 75, 0.24);
  background: linear-gradient(145deg, rgba(8, 24, 15, 0.94), rgba(2, 7, 4, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.showcase-v3__feature {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.showcase-v3__video-shell {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(29, 130, 44, 0.2), transparent 36%),
    linear-gradient(135deg, #07110c, #010302 72%);
}

.showcase-v3__video-shell::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(115, 255, 69, 0.13) 50%, transparent 50.2%),
    repeating-linear-gradient(90deg, transparent 0 104px, rgba(255, 255, 255, 0.025) 105px);
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.showcase-v3__video-shell video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.42);
}

.showcase-v3__live {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(115, 255, 69, 0.24);
  background: rgba(2, 10, 6, 0.82);
  color: #dbe5de;
  font-family: var(--font-tech);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.showcase-v3__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(115, 255, 69, 0.9);
}

.showcase-v3__feature-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 27px 30px 30px;
  border-top: 1px solid rgba(202, 163, 75, 0.2);
}

.showcase-v3__index {
  color: rgba(202, 163, 75, 0.48);
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.showcase-v3__feature-copy .eyebrow {
  margin-bottom: 9px;
}

.showcase-v3__feature-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.showcase-v3__feature-copy p {
  max-width: 620px;
  margin: 0;
  color: #aeb9b1;
  font-size: 0.9rem;
  line-height: 1.65;
}

.showcase-v3__proofs {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-v3__proof {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  cursor: zoom-in;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.showcase-v3__proof:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 255, 69, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32), 0 0 38px rgba(54, 177, 62, 0.08);
}

.showcase-v3__proof-media {
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background: #f4f3ef;
}

.showcase-v3__proof-media--dark {
  background: #e9ebe8;
}

.showcase-v3__proof-media img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.55s var(--ease);
}

.showcase-v3__proof:hover img {
  transform: scale(1.018);
}

.showcase-v3__proof figcaption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px 20px;
  border-top: 1px solid rgba(202, 163, 75, 0.18);
}

.showcase-v3__proof figcaption div {
  display: grid;
  gap: 7px;
}

.showcase-v3__proof figcaption span,
.showcase-v3__proof figcaption small {
  color: var(--green);
  font-family: var(--font-tech);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-v3__proof figcaption strong {
  color: var(--white);
  font-size: 0.96rem;
}

.showcase-v3__proof figcaption small {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.48);
}

.section--testimonials-v2 {
  background:
    linear-gradient(90deg, rgba(2, 6, 4, 0.96), rgba(6, 20, 12, 0.82)),
    url("../images/hero/ppf-high-gloss-headlight.png") right center / 46% auto no-repeat;
}

.testimonial-grid {
  gap: 14px;
}

.testimonial {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(202, 163, 75, 0.22);
  background: linear-gradient(145deg, rgba(10, 29, 18, 0.9), rgba(2, 9, 5, 0.88));
  backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.testimonial::before {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(115, 255, 69, 0.1);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  content: "“";
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 255, 69, 0.38);
}

.testimonial__stars {
  margin-bottom: 28px;
}

.section--insights-v2 {
  background: linear-gradient(180deg, #020604, #07120b, #020604);
}

.blog-grid {
  gap: 14px;
}

.blog-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-color: rgba(202, 163, 75, 0.22);
  background:
    linear-gradient(0deg, rgba(1, 6, 4, 0.98), rgba(1, 6, 4, 0.38)),
    url("../images/hero/kronshield-cinematic-car.png") center / cover;
}

.blog-card:nth-child(2) {
  background-image:
    linear-gradient(0deg, rgba(1, 6, 4, 0.98), rgba(1, 6, 4, 0.42)),
    url("../images/hero/ppf-self-healing-application.png");
}

.blog-card:nth-child(3) {
  background-image:
    linear-gradient(0deg, rgba(1, 6, 4, 0.98), rgba(1, 6, 4, 0.42)),
    url("../images/hero/ppf-high-gloss-headlight.png");
}

.blog-card::before {
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.12), transparent 62%);
  content: "";
  transition: transform 0.75s var(--ease);
}

.blog-card:hover::before {
  transform: translateX(120%);
}

.blog-card > * {
  position: relative;
  z-index: 1;
}

.blog-card h3 {
  margin-top: 78px;
}

.section--faq-v2 .faq-list {
  overflow: hidden;
  padding: 0 28px;
  border: 1px solid rgba(202, 163, 75, 0.22);
  background:
    radial-gradient(circle at 96% 20%, rgba(115, 255, 69, 0.07), transparent 18rem),
    linear-gradient(145deg, rgba(9, 25, 16, 0.75), rgba(2, 8, 5, 0.82));
}

.section--faq-v2 .faq-question {
  min-height: 76px;
}

/* Kronshield V3: typography, brand system and protection experience */
body :is(h1, h2, h3, .display) {
  font-family: var(--font-display);
}

:is(.eyebrow, .button, .nav a, .header__language, .hero__spec, .protection-v3__metric) {
  font-family: var(--font-tech);
}

.brand {
  width: auto;
  min-width: 292px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  overflow: visible;
  border: 0;
  background: none;
  box-shadow: none;
  text-indent: 0;
}

.brand__crest {
  position: relative;
  width: 62px;
  height: 64px;
  flex: 0 0 62px;
  overflow: hidden;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.55));
}

.brand__crest img {
  position: absolute;
  top: 0;
  left: -13px;
  width: 90px;
  height: auto;
  max-width: none;
}

.brand__type {
  display: grid;
  align-content: center;
  line-height: 1;
}

.brand__name {
  display: flex;
  align-items: baseline;
  transform: skewX(-7deg);
  font-family: var(--font-tech);
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: -0.075em;
}

.brand__name b {
  background: linear-gradient(180deg, #fff4b9 0%, #d8ac43 48%, #886018 100%);
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.brand__name strong {
  background: linear-gradient(180deg, #8be86c 0%, #287c3c 58%, #0a3f24 100%);
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.brand__type small {
  margin-top: 5px;
  color: rgba(235, 240, 236, 0.74);
  font-family: var(--font-tech);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

.footer__about .brand {
  width: max-content;
  min-width: 0;
}

.intro__identity {
  display: grid;
  justify-items: center;
  animation: intro-v2-logo 1s 0.14s var(--ease) both;
}

.intro__emblem {
  position: relative;
  width: min(320px, 62vw);
  height: min(300px, 45vh);
  display: block;
  overflow: hidden;
  filter:
    drop-shadow(0 30px 44px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 34px rgba(202, 163, 75, 0.16));
}

.intro__emblem img {
  position: absolute;
  top: 0;
  left: -22.5%;
  width: 145%;
  height: auto;
  max-width: none;
}

.intro__signature {
  display: grid;
  justify-items: center;
  margin-top: -8px;
  line-height: 1;
}

.intro__signature > span {
  display: flex;
  transform: skewX(-7deg);
  font-family: var(--font-tech);
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.intro__signature b {
  color: var(--gold-soft);
}

.intro__signature strong {
  color: #4eaf55;
}

.intro__signature small {
  margin-top: 10px;
  color: #a6b2aa;
  font-family: var(--font-tech);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

body[data-page="home"] .hero__brand-lockup--v3 {
  top: 4%;
  right: 2.5%;
  width: 340px;
  display: grid;
  justify-items: center;
  transform: none;
}

.hero__crest {
  position: relative;
  width: 176px;
  height: 168px;
  display: block;
  overflow: hidden;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.62));
}

.hero__crest img {
  position: absolute;
  top: 0;
  left: -22.5%;
  width: 145%;
  height: auto;
  max-width: none;
}

.hero__signature {
  display: grid;
  justify-items: center;
  margin-top: -5px;
  line-height: 1;
}

.hero__signature > span {
  display: flex;
  transform: skewX(-7deg);
  font-family: var(--font-tech);
  font-size: 2.45rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.hero__signature b {
  color: var(--gold-soft);
}

.hero__signature strong {
  color: #4dac4f;
}

body[data-page="home"] .hero__brand-lockup--v3 .hero__signature small {
  position: static;
  width: auto;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-tech);
  font-size: 0.49rem;
  letter-spacing: 0.28em;
  text-align: center;
}

@media (min-width: 1680px) {
  body[data-page="home"] .hero--presenter::before {
    background-position: center, center, right 0 top 88px;
    background-size: auto, auto, 1672px auto;
  }

  body[data-page="home"] .hero__brand-lockup--v3 {
    right: -50%;
  }
}

.section--protection-v3 {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(202, 163, 75, 0.1), transparent 26rem),
    radial-gradient(circle at 80% 58%, rgba(115, 255, 69, 0.1), transparent 31rem),
    linear-gradient(180deg, #020604 0%, #07120c 50%, #020604 100%);
}

.section--protection-v3::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(202, 163, 75, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 163, 75, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  mask-image: radial-gradient(circle at center, #000 14%, transparent 78%);
  pointer-events: none;
}

.section--protection-v3 .container {
  position: relative;
  z-index: 1;
}

.protection-v3__head {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  margin-bottom: 46px;
}

.protection-v3__title h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 4.8vw, 4.9rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.protection-v3__title h2 span {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-weight: 520;
}

.protection-v3__summary {
  padding: 4px 0 6px 25px;
  border-left: 1px solid rgba(202, 163, 75, 0.4);
}

.protection-v3__metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.protection-v3__metric small {
  color: var(--gold-soft);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.protection-v3__summary p {
  margin: 0;
  color: #aeb9b1;
  font-size: 0.98rem;
  line-height: 1.75;
}

.protection-v3__body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  align-items: stretch;
  gap: 18px;
}

.protection-v3__visual {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(202, 163, 75, 0.28);
  background: rgba(1, 7, 4, 0.8);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.protection-v3__visual-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(202, 163, 75, 0.2);
  background: linear-gradient(90deg, rgba(18, 52, 31, 0.72), rgba(3, 12, 7, 0.92));
  font-family: var(--font-tech);
  text-transform: uppercase;
}

.protection-v3__visual-head span {
  color: #eef3ef;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.protection-v3__visual-head small {
  color: var(--green);
  font-size: 0.59rem;
  letter-spacing: 0.13em;
}

.protection-v3__visual .car-compare {
  min-height: 420px;
  aspect-ratio: auto;
  border: 0;
  box-shadow: none;
}

.protection-v3__visual .car-compare__label {
  top: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 7, 4, 0.78);
  font-family: var(--font-tech);
  font-size: 0.57rem;
  letter-spacing: 0.15em;
  backdrop-filter: blur(12px);
}

.protection-v3__visual .car-compare__handle {
  width: 56px;
  height: 56px;
  border-color: rgba(115, 255, 69, 0.8);
  background: rgba(2, 12, 7, 0.84);
  box-shadow:
    0 0 0 7px rgba(115, 255, 69, 0.06),
    0 0 35px rgba(115, 255, 69, 0.35);
  font-family: var(--font-tech);
}

.protection-v3__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(202, 163, 75, 0.2);
}

.protection-v3__proof div {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  border-right: 1px solid rgba(202, 163, 75, 0.15);
}

.protection-v3__proof div:last-child {
  border-right: 0;
}

.protection-v3__proof span {
  color: var(--green);
  font-family: var(--font-tech);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.protection-v3__proof strong {
  color: #dfe7e1;
  font-family: var(--font-tech);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.protection-v3__features {
  display: grid;
  gap: 9px;
}

.protection-v3__feature {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 17px;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid rgba(115, 255, 69, 0.14);
  background: linear-gradient(135deg, rgba(10, 31, 19, 0.88), rgba(2, 9, 5, 0.88));
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}

.protection-v3__feature::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green), var(--gold), transparent);
  content: "";
  transition: transform 0.4s var(--ease);
}

.protection-v3__feature:hover {
  transform: translateX(-6px);
  border-color: rgba(202, 163, 75, 0.38);
  background: linear-gradient(135deg, rgba(15, 47, 27, 0.94), rgba(3, 13, 7, 0.92));
}

.protection-v3__feature:hover::after {
  transform: scaleX(1);
}

.protection-v3__feature small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-family: var(--font-tech);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.protection-v3__feature h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.protection-v3__feature p {
  margin: 0;
  color: #8f9c94;
  font-size: 0.76rem;
  line-height: 1.5;
}

.protection-v3__icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 163, 75, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(115, 255, 69, 0.12), transparent 70%),
    rgba(0, 11, 6, 0.76);
  box-shadow: inset 0 0 22px rgba(115, 255, 69, 0.05);
}

.protection-v3__icon i,
.protection-v3__icon i::before,
.protection-v3__icon i::after {
  position: absolute;
  display: block;
  content: "";
}

.protection-v3__icon--healing i {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  transform: rotate(30deg);
}

.protection-v3__icon--healing i::before {
  inset: 5px;
  border: 1px solid rgba(202, 163, 75, 0.85);
  border-radius: 5px;
}

.protection-v3__icon--healing i::after {
  top: 11px;
  left: 4px;
  width: 18px;
  height: 2px;
  transform: rotate(-30deg);
  background: var(--green);
  box-shadow: 0 0 10px rgba(115, 255, 69, 0.6);
}

.protection-v3__icon--water i {
  width: 23px;
  height: 23px;
  transform: rotate(45deg);
  border: 1.5px solid var(--green);
  border-radius: 70% 30% 65% 35%;
}

.protection-v3__icon--water i::after {
  right: 5px;
  bottom: 5px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  border-radius: 0 0 5px;
}

.protection-v3__icon--uv i {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 255, 69, 0.42) 0 24%, transparent 26%);
  box-shadow: 0 0 16px rgba(202, 163, 75, 0.22);
}

.protection-v3__icon--uv i::before,
.protection-v3__icon--uv i::after {
  top: 10px;
  left: -8px;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 0 4px, transparent 4px 34px, var(--green) 34px);
}

.protection-v3__icon--uv i::after {
  transform: rotate(90deg);
}

.protection-v3__icon--gloss i {
  width: 27px;
  height: 27px;
  clip-path: polygon(50% 0, 62% 37%, 100% 50%, 62% 63%, 50% 100%, 38% 63%, 0 50%, 38% 37%);
  background: linear-gradient(135deg, var(--gold-soft), var(--green));
  filter: drop-shadow(0 0 10px rgba(115, 255, 69, 0.35));
}

.protection-v3__icon--gloss i::after {
  inset: 7px;
  clip-path: inherit;
  background: #07120c;
}

.protection-v3__icon--shield i {
  width: 29px;
  height: 34px;
  clip-path: polygon(50% 0, 94% 16%, 86% 70%, 50% 100%, 14% 70%, 6% 16%);
  background: linear-gradient(145deg, var(--gold-soft), #8b671f);
  filter: drop-shadow(0 0 11px rgba(202, 163, 75, 0.28));
}

.protection-v3__icon--shield i::after {
  inset: 3px;
  clip-path: inherit;
  background: #07140c;
}

.protection-v3__icon--shield i::before {
  z-index: 1;
  top: 10px;
  left: 9px;
  width: 11px;
  height: 8px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
}

/* Homepage V3.9: clear product hierarchy and legible warranty communication */
.product-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(115, 255, 69, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 52%, rgba(202, 163, 75, 0.09), transparent 28rem),
    linear-gradient(180deg, #020604 0%, #06130b 48%, #020604 100%);
}

.product-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.product-series-comparison {
  gap: 18px;
  margin-bottom: 18px;
}

.product-series-comparison .series-card {
  isolation: isolate;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(115, 255, 69, 0.2);
  border-radius: 4px;
  background:
    radial-gradient(circle at 88% 8%, rgba(115, 255, 69, 0.16), transparent 19rem),
    linear-gradient(142deg, #0a1c11 0%, #041008 58%, #020704 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 32px 70px rgba(0, 0, 0, 0.34);
}

.product-series-comparison .series-card--diamond {
  border-color: rgba(202, 163, 75, 0.4);
  background:
    radial-gradient(circle at 88% 8%, rgba(238, 216, 137, 0.19), transparent 19rem),
    linear-gradient(142deg, #1a1b11 0%, #0c140d 56%, #040806 100%);
}

.product-series-comparison .series-card::before {
  z-index: -1;
  inset: auto -11% -42% auto;
  width: 310px;
  height: 310px;
  transform: none;
  border: 1px solid rgba(115, 255, 69, 0.1);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 16px, rgba(115, 255, 69, 0.05) 17px 18px);
  content: "";
  transition: transform 0.6s var(--ease);
}

.product-series-comparison .series-card--diamond::before {
  border-color: rgba(202, 163, 75, 0.12);
  background:
    repeating-radial-gradient(circle, transparent 0 16px, rgba(202, 163, 75, 0.06) 17px 18px);
}

.product-series-comparison .series-card:hover::before {
  transform: scale(1.04) rotate(4deg);
}

.series-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.series-card__code {
  color: #aab8ae;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.product-series-comparison .series-card__warranty {
  position: static;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 9px;
  color: var(--gold-soft);
  opacity: 1;
}

.product-series-comparison .series-card__warranty strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 0.78;
}

.product-series-comparison .series-card__warranty small {
  max-width: 54px;
  color: #f2e3a7;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.series-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(30px, 4.2vw, 50px);
}

.product-series-comparison .series-card h3 {
  max-width: none;
  margin: 13px 0 16px;
  color: #f8faf8;
  font-size: clamp(2.35rem, 4.1vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.product-series-comparison .series-card p {
  max-width: 570px;
  color: #c0cbc3;
  font-size: 0.97rem;
  line-height: 1.75;
}

.product-series-comparison .series-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin-top: auto;
  padding-top: 30px;
}

.product-series-comparison .series-card li {
  margin: 0;
  color: #e1e8e3;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-series-comparison .series-card li::before {
  color: var(--gold-soft);
  content: "＋";
}

.specialty-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.specialty-card {
  position: relative;
  min-height: 280px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(202, 163, 75, 0.22);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(13, 26, 18, 0.96), rgba(3, 9, 6, 0.99));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.specialty-card:hover {
  transform: translateY(-5px);
  border-color: rgba(115, 255, 69, 0.4);
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.35);
}

.specialty-card::after {
  position: absolute;
  right: -46px;
  bottom: -66px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(115, 255, 69, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(115, 255, 69, 0.018), 0 0 0 44px rgba(115, 255, 69, 0.012);
  content: "";
}

.specialty-card__icon {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115, 255, 69, 0.32);
  border-radius: 50%;
  background: rgba(115, 255, 69, 0.045);
  box-shadow: inset 0 0 24px rgba(115, 255, 69, 0.04);
}

.specialty-card__icon i,
.specialty-card__icon i::before,
.specialty-card__icon i::after {
  position: absolute;
  display: block;
  content: "";
}

.specialty-card--matte .specialty-card__icon i {
  width: 34px;
  height: 34px;
  overflow: hidden;
  transform: rotate(45deg);
  border: 1px solid var(--green);
  border-radius: 4px 15px 4px 15px;
}

.specialty-card--matte .specialty-card__icon i::before {
  inset: 0 50% 0 0;
  background: rgba(115, 255, 69, 0.52);
}

.specialty-card--matte .specialty-card__icon i::after {
  top: -10px;
  left: 50%;
  width: 1px;
  height: 54px;
  background: var(--gold-soft);
}

.specialty-card--headlight .specialty-card__icon i {
  width: 42px;
  height: 25px;
  transform: skewX(-17deg);
  border: 2px solid var(--green);
  border-radius: 70% 20% 55% 24%;
}

.specialty-card--headlight .specialty-card__icon i::before,
.specialty-card--headlight .specialty-card__icon i::after {
  right: -13px;
  width: 10px;
  height: 1px;
  background: var(--gold-soft);
  box-shadow: 0 0 8px rgba(238, 216, 137, 0.45);
}

.specialty-card--headlight .specialty-card__icon i::before {
  top: 7px;
  transform: rotate(-10deg);
}

.specialty-card--headlight .specialty-card__icon i::after {
  bottom: 7px;
  transform: rotate(10deg);
}

.specialty-card h3 {
  margin: 8px 0 10px;
  color: #f5f8f6;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
}

.specialty-card p {
  color: #b7c2ba;
  font-size: 0.9rem;
  line-height: 1.65;
}

.specialty-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 19px 0 0;
  list-style: none;
}

.specialty-card li {
  padding: 6px 8px;
  border: 1px solid rgba(115, 255, 69, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: #d8e1da;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.specialty-card__warranty {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: #a9b4ac;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.specialty-card__warranty strong {
  color: var(--gold-soft);
}

.product-warranty-note,
.showcase-v3__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 920px;
  margin: 22px 0 0;
  color: #8f9b93;
  font-size: 0.72rem;
  line-height: 1.6;
}

.product-warranty-note > span,
.showcase-v3__note > span {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 163, 75, 0.32);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 0.7rem;
  font-style: italic;
}

.product-warranty-note strong,
.showcase-v3__note strong {
  color: #bdc6bf;
}

.product-section__actions {
  margin-top: 28px;
}

.showcase-v3__note {
  max-width: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(202, 163, 75, 0.1);
  background: rgba(255, 255, 255, 0.012);
}

/* Product listing cards: text and specification always sit on a solid surface. */
.product-card,
.product-section .product-card {
  min-height: 0;
  display: grid;
  grid-template-rows: 188px 1fr;
  padding: 0;
  border-color: rgba(202, 163, 75, 0.23);
  background: #050c08;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 26px 60px rgba(0, 0, 0, 0.28);
}

.product-card::before,
.product-card:hover::before {
  z-index: 1;
  inset: 0;
  transform: none;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.07) 43%, transparent 58%);
  opacity: 0;
  transition: opacity 0.35s;
}

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

.product-card__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 78% 20%, rgba(115, 255, 69, 0.18), transparent 14rem),
    linear-gradient(140deg, #0c2717, #041008);
}

.product-card__visual::before {
  position: absolute;
  top: -60px;
  right: -36px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(115, 255, 69, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(115, 255, 69, 0.025), 0 0 0 56px rgba(115, 255, 69, 0.012);
  content: "";
}

.product-card[data-category="special"] .product-card__visual,
.product-card[data-category="color"] .product-card__visual {
  background:
    radial-gradient(circle at 78% 20%, rgba(238, 216, 137, 0.2), transparent 14rem),
    linear-gradient(140deg, #28200e, #0a0c08);
}

.product-card[data-category="matte"] .product-card__visual {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.08) 0 48%, transparent 49%),
    linear-gradient(140deg, #1d2921, #09100c);
}

.product-card[data-category="headlight"] .product-card__visual {
  background:
    radial-gradient(ellipse at 82% 52%, rgba(115, 255, 69, 0.26), transparent 31%),
    linear-gradient(140deg, #081c11, #020705);
}

.product-card[data-category="interior"] .product-card__visual {
  background:
    repeating-linear-gradient(125deg, rgba(115, 255, 69, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(140deg, #0a1b12, #030806);
}

.product-card__mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.product-card__mark strong {
  color: #f4f7f5;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.product-card__mark small {
  max-width: 78px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.59rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.product-card__warranty {
  position: relative;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(202, 163, 75, 0.42);
  color: var(--gold-soft);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__content,
.product-section .product-card__content {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 26px;
  border: 0;
  background: linear-gradient(145deg, #07110b, #030805);
  box-shadow: none;
  transform: none;
  backdrop-filter: none;
}

.product-card h3,
.product-section .product-card h3 {
  margin-bottom: 12px;
  color: #f4f7f5;
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  line-height: 1.04;
}

.product-card p,
.product-section .product-card p {
  display: block;
  min-height: 0;
  overflow: visible;
  color: #b7c2ba;
  font-size: 0.88rem;
  line-height: 1.62;
  -webkit-line-clamp: initial;
}

.product-card__meta,
.product-section .product-card__meta {
  margin: 18px 0 22px;
}

.product-card .button {
  margin-top: auto;
}

/* V3.11 — separate Economic and Diamond product videos */
.showcase-v311 {
  display: grid;
  gap: 18px;
}

.showcase-v311__videos,
.showcase-v311__documents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-video-card {
  position: relative;
  min-width: 0;
}

.showcase-video-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(115, 255, 69, 0);
  content: "";
  pointer-events: none;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.showcase-video-card:hover::after {
  border-color: rgba(115, 255, 69, 0.26);
  box-shadow: inset 0 0 42px rgba(115, 255, 69, 0.035);
}

.showcase-video-card--diamond {
  border-color: rgba(222, 192, 111, 0.36);
}

.showcase-video-card--diamond:hover::after {
  border-color: rgba(222, 192, 111, 0.4);
  box-shadow: inset 0 0 48px rgba(222, 192, 111, 0.045);
}

.showcase-video-card__media {
  height: clamp(380px, 37vw, 540px);
  min-height: 0;
}

.showcase-video-card__media video {
  max-height: none;
  object-fit: contain;
}

.showcase-video-card__spec {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(222, 192, 111, 0.27);
  background: rgba(2, 10, 6, 0.82);
  color: var(--gold-soft);
  font-family: var(--font-tech);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.showcase-v3__live--gold {
  border-color: rgba(222, 192, 111, 0.36);
  color: var(--gold-soft);
}

.showcase-v3__live--gold i {
  background: var(--gold-soft);
  box-shadow: 0 0 13px rgba(222, 192, 111, 0.76);
}

.showcase-v311__documents {
  grid-template-rows: none;
}

.showcase-v311__documents .showcase-v3__proof-media {
  min-height: 300px;
  aspect-ratio: 16 / 8.7;
}

.showcase-v311__documents .showcase-v3__proof-media img {
  max-height: 330px;
}

/* V3.10 — authentic workshop imagery and visible warranty scope */
.section--real-results {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(103, 255, 55, 0.065), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(202, 163, 75, 0.055), transparent 30rem),
    #020805;
}

.section--real-results::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(103, 255, 55, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 255, 55, 0.027) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  content: "";
}

.section--real-results .container {
  position: relative;
  z-index: 1;
}

.real-results {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 720px;
}

.real-result-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(222, 192, 111, 0.24);
  background: #07100b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.32);
  cursor: zoom-in;
}

.real-result-card--application {
  grid-row: 1 / 3;
}

.real-result-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 5, 2, 0.18) 52%, rgba(0, 5, 2, 0.94) 100%),
    linear-gradient(105deg, rgba(103, 255, 55, 0.09), transparent 30%);
  content: "";
}

.real-result-card::after {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(238, 216, 137, 0.46);
  background:
    linear-gradient(var(--gold-soft), var(--gold-soft)) center / 14px 1px no-repeat,
    linear-gradient(var(--gold-soft), var(--gold-soft)) center / 1px 14px no-repeat,
    rgba(2, 8, 5, 0.76);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
  content: "";
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.real-result-card:hover::after {
  transform: rotate(90deg);
  background-color: rgba(18, 71, 34, 0.84);
}

.real-result-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.5s ease;
}

.real-result-card--application img {
  object-position: 50% 50%;
}

.real-result-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.real-result-card figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 4vw, 44px);
}

.real-result-card:not(.real-result-card--application) figcaption {
  padding: 24px 26px;
}

.real-result-card figcaption > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-family: var(--font-tech);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.real-result-card figcaption h3 {
  margin: 0 0 8px;
  color: #f7f9f7;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.real-result-card:not(.real-result-card--application) figcaption h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
}

.real-result-card figcaption p {
  max-width: 630px;
  margin: 0;
  color: #c4cec7;
  font-size: 0.86rem;
  line-height: 1.55;
}

.real-result-card figcaption small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--gold-soft);
  font-family: var(--font-tech);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.real-result-card figcaption small::before {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.material-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  min-height: 430px;
  margin-top: 18px;
  border: 1px solid rgba(222, 192, 111, 0.24);
  background:
    radial-gradient(circle at 90% 20%, rgba(103, 255, 55, 0.09), transparent 17rem),
    linear-gradient(135deg, #08130c, #030805);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.material-proof__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  cursor: zoom-in;
}

.material-proof__media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 58%, rgba(3, 9, 5, 0.84) 100%);
  content: "";
}

.material-proof__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.material-proof__media:hover img {
  transform: scale(1.035);
}

.material-proof__media > span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(103, 255, 55, 0.4);
  background: rgba(1, 8, 4, 0.78);
  color: var(--green);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.material-proof__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
}

.material-proof__copy h3 {
  max-width: 520px;
  margin: 12px 0 18px;
  color: #f5f8f6;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.material-proof__copy p {
  max-width: 520px;
  color: #aebbb2;
  font-size: 0.94rem;
  line-height: 1.7;
}

.material-proof__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.material-proof__copy li {
  padding: 8px 10px;
  border: 1px solid rgba(103, 255, 55, 0.18);
  background: rgba(103, 255, 55, 0.035);
  color: #dce5df;
  font-family: var(--font-tech);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.warranty-scope {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  max-width: none;
  margin: 24px 0 0;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(222, 192, 111, 0.34);
  border-left: 3px solid var(--gold-soft);
  background:
    radial-gradient(circle at 94% 15%, rgba(103, 255, 55, 0.09), transparent 18rem),
    linear-gradient(120deg, rgba(202, 163, 75, 0.08), rgba(4, 15, 8, 0.94) 38%, rgba(2, 9, 5, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 45px rgba(0, 0, 0, 0.24);
}

.warranty-scope::after {
  position: absolute;
  right: -22px;
  bottom: -66px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(103, 255, 55, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(103, 255, 55, 0.022);
  content: "";
}

.warranty-scope__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 64px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 94% 16%, 88% 70%, 50% 100%, 12% 70%, 6% 16%);
  background: linear-gradient(155deg, #d9b85e, #88631c);
}

.warranty-scope__icon::before {
  position: absolute;
  inset: 3px;
  clip-path: inherit;
  background: linear-gradient(145deg, #0b2917, #021006);
  content: "";
}

.warranty-scope__icon i {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 22px;
  border-radius: 99px;
  background:
    linear-gradient(var(--gold-soft), var(--gold-soft)) top / 8px 8px no-repeat,
    linear-gradient(var(--gold-soft), var(--gold-soft)) bottom / 8px 10px no-repeat;
}

.warranty-scope > div {
  position: relative;
  z-index: 1;
}

.warranty-scope strong {
  display: block;
  margin-bottom: 7px;
  color: #f1d98e;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.warranty-scope p {
  max-width: 980px;
  margin: 0;
  color: #d5ddd7;
  font-size: 0.88rem;
  line-height: 1.65;
}

.warranty-scope--compact {
  margin-top: 26px;
}

.warranty-scope--documents {
  margin-top: 20px;
}
