:root {
  --kevla-green: #00984a;
  --kevla-green-dark: #00723a;
  --kevla-green-deep: #00833f;
  --kevla-yellow: #ffc400;
  --ink: #17211c;
  --muted: #66736d;
  --line: #dce5df;
  --soft: #f4f7f4;
  --white: #ffffff;
  --danger: #b43d22;
  --shadow: 0 16px 40px rgba(0, 114, 58, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #eef3ef;
  color: var(--ink);
}

body {
  min-height: 100%;
  margin: 0;
  background: #eef3ef;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

.app-shell {
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 223, 0.9);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup img {
  display: block;
  width: 138px;
  height: auto;
}

.market-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--kevla-green-dark);
  font-size: 13px;
  font-weight: 800;
  background: #f8fbf8;
}

.app-main {
  min-height: calc(100vh - 64px);
  padding-bottom: 104px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--white);
  background: var(--kevla-green-deep);
}

.hero > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 91, 48, 0.82), rgba(0, 112, 58, 0.24) 44%, rgba(0, 90, 48, 0.03) 70%, rgba(0, 69, 37, 0.18));
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 26px 18px 24px;
}

.hero-content h1 {
  max-width: 330px;
  font-size: 38px;
}

.hero-slogan {
  display: block;
  width: min(270px, 78vw);
  height: auto;
  margin-top: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--kevla-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--kevla-yellow);
}

.hero h1,
.page-title h1,
.detail-title h1 {
  margin: 0;
  font-size: clamp(32px, 11vw, 48px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 330px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions,
.action-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.hero-content .hero-actions {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 18px;
  right: 18px;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.button.primary {
  color: var(--ink);
  background: var(--kevla-yellow);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button.green {
  color: var(--white);
  background: var(--kevla-green);
}

.button.dark {
  color: var(--white);
  background: var(--kevla-green-deep);
}

.button.ghost {
  color: var(--kevla-green-dark);
  border: 1px solid var(--line);
  background: var(--white);
}

.section {
  padding: 22px 16px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-header h2,
.panel h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-header a {
  color: var(--kevla-green-dark);
  font-size: 13px;
  font-weight: 900;
}

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

.category-tile {
  position: relative;
  min-height: 206px;
  overflow: hidden;
  border-radius: 8px;
  background: #e9eee9;
  box-shadow: var(--shadow);
}

.category-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(.72) contrast(.88);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(238,243,238,.18) 42%, rgba(20,35,27,.42) 100%);
}

.category-vehicle {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(8px 12px 8px rgba(20,30,24,.3));
}

.category-motorcycle .category-scene { object-position: 72% center; }
.category-motorcycle .category-vehicle { right: -9%; bottom: 8px; width: 111%; height: 72%; object-position: right bottom; }
.category-tricycle .category-scene { object-position: 52% center; }
.category-tricycle .category-vehicle { right: -12%; bottom: 4px; width: 119%; height: 76%; object-position: right bottom; }

.category-copy { position: absolute; top: 12px; left: 12px; z-index: 3; }
.category-copy strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
}

.category-copy span {
  display: block;
  width: max-content;
  margin-top: 5px;
  padding: 4px 6px;
  border-radius: 4px;
  color: #183726;
  background: var(--kevla-yellow);
  font-size: 10px;
  font-weight: 900;
}

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

.catalog-section {
  padding: 12px 10px 0;
}

.catalog-section .product-grid {
  gap: 8px;
}

.catalog-section .product-card {
  padding: 6px;
}

.catalog-section .product-media {
  aspect-ratio: 1 / 1;
  padding: 8px;
  border: 1px solid #edf1ee;
  background: var(--white);
}

.catalog-section .product-media img {
  object-fit: contain;
}

.catalog-section .product-info h3 {
  min-height: 31px;
  margin-bottom: 3px;
  font-size: 13px;
}

.catalog-section .product-info p {
  min-height: 15px;
  margin-bottom: 5px;
  font-size: 11px;
  -webkit-line-clamp: 1;
}

.use-tags { display: flex; gap: 4px; overflow: hidden; margin: 3px 0 5px; }
.use-tags span { min-width: 0; padding: 3px 5px; border-radius: 3px; color: #17613d; background: #e8f5ed; font-size: 8px; font-weight: 800; white-space: nowrap; }

.catalog-section .price-stack {
  gap: 1px;
}

.catalog-section .old-price {
  font-size: 10px;
}

.catalog-section .sale-price {
  font-size: 17px;
}

.catalog-section .save-line {
  font-size: 10px;
}

.catalog-section .product-card .button {
  min-height: 31px;
  margin-top: 6px;
  font-size: 11px;
}

.product-card {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 114, 58, 0.07);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  position: absolute;
  left: 6px;
  top: 6px;
  padding: 4px 6px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--kevla-yellow);
  font-size: 10px;
  font-weight: 900;
}

.product-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-info h3 {
  display: -webkit-box;
  min-height: 34px;
  margin: 0 0 4px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.16;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-info p {
  display: -webkit-box;
  min-height: 31px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price-stack {
  display: grid;
  gap: 3px;
  margin-top: auto;
}

.old-price {
  color: #8a9691;
  font-size: 11px;
  font-weight: 800;
  text-decoration: line-through;
}

.sale-price {
  color: var(--kevla-green-dark);
  font-size: 18px;
  font-weight: 950;
}

.save-line {
  width: fit-content;
  padding: 3px 6px;
  border-radius: 6px;
  color: var(--danger);
  background: #fff2dc;
  font-size: 11px;
  font-weight: 900;
}

.product-card .button {
  width: 100%;
  min-height: 34px;
  margin-top: 8px;
  padding: 9px 8px;
  font-size: 12px;
}

.why-grid {
  display: grid;
  gap: 10px;
}

.why-item,
.info-strip,
.lead-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf8;
}

.why-item {
  padding: 14px;
}

.why-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.why-item p,
.info-strip p,
.panel p,
.empty-state {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.page-title {
  padding: 14px 12px 12px;
  color: var(--white);
  background: var(--kevla-green-deep);
}

.page-title h1 {
  font-size: 30px;
}

.page-title p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.4;
}

.tabs {
  position: sticky;
  top: 64px;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.tab {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--kevla-green-dark);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.tab.active {
  color: var(--ink);
  border-color: var(--kevla-yellow);
  background: var(--kevla-yellow);
}

.detail-hero {
  background: var(--white);
}

.detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #f8fbf8;
  font-size: 13px;
  font-weight: 900;
}

.detail-topbar a {
  color: var(--kevla-green-dark);
}

.detail-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-counter { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; border-radius: 6px; color: var(--white); background: rgba(15,27,20,.76); font-size: 10px; font-weight: 900; }

.gallery-thumbnails {
  display: grid;
  grid-auto-columns: 29%;
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-video {
  margin-top: 14px;
  border: 1px solid #dbe4de;
  background: #f7faf8;
}

.product-video-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.product-video-heading span {
  padding: 4px 6px;
  background: #ffc400;
  color: #142019;
  font-size: 10px;
  font-weight: 800;
}

.product-video-heading strong { font-size: 14px; }
.product-video video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #111; object-fit: contain; }

.gallery-thumbnails::-webkit-scrollbar { display: none; }

.gallery-thumb {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  scroll-snap-align: center;
}

.purchase-assurance { display: grid; gap: 0; margin-top: 15px; border-top: 1px solid var(--line); }
.purchase-assurance span { position: relative; padding: 9px 0 9px 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 800; }
.purchase-assurance span::before { content: "✓"; position: absolute; left: 0; color: var(--kevla-green-dark); font-weight: 900; }

.gallery-thumb.active {
  border-color: var(--kevla-green);
  box-shadow: inset 0 0 0 1px var(--kevla-green);
  color: var(--kevla-green-dark);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: 5px;
  object-fit: contain;
  background: #f7faf7;
}

.gallery-thumb span {
  overflow: hidden;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-title {
  padding: 18px 16px 16px;
  border-bottom: 1px solid var(--line);
}

.detail-title h1 {
  color: var(--ink);
  font-size: 34px;
}

.detail-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.detail-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  background: #f7faf7;
}

.detail-price .sale-price {
  font-size: 26px;
}

.configuration-options {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
}

.configuration-options legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.configuration-grid {
  display: grid;
  gap: 8px;
}

.configuration-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.configuration-option:has(input:checked) {
  border-color: var(--kevla-green);
  box-shadow: inset 4px 0 0 var(--kevla-green);
}

.configuration-option input {
  accent-color: var(--kevla-green);
}

.configuration-option strong,
.configuration-option small {
  display: block;
}

.configuration-option strong {
  font-size: 12px;
  line-height: 1.3;
}

.configuration-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.configuration-options > p,
.lead-summary .request-configuration {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(126px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 0;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.detail-meta-grid::-webkit-scrollbar { display: none; }

.detail-meta-grid div {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.detail-section-nav { position: sticky; top: 64px; z-index: 24; display: grid; grid-auto-columns: max-content; grid-auto-flow: column; gap: 22px; overflow-x: auto; padding: 0 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); scrollbar-width: none; }
.detail-section-nav::-webkit-scrollbar { display: none; }
.detail-section-nav a { position: relative; display: grid; align-items: center; min-height: 44px; color: var(--muted); font-size: 11px; font-weight: 900; }
.detail-section-nav a:first-child { color: var(--kevla-green-dark); }
.detail-section-nav a:first-child::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--kevla-yellow); }
#productOverview, #productPerformance, #productSpecs, #productDealer { scroll-margin-top: 116px; }

.detail-meta-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-meta-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.section-intro { padding: 0 16px; }
.section-intro h2 { margin: 0; font-size: 25px; line-height: 1.08; }
.section-intro > p:last-child { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.feature-band { padding: 25px 0 22px; background: var(--white); }
.feature-list { margin-top: 19px; border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 36px 1fr; align-items: center; min-height: 68px; padding: 10px 16px; border-bottom: 1px solid var(--line); }
.feature-list article > span { color: var(--kevla-green-dark); font-size: 11px; font-weight: 900; }
.feature-list h3 { margin: 0; font-size: 15px; line-height: 1.35; }

.product-story {
  margin-top: 14px;
  background: var(--kevla-green-deep);
}

.story-copy {
  padding: 20px 16px 16px;
  color: var(--white);
}

.story-copy h2 {
  max-width: 390px;
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: 0;
}

.story-copy > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.product-story > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
}

.task-stage { overflow: hidden; color: var(--ink); background: #f7edb8; }
.task-heading { padding: 24px 18px 17px; }
.task-heading .eyebrow { color: #164d31; }
.task-heading h2 { max-width: 430px; margin: 0; font-size: 29px; line-height: 1.03; }
.task-heading > p:last-child { max-width: 430px; margin: 10px 0 0; font-size: 14px; line-height: 1.5; }
.task-visual { position: relative; min-height: 310px; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 62% 74%, rgba(255,255,255,.68), rgba(255,255,255,0) 48%); }
.task-vehicle { position: absolute; right: 2%; bottom: 0; z-index: 2; display: block; width: 94%; height: 91%; object-fit: contain; object-position: right bottom; filter: drop-shadow(14px 18px 14px rgba(36,43,32,.25)); }
.visual-variant-1 .task-vehicle { right: 8%; width: 86%; height: 81%; }
.visual-variant-2 .task-vehicle { right: -3%; bottom: 3%; width: 96%; height: 75%; }
.visual-variant-3 .task-vehicle { right: 5%; bottom: -2%; width: 89%; height: 84%; }
.visual-variant-2 .task-model-label { right: 17px; left: auto; text-align: right; }
.task-model-label { position: absolute; bottom: 23%; left: 17px; z-index: 3; max-width: 34%; }
.task-model-label span { display: block; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.task-model-label strong { display: block; margin-top: 3px; font-size: 14px; line-height: 1.1; }
.task-user-strip { position: relative; height: 176px; overflow: hidden; border-top: 6px solid rgba(255,255,255,.9); }
.task-user-strip img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); }
.task-passenger .task-user-strip img { object-position: 28% 39%; }
.task-shop .task-user-strip img { object-position: 78% 42%; }
.task-produce .task-user-strip img { object-position: 18% 46%; }
.task-site .task-user-strip img { object-position: 25% 48%; }
.task-user-strip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,31,27,.76), transparent 72%); }
.task-user-strip div { position: absolute; bottom: 18px; left: 16px; z-index: 2; max-width: 48%; color: var(--white); }
.task-user-strip span { display: block; color: var(--kevla-yellow); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.task-user-strip strong { display: block; margin-top: 4px; font-size: 15px; line-height: 1.15; }
.task-data { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: #252a27; }
.task-data div { min-width: 0; padding: 14px 8px 13px; text-align: center; }
.task-data div + div { border-left: 1px solid rgba(255,255,255,.16); }
.task-data strong { display: block; overflow-wrap: anywhere; color: var(--white); font-size: 17px; line-height: 1.1; }
.task-data small { color: var(--kevla-yellow); font-size: 9px; }
.task-data span { display: block; margin-top: 6px; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 800; }

@media (min-width: 600px) {
  .task-visual { min-height: 430px; }
  .task-heading { padding: 32px 28px 20px; }
  .task-vehicle { width: 82%; height: 82%; }
  .task-user-strip { height: 230px; }
}

.technical-poster { padding: 30px 17px 24px; background: #f2f4f1; }
.poster-heading { text-align: center; }
.poster-heading h2 { margin: 0; font-size: 28px; line-height: 1.05; }
.technical-layout { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; min-height: 330px; margin-top: 17px; }
.technical-layout > img { display: block; width: 118%; max-height: 320px; margin-left: -14%; object-fit: contain; filter: drop-shadow(9px 14px 10px rgba(25,35,28,.17)); }
.technical-points { border-left: 1px solid #ccd3cc; }
.technical-points div { padding: 11px 0 11px 14px; border-bottom: 1px solid #dbe0db; }
.technical-points span { display: block; color: var(--muted); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.technical-points strong { display: block; margin-top: 3px; font-size: 17px; line-height: 1.1; overflow-wrap: anywhere; }
.technical-points small { color: var(--kevla-green-dark); font-size: 9px; }

.exterior-showcase { padding: 38px 0 0; overflow: hidden; background: var(--white); }
.exterior-heading { padding: 0 18px 22px; }
.exterior-heading h2 { margin: 0; font-size: 28px; line-height: 1.06; }
.exterior-heading > p:last-child { max-width: 430px; margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.exterior-showcase figure { margin: 0; }
.exterior-angle-list { border-top: 1px solid var(--line); }
.exterior-angle { padding: 12px 14px 0; border-bottom: 1px solid var(--line); background: #f4f6f4; }
.exterior-angle img { display: block; width: 100%; height: 360px; object-fit: contain; filter: drop-shadow(10px 15px 12px rgba(28,38,31,.18)); }
.exterior-angle figcaption { display: flex; align-items: center; gap: 10px; padding: 12px 2px 14px; }
.exterior-angle figcaption span { color: var(--kevla-green-dark); font-size: 10px; font-weight: 900; }
.exterior-angle figcaption strong { font-size: 12px; }

@media (min-width: 600px) {
  .exterior-angle img { height: 500px; }
}

.order-poster { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 350px; overflow: hidden; padding: 28px 0 0 18px; background: #eef1ed; }
.order-poster > div { position: relative; z-index: 2; align-self: start; }
.order-poster h2 { margin: 0; font-size: 29px; line-height: 1.03; }
.order-poster p:not(.eyebrow) { margin: 10px 0 16px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.order-poster .button { width: max-content; min-height: 40px; padding-inline: 14px; }
.order-poster > img { position: absolute; right: -12%; bottom: -3%; width: 72%; height: 74%; object-fit: contain; object-position: right bottom; filter: drop-shadow(12px 15px 10px rgba(28,39,31,.2)); }

.benefit-poster { position: relative; min-height: 590px; overflow: hidden; color: var(--white); background: #18261f; }
.benefit-poster > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.benefit-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,24,18,.78) 0%, rgba(13,24,18,.08) 45%, rgba(13,24,18,.5) 100%); }
.benefit-overlay { position: relative; z-index: 2; max-width: 420px; padding: 30px 18px; }
.benefit-overlay h2 { margin: 0; font-size: 31px; line-height: 1.02; }
.benefit-overlay > p:last-child { margin: 11px 0 0; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }

.detail-benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); background: #e1e5e1; gap: 1px; }
.detail-benefits article { min-height: 220px; padding: 24px 16px; background: var(--white); }
.detail-benefits article > span { color: var(--kevla-green-dark); font-size: 10px; font-weight: 900; }
.detail-benefits h3 { margin: 24px 0 0; font-size: 17px; line-height: 1.2; }
.detail-benefits p { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

@media (min-width: 600px) {
  .technical-layout { min-height: 430px; }
  .technical-layout > img { max-height: 420px; }
  .order-poster { min-height: 440px; padding: 42px 0 0 30px; }
  .benefit-poster { min-height: 720px; }
}

.brand-promise {
  padding: 26px 20px 24px;
  color: var(--white);
  background: var(--kevla-green-deep);
  border-top: 5px solid var(--kevla-yellow);
}

.brand-promise img {
  display: block;
  width: min(100%, 390px);
  height: auto;
}

.brand-promise p {
  max-width: 410px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.detail-media-section {
  display: grid;
  margin-top: 14px;
  background: var(--white);
}

.detail-media-section img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  object-fit: cover;
  background: var(--soft);
}

.detail-media-section > div {
  padding: 18px 16px 20px;
}

.detail-media-section h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.detail-media-section > div > p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.spec-experience {
  margin-top: 14px;
  padding: 22px 0 20px;
  border-top: 5px solid var(--kevla-yellow);
  background: var(--white);
}

.spec-visual-heading {
  padding: 0 16px 14px;
}

.spec-visual-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.spec-visual-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.spec-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-highlight {
  min-width: 0;
  padding: 17px 8px 15px;
  text-align: center;
}

.spec-highlight + .spec-highlight { border-left: 1px solid var(--line); }
.spec-highlight strong { display: inline-block; max-width: 100%; overflow-wrap: anywhere; font-size: clamp(18px, 6vw, 24px); line-height: 1; }
.spec-unit { margin-left: 3px; color: var(--kevla-green-dark); font-size: 10px; font-weight: 900; }
.spec-label { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; font-weight: 800; }

.spec-groups { padding: 8px 16px 0; }
.spec-group { border-bottom: 1px solid var(--line); }
.spec-group summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 900;
}
.spec-group summary::-webkit-details-marker { display: none; }
.spec-group summary::after { content: "+"; margin-left: auto; color: var(--kevla-green-dark); font-size: 21px; font-weight: 500; }
.spec-group[open] summary::after { content: "−"; }
.spec-group summary span { color: var(--kevla-green-dark); font-size: 10px; }
.spec-group dl { margin: 0 0 12px; }
.spec-group dl div { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 14px; padding: 10px 0; border-top: 1px solid #edf0ed; }
.spec-group dt { color: var(--muted); font-size: 12px; }
.spec-group dd { margin: 0; text-align: right; font-size: 12px; font-weight: 800; line-height: 1.35; }

.detail-view-heading {
  padding: 24px 16px 10px;
}

.detail-view-heading h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.detail-view-heading > p:last-child { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.detail-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 0 16px 8px; }
.detail-feature { margin: 0; min-width: 0; }
.detail-feature-wide { grid-column: 1 / -1; }
.detail-feature img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #f7f8f7; }
.detail-feature-wide img { aspect-ratio: 16 / 10; }
.detail-feature figcaption { display: flex; gap: 7px; align-items: flex-start; padding: 9px 1px 5px; }
.detail-feature figcaption span { color: var(--kevla-green-dark); font-size: 9px; font-weight: 900; }
.detail-feature figcaption strong { font-size: 11px; line-height: 1.35; }

.detail-view-strip {
  display: grid;
  grid-auto-columns: 78%;
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.detail-view-strip::-webkit-scrollbar {
  display: none;
}

.detail-view-strip figure {
  margin: 0;
  scroll-snap-align: start;
}

.detail-view-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-view-strip figcaption {
  padding: 8px 2px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.spec-source-link {
  display: block;
  margin: 12px 16px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--kevla-green-dark);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.use-case-section { padding: 27px 0 24px; border-top: 5px solid var(--kevla-yellow); background: #f4f7f4; }
.use-case-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 18px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.use-case-list div { min-height: 104px; padding: 14px 16px; background: var(--white); }
.use-case-list span { display: block; margin-bottom: 16px; color: var(--kevla-green-dark); font-size: 10px; font-weight: 900; }
.use-case-list strong { display: block; font-size: 13px; line-height: 1.4; }

.dealer-journey { padding: 38px 18px 42px; color: var(--white); background: #252a27; }
.dealer-journey h2 { max-width: 410px; margin: 0; font-size: 27px; line-height: 1.08; }
.dealer-journey > p:not(.eyebrow) { margin: 12px 0 0; color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.55; }
.dealer-journey ol { margin: 22px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.dealer-journey li { display: grid; grid-template-columns: 34px 1fr; align-items: center; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.16); }
.dealer-journey li span { color: var(--kevla-yellow); font-size: 11px; font-weight: 900; }
.dealer-journey li strong { font-size: 13px; line-height: 1.35; }
.dealer-actions { display: grid; gap: 10px; margin-top: 22px; }
.dealer-journey .dealer-note { margin-top: 12px; font-size: 11px; color: rgba(255,255,255,.62); }
.dealer-actions .catalog-link {
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: transparent;
  text-align: center;
}

.dealer-actions .catalog-link:hover,
.dealer-actions .catalog-link:focus-visible {
  border-color: var(--kevla-yellow);
  color: var(--kevla-yellow);
  background: rgba(255, 255, 255, 0.06);
}

.product-sticky-actions { position: fixed; z-index: 44; right: 0; bottom: calc(66px + env(safe-area-inset-bottom)); left: 0; display: grid; grid-template-columns: .9fr .78fr 1.12fr; gap: 7px; max-width: 760px; margin: auto; padding: 8px 12px; border-top: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 -8px 24px rgba(13,31,22,.08); backdrop-filter: blur(12px); }
.product-sticky-actions a { display: grid; place-items: center; min-height: 44px; border-radius: 7px; font-size: 13px; font-weight: 900; }
.sticky-price { align-self: center; min-width: 0; }
.sticky-price span { display: block; color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.sticky-price strong { display: block; margin-top: 2px; overflow-wrap: anywhere; font-size: 12px; line-height: 1.1; }
.sticky-whatsapp { color: var(--kevla-green-dark); border: 1px solid var(--kevla-green); background: var(--white); }
.sticky-request { color: #07180f; background: var(--kevla-yellow); }

.panel {
  margin: 14px 16px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.panel h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.bullet-list,
.process-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.process-list li {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.bullet-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--kevla-yellow);
}

.process-list {
  counter-reset: step;
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--kevla-yellow);
  font-size: 12px;
  font-weight: 900;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.spec-table th {
  width: 42%;
  color: var(--muted);
  font-weight: 800;
}

.spec-table td {
  color: var(--ink);
  font-weight: 800;
}

.spec-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--kevla-green-dark);
  background: #f8fbf8;
  font-size: 13px;
  font-weight: 900;
}

.form-page {
  padding: 16px;
}

.lead-summary {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 14px;
  padding: 10px;
}

.lead-summary img {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--soft);
}

.lead-summary h1 {
  margin: 2px 0 6px;
  font-size: 22px;
  line-height: 1.12;
}

.lead-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 12px 0 16px;
}

.step {
  min-height: 42px;
  padding: 7px 5px;
  border-radius: 8px;
  color: var(--kevla-green-dark);
  background: #edf7f1;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
}

.step.active {
  color: var(--ink);
  background: var(--kevla-yellow);
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--kevla-green);
  box-shadow: 0 0 0 3px rgba(0, 152, 74, 0.12);
}

.form-note {
  padding: 12px;
  border-radius: 8px;
  color: var(--muted);
  background: #f7faf7;
  font-size: 13px;
  line-height: 1.45;
}

.success-card {
  margin: 28px 16px 0;
  padding: 22px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--kevla-green-deep);
}

.success-card h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.success-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.success-card .button {
  margin-top: 16px;
}

.info-strip {
  margin: 16px;
  padding: 12px;
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 520px;
  margin: 0 auto;
  padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(220, 229, 223, 0.95);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 0;
  min-height: 52px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.bottom-nav a.active {
  color: var(--kevla-green-dark);
  background: #edf7f1;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--kevla-green);
  font-size: 11px;
  font-weight: 950;
}

.bottom-nav a.active .nav-icon {
  color: var(--ink);
  background: var(--kevla-yellow);
}

.whatsapp-float {
  position: fixed;
  right: max(16px, calc((100vw - 520px) / 2 + 16px));
  bottom: calc(84px + env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: #1fa855;
  box-shadow: 0 12px 28px rgba(11, 87, 47, 0.28);
  font-size: 13px;
  font-weight: 950;
}

body[data-route="product"] .whatsapp-float { display: none; }

.whatsapp-float::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--kevla-yellow);
}

.error-state {
  margin: 24px 16px;
  padding: 16px;
  border: 1px solid #ffd1c3;
  border-radius: 8px;
  color: #6f2514;
  background: #fff4ef;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 521px) {
  .app-shell {
    min-height: 100vh;
  }
}
