﻿:root {
  --ink: #18201b;
  --muted: #5e6a61;
  --line: #dbe3d7;
  --paper: #f6f7f1;
  --white: #ffffff;
  --green: #0f6a47;
  --green-dark: #111c16;
  --gold: #caa55b;
  --gold-soft: #fff6df;
  --shadow: 0 18px 50px rgba(18, 31, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.header-cta:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 8px;
  background: var(--white);
  color: #173526;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}

.site-header.subpage-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.subpage-header .main-nav {
  color: var(--muted);
}

.subpage-header .main-nav a:hover {
  color: var(--green);
}

.subpage-header .header-cta {
  background: var(--green-dark);
  color: var(--white);
}

.subpage-header .brand-mark {
  background: var(--green);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #0c130f;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 15, 11, 0.96) 0%, rgba(9, 15, 11, 0.82) 42%, rgba(9, 15, 11, 0.32) 100%),
    url("./assets/ls-rent-hero-bg.jpg?v=20260619-ls3");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-protagonists {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 1;
  width: min(520px, 42vw);
  overflow: hidden;
  border: 1px solid rgba(219, 192, 117, 0.42);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  opacity: 0.96;
}

.hero-protagonists::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(9, 15, 11, 0.52) 100%);
  pointer-events: none;
}

.hero-protagonists img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: 110px 0 70px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 28px;
  max-width: 760px;
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 950;
  line-height: 0.96;
}

.hero-copy {
  max-width: 660px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.45;
}

.hero-protagonist-line {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.6;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  background: var(--gold);
  color: #11140f;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

.quick-config {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 26px max(20px, calc((100vw - 1180px) / 2));
}

.quick-config-copy h2 {
  margin-top: 8px;
  max-width: 500px;
  font-size: clamp(25px, 2.8vw, 34px);
  line-height: 1.08;
}

.quick-config-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.quick-segment-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-segment-options .option-card {
  min-height: 92px;
  padding: 15px;
}

.quick-param-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.quick-param-grid .mini-control-group {
  grid-template-columns: 72px repeat(auto-fit, minmax(48px, 1fr));
  min-width: 0;
}

.live-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
}

.live-metrics div {
  background: #fbfcf8;
  padding: 22px 20px;
}

.live-metrics span,
.live-metrics strong {
  display: block;
}

.live-metrics span {
  color: var(--green);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.live-metrics strong {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.quick-config p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #2f3932;
  padding: 0 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.pill.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.section {
  padding: 78px max(20px, calc((100vw - 1180px) / 2));
}

.section[id] {
  scroll-margin-top: 92px;
}

.minisite-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  background: #fbfcf8;
  border-bottom: 1px solid var(--line);
}

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

.minisite-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.minisite-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.minisite-grid strong,
.minisite-grid span {
  display: block;
}

.minisite-grid strong {
  padding: 18px 18px 0;
  font-size: 18px;
}

.minisite-grid span {
  padding: 8px 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 46px;
  background: var(--white);
}

.explain-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  background: var(--paper);
}

.section-copy h2,
.process-section h2 {
  margin-top: 14px;
  max-width: 780px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.07;
}

.section-copy > p:not(.section-kicker) {
  max-width: 710px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.control-block {
  margin-top: 32px;
}

.control-label {
  display: block;
  margin-bottom: 12px;
  color: #2d3830;
  font-size: 14px;
  font-weight: 900;
}

.card-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-card {
  min-height: 98px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 17px;
  cursor: pointer;
  text-align: left;
}

.option-card strong,
.option-card span {
  display: block;
}

.option-card strong {
  color: var(--ink);
  font-size: 15px;
}

.option-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.option-card.is-active {
  border-color: var(--green);
  background: #edf5ef;
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.results-panel {
  align-self: start;
  border: 1px solid #cfd8cf;
  border-radius: 12px;
  background: #f9faf7;
  box-shadow: var(--shadow);
  padding: 22px;
}

.results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.results-head h3 {
  margin-top: 8px;
  font-size: 25px;
  line-height: 1.18;
}

.snapshot-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.credits-box {
  flex: 0 0 auto;
  min-width: 170px;
  border: 1px solid #dac48d;
  border-radius: 10px;
  background: var(--gold-soft);
  padding: 14px;
}

.credits-box span,
.offer-price span,
.result-stats span {
  display: block;
  color: #6b746d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.credits-box strong {
  display: block;
  margin-top: 6px;
  color: #2a2110;
  font-size: 22px;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.offer-card {
  display: grid;
  grid-template-columns: 118px 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 14px;
}

.offer-card.best {
  border-color: var(--green);
}

.offer-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eef1eb;
  color: #2d3830;
  font-weight: 950;
}

.best .offer-rank {
  background: var(--green);
  color: var(--white);
}

.offer-image {
  position: relative;
  width: 118px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef1eb;
}

.offer-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-main strong,
.offer-main span {
  display: block;
}

.vehicle-version {
  margin-top: 4px;
  color: #2f3932;
  font-size: 13px;
  font-weight: 900;
}

.offer-main span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.offer-main .vehicle-version {
  color: #2f3932;
}

.offer-price {
  min-width: 112px;
  text-align: right;
}

.offer-price strong {
  display: block;
  margin-top: 5px;
  color: var(--green);
  font-size: 24px;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.result-stats div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 14px;
}

.result-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.vehicle-showcase {
  background: #f4f6f0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dashboard-visual {
  position: relative;
  overflow: hidden;
  margin: 34px 0 24px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
}

.dashboard-visual img {
  display: block;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.dashboard-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 15, 11, 0.72) 0%, rgba(9, 15, 11, 0.18) 52%, rgba(9, 15, 11, 0.55) 100%);
  pointer-events: none;
}

.dashboard-visual div {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 390px;
}

.dashboard-visual span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dashboard-visual strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.12;
}

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

.vehicle-config-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d5ddcf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 31, 23, 0.08);
}

.vehicle-config-card.is-best {
  border-color: var(--green);
}

.vehicle-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf0ea;
}

.vehicle-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card-media::after,
.offer-image::after {
  content: "LS RENT";
  position: absolute;
  left: 50%;
  bottom: 13%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 22px;
  border: 2px solid rgba(35, 43, 35, 0.72);
  border-radius: 4px;
  background: linear-gradient(180deg, #fffdf3 0%, #e8dec2 100%);
  box-shadow: 0 4px 12px rgba(5, 9, 6, 0.2);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: translateX(-50%) perspective(120px) rotateX(4deg);
  pointer-events: none;
}

.vehicle-card-media span {
  position: absolute;
  left: 14px;
  top: 14px;
  border-radius: 999px;
  background: rgba(15, 106, 71, 0.94);
  color: var(--white);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.vehicle-card-segment {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-card-body h3 {
  font-size: 23px;
  line-height: 1.14;
}

.vehicle-card-body > p:not(.vehicle-card-segment) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.vehicle-card-price {
  color: var(--green);
  font-size: 31px;
  line-height: 1;
}

.vehicle-card-summary {
  min-height: 19px;
  color: #3f4942;
  font-size: 13px;
  font-weight: 850;
}

.mini-control-group {
  display: grid;
  grid-template-columns: 64px repeat(3, minmax(42px, 1fr));
  gap: 6px;
  align-items: center;
}

.mini-control-group span {
  color: #6c776f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-control-group button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f7f3;
  color: #27322b;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.mini-control-group button.is-active {
  border-color: var(--green);
  background: #e8f2ec;
  color: var(--green);
}

.vehicle-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 12px;
}

.vehicle-card-foot span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.vehicle-card-foot strong {
  color: #2c210b;
  font-size: 14px;
}

.price-guarantee {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
  background: var(--green-dark);
  color: var(--white);
}

.guarantee-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guarantee-main h2 {
  margin-top: 12px;
  font-size: 43px;
  line-height: 1.04;
}

.guarantee-main p:not(.section-kicker) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.guarantee-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guarantee-steps article {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.guarantee-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold);
  color: #211704;
  font-weight: 950;
}

.guarantee-steps strong {
  display: block;
  margin-top: 48px;
  font-size: 19px;
  line-height: 1.22;
}

.guarantee-steps p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.model-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.model-flow article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.model-flow span {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.model-flow strong,
.benefit-grid strong,
.comparison-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.model-flow p,
.benefit-grid p,
.comparison-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.value-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  background: #17241c;
  color: var(--white);
}

.value-statement h2 {
  margin-top: 14px;
  max-width: 680px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.07;
}

.value-statement p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.model-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.narrow {
  max-width: 620px;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.principle-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 22px;
}

.principle-grid strong,
.steps strong {
  display: block;
  font-size: 18px;
}

.principle-grid p,
.steps p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-section {
  background: var(--white);
}

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

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.comparison-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.comparison-grid article.highlight {
  border-color: var(--green);
  background: #edf5ef;
}

.comparison-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.credits-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  background: var(--green-dark);
  color: var(--white);
}

.credits-section .section-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.unlock-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.unlock-list strong,
.unlock-list span {
  display: block;
}

.unlock-list strong {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
}

.unlock-list span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

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

.package-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.package-grid article.featured {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: #1f1a10;
}

.package-grid strong,
.package-grid span,
.package-grid p {
  display: block;
}

.package-grid span {
  margin-top: 24px;
  font-size: 48px;
  font-weight: 950;
}

.package-grid p {
  margin-top: 8px;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
}

.home-wallet-section {
  align-items: start;
}

.wallet-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wallet-flow article {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.wallet-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold);
  color: #201707;
  font-weight: 950;
}

.wallet-flow strong {
  display: block;
  margin-top: 72px;
  font-size: 22px;
  line-height: 1.15;
}

.wallet-flow p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
}

.sub-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
  min-height: 560px;
  background: var(--green-dark);
  color: var(--white);
}

.sub-hero.light {
  background: var(--paper);
  color: var(--ink);
}

.sub-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 72px);
}

.sub-hero-copy p:not(.section-kicker) {
  margin-top: 24px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.65;
}

.sub-hero.light .sub-hero-copy p:not(.section-kicker) {
  color: var(--muted);
}

.sub-hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sub-hero.light .sub-hero-media {
  border-color: var(--line);
  background: var(--white);
}

.sub-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-band.alt {
  background: var(--paper);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.deep-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.deep-card,
.qa-card,
.comic-panel,
.unlock-step,
.cartoon-stage,
.formula-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.deep-card strong,
.qa-card strong,
.unlock-step strong,
.formula-box strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.deep-card p,
.qa-card p,
.unlock-step p,
.formula-box p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.formula-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.formula-box span,
.unlock-step span,
.comic-panel span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.comparison-table {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row > div {
  background: var(--white);
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.comparison-row strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.comparison-row.highlight > div {
  background: #edf5ef;
}

.story-strip {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.story-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

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

.comic-panel {
  min-height: 230px;
}

.comic-panel strong {
  display: block;
  font-size: 18px;
}

.comic-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.cartoon-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.cartoon-stage {
  min-height: 520px;
  background: #0f1712;
  color: var(--white);
}

.cartoon-screen {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #07100b;
}

.cartoon-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.cartoon-scene.is-active {
  opacity: 1;
  pointer-events: auto;
}

.cartoon-panel {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(5, 9, 6, 0.05) 0%, rgba(5, 9, 6, 0.45) 66%, rgba(5, 9, 6, 0.82) 100%),
    url("./assets/story/ls-rent-comic-protagonisti.webp?v=20260619-ls3");
  background-size: 200% 200%;
  transform: scale(1.08);
  transition: transform 700ms ease;
}

.scene-one .cartoon-panel {
  background-position: left top;
}

.scene-two .cartoon-panel {
  background-position: right top;
}

.scene-three .cartoon-panel {
  background-position: left bottom;
}

.scene-four .cartoon-panel {
  background-position: right bottom;
}

.cartoon-scene.is-active .cartoon-panel {
  animation: cartoonZoom 5200ms ease both;
}

.speech-bubble {
  position: absolute;
  z-index: 2;
  max-width: min(360px, calc(100% - 36px));
  border: 2px solid rgba(17, 28, 22, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(17, 28, 22, 0.9);
  border-bottom: 2px solid rgba(17, 28, 22, 0.9);
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
}

.bubble-left {
  left: 26px;
  top: 28px;
}

.bubble-left::after {
  left: 38px;
}

.bubble-right {
  right: 26px;
  top: 28px;
}

.bubble-right::after {
  right: 38px;
}

.cartoon-scene.is-active .speech-bubble {
  animation: bubbleIn 700ms ease 220ms both;
}

.cartoon-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(5, 12, 8, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  padding: 18px;
  opacity: 0;
  transform: translateY(18px);
}

.cartoon-caption strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.cartoon-caption p {
  max-width: 680px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
}

.cartoon-scene.is-active .cartoon-caption {
  animation: captionIn 650ms ease 620ms both;
}

.floating-note,
.best-price-card,
.unlock-badge,
.coin,
.compare-stack {
  position: absolute;
  z-index: 3;
}

.floating-note {
  min-width: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  font-size: 13px;
  font-weight: 950;
  opacity: 0;
}

.note-a {
  right: 40px;
  top: 130px;
}

.note-b {
  right: 82px;
  top: 190px;
}

.cartoon-scene.is-active .note-a {
  animation: noteFloat 900ms ease 500ms both;
}

.cartoon-scene.is-active .note-b {
  animation: noteFloat 900ms ease 760ms both;
}

.compare-stack {
  right: 38px;
  top: 130px;
  display: grid;
  gap: 10px;
  width: 210px;
}

.compare-stack span {
  display: block;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateX(40px);
}

.cartoon-scene.is-active .compare-stack span:nth-child(1) {
  animation: compareIn 620ms ease 360ms both;
}

.cartoon-scene.is-active .compare-stack span:nth-child(2) {
  animation: compareIn 620ms ease 560ms both;
}

.cartoon-scene.is-active .compare-stack span:nth-child(3) {
  animation: compareIn 620ms ease 760ms both;
}

.best-price-card {
  right: 36px;
  top: 116px;
  width: min(310px, calc(100% - 72px));
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  color: #211909;
  padding: 16px;
  opacity: 0;
  transform: scale(0.94);
}

.best-price-card span,
.best-price-card strong {
  display: block;
}

.best-price-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.best-price-card strong {
  margin-top: 6px;
  font-size: 20px;
}

.cartoon-scene.is-active .best-price-card {
  animation: popIn 700ms ease 520ms both;
}

.coin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid #e3c576;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffe7a8, var(--gold) 68%, #8f6b22 100%);
  color: #2c210b;
  font-size: 15px;
  font-weight: 950;
  opacity: 0;
}

.coin-one {
  left: 38px;
  top: 128px;
}

.coin-two {
  left: 92px;
  top: 174px;
}

.cartoon-scene.is-active .coin-one {
  animation: coinFly 900ms ease 360ms both;
}

.cartoon-scene.is-active .coin-two {
  animation: coinFly 900ms ease 620ms both;
}

.unlock-badge {
  right: 38px;
  top: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(15, 106, 71, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  color: var(--white);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 950;
  opacity: 0;
  transform: translateY(16px);
}

.cartoon-scene.is-active .unlock-badge {
  animation: captionIn 620ms ease 900ms both;
}

.cartoon-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cartoon-controls button,
.cartoon-nav button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 900;
}

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

.cartoon-nav button {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.cartoon-nav button.is-active {
  border-color: var(--green);
  background: #edf5ef;
  color: var(--green);
}

@keyframes cartoonZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.16);
  }
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes captionIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes noteFloat {
  from {
    opacity: 0;
    transform: translate(24px, 18px) rotate(3deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-1deg);
  }
}

@keyframes compareIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  70% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes coinFly {
  from {
    opacity: 0;
    transform: translate(-32px, 30px) rotate(-30deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(8deg);
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 24px max(20px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
}

.offers-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: end;
  background: var(--green-dark);
  color: var(--white);
}

.offers-page-hero .section-copy h1 {
  margin-top: 14px;
  max-width: 860px;
  font-size: 58px;
  line-height: 1;
}

.offers-page-hero .section-copy p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.62;
}

.offers-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.offers-hero-panel span {
  display: block;
  color: var(--gold);
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.offers-hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.offers-hero-panel p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.offers-browser {
  background: #f6f7f1;
}

.offers-toolbar {
  display: grid;
  grid-template-columns: minmax(250px, 1.3fr) repeat(4, minmax(120px, 0.55fr)) auto;
  gap: 12px;
  align-items: end;
}

.offers-toolbar label {
  display: grid;
  gap: 7px;
}

.offers-toolbar span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.offers-toolbar input,
.offers-toolbar select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}

.offers-toolbar button,
.offers-actions button {
  min-height: 44px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 0 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.offers-state-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 24px;
  padding: 14px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.offers-state-line p:last-child {
  color: var(--green);
}

.offers-live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.offer-config-card .vehicle-card-media {
  background:
    radial-gradient(circle at 50% 48%, rgba(219, 192, 117, 0.2), transparent 34%),
    linear-gradient(180deg, #f8faf6 0%, #edf0ea 100%);
}

.offer-config-card .vehicle-card-media img {
  object-fit: contain;
  padding: 14px;
}

.offer-config-card .vehicle-card-media::after {
  bottom: 15%;
}

.offer-config-card .vehicle-card-body h2 {
  font-size: 23px;
  line-height: 1.12;
}

.offer-config-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9f5;
  padding: 10px;
}

.offer-config-meta span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-config-meta strong {
  color: #27322b;
  font-size: 13px;
  line-height: 1.25;
}

.offer-config-control {
  grid-template-columns: 64px repeat(auto-fit, minmax(48px, 1fr));
}

.offer-config-cta {
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--gold);
  color: #211704;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.offer-live-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d5ddcf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 31, 23, 0.08);
}

.offer-live-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #edf0ea;
}

.offer-live-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-live-media span {
  position: absolute;
  left: 14px;
  top: 14px;
  border-radius: 999px;
  background: rgba(15, 106, 71, 0.94);
  color: var(--white);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-live-body {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.offer-live-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.offer-live-kicker {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-live-body h2 {
  margin-top: 5px;
  font-size: 24px;
  line-height: 1.12;
}

.offer-live-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.offer-live-price {
  min-width: 102px;
  text-align: right;
}

.offer-live-price span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-live-price strong {
  display: block;
  margin-top: 5px;
  color: var(--green);
  font-size: 25px;
  line-height: 1;
}

.offer-live-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.offer-live-specs div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9f5;
  padding: 10px;
}

.offer-live-specs span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-live-specs strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.offer-live-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.offer-live-foot p {
  max-width: 210px;
  font-size: 12px;
}

.offer-live-foot a {
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--gold);
  color: #211704;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 950;
}

.offers-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.offers-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  margin-top: 24px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  font-weight: 850;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: end;
  background: var(--green-dark);
  color: var(--white);
}

.account-hero .section-copy h1 {
  margin-top: 14px;
  max-width: 890px;
  font-size: 58px;
  line-height: 1;
}

.account-hero .section-copy p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.62;
}

.account-status-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.account-status-card span,
.account-card-head span,
.package-buy-card span,
.practice-row span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-status-card strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.account-status-card p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.account-shell {
  background: #f6f7f1;
}

.account-auth-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.auth-card,
.account-card,
.selected-offer-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 31, 23, 0.08);
  padding: 22px;
}

.auth-card h2,
.account-card h2,
.selected-offer-panel h2 {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.12;
}

.account-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-form label {
  display: grid;
  gap: 7px;
}

.account-form label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-form input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}

.account-form button,
.account-toolbar button,
.account-card-head button,
.selected-offer-action button,
.package-buy-card button,
.practice-row button {
  min-height: 42px;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 0 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.selected-offer-action button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.account-app {
  display: grid;
  gap: 18px;
}

.account-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 18px;
}

.account-toolbar span,
.account-toolbar strong {
  display: block;
}

.account-toolbar span {
  font-size: 18px;
  font-weight: 950;
}

.account-toolbar strong {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.selected-offer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-color: #d9bd72;
  background: #fff9e9;
}

.selected-offer-panel p:not(.section-kicker) {
  margin-top: 8px;
  color: #665a38;
  font-size: 14px;
  line-height: 1.55;
}

.selected-offer-action {
  display: grid;
  gap: 10px;
  min-width: 180px;
}

.selected-offer-action strong {
  color: #2b210c;
  font-size: 22px;
  text-align: right;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
}

.account-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.account-card-head > strong {
  color: var(--green);
  font-size: 28px;
  white-space: nowrap;
}

.account-card > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.movement-list,
.packages-list,
.practices-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.movement-row,
.package-buy-card,
.practice-row,
.document-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9f5;
  padding: 12px;
}

.movement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
}

.movement-row span {
  color: #2f3932;
  font-size: 13px;
  font-weight: 900;
}

.movement-row strong {
  color: var(--green);
  font-size: 18px;
}

.movement-row.negative strong {
  color: #9b4b22;
}

.movement-row small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.package-buy-card,
.practice-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.package-buy-card strong,
.practice-row strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
}

.package-buy-card p,
.practice-row p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.package-buy-card div:last-child,
.practice-row div:last-child {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.package-buy-card b {
  color: var(--green);
  font-size: 20px;
}

.package-buy-card em {
  color: #6b5a24;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.practice-row b {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.documents-panel {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.documents-panel h3 {
  font-size: 22px;
}

.document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}

.document-row strong,
.document-row span {
  display: block;
}

.document-row strong {
  font-size: 15px;
}

.document-row span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.document-upload {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gold);
  color: #211704;
  padding: 0 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
}

.document-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.account-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: min(420px, calc(100vw - 40px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(12, 19, 15, 0.2);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.account-message.success {
  border-color: #94c29f;
  background: #edf8ef;
}

.account-message.error {
  border-color: #d9b19d;
  background: #fff2ea;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .quick-config,
  .minisite-section,
  .split,
  .explain-section,
  .value-section,
  .model-section,
  .credits-section,
  .price-guarantee,
  .offers-page-hero,
  .account-hero,
  .account-auth-panel,
  .account-grid,
  .live-metrics,
  .sub-hero,
  .two-col,
  .cartoon-layout {
    grid-template-columns: 1fr;
  }

  .quick-config {
    gap: 16px;
  }

  .hero-protagonists {
    right: 24px;
    bottom: 28px;
    width: min(420px, 46vw);
    opacity: 0.72;
  }

  .hero-copy,
  .hero-protagonist-line,
  .hero-proof-row {
    max-width: 620px;
  }

  .quick-segment-options,
  .quick-param-grid,
  .wallet-flow {
    grid-template-columns: 1fr 1fr;
  }

  .results-panel {
    box-shadow: none;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offers-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .offers-search {
    grid-column: 1 / -1;
  }

  .offers-live-grid {
    grid-template-columns: 1fr 1fr;
  }

  .minisite-grid,
  .deep-card-grid,
  .formula-chain,
  .wallet-flow,
  .comic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 32px);
    padding-top: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 600px;
  }

  .hero-content {
    width: calc(100% - 32px);
    max-width: 358px;
    padding: 92px 0 42px;
  }

  .eyebrow {
    font-size: 13px;
  }

  h1 {
    margin-top: 26px;
    font-size: 56px;
  }

  .hero-copy {
    width: 100%;
    max-width: 358px;
    font-size: 21px;
    line-height: 1.42;
  }

  .hero-protagonists {
    right: 8px;
    bottom: 18px;
    width: min(260px, 66vw);
    opacity: 0.26;
  }

  .hero-protagonist-line {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .quick-config,
  .live-metrics,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .live-metrics {
    gap: 1px;
  }

  .live-metrics div {
    padding: 16px;
  }

  .live-metrics span {
    font-size: 24px;
  }

  .quick-config {
    width: 100%;
    max-width: 100vw;
  }

  .quick-config > div,
  .quick-config p {
    max-width: min(330px, calc(100vw - 32px));
  }

  .quick-config > div.quick-config-panel {
    max-width: none;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .card-options,
  .control-grid,
  .minisite-grid,
  .vehicle-card-grid,
  .quick-segment-options,
  .quick-param-grid,
  .wallet-flow,
  .offers-toolbar,
  .offers-live-grid,
  .account-form-grid,
  .package-buy-card,
  .practice-row,
  .document-row,
  .guarantee-steps,
  .model-flow,
  .benefit-grid,
  .deep-card-grid,
  .formula-chain,
  .comic-grid,
  .principle-grid,
  .steps,
  .package-grid,
  .result-stats {
    grid-template-columns: 1fr;
  }

  .results-head {
    grid-template-columns: 1fr;
  }

  .results-head {
    display: grid;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-image {
    width: 100%;
  }

  .quick-param-grid .mini-control-group {
    grid-template-columns: 72px repeat(auto-fit, minmax(58px, 1fr));
  }

  .wallet-flow article {
    min-height: auto;
  }

  .wallet-flow strong {
    margin-top: 34px;
  }

  .credits-box {
    width: 100%;
  }

  .offer-price {
    text-align: left;
  }

  .dashboard-visual {
    margin-top: 24px;
  }

  .dashboard-visual img {
    min-height: 320px;
  }

  .dashboard-visual div {
    right: 18px;
    left: 18px;
    bottom: 18px;
  }

  .dashboard-visual strong {
    font-size: 22px;
  }

  .vehicle-card-price {
    font-size: 28px;
  }

  .price-guarantee {
    gap: 24px;
  }

  .offers-page-hero .section-copy h1 {
    font-size: 42px;
  }

  .account-hero .section-copy h1 {
    font-size: 42px;
  }

  .offers-page-hero .section-copy p:not(.section-kicker) {
    font-size: 17px;
  }

  .account-hero .section-copy p:not(.section-kicker) {
    font-size: 17px;
  }

  .selected-offer-panel,
  .account-toolbar {
    display: grid;
  }

  .selected-offer-action,
  .selected-offer-action strong,
  .package-buy-card div:last-child,
  .practice-row div:last-child {
    justify-items: stretch;
    text-align: left;
  }

  .offers-state-line,
  .offer-live-top,
  .offer-live-foot {
    display: grid;
    grid-template-columns: 1fr;
  }

  .offer-live-price {
    text-align: left;
  }

  .guarantee-main h2 {
    font-size: 34px;
  }

  .guarantee-main p:not(.section-kicker) {
    font-size: 16px;
  }

  .guarantee-steps article {
    min-height: auto;
  }

  .guarantee-steps strong {
    margin-top: 30px;
  }

  .section-copy h2,
  .value-statement h2,
  .process-section h2 {
    font-size: 34px;
  }

  .sub-hero {
    min-height: auto;
  }

  .sub-hero-copy h1 {
    font-size: 44px;
  }

  .sub-hero-copy p:not(.section-kicker) {
    font-size: 18px;
  }

  .cartoon-stage {
    min-height: auto;
    padding: 16px;
  }

  .cartoon-screen {
    min-height: 430px;
  }

  .speech-bubble {
    top: 16px;
    right: 14px;
    left: 14px;
    max-width: none;
    font-size: 15px;
  }

  .bubble-left::after,
  .bubble-right::after {
    left: 38px;
    right: auto;
  }

  .cartoon-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .cartoon-caption p {
    font-size: 14px;
  }

  .floating-note,
  .best-price-card,
  .unlock-badge,
  .compare-stack {
    right: 18px;
    left: auto;
    top: 118px;
  }

  .note-b {
    top: 174px;
  }

  .compare-stack {
    width: min(230px, calc(100% - 36px));
  }

  .coin-one {
    left: 24px;
    top: 138px;
  }

  .coin-two {
    left: 72px;
    top: 186px;
  }

  .site-footer {
    display: grid;
  }
}
