﻿.product-overview-section,
.product-usecases-section {
  background: #0b0b0b;
}

.product-overview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.product-overview--top {
  align-items: start;
}

.product-overview > *,
.choose-grid > *,
.range-grid > *,
.feature-grid > *,
.product-spec-layout > *,
.proof-layout > *,
.controller-layout > *,
.product-metrics > *,
.process-grid > *,
.contact-panel > *,
.contact-panel-side > * {
  min-width: 0;
}

.product-copy,
.product-spec-copy,
.controller-copy,
.proof-copy {
  width: 100%;
  max-width: 760px;
}

.product-section-title {
  font-family: var(--font-display);
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -2px;
}

.product-copy p {
  font-family: var(--font-display);
  margin-bottom: 18px;
  color: rgba(240, 237, 232, 0.48);
  font-size: 15px;
  font-weight: 400;
  overflow-wrap: anywhere;
  line-height: 1.85;
}

.product-bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.product-bullet-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(240, 237, 232, 0.56);
  font-size: 14px;
  line-height: 1.7;
}

.product-bullet-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(43, 174, 142, 0.1);
}

.choose-section {
  background: #0c0c0c;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
  border-top: none;
}

.choose-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choose-column {
  min-height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.choose-column:hover {
  border-color: rgba(43, 174, 142, 0.22);
  background: rgba(43, 174, 142, 0.04);
  transform: translateY(-2px);
}


.choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(43, 174, 142, 0.22);
  border-radius: 14px;
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-accent);
}

.choose-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choose-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.choose-column h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.choose-column p {
  color: rgba(240, 237, 232, 0.44);
  font-size: 14px;
  overflow-wrap: anywhere;
  line-height: 1.78;
}

.product-highlight-card {
  overflow: hidden;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(43, 174, 142, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

.product-highlight-card--plain {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-highlight-card--stretch {
  align-self: stretch;
}

.product-highlight-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: 42px 24px 16px;
  background: radial-gradient(circle at 50% 20%, rgba(43, 174, 142, 0.14), transparent 52%);
}

.product-highlight-media--plain {
  background: transparent;
}

.product-highlight-media img {
  width: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.monnayeurs-hero-image {
  right: 70px;
  bottom: 12%;
  height: 76vh;
  max-height: 660px;
}

.range-band-section {
  padding-top: 0;
  padding-bottom: 28px;
}

.range-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(240, 237, 232, 0.08);
}

.range-band-item {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border: 0;
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.range-band-item strong {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.range-band-item span {
  color: rgba(240, 237, 232, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.range-band-item:hover,
.range-band-item.is-current {
  background:
    radial-gradient(circle at top center, rgba(43, 174, 142, 0.12), transparent 52%),
    rgba(255, 255, 255, 0.035);
}

.range-band-item.is-current strong,
.range-band-item:hover strong {
  color: var(--color-accent);
}

.product-highlight-media--range-map {
  min-height: auto;
  padding: 8px 0 0;
}

.range-story {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 22px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 8px 0;
}

.range-story-line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 18px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(43, 174, 142, 0.35), rgba(240, 237, 232, 0.08));
}

.range-story-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  min-height: 0;
}

.range-story-step {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(43, 174, 142, 0.22);
  border-radius: 50%;
  background: #101010;
  color: rgba(240, 237, 232, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.range-story-copy {
  padding: 2px 0 22px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
}

.range-story-item:last-child .range-story-copy {
  padding-bottom: 0;
  border-bottom: 0;
}

.range-story-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.range-story-copy span {
  color: rgba(240, 237, 232, 0.52);
  font-size: 13px;
  line-height: 1.7;
}

.bakery-platform-section,
.bakery-needs-section,
.bakery-features-section {
  background: rgba(255, 255, 255, 0.01);
}

.bakery-platform {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.94fr);
  gap: 42px;
  align-items: center;
}

.bakery-platform > *,
.bakery-split > *,
.bakery-needs-grid > *,
.bakery-feature-list > * {
  min-width: 0;
}

.bakery-platform-copy,
.bakery-split-copy {
  max-width: 700px;
}

.bakery-platform-copy .product-section-title,
.bakery-split-copy .product-section-title {
  margin-bottom: 18px;
}

.bakery-platform-copy p,
.bakery-split-copy p {
  color: rgba(240, 237, 232, 0.5);
  font-size: 15px;
  line-height: 1.86;
}

.bakery-platform-copy p + p {
  margin-top: 18px;
}

.bakery-platform-visual,
.bakery-split-visual {
  display: flex;
  justify-content: center;
}

.bakery-platform-frame {
  width: min(100%, 620px);
  padding: 28px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(43, 174, 142, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

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

.bakery-platform-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.028);
}

.bakery-platform-card--wide {
  margin-bottom: 14px;
  padding: 20px 22px;
}

.bakery-platform-label {
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bakery-platform-card strong {
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bakery-platform-card p {
  color: rgba(240, 237, 232, 0.48);
  font-size: 13px;
  line-height: 1.72;
}

.bakery-needs-section .prod-header,
.bakery-features-section .prod-header {
  margin-bottom: 58px;
}

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

.bakery-need {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
}

.bakery-need-step,
.bakery-feature-step {
  color: rgba(240, 237, 232, 0.2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bakery-need-copy h3,
.bakery-feature-body h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.bakery-need-copy p,
.bakery-feature-body p {
  color: rgba(240, 237, 232, 0.48);
  font-size: 14px;
  line-height: 1.78;
}

.bakery-split-section + .bakery-split-section {
  padding-top: 40px;
}

.bakery-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: 46px;
  align-items: center;
}

.bakery-split--reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 0.94fr);
}

.bakery-console,
.bakery-scale-panel,
.bakery-backoffice-panel {
  width: min(100%, 520px);
  padding: 24px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(43, 174, 142, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.bakery-console {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 14px;
}

.bakery-console-ticket,
.bakery-scale-head {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.bakery-console-ticket strong,
.bakery-scale-head strong,
.bakery-scale-weight {
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bakery-console-ticket span,
.bakery-scale-head span,
.bakery-scale-grid span {
  color: rgba(240, 237, 232, 0.52);
  font-size: 11px;
  line-height: 1.45;
}

.bakery-console-ticket b {
  margin-top: 8px;
  color: var(--color-accent);
  font-size: 15px;
}

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

.bakery-console-actions span,
.bakery-scale-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.024);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.bakery-scale-weight {
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-text);
  text-align: center;
}

.bakery-backoffice-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.bakery-backoffice-head strong {
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bakery-backoffice-head span,
.bakery-backoffice-kpis span,
.bakery-backoffice-list span {
  color: rgba(240, 237, 232, 0.52);
  font-size: 11px;
  line-height: 1.45;
}

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

.bakery-backoffice-kpis div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.bakery-backoffice-kpis strong {
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bakery-backoffice-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  min-height: 116px;
  margin: 20px 0;
}

.bakery-backoffice-chart span {
  display: block;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(43, 174, 142, 0.9), rgba(43, 174, 142, 0.2));
}

.bakery-backoffice-chart span:nth-child(1) { height: 30px; }
.bakery-backoffice-chart span:nth-child(2) { height: 54px; }
.bakery-backoffice-chart span:nth-child(3) { height: 84px; }
.bakery-backoffice-chart span:nth-child(4) { height: 68px; }
.bakery-backoffice-chart span:nth-child(5) { height: 96px; }
.bakery-backoffice-chart span:nth-child(6) { height: 58px; }

.bakery-backoffice-list {
  display: grid;
  gap: 10px;
}

.bakery-backoffice-list span {
  padding: 10px 12px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.024);
}

.bakery-sync-panel {
  position: relative;
  width: min(100%, 520px);
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(43, 174, 142, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.bakery-sync-top {
  position: absolute;
  top: 28px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bakery-sync-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 18px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.94);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.bakery-sync-brand--deliveroo {
  color: #7ef3e5;
}

.bakery-sync-lines {
  position: absolute;
  top: 102px;
  left: 24px;
  right: 24px;
  height: 120px;
}

.bakery-sync-line {
  position: absolute;
  top: 0;
  width: 36%;
  height: 1px;
  background: linear-gradient(90deg, rgba(43, 174, 142, 0.12), rgba(43, 174, 142, 0.8));
  transform-origin: left center;
}

.bakery-sync-line--left {
  left: 10%;
  transform: rotate(28deg);
}

.bakery-sync-line--right {
  right: 10%;
  transform: rotate(-28deg);
  transform-origin: right center;
}

.bakery-sync-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(100%, 230px);
  padding: 20px 18px 18px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(43, 174, 142, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #111111;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.bakery-sync-screen {
  display: grid;
  gap: 10px;
}

.bakery-sync-screen span {
  padding: 10px 12px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.024);
  color: rgba(240, 237, 232, 0.58);
  font-size: 11px;
  line-height: 1.4;
}

.bakery-sync-collect {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(43, 174, 142, 0.22);
  border-radius: 999px;
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transform: translateX(-50%);
}

.bakery-sync-arrow {
  position: absolute;
  top: 122px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  opacity: 0.85;
  animation: bakery-sync-arrow-pulse 2.2s ease-in-out infinite;
}

.bakery-sync-arrow--left {
  --arrow-rotation: 135deg;
  left: 42%;
  transform: rotate(135deg);
}

.bakery-sync-arrow--right {
  --arrow-rotation: -45deg;
  right: 42%;
  transform: rotate(-45deg);
  animation-delay: 0.25s;
}

@keyframes bakery-sync-arrow-pulse {
  0%, 100% { opacity: 0.35; transform: translateY(0) rotate(var(--arrow-rotation, 0deg)); }
  50% { opacity: 1; transform: translateY(6px) rotate(var(--arrow-rotation, 0deg)); }
}

.bakery-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.bakery-feature {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
}

.product-highlight-body {
  padding: 24px 26px 28px;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.product-highlight-card--plain .product-highlight-body {
  padding: 24px 0 0;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
  background: transparent;
}

.product-highlight-card--stretch .product-highlight-media--range-map {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.product-highlight-body strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.product-highlight-body span {
  color: rgba(240, 237, 232, 0.44);
  font-size: 14px;
  line-height: 1.75;
}

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

.config-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.config-filter {
  display: grid;
  gap: 8px;
}

.config-filters .compare-picker-label {
  color: rgba(240, 237, 232, 0.34);
}

.config-filters .compare-picker-select {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(240, 237, 232, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.config-filters .compare-picker-select:focus {
  border-bottom-color: rgba(43, 174, 142, 0.45);
  outline: none;
}

.config-grid .range-card[hidden] {
  display: none !important;
}

.config-empty {
  margin-top: 18px;
  color: rgba(240, 237, 232, 0.46);
  font-size: 14px;
  line-height: 1.75;
}

.range-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 24px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  transform: translateZ(0);
  transition: border-color var(--transition-base), transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.range-card:hover {
  border-color: rgba(43, 174, 142, 0.22);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

.range-card--featured {
  border-color: rgba(43, 174, 142, 0.3);
  background:
    radial-gradient(circle at top center, rgba(43, 174, 142, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.range-step {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(240, 237, 232, 0.22);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.range-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(43, 174, 142, 0.22);
  border-radius: 999px;
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.range-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin-bottom: 22px;
}

.range-media img {
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.45));
}

.range-title {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.range-copy {
  margin-bottom: 18px;
  color: rgba(240, 237, 232, 0.44);
  font-size: 14px;
  overflow-wrap: anywhere;
  line-height: 1.78;
}

.range-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
}

.range-meta strong {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.range-meta span {
  color: rgba(240, 237, 232, 0.64);
  font-size: 13px;
  overflow-wrap: anywhere;
  line-height: 1.7;
}

.range-list {
  display: grid;
  gap: 10px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.range-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(240, 237, 232, 0.55);
  font-size: 13px;
  overflow-wrap: anywhere;
  line-height: 1.65;
}

.range-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.range-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
}

.range-link {
  color: rgba(240, 237, 232, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.range-arrow {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.solution-module {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.solution-nav {
  display: grid;
  gap: 10px;
}

.solution-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(240, 237, 232, 0.82);
  text-align: left;
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base), color var(--transition-base);
}

.solution-tab:hover,
.solution-tab.is-active {
  border-color: rgba(43, 174, 142, 0.22);
  background: rgba(43, 174, 142, 0.06);
  color: var(--color-text);
  transform: translateX(4px);
}

.solution-tab-index {
  color: rgba(240, 237, 232, 0.28);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.solution-tab-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.solution-panels {
  position: relative;
}

.solution-panel {
  min-height: 100%;
  padding: 34px 34px 30px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(43, 174, 142, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.02);
}

.solution-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.solution-panel-copy-wrap {
  min-width: 0;
}

.solution-panel-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solution-panel-title {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.solution-panel-copy {
  max-width: 60ch;
  color: rgba(240, 237, 232, 0.54);
  font-size: 15px;
  line-height: 1.84;
}

.solution-panel-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}

.solution-panel-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(240, 237, 232, 0.72);
  font-size: 14px;
  line-height: 1.68;
}

.solution-panel-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(43, 174, 142, 0.08);
}

.solution-preview {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 16px 16px 0;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 24px 24px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(160deg, #1b1b1b, #0f0f0f);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.solution-preview::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150px;
  height: 16px;
  border-radius: 0 0 18px 18px;
  transform: translate(-50%, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.solution-preview-bar {
  display: none;
}

.solution-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 237, 232, 0.24);
}

.solution-preview-screen {
  position: relative;
  display: grid;
  grid-auto-rows: min-content;
  align-content: start;
  gap: 14px;
  min-height: 286px;
  padding: 16px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 18px;
  background:
    radial-gradient(circle at top center, rgba(43, 174, 142, 0.1), transparent 40%),
    #111111;
}

.solution-preview-chip {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(43, 174, 142, 0.12);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-preview-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.solution-preview-card strong,
.solution-preview-stats strong {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.solution-preview-card span,
.solution-preview-stats span,
.solution-preview-timeline span,
.solution-preview-grid span {
  color: rgba(240, 237, 232, 0.52);
  font-size: 11px;
  line-height: 1.4;
}

.solution-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.solution-preview-grid span,
.solution-preview-timeline span {
  padding: 9px 10px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.solution-preview-grid--permissions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-preview-timeline {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.solution-preview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.solution-preview-stats div {
  padding: 14px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.solution-preview-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 100px;
  margin-top: auto;
}

.solution-preview-chart span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(43, 174, 142, 0.9), rgba(43, 174, 142, 0.22));
}

.solution-preview-chart span:nth-child(1) { height: 34px; }
.solution-preview-chart span:nth-child(2) { height: 58px; }
.solution-preview-chart span:nth-child(3) { height: 44px; }
.solution-preview-chart span:nth-child(4) { height: 76px; }
.solution-preview-chart span:nth-child(5) { height: 62px; }

.pos-layout {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px;
  min-height: 100%;
}

.pos-left,
.pos-right {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.pos-ticket {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.pos-ticket strong,
.pos-ticket b {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pos-ticket span {
  color: rgba(240, 237, 232, 0.5);
  font-size: 10px;
  line-height: 1.4;
}

.pos-ticket b {
  margin-top: 4px;
  color: var(--color-accent);
}

.pos-keypad,
.pos-categories,
.pos-articles {
  display: grid;
  gap: 7px;
}

.pos-keypad {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pos-keypad span,
.pos-categories span,
.pos-articles span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 9px 7px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(240, 237, 232, 0.64);
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}

.pos-keypad span:nth-last-child(2),
.pos-keypad span:last-child {
  color: var(--color-accent);
  border-color: rgba(43, 174, 142, 0.18);
  background: rgba(43, 174, 142, 0.08);
}

.pos-categories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pos-categories span:first-child {
  color: var(--color-accent);
  border-color: rgba(43, 174, 142, 0.18);
  background: rgba(43, 174, 142, 0.08);
}

.pos-categories span {
  min-height: 40px;
  padding: 7px 5px;
  font-size: 10px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pos-articles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.kiosk-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  width: 100%;
}

.kiosk-frame {
  position: relative;
  width: min(100%, 270px);
  padding: 18px 18px 0;
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, #1a1a1a, #0d0d0d);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.kiosk-top {
  width: 64px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(240, 237, 232, 0.14);
}

.kiosk-screen {
  display: grid;
  grid-auto-rows: min-content;
  align-content: start;
  gap: 14px;
  min-height: 276px;
  padding: 15px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 18px;
  background:
    radial-gradient(circle at top center, rgba(43, 174, 142, 0.12), transparent 40%),
    #111111;
}

.kiosk-base {
  width: 116px;
  height: 34px;
  margin: 14px auto 0;
  border-radius: 22px 22px 10px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kiosk-chip {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(43, 174, 142, 0.12);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kiosk-card {
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.kiosk-card strong {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.kiosk-card span,
.kiosk-grid span,
.kiosk-timeline span {
  color: rgba(240, 237, 232, 0.52);
  font-size: 10px;
  line-height: 1.4;
}

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

.kiosk-order-layout {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  margin-top: auto;
}

.kiosk-category-list,
.kiosk-product-list {
  display: grid;
  gap: 10px;
}

.kiosk-category-list span {
  padding: 8px 9px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(240, 237, 232, 0.52);
  font-size: 10px;
  line-height: 1.3;
}

.kiosk-category-list span:first-child {
  border-color: rgba(43, 174, 142, 0.22);
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-accent);
}

.kiosk-product-card {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.kiosk-product-card strong {
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.kiosk-product-card span {
  color: rgba(240, 237, 232, 0.5);
  font-size: 10px;
  line-height: 1.4;
}

.kiosk-grid span,
.kiosk-timeline span {
  padding: 8px 9px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.kiosk-timeline {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.counter-preview {
  display: grid;
  justify-items: center;
  gap: 0;
  width: 100%;
}

.counter-screen {
  width: min(100%, 270px);
  display: grid;
  grid-auto-rows: min-content;
  align-content: start;
  gap: 14px;
  padding: 15px;
  border-radius: 20px 20px 14px 14px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  background:
    radial-gradient(circle at top center, rgba(43, 174, 142, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #111111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.counter-screen-bar {
  width: 46px;
  height: 5px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(240, 237, 232, 0.16);
}

.counter-card {
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.counter-card strong {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.counter-card span,
.counter-grid span {
  color: rgba(240, 237, 232, 0.52);
  font-size: 10px;
  line-height: 1.4;
}

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

.counter-grid span {
  padding: 8px 9px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.counter-base {
  width: 150px;
  height: 16px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hero-terminal-visual {
  position: absolute;
  right: 70px;
  bottom: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(32vw, 340px);
  opacity: 0;
  transform: translateY(60px);
}

.hero-terminal-device,
.terminal-device {
  position: relative;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, #181818, #0d0d0d);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-terminal-device::after,
.terminal-device::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-terminal-screen,
.terminal-screen {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 16px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 20px;
  background:
    radial-gradient(circle at top center, rgba(43, 174, 142, 0.14), transparent 42%),
    #111111;
}

.hero-terminal-chip,
.terminal-chip {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(43, 174, 142, 0.12);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-terminal-amount,
.terminal-amount-card,
.terminal-note-card,
.terminal-report-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-terminal-amount strong,
.terminal-amount-card strong,
.terminal-note-card strong,
.terminal-report-card strong {
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-terminal-amount span,
.terminal-amount-card span,
.terminal-note-card span,
.terminal-report-card span,
.terminal-card-strip span,
.terminal-status-list span,
.terminal-route span {
  color: rgba(240, 237, 232, 0.54);
  font-size: 11px;
  line-height: 1.45;
}

.hero-terminal-contactless,
.terminal-contactless {
  position: relative;
  width: 70px;
  height: 52px;
  justify-self: end;
}

.hero-terminal-contactless::before,
.hero-terminal-contactless::after,
.terminal-wave {
  content: "";
  position: absolute;
  right: 0;
  border: 2px solid rgba(43, 174, 142, 0.55);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 100% 0 0;
  transform: rotate(45deg);
}

.hero-terminal-contactless::before,
.terminal-wave:nth-child(1) {
  width: 18px;
  height: 18px;
  top: 18px;
}

.hero-terminal-contactless::after,
.terminal-wave:nth-child(2) {
  width: 30px;
  height: 30px;
  top: 12px;
}

.terminal-wave:nth-child(3) {
  width: 42px;
  height: 42px;
  top: 6px;
}

.hero-terminal-pad,
.terminal-keypad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-terminal-pad span,
.terminal-keypad span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(240, 237, 232, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.terminal-preview {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
}

.terminal-device {
  width: min(100%, 290px);
}

.terminal-device--tilted {
  transform: rotate(-5deg);
}

.terminal-device--small {
  width: 185px;
}

.terminal-card-strip,
.terminal-status-list,
.terminal-route {
  display: grid;
  gap: 10px;
}

.terminal-card-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.terminal-card-strip span,
.terminal-status-list span,
.terminal-route span {
  padding: 10px 11px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.terminal-card-strip--wallets span {
  padding-inline: 8px;
}

.terminal-note-card--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.terminal-mobility {
  display: grid;
  gap: 16px;
  justify-items: center;
  width: min(100%, 300px);
}

.terminal-route {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.terminal-report {
  display: grid;
  gap: 14px;
  width: min(100%, 300px);
  padding: 18px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(160deg, #181818, #0d0d0d);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.terminal-report-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 100px;
}

.terminal-report-bars span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(43, 174, 142, 0.88), rgba(43, 174, 142, 0.18));
}

.terminal-report-bars span:nth-child(1) { height: 30px; }
.terminal-report-bars span:nth-child(2) { height: 52px; }
.terminal-report-bars span:nth-child(3) { height: 40px; }
.terminal-report-bars span:nth-child(4) { height: 78px; }
.terminal-report-bars span:nth-child(5) { height: 62px; }

.tpe-hero-image {
  right: 8px;
  bottom: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(46vw, 620px);
  height: auto;
  max-height: none;
  filter: none;
  transform: translateY(50%);
}

.tpe-hero-device {
  display: block;
  width: 158%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.52));
  animation: tpe-float 6.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes tpe-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

.product-head {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 72px;
}

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

.feature-card {
  min-height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(240, 237, 232, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  transform: translateZ(0);
  transition: border-color var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(43, 174, 142, 0.18);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.feature-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card h3 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.feature-card p {
  font-family: var(--font-display);
  color: rgba(240, 237, 232, 0.42);
  font-size: 13px;
  font-weight: 400;
  overflow-wrap: anywhere;
  line-height: 1.78;
}

.product-spec-section {
  background: var(--color-surface);
}

.product-spec-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.product-spec-copy p {
  max-width: 620px;
  color: rgba(240, 237, 232, 0.46);
  font-size: 15px;
  line-height: 1.85;
}

.spec-card {
  overflow: hidden;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row span {
  color: rgba(240, 237, 232, 0.48);
  font-size: 14px;
  line-height: 1.5;
}

.spec-row strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}


/* Proof */
.proof-section {
  background: #0c0c0c;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.proof-title {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.proof-copy p {
  font-family: var(--font-display);
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(240, 237, 232, 0.46);
  font-size: 15px;
  font-weight: 400;
  overflow-wrap: anywhere;
  line-height: 1.85;
}

.proof-panel {
  display: grid;
  gap: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(240, 237, 232, 0.08);
}

.proof-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.proof-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(43, 174, 142, 0.2);
  border-radius: 12px;
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-accent);
  flex-shrink: 0;
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item:last-child {
  border-bottom: none;
}

.proof-item strong {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.proof-item span {
  color: rgba(240, 237, 232, 0.44);
  font-size: 13px;
  overflow-wrap: anywhere;
  line-height: 1.7;
}

/* Controller */
.controller-section {
  background: #0b0b0b;
}

.controller-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.controller-copy p {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(240, 237, 232, 0.46);
  font-size: 15px;
  overflow-wrap: anywhere;
  line-height: 1.85;
}

.controller-toggles {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.controller-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
}

.controller-toggle-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.controller-toggle-copy {
  max-width: 520px;
}

.controller-toggle-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.controller-toggle-copy span {
  color: rgba(240, 237, 232, 0.46);
  font-size: 14px;
  overflow-wrap: anywhere;
  line-height: 1.75;
}

.ios-switch {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease;
}

.ios-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.ios-switch.is-on {
  background: #34c759;
}

.ios-switch.is-on::after {
  transform: translateX(22px);
}

.controller-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.controller-phone {
  position: relative;
  width: 318px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(32, 32, 32, 0.98), rgba(10, 10, 10, 0.98)),
    #111;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.controller-phone-frame {
  position: absolute;
  inset: 6px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.controller-phone-buttons {
  position: absolute;
  top: 112px;
  left: -3px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.controller-phone-buttons span {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.controller-phone-buttons span:nth-child(1) {
  height: 34px;
}

.controller-phone-buttons span:nth-child(2),
.controller-phone-buttons span:nth-child(3) {
  height: 54px;
}

.controller-phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 630px;
  border-radius: 34px;
  background: #050505;
  isolation: isolate;
}

.controller-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.controller-phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 126px;
  height: 30px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.96);
  transform: translateX(-50%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.controller-notification-stack {
  position: absolute;
  top: 54px;
  left: 12px;
  right: 12px;
  z-index: 3;
}

.controller-notification {
  position: absolute;
  left: 0;
  right: 0;
}

.controller-notification--one {
  top: 0;
  animation-delay: 0s;
}

.controller-notification--two {
  top: 92px;
  animation-delay: 1.1s;
}

.controller-notification-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  background: rgba(248, 248, 248, 0.68);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
}

.controller-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(145deg, #44d6ad, #199a77);
}

.controller-notification strong {
  display: block;
  margin-bottom: 4px;
  color: #101516;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.controller-notification p {
  margin: 0;
  color: rgba(16, 21, 22, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

@keyframes iphone-notification {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  55% {
    opacity: 1;
    transform: translateY(-6px) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.controller-section.is-active .controller-notification--one .controller-notification-inner {
  animation: iphone-notification 0.85s ease-out forwards;
}

.controller-section.is-active .controller-notification--two .controller-notification-inner {
  animation: iphone-notification 0.85s ease-out 0.55s forwards;
}

/* Comparison */
.compare-section {
  background: #0d0d0d;
}

.compare-table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.compare-mobile-picker {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.compare-picker-group {
  display: grid;
  gap: 8px;
}

.compare-picker-label {
  color: rgba(240, 237, 232, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-picker-select {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(240, 237, 232, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
}

.compare-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-product-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  text-align: center;
}

.compare-product-head img {
  width: auto;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.compare-product-head span {
  display: block;
}

.compare-product-head--placeholder {
  justify-content: center;
}

.compare-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 128px;
  border: 1px solid rgba(240, 237, 232, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(43, 174, 142, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--color-accent);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.contact-panel-section {
  padding-top: 112px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 420px);
  gap: 40px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(43, 174, 142, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.contact-panel-copy-wrap {
  max-width: 720px;
}

.contact-panel-title {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -2px;
}

.contact-panel-copy {
  font-family: var(--font-display);
  max-width: 620px;
  color: rgba(240, 237, 232, 0.66);
  font-size: 16px;
  font-weight: 400;
  overflow-wrap: anywhere;
  line-height: 1.75;
}

.contact-panel-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  list-style: none;
}

.contact-panel-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(240, 237, 232, 0.78);
  font-size: 14px;
  overflow-wrap: anywhere;
  line-height: 1.65;
}

.contact-panel-points li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(43, 174, 142, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(43, 174, 142, 1) 0 32%, transparent 36%);
}

.contact-panel-side {
  display: grid;
  gap: 18px;
}

.contact-panel-card {
  padding: 28px 28px 24px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(18px);
}

.contact-panel-form {
  padding: 22px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-panel-form textarea {
  min-height: 110px;
  padding: 12px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  outline: none;
  resize: vertical;
  background: rgba(240, 237, 232, 0.05);
  color: var(--color-text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.contact-panel-form textarea::placeholder {
  color: rgba(240, 237, 232, 0.3);
}

.contact-panel-form textarea:focus {
  border-color: rgba(43, 174, 142, 0.5);
}

.contact-panel-card-label {
  margin-bottom: 14px;
  color: rgba(240, 237, 232, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel-phone,
.contact-panel-mail {
  display: inline-block;
  transition: color 0.2s ease;
}

.contact-panel-phone {
  margin-bottom: 8px;
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
}

.contact-panel-mail {
  margin-bottom: 14px;
  color: rgba(240, 237, 232, 0.72);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.contact-panel-note {
  color: rgba(240, 237, 232, 0.45);
  font-size: 13px;
  overflow-wrap: anywhere;
  line-height: 1.7;
}

.contact-panel-phone:hover,
.contact-panel-mail:hover {
  color: var(--color-accent);
}

.contact-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-panel-actions .btn-hero,
.contact-panel-actions .btn-hero-ghost {
  justify-content: center;
}

.compare-table td {
  color: rgba(240, 237, 232, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.compare-table .is-highlight {
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-text);
}

.compare-bool {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.compare-bool::before,
.compare-bool::after {
  content: "";
  position: absolute;
}

.compare-bool--yes {
  background: rgba(43, 174, 142, 0.12);
}

.compare-bool--yes::before {
  width: 7px;
  height: 14px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg) translate(-1px, -1px);
}

.compare-bool--no {
  background: rgba(240, 92, 92, 0.12);
}

.compare-bool--no::before,
.compare-bool--no::after {
  width: 14px;
  height: 2px;
  background: #f05c5c;
}

.compare-bool--no::before {
  transform: rotate(45deg);
}

.compare-bool--no::after {
  transform: rotate(-45deg);
}

.about-tag {
  margin-bottom: 20px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.assurance-section {
  padding-top: 44px;
  padding-bottom: 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.assurance-card {
  padding: 22px 20px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.assurance-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assurance-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.assurance-card p {
  color: rgba(240, 237, 232, 0.42);
  font-size: 13px;
  line-height: 1.7;
}

.product-metrics-section {
  padding-top: 22px;
  padding-bottom: 28px;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}


.product-metric {
  position: relative;
  padding: 24px 22px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(10px);
}


.product-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(43, 174, 142, 0.22);
  border-radius: 14px;
  background: rgba(43, 174, 142, 0.08);
  color: var(--color-accent);
}

.product-metric-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.product-metric span {
  color: rgba(240, 237, 232, 0.42);
  font-size: 13px;
  line-height: 1.7;
}

.product-cta-strip-section {
  padding-top: 0;
  padding-bottom: 32px;
}

.product-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(43, 174, 142, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(43, 174, 142, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}


.product-strip-title {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.product-strip-copy {
  max-width: 720px;
  color: rgba(240, 237, 232, 0.44);
  font-size: 14px;
  line-height: 1.8;
}

.product-strip-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.prod-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
}

.prod-subtitle {
  font-family: var(--font-display);
  max-width: 540px;
  margin-top: 12px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(240, 237, 232, 0.35);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.process-head {
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
  text-align: center;
}

.process-title {
  font-family: var(--font-display);
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -2px;
}

.process-intro {
  font-family: var(--font-display);
  max-width: 760px;
  margin: 0 auto;
  color: rgba(240, 237, 232, 0.46);
  font-size: 15px;
  font-weight: 400;
  overflow-wrap: anywhere;
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}


.process-card {
  padding: 28px 24px 32px;
  border: 1px solid rgba(240, 237, 232, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.process-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin-bottom: 22px;
}

.process-media img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.24));
  transform: translateY(2px);
}

.process-card--link {
  display: block;
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.process-card--link:hover {
  border-color: rgba(43, 174, 142, 0.24);
  background: rgba(43, 174, 142, 0.05);
  transform: translateY(-4px);
}


.process-step {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(240, 237, 232, 0.22);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-card h3 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
  min-width: 0;
}

.process-title--wide {
  display: block;
  width: 100%;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  white-space: normal;
  overflow: visible;
}

.process-card p {
  font-family: var(--font-display);
  color: rgba(240, 237, 232, 0.44);
  font-size: 14px;
  font-weight: 400;
  overflow-wrap: anywhere;
  line-height: 1.75;
}

.process-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.process-card--link:hover .process-link {
  gap: 12px;
}
