:root {
  --navy: #0E2233;
  --navy-deep: #0A1A28;
  --ice: #F4F8FA;
  --ice-tile: #DCEEF3;
  --teal: #2FA8C4;
  --teal-deep: #145C74;
  --warm: #D9622B;
  --ink: #0D1B24;
  --ink-soft: #4C6472;
  --ink-on-navy: #EAF3F6;
  --ink-on-navy-soft: #9FBECA;
  --border-light: #C9DEE5;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ice);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal-deep);
  color: var(--ice);
}
.btn-primary:hover { background: var(--navy); }
.btn-primary:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.btn-large { padding: 16px 32px; font-size: 16px; }

.btn-ghost {
  border-color: var(--border-light);
  color: var(--teal-deep);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--teal-deep); background: var(--ice-tile); }
.btn-ghost:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* header */
.site-header {
  background: var(--ice);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logotype {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-decoration: none;
}
.logo-icon {
  color: var(--teal);
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-select {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--ice);
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  padding: 6px 8px;
  cursor: pointer;
}
.lang-select:hover { border-color: var(--teal-deep); }
.lang-select:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-link {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}
.nav-link:hover, .nav-link.is-active { color: var(--teal-deep); }
.cart-link { display: inline-flex; align-items: center; gap: 6px; }
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--teal-deep);
  color: var(--ice);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.cart-badge[hidden] { display: none; }

/* price + quantity */
.price-row {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 32px;
  color: var(--navy);
}
.price-meta {
  font-size: 16px;
  color: var(--ink-soft);
}

.pack-options {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pack-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-width: 168px;
  padding: 12px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.pack-option:hover { border-color: var(--teal); }
.pack-option:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.pack-option.is-selected {
  border-color: var(--teal-deep);
  background: var(--ice-tile);
}
.pack-option-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.pack-option-price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 18px;
  color: var(--teal-deep);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}
.qty-btn {
  width: 38px;
  height: 44px;
  border: none;
  background: transparent;
  color: inherit;
  font-family: var(--font-body);
  font-size: 18px;
  cursor: pointer;
}
.qty-btn:hover { background: rgba(255,255,255,0.08); }
.qty-value {
  min-width: 28px;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
}
.hero .qty-stepper { border-color: var(--border-light); }
.hero .qty-btn:hover { background: var(--ice-tile); }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  min-height: 1.2em;
}
.form-status-ok { color: var(--teal); }
.form-status-error { color: var(--warm); }

/* secondary pages: contact / cart / success / cancel */
.page-intro {
  background: var(--navy);
  color: var(--ink-on-navy);
  padding: 72px 0 56px;
}
.page-intro h1 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--ice);
  margin-bottom: 12px;
}
.page-intro p { color: var(--ink-on-navy-soft); font-size: 17px; max-width: 48ch; }

.form-section { padding: 64px 0 96px; }
.wrap-narrow { max-width: 560px; }

.stack-form { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--navy); }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  background: var(--ice);
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal-deep);
}
.form-section .form-status-error { color: #B3401E; }
.form-section .form-status-ok { color: var(--teal-deep); }

.cart-empty {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 0;
}
.cart-empty[hidden] { display: none; }
.cart-empty p { color: var(--ink-soft); font-size: 16px; }

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-line-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--ice-tile);
  border-radius: 4px;
  padding: 8px;
}
.cart-line-info { display: flex; flex-direction: column; gap: 4px; }
.cart-line-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.cart-line-price { font-family: var(--font-mono); font-size: 13.5px; color: var(--ink-soft); }
.cart-line-total { font-family: var(--font-mono); font-weight: 600; color: var(--navy); }
.cart-remove {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 13.5px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cart-remove:hover { color: var(--warm); }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 32px;
  font-weight: 600;
  color: var(--navy);
  font-size: 17px;
}
.cart-total-value { font-family: var(--font-mono); font-size: 22px; }

/* hero */
.hero {
  background: #fff;
  color: var(--ink);
  padding-top: 72px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('IMAGES_ILLUSTRATIONS_WEB/bg-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-copy h1,
  .hero-copy .hero-subtitle,
  .hero-copy .hero-sub,
  .hero-copy .hero-actions,
  .hero-copy .hero-meta,
  .hero-visual { opacity: 0; }

  .hero-copy h1 { animation: rise 0.7s 0.05s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-copy .hero-subtitle { animation: rise 0.7s 0.11s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-copy .hero-sub { animation: rise 0.7s 0.16s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-copy .hero-actions { animation: rise 0.7s 0.27s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-copy .hero-meta { animation: rise 0.7s 0.36s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-visual { animation: fade-in 0.9s 0.1s ease forwards; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy {
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
  border-radius: 20px;
  padding: 32px;
  margin: -32px;
}
.hero-claim {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: var(--navy);
}
.hero-claim-number {
  font-family: var(--font-mono);
  color: var(--teal-deep);
}
.hero-subtitle {
  margin-top: 2cm;
  font-size: 29px;
  line-height: 1.15;
  color: var(--ink-soft);
}
.hero-sub {
  margin-top: 24px;
  max-width: 42ch;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: var(--teal-deep);
  color: var(--ice);
}
.hero-actions .btn-primary:hover { background: var(--navy); }

.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 28px;
  color: var(--navy);
}
.rating-label {
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--ink-soft);
}
.hero-meta {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-meta a { color: var(--teal-deep); text-decoration: underline; }
.hero-meta a:hover { color: var(--navy); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.hero-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  background: linear-gradient(155deg, var(--ice-tile), var(--teal) 140%);
  opacity: 0.55;
}
.hero-image {
  position: relative;
  width: 62%;
  max-width: 300px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
  transform: rotate(-4deg);
}

/* gauge */
.gauge-band {
  margin-top: 56px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
}
.gauge { width: 100%; height: 64px; display: block; margin-top: 6px; }
.gauge-track { stroke: var(--border-light); stroke-width: 2; }
.gauge-zone { fill: var(--teal); opacity: 0.9; rx: 3; }
.gauge-zone-label {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  fill: var(--teal-deep);
  letter-spacing: 0.02em;
}
.gauge-tick-label {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  fill: var(--ink);
}
.gauge-tick-edge { fill: var(--ink-soft); }
.gauge-ticks line { stroke: var(--border-light); stroke-width: 2; }

/* features */
.features { padding: 96px 0; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.feature-media {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
}
.feature-a .feature-media { background: var(--ice-tile); }
.feature-b .feature-media { background: #EFE6DC; }
.feature-media img { max-width: 58%; max-height: 68%; object-fit: contain; }
.feature h2 {
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature p {
  color: var(--ink-soft);
  max-width: 42ch;
}

/* divider band */
.divider-band {
  height: 220px;
  background-image: url('IMAGES_ILLUSTRATIONS_WEB/bg-divider.jpg');
  background-size: cover;
  background-position: center;
}

/* guide */
.guide {
  background: var(--ice-tile);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.guide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('IMAGES_ILLUSTRATIONS_WEB/bg-guide.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}
.guide > * { position: relative; z-index: 1; }
.guide-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.guide-intro {
  background: rgba(244, 248, 250, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
  border-radius: 20px;
  padding: 24px;
  margin: -24px;
}
.guide-intro h2 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 20ch;
}
.guide-intro p {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 34ch;
}
.guide-factors-lead {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
  display: inline-block;
  background: rgba(244, 248, 250, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
  padding: 4px 10px;
  border-radius: 8px;
  margin-left: -10px;
}
.factor-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.factor-list li {
  padding: 14px 16px 14px 22px;
  border-top: 1px solid var(--border-light);
  border-left: 2px solid var(--teal-deep);
  color: var(--ink);
  font-size: 15.5px;
  background: rgba(244, 248, 250, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
}
.factor-list li:last-child { border-bottom: 1px solid var(--border-light); }

/* stat callout */
.stat-callout {
  background: var(--navy);
  padding: 76px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.stat-content {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-number-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-shrink: 0;
}
.stat-image {
  width: 240px;
  height: 240px;
  object-fit: contain;
  background: var(--navy-deep);
  border-radius: 8px;
  padding: 16px;
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 92px;
  line-height: 1;
  color: var(--teal);
}
.stat-unit {
  font-size: 16px;
  color: var(--ink-on-navy-soft);
  max-width: 8ch;
}
.stat-text {
  color: var(--ink-on-navy);
  font-size: 19px;
  max-width: 38ch;
}
.stat-text strong { color: var(--ice); }

/* details */
.details { padding: 88px 0; }
.details-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
}
.details-image {
  width: 100%;
  border-radius: 6px;
  background: var(--ice-tile);
  padding: 22px;
}
.details-copy h2 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}
.details-copy p {
  color: var(--ink-soft);
  max-width: 46ch;
}

/* final cta */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('IMAGES_ILLUSTRATIONS_WEB/bg-final-cta.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--teal-deep), var(--navy) 75%);
  opacity: 0.52;
  z-index: 0;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  background: rgba(10, 26, 40, 0.28);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
  border-radius: 20px;
  padding: 32px;
}
.final-cta h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--ice);
  margin-bottom: 14px;
  white-space: nowrap;
}
.final-cta p {
  color: var(--ink-on-navy-soft);
  margin-bottom: 32px;
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--ice);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 26, 40, 0.28);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: background-color 0.15s ease, transform 0.15s ease, opacity 0.25s ease, visibility 0.25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }
.back-to-top:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

@media (max-width: 520px) {
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
  .final-cta h2 { white-space: normal; }
}

/* footer */
.site-footer {
  background: var(--navy-deep);
  padding: 32px 0;
}
.payment-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(244, 248, 250, 0.12);
  text-align: center;
}
.payment-badges-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-on-navy-soft);
  opacity: 0.85;
}
.payment-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ice);
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.payment-badge img {
  display: block;
  height: 20px;
  width: auto;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-on-navy-soft);
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-brand .logo-icon { color: var(--teal); }
.footer-brand strong {
  font-family: var(--font-display);
  color: var(--ice);
  letter-spacing: 0.03em;
}
.footer-copy {
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-on-navy-soft);
  opacity: 0.75;
}
.footer-row a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.footer-row a:hover { text-decoration: underline; }

/* nav: hamburger menu */
@media (max-width: 700px) {
  .nav-toggle { display: flex; z-index: 2; }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ice);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .header-nav.is-open { max-height: 400px; }
  .header-nav .nav-link {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
  }
  .header-nav .btn-ghost {
    margin: 16px 20px 0;
    width: calc(100% - 40px);
  }
  #lang-switcher {
    margin: 16px 20px;
  }
  .lang-select {
    width: 100%;
    padding: 10px 12px;
  }
}

/* responsive */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 260px; order: -1; }
  .features-grid { grid-template-columns: 1fr; gap: 64px; }
  .guide-grid { grid-template-columns: 1fr; gap: 40px; }
  .details-grid { grid-template-columns: 1fr; }
  .details-image { max-width: 220px; }
  .stat-number { font-size: 68px; }
  .divider-band { height: 140px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-image { width: 100%; height: auto; aspect-ratio: 16 / 9; order: -1; padding: 20px; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .hero { padding-top: 48px; }
  .hero-actions { gap: 20px; }
  .gauge-tick-label { font-size: 13px; }

  .logotype { font-size: 17px; }

  .cart-line {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "image info"
      "image qty"
      "image total"
      "remove remove";
    row-gap: 10px;
  }
  .cart-line-image { grid-area: image; width: 56px; height: 56px; }
  .cart-line-info { grid-area: info; }
  .qty-stepper { grid-area: qty; }
  .cart-line-total { grid-area: total; }
  .cart-remove { grid-area: remove; justify-self: start; }
}
