:root {
  --bg: #000000;
  --bg-soft: #050505;
  --panel: rgba(10, 10, 10, 0.92);
  --panel-strong: #0c0c0c;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #b9b9b9;
  --accent: #e10600;
  --accent-soft: rgba(225, 6, 0, 0.18);
  --accent-alt: #ff3b36;
  --ok: #ff3b36;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 28px;
  --radius-small: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(225, 6, 0, 0.12), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(225, 6, 0, 0.07), transparent 20%),
    linear-gradient(180deg, #000000 0%, #050505 54%, #000000 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: -2;
}

::selection {
  background: rgba(225, 6, 0, 0.24);
  color: #ffffff;
}

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

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

input,
select,
textarea {
  caret-color: var(--text);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px rgba(17, 17, 17, 0.96) inset;
  box-shadow: 0 0 0 1000px rgba(17, 17, 17, 0.96) inset;
  transition: background-color 9999s ease-out 0s;
}

button {
  cursor: pointer;
}

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

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid rgba(255, 59, 54, 0.42);
  outline-offset: 3px;
}

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

.page-glow {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  filter: blur(140px);
  opacity: 0.16;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: -12rem;
  left: -10rem;
  background: var(--accent);
}

.page-glow-right {
  top: 18rem;
  right: -12rem;
  background: var(--accent);
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(18px);
}

.topbar-inner,
.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner {
  min-height: 2.6rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 4.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: clamp(10rem, 11vw, 11.5rem);
  height: auto;
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.15rem 0.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    transform 220ms ease;
}

.site-nav .button {
  min-height: 3.35rem;
  padding: 0 1.35rem;
}

.site-nav > a:not(.button)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 0, 0),
    rgba(225, 6, 0, 0.34) 18%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(225, 6, 0, 0.9) 82%,
    rgba(225, 6, 0, 0)
  );
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 240ms ease;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: -1.15rem;
  bottom: -0.24rem;
  width: 1.25rem;
  height: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.98) 42%,
    rgba(255, 90, 70, 0.98) 100%
  );
  box-shadow:
    0 0 0.9rem rgba(225, 6, 0, 0.3),
    0 0 0.45rem rgba(255, 255, 255, 0.28);
  opacity: 0;
  transform: skewX(-35deg);
  pointer-events: none;
}

.site-nav .account-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0 0 0 0.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  line-height: 1;
  box-shadow: none;
  transition:
    color 180ms ease,
    transform 220ms ease,
    background 180ms ease;
}

.site-nav .account-nav-link::before,
.site-nav .account-nav-link::after {
  display: none;
}

.account-nav-icon {
  position: relative;
  display: block;
  width: 1.05rem;
  height: 1.12rem;
}

.account-nav-icon-head,
.account-nav-icon-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1.7px solid currentColor;
  background: transparent;
}

.account-nav-icon-head {
  top: 0;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
}

.account-nav-icon-body {
  bottom: 0;
  width: 0.92rem;
  height: 0.5rem;
  border-bottom: 0;
  border-radius: 0.55rem 0.55rem 0 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav > a:not(.button):hover::before,
.site-nav > a:not(.button):focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  opacity: 1;
  animation: nav-drive 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav .account-nav-link:hover,
.site-nav .account-nav-link:focus-visible {
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.account-modal.is-hidden {
  display: none;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.78);
  backdrop-filter: blur(14px);
}

.account-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  max-height: min(calc(100vh - 2rem), 44rem);
  display: grid;
  gap: 1.1rem;
  overflow-y: auto;
  padding: 1.45rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 30px 90px rgba(0, 0, 0, 0.45);
}

.account-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.account-modal-copy {
  display: grid;
  gap: 0.7rem;
  padding-right: 2.5rem;
}

.account-modal-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  font-family: "Teko", sans-serif;
  font-weight: 600;
}

.account-modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.account-modal-form {
  display: grid;
  gap: 0.95rem;
}

.account-auth-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.account-auth-mode-button {
  min-height: 3.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.account-auth-mode-button:hover,
.account-auth-mode-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.account-auth-mode-button.is-active {
  border-color: rgba(225, 6, 0, 0.55);
  background: rgba(225, 6, 0, 0.14);
  box-shadow: inset 0 0 0 1px rgba(225, 6, 0, 0.1);
}

.account-remember-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.account-remember-field input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
}

.account-auth-links {
  display: flex;
  justify-content: flex-end;
}

.account-inline-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.45);
  text-underline-offset: 0.2rem;
  cursor: pointer;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.account-inline-link:hover,
.account-inline-link:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(225, 6, 0, 0.9);
}

.account-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@keyframes nav-drive {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-35deg);
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(calc(100% + 1.55rem)) skewX(-35deg);
  }
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.34);
  background: rgba(225, 6, 0, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #ff3b36);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(225, 6, 0, 0.28);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(225, 6, 0, 0.34);
}

.button-small {
  min-height: 2.7rem;
  padding: 0 1.45rem;
  font-size: 0.95rem;
}

.header-cta {
  min-height: 3rem;
  padding: 0 1.8rem;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(225, 6, 0, 0.24);
}

.header-cta:hover,
.header-cta:focus-visible {
  box-shadow: 0 20px 42px rgba(225, 6, 0, 0.3);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(225, 6, 0, 0.08);
  border-color: rgba(225, 6, 0, 0.62);
}

#offer-book-button {
  border-color: rgba(225, 6, 0, 0.4);
  background: #ffffff;
  color: #111317;
  box-shadow: 0 14px 30px rgba(17, 19, 23, 0.08);
}

#offer-book-button:hover,
#offer-book-button:focus-visible {
  border-color: rgba(225, 6, 0, 0.56);
  background: #fff5f4;
  color: #111317;
  box-shadow: 0 18px 34px rgba(225, 6, 0, 0.1);
}

.hero {
  position: relative;
  padding: 4.25rem 0 2.4rem;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 34%, rgba(225, 6, 0, 0.24), transparent 32%),
    radial-gradient(circle at 82% 68%, rgba(225, 6, 0, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(14, 14, 14, 0.96), rgba(33, 4, 4, 0.92) 50%, rgba(8, 8, 8, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-grid,
.proof-grid,
.simulator-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 28rem);
  align-items: center;
  gap: 3rem;
  min-height: min(52rem, calc(100vh - 7rem));
}

.hero-grid > *,
.proof-grid > *,
.simulator-grid > *,
.process-grid > *,
.contact-grid > *,
.pricing-layout > *,
.faq-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-alt);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.accent-text {
  color: var(--accent-alt);
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.9rem, 6.9vw, 6.6rem);
  max-width: 11.5ch;
  line-height: 0.88;
}

.hero-line {
  display: block;
  color: var(--text);
}

.hero-text,
.section-heading p,
.proof-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 58ch;
  margin: 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0;
}

.hero-actions .button {
  min-width: 13rem;
}

.hero-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.1rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-chip-outline {
  background: rgba(225, 6, 0, 0.1);
  color: var(--accent-alt);
}

.hero-copy {
  display: grid;
  gap: 1.3rem;
  align-self: center;
  max-width: 42rem;
}

.hero-copy .eyebrow {
  margin: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-metrics article {
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 1.9rem;
  line-height: 0.95;
}

.hero-metrics span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 48rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f1f1f1;
}

.hero-points li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 0 6px rgba(225, 6, 0, 0.1);
}

.hero-panel {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 28rem;
}

.hero-card,
.simulator-card,
.contact-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before,
.simulator-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -40% 25%;
  height: 14rem;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.24), transparent 70%);
  pointer-events: none;
}

.hero-card {
  padding: 1.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(14, 14, 14, 0.94);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.45;
}

.status-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 8px rgba(225, 6, 0, 0.14);
}

.spec-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.spec-card {
  padding: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.spec-card p,
.dashboard-kicker,
.result-card p,
.showcase-header span,
.showcase-stat label,
.contact-line span {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.spec-card strong,
.result-card strong,
.showcase-header strong,
.contact-line a,
.contact-line p {
  display: block;
  margin-top: 0.55rem;
}

.showcase-header strong,
.testimonial-card strong {
  line-height: 1.2;
}

.spec-card strong {
  font-size: 2rem;
  font-family: "Teko", sans-serif;
  font-weight: 600;
  line-height: 0.92;
}

.spec-card span,
.result-card span,
.showcase-copy,
.proof-card p,
.testimonial-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.spec-card-wide {
  grid-column: 1 / -1;
}

.dashboard {
  display: block;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.dashboard-copy {
  display: grid;
  gap: 0.35rem;
}

.dashboard-copy strong {
  font-size: 1.55rem;
}

.dashboard-note {
  max-width: 28ch;
  color: var(--muted);
  line-height: 1.65;
}

.hero-footer-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-strip {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 1.8rem;
  padding: 0.2rem 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.brand-strip-track {
  display: flex;
  width: max-content;
  animation: heroBrandMarquee 84s linear infinite;
  will-change: transform;
}

.brand-strip:hover .brand-strip-track {
  animation-play-state: paused;
}

.brand-strip-group {
  display: flex;
  gap: 0.8rem;
  padding-right: 0.8rem;
  flex-shrink: 0;
}

.hero-brand-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  width: 5.35rem;
  min-width: 5.35rem;
  min-height: 4.55rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(9, 9, 9, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero-brand-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 12, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(225, 6, 0, 0.12);
}

.hero-brand-card strong {
  display: none;
}

.hero-brand-card .brand-card-mark {
  width: 100%;
  height: 100%;
  border-radius: 0.9rem;
  flex-shrink: 0;
}

.hero-brand-card .brand-card-mark.has-image {
  width: 100%;
  max-width: none;
  min-height: 100%;
  height: 100%;
  padding: 0.42rem 0.5rem;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, #ffffff, #f2f2f2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.hero-brand-card[data-brand="Renault Sport"] .brand-card-mark.has-image {
  padding-left: 0.68rem;
  padding-right: 0.68rem;
}

.hero-brand-card[data-brand="Mercedes"] .brand-card-mark.has-image,
.hero-brand-card[data-brand="Audi"] .brand-card-mark.has-image {
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.hero-brand-card .brand-card-logo {
  filter: contrast(1.14) saturate(1.05);
}

@keyframes heroBrandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 5.6rem 0;
}

.section-simulator {
  padding: 2rem 0 4.8rem;
}

.section-flex-simulator {
  padding: 0 0 4.8rem;
}

.section-flex-simulator .container {
  width: min(1500px, calc(100vw - 2rem));
}

.section-heading {
  max-width: 44rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.services-grid,
.showcase-grid,
.testimonial-grid,
.results-grid {
  display: grid;
  gap: 1.2rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.service-card,
.proof-card,
.showcase-card,
.testimonial-card,
.faq-item,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.03);
}

.service-card,
.proof-card,
.showcase-card,
.testimonial-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.4rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within,
.proof-card:hover,
.showcase-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.16);
  color: var(--accent-alt);
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
}

.service-card h3,
.process-step h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.15rem;
}

.service-card p,
.process-step p,
.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.4rem;
  margin-top: auto;
  color: var(--accent-alt);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.42);
  text-underline-offset: 0.22rem;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.82);
}

.proof-grid,
.simulator-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-simulator .container {
  width: min(1500px, calc(100vw - 2rem));
}

.section-simulator .simulator-grid {
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.section-simulator .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: 0.9rem 2rem;
  align-items: end;
}

.section-simulator .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.section-simulator .section-heading h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.15rem, 3.2vw, 3.5rem);
  line-height: 0.92;
}

.section-simulator .section-heading > p:last-of-type {
  margin: 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.flex-simulator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
}

.section-flex-simulator .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: 0.9rem 2rem;
  align-items: end;
}

.section-flex-simulator .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.section-flex-simulator .section-heading h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.25rem, 3.5vw, 3.9rem);
  line-height: 0.92;
}

.section-flex-simulator .section-heading > p:last-of-type {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.72;
}

.flex-simulator-card {
  display: grid;
  gap: 1.45rem;
  min-height: min(46rem, calc(100vh - 8rem));
  padding: 1.75rem;
  border: 1px solid rgba(225, 6, 0, 0.14);
  background:
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 8, 0.92);
}

.flex-simulator-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.16), rgba(225, 6, 0, 0));
  pointer-events: none;
}

.flex-simulator-head {
  display: grid;
  gap: 0.65rem;
  max-width: 58rem;
}

.flex-simulator-head strong {
  font-size: 1.45rem;
  line-height: 1.45;
}

.flex-simulator-head p,
.flex-simulator-footnote {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.flex-simulator-layout {
  display: grid;
  grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1.15rem;
  align-items: start;
}

.flex-simulator-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.flex-simulator-form-grid .form-field,
.flex-simulator-actions {
  grid-column: span 2;
}

.flex-simulator-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.1rem;
}

.flex-simulator-actions .button {
  width: 100%;
}

.flex-simulator-inline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(225, 6, 0, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.flex-simulator-inline-meta span,
.flex-result-card span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flex-simulator-inline-meta strong {
  color: var(--text);
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.95;
}

.flex-simulator-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.flex-result-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.05rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(9, 9, 9, 0.64);
}

.flex-result-card strong {
  color: var(--text);
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 0.95;
}

.flex-result-card-accent {
  grid-column: span 2;
  grid-row: span 2;
  align-content: end;
  border-color: rgba(225, 6, 0, 0.3);
  background:
    linear-gradient(180deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(9, 9, 9, 0.72);
}

.flex-result-card-accent strong {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card strong,
.contact-line a,
.contact-line p {
  font-size: 1.1rem;
}

.section-upload-funnel .section-heading {
  max-width: 56rem;
}

.upload-funnel-shell {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.upload-step-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.upload-step-chip,
.upload-service-card,
.upload-payment-choice,
.upload-dropzone {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.upload-step-chip {
  appearance: none;
  display: grid;
  gap: 0.2rem;
  min-height: 5.9rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
}

.upload-step-chip span {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.upload-step-chip strong {
  font-size: 0.95rem;
}

.upload-step-chip small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.upload-step-chip.is-active {
  border-color: rgba(225, 6, 0, 0.42);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 34px rgba(225, 6, 0, 0.12);
}

.upload-step-chip.is-active span,
.upload-step-chip.is-complete span {
  background: linear-gradient(180deg, var(--accent-alt), var(--accent));
  color: #ffffff;
}

.upload-step-chip.is-complete {
  border-color: rgba(225, 6, 0, 0.24);
  background: rgba(225, 6, 0, 0.08);
}

.upload-funnel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.upload-funnel-form {
  display: grid;
}

.upload-funnel-feedback {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(225, 6, 0, 0.22);
  background: rgba(225, 6, 0, 0.08);
  color: #ffffff;
  line-height: 1.6;
}

.upload-funnel-feedback.is-hidden {
  display: none;
}

.upload-pane,
.upload-summary-card {
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.78);
}

.upload-pane {
  display: none;
  gap: 1.1rem;
  padding: 1.25rem;
}

.upload-pane.is-active {
  display: grid;
}

.upload-pane-head {
  display: grid;
  gap: 0.45rem;
}

.upload-pane-head strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.upload-pane-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.upload-reader-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.upload-reader-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.upload-reader-kicker {
  display: block;
  color: var(--accent-alt);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.upload-reader-head strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.upload-reader-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.upload-reader-mode {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.upload-reader-mode-button,
.upload-reader-tool {
  appearance: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.upload-reader-mode-button {
  min-height: 3.15rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.upload-reader-mode-button.is-active,
.upload-reader-tool.is-active {
  border-color: rgba(225, 6, 0, 0.42);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.12);
}

.upload-reader-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.upload-reader-tools.is-hidden {
  display: none;
}

.upload-reader-tool {
  display: grid;
  place-items: center;
  min-height: 4.85rem;
  padding: 1rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: center;
}

.upload-reader-tool:hover,
.upload-reader-tool:focus-visible,
.upload-reader-mode-button:hover,
.upload-reader-mode-button:focus-visible {
  transform: translateY(-2px);
}

.upload-reader-tool strong {
  font-size: 0.94rem;
}

.upload-reader-custom-field {
  margin-top: 0.15rem;
}

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

.upload-dropzone {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-height: 15.5rem;
  padding: 1.4rem;
  border-radius: 1.35rem;
  border: 1px dashed rgba(225, 6, 0, 0.3);
  background:
    radial-gradient(circle at top center, rgba(225, 6, 0, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.025);
  text-align: center;
  cursor: pointer;
}

.upload-dropzone.is-dragover,
.upload-dropzone:hover,
.upload-dropzone:focus-within {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.56);
  background:
    radial-gradient(circle at top center, rgba(225, 6, 0, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.upload-dropzone-icon {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.22), rgba(225, 6, 0, 0.08));
  color: var(--accent-alt);
  font-size: 2rem;
  font-weight: 700;
}

.upload-dropzone strong {
  font-size: 1.12rem;
}

.upload-dropzone p {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.7;
}

.upload-dropzone-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.upload-file-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.upload-file-list {
  display: grid;
  gap: 0.7rem;
}

.upload-file-list.is-empty {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.upload-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.upload-file-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.upload-file-item strong {
  font-size: 0.92rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.upload-file-item span {
  color: var(--muted);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.upload-file-remove {
  appearance: none;
  min-height: 2.5rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.28);
  background: rgba(225, 6, 0, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.upload-file-remove:hover,
.upload-file-remove:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.48);
  background: rgba(225, 6, 0, 0.14);
}

.upload-service-grid,
.upload-final-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.upload-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.upload-tuning-group {
  display: grid;
  gap: 0.9rem;
}

.upload-tuning-summary-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.upload-tuning-summary-card > strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.upload-tuning-summary-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.upload-tuning-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.upload-tuning-summary-grid div {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.upload-tuning-summary-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.upload-tuning-summary-grid strong {
  font-size: 1rem;
}

.upload-tuning-summary-note {
  color: var(--muted);
}

.upload-service-card {
  appearance: none;
  display: grid;
  gap: 0.35rem;
  min-height: 8.7rem;
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.upload-service-card:hover,
.upload-service-card:focus-visible,
.upload-payment-choice:hover,
.upload-payment-choice:focus-visible {
  transform: translateY(-2px);
}

.upload-service-card.is-active,
.upload-payment-choice.is-active {
  border-color: rgba(225, 6, 0, 0.42);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.12);
}

.upload-option-card.is-active {
  border-color: rgba(225, 6, 0, 0.42);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.12);
}

.upload-service-card span,
.upload-final-card span {
  color: var(--accent-alt);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upload-service-card strong,
.upload-final-card strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.upload-service-card small,
.upload-final-card p {
  color: var(--muted);
  line-height: 1.6;
}

.upload-service-card small {
  margin-top: auto;
}

.upload-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.upload-section-card,
.upload-choice-block,
.upload-legal-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.upload-section-head {
  display: grid;
  gap: 0.35rem;
}

.upload-section-head strong {
  font-size: 1rem;
  line-height: 1.3;
}

.upload-section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.upload-inline-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.upload-inline-choice {
  appearance: none;
  display: grid;
  place-items: center;
  min-height: 4.8rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.upload-inline-choice:hover,
.upload-inline-choice:focus-visible {
  transform: translateY(-2px);
}

.upload-inline-choice.is-active {
  border-color: rgba(225, 6, 0, 0.42);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.12);
}

.upload-inline-choice strong {
  font-size: 0.98rem;
}

.upload-checkbox-list {
  display: grid;
  gap: 0.75rem;
}

.upload-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.upload-check-row input {
  margin-top: 0.18rem;
}

.upload-check-row span {
  color: var(--muted);
  line-height: 1.65;
  min-width: 0;
}

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

.upload-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.upload-consent input {
  margin-top: 0.18rem;
}

.upload-consent label {
  color: var(--muted);
  line-height: 1.65;
  min-width: 0;
}

.upload-pane-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.upload-pane-actions .button {
  flex: 1 1 14rem;
}

.upload-final-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.upload-submit-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.upload-summary-card {
  position: sticky;
  top: 6.2rem;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.upload-summary-title {
  font-size: 1.25rem;
  line-height: 1.2;
}

.upload-summary-copy,
.upload-summary-helper {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.upload-summary-lines,
.upload-summary-total-box {
  display: grid;
  gap: 0.7rem;
}

.upload-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.upload-summary-line span {
  color: var(--muted);
  line-height: 1.5;
  min-width: 0;
}

.upload-summary-line strong {
  text-align: right;
  flex-shrink: 0;
}

.upload-summary-line.is-muted {
  background: rgba(255, 255, 255, 0.015);
}

.upload-summary-line.is-hidden {
  display: none;
}

.upload-summary-payment {
  display: grid;
  gap: 0.7rem;
}

.upload-summary-payment > span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upload-payment-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.upload-payment-choice {
  appearance: none;
  display: grid;
  gap: 0.2rem;
  min-height: 4.8rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.upload-payment-choice strong {
  font-size: 0.95rem;
}

.upload-payment-choice small {
  color: var(--muted);
  line-height: 1.5;
}

.simulator-form {
  display: contents;
}

.catalogue-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.section-simulator .catalogue-stats {
  margin-top: 0;
  align-self: stretch;
}

.section-simulator .catalogue-stats article {
  padding: 0.85rem 1rem;
}

.section-simulator .catalogue-stats strong {
  font-size: 1.7rem;
}

.catalogue-stats article {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(225, 6, 0, 0.18);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.015);
}

.catalogue-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalogue-stats strong {
  display: block;
  margin-top: 0.4rem;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--text);
}

.form-field,
.fuel-grid label {
  display: grid;
  gap: 0.7rem;
}

.form-field.is-hidden {
  display: none;
}

.simulator-form span,
.fuel-grid span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.vehicle-picker {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.35rem;
  border: 1px solid rgba(225, 6, 0, 0.14);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(9, 9, 9, 0.72);
}

.vehicle-picker-head {
  display: grid;
  gap: 0.35rem;
}

.picker-kicker {
  margin: 0;
  color: var(--accent-alt);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.vehicle-picker-head strong {
  font-size: 1.25rem;
  line-height: 1.25;
}

.catalogue-flow,
.vehicle-meta {
  display: grid;
  gap: 1rem;
}

.catalogue-flow {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.catalogue-step {
  display: grid;
  gap: 0.95rem;
  padding: 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.catalogue-step.is-hidden,
.vehicle-meta.is-hidden,
.simulator-note.is-hidden,
.simulator-support-note.is-hidden,
.simulator-results.is-hidden,
.catalogue-back.is-hidden {
  display: none;
}

.catalogue-step-brands {
  grid-column: 1 / -1;
}

.catalogue-step-models,
.catalogue-step-versions,
.catalogue-step-engines,
.catalogue-step-stages {
  grid-column: span 4;
}

.catalogue-step-models.is-promoted,
.catalogue-step-versions.is-promoted,
.catalogue-step-engines.is-promoted,
.catalogue-step-stages.is-promoted {
  grid-column: 1 / -1;
}

.catalogue-step-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.catalogue-step-head strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.catalogue-step-head p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.catalogue-context {
  margin-top: 0.55rem;
  color: var(--accent-alt);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalogue-back {
  align-self: center;
  margin-left: auto;
  min-height: 2.9rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.28);
  background: rgba(225, 6, 0, 0.08);
  color: #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.catalogue-back:hover,
.catalogue-back:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.48);
  background: rgba(225, 6, 0, 0.14);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.catalogue-step-index {
  display: grid;
  place-items: center;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-alt), var(--accent));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-grid-shell {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-card,
.choice-card,
.stage-chip {
  appearance: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  aspect-ratio: 1 / 0.92;
  min-height: auto;
  padding: 0.95rem 0.65rem 0.8rem;
  border-radius: 0.95rem;
  border: 1px solid #d7d7d7;
  background: linear-gradient(180deg, #fbfbfb, #f1f1f1);
  color: #111111;
  cursor: pointer;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand-card:hover,
.brand-card:focus-visible,
.choice-card:hover,
.choice-card:focus-visible,
.stage-chip:hover,
.stage-chip:focus-visible {
  transform: translateY(-2px);
}

.brand-card.is-active {
  border-color: rgba(225, 6, 0, 0.72);
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.18),
    0 18px 42px rgba(225, 6, 0, 0.14);
}

.brand-card strong {
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  overflow-wrap: anywhere;
  text-align: center;
}

.brand-card small {
  display: none;
}

.brand-card-mark {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #171717, #252525);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-card-mark.has-image {
  width: 100%;
  max-width: 4.8rem;
  min-height: 3.4rem;
  height: 3.4rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex-shrink: 0;
}

.brand-card-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.06) saturate(1.08);
}

.brand-card.is-active .brand-card-mark {
  background: linear-gradient(180deg, var(--accent-alt), #8b120d);
}

.brand-card.is-active .brand-card-mark.has-image {
  background: transparent;
}

.brand-card[data-brand="Mitsubishi"] .brand-card-mark.has-image {
  max-width: 4rem;
  min-height: 2.7rem;
  height: 2.7rem;
}

.brand-card[data-brand="Mitsubishi"] .brand-card-logo {
  width: 88%;
  height: 88%;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: start;
}

.choice-grid-models,
.choice-grid-versions,
.choice-grid-engines {
  max-height: 20rem;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 0.2rem;
}

.catalogue-step-models.is-promoted .choice-grid-models,
.catalogue-step-versions.is-promoted .choice-grid-versions,
.catalogue-step-engines.is-promoted .choice-grid-engines {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.choice-grid-models .choice-card,
.choice-grid-versions .choice-card,
.choice-grid-engines .choice-card {
  aspect-ratio: auto;
  min-height: 8.75rem;
  border-radius: 0.95rem;
  border: 1px solid #d7d7d7;
  background: linear-gradient(180deg, #fbfbfb, #f1f1f1);
  color: #111111;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.choice-grid-models .choice-card.is-active,
.choice-grid-versions .choice-card.is-active,
.choice-grid-engines .choice-card.is-active {
  border-color: rgba(225, 6, 0, 0.65);
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.18),
    0 18px 42px rgba(225, 6, 0, 0.14);
}

.choice-grid-models .choice-card strong,
.choice-grid-versions .choice-card strong,
.choice-grid-engines .choice-card strong,
.choice-grid-models .choice-card span,
.choice-grid-versions .choice-card span,
.choice-grid-engines .choice-card span {
  text-align: center;
}

.choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 0.95rem 0.8rem;
  border-radius: 0.95rem;
  border: 1px solid #d7d7d7;
  background: linear-gradient(180deg, #fbfbfb, #f1f1f1);
  color: #111111;
  cursor: pointer;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.choice-card.is-active {
  border-color: rgba(225, 6, 0, 0.65);
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.18),
    0 18px 42px rgba(225, 6, 0, 0.14);
}

.choice-card strong {
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0;
  overflow-wrap: anywhere;
  text-align: center;
}

.choice-card span,
.stage-chip span {
  color: #5c5c5c;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: none;
  overflow-wrap: anywhere;
  text-align: center;
}

.stage-chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.stage-chip {
  display: grid;
  gap: 0.3rem;
  min-height: 5rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.stage-chip strong {
  font-size: 0.95rem;
}

.stage-chip-price {
  display: inline-flex;
  align-items: center;
  justify-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.14);
  color: var(--accent-alt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage-chip.is-active {
  border-color: rgba(225, 6, 0, 0.7);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.24), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 38px rgba(225, 6, 0, 0.12);
}

.catalogue-empty {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.catalogue-empty strong {
  display: block;
  margin-bottom: 0.35rem;
}

.catalogue-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.native-selects {
  display: none;
}

.vehicle-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vehicle-meta article {
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.vehicle-meta strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.15rem;
}

.simulator-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.simulator-support-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(225, 6, 0, 0.18);
  color: var(--text);
  line-height: 1.7;
}

.simulator-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.simulator-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: start;
  margin-top: 0.25rem;
}

.simulator-results {
  grid-column: 1 / -1;
  margin-top: 0.1rem;
}

.simulator-offer {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.offer-vehicle-card,
.offer-detail-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(19, 22, 28, 0.08);
  background: linear-gradient(180deg, #fbfaf7 0%, #f2f4f7 100%);
  color: #212733;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.offer-vehicle-card {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: 1.6rem 1.35rem 1.45rem;
  text-align: center;
  isolation: isolate;
}

.offer-vehicle-card::before {
  content: "";
  position: absolute;
  inset: -22% auto auto -12%;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.16) 0%, rgba(225, 6, 0, 0) 72%);
  z-index: 0;
}

.offer-vehicle-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -16% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 34, 42, 0.12) 0%, rgba(30, 34, 42, 0) 74%);
  z-index: 0;
}

.offer-vehicle-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.08);
  border: 1px solid rgba(225, 6, 0, 0.14);
  color: var(--accent-alt);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-vehicle-logo-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(27, 32, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 246, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 38px rgba(18, 24, 32, 0.08);
}

.offer-vehicle-logo-shell::after {
  content: "";
  position: absolute;
  inset: auto 1rem -1.2rem auto;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.14) 0%, rgba(225, 6, 0, 0) 72%);
  pointer-events: none;
}

.offer-vehicle-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 7.8rem;
  padding: 0.35rem;
}

.offer-brand-logo {
  max-width: min(100%, 10.5rem);
  max-height: 5.9rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(24, 29, 36, 0.12));
}

.offer-vehicle-card[data-brand="Alfa Romeo"] .offer-brand-logo,
.offer-vehicle-card[data-brand="BMW"] .offer-brand-logo,
.offer-vehicle-card[data-brand="Abarth"] .offer-brand-logo,
.offer-vehicle-card[data-brand="Porsche"] .offer-brand-logo {
  max-height: 5.25rem;
}

.offer-vehicle-card[data-brand="Bentley"] .offer-brand-logo,
.offer-vehicle-card[data-brand="Aston Martin"] .offer-brand-logo {
  max-width: min(100%, 11rem);
  max-height: 4.45rem;
}

.offer-vehicle-card[data-brand="Mercedes"] .offer-brand-logo,
.offer-vehicle-card[data-brand="Lexus"] .offer-brand-logo,
.offer-vehicle-card[data-brand="Genesis"] .offer-brand-logo {
  max-height: 5rem;
}

.offer-vehicle-card[data-brand="Mitsubishi"] .offer-brand-logo {
  max-height: 4.7rem;
}

.offer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  min-height: 5rem;
  padding: 0.8rem 1rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #111317, #212731);
  color: #ffffff;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 32px rgba(17, 19, 23, 0.16);
}

.offer-brand-logo.is-hidden,
.offer-brand-mark.is-hidden {
  display: none;
}

.offer-vehicle-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  width: 100%;
}

.offer-vehicle-card strong {
  color: #212733;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.offer-vehicle-card p {
  margin: 0;
  color: #6a7280;
  line-height: 1.45;
}

.offer-vehicle-version {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.1rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.14);
  background: rgba(225, 6, 0, 0.08);
  color: var(--accent-alt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-vehicle-engine {
  color: #394150;
  font-size: 1rem;
  font-weight: 600;
}

.offer-vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.1rem;
}

.offer-vehicle-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.1rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 32, 39, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #4b5361;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(18, 24, 32, 0.05);
}

.offer-detail-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, #fcfbf8 0%, #f5f7fa 100%);
}

.offer-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.offer-detail-head > div {
  min-width: 0;
}

.offer-detail-kicker {
  margin: 0 0 0.3rem;
  color: #7a838f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-detail-card h3 {
  margin: 0;
  color: #242a35;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.05;
}

.offer-back-button {
  border: 0;
  background: transparent;
  color: var(--accent-alt);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0;
}

.offer-back-button:hover,
.offer-back-button:focus-visible {
  color: var(--accent);
}

.offer-stage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-bottom: 0.1rem;
}

.offer-stage-tab {
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid rgba(28, 34, 42, 0.09);
  border-radius: 0.85rem;
  background: #eef1f5;
  color: #68707d;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.offer-stage-tab:hover,
.offer-stage-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.28);
  color: #2c323e;
  outline: 0;
}

.offer-stage-tab.is-active {
  border-color: rgba(225, 6, 0, 0.22);
  background: rgba(225, 6, 0, 0.1);
  color: var(--accent);
}

.offer-description {
  margin: 0;
  color: #4f5663;
  line-height: 1.7;
}

.offer-table {
  display: grid;
  gap: 0.55rem;
}

.offer-table-head,
.offer-table-row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
}

.offer-table-head {
  background: #ebeef2;
  color: #4e5664;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-table-row {
  background: #f3f5f7;
}

.offer-table-row strong {
  color: #2a303b;
  font-weight: 700;
}

.offer-table-row span {
  color: #4e5664;
  font-weight: 600;
}

.offer-table-head span,
.offer-table-row strong,
.offer-table-row span {
  overflow-wrap: anywhere;
}

.offer-table-row-accent {
  background: #ffffff;
}

.offer-table-row-accent strong,
.offer-table-row-accent span {
  color: var(--accent-alt);
}

.offer-price-row {
  display: grid;
  gap: 0.35rem;
}

.offer-price-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.offer-price-arrow {
  color: var(--accent-alt);
  font-size: 1.4rem;
  font-weight: 700;
}

.offer-price-main strong {
  color: #1d232d;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 0.95;
}

.offer-price-row p {
  margin: 0;
  color: #69717e;
  line-height: 1.5;
}

.offer-divider {
  height: 1px;
  background: rgba(32, 39, 51, 0.14);
}

.offer-options-block {
  display: grid;
  gap: 0.85rem;
}

.offer-options-block strong {
  font-size: 1.35rem;
  color: #252b35;
}

.offer-options-note {
  margin: -0.15rem 0 0;
  color: #6e7683;
  line-height: 1.6;
}

.offer-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.offer-option-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(28, 34, 42, 0.08);
  background: #f0f2f5;
  color: #5a6270;
  font-size: 0.88rem;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.offer-option-price {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.offer-option-pill small {
  color: #222833;
  font-weight: 700;
}

.offer-option-pill s {
  color: #8b93a0;
  font-size: 0.78rem;
}

.offer-option-pill em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.35rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(30, 166, 88, 0.14);
  color: #148047;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.offer-option-pill:hover,
.offer-option-pill:focus-visible {
  border-color: rgba(225, 6, 0, 0.26);
  transform: translateY(-1px);
  outline: 0;
}

.offer-option-pill.is-active {
  border-color: rgba(225, 6, 0, 0.26);
  background: rgba(225, 6, 0, 0.09);
  color: #202631;
}

.offer-option-pill.is-discounted {
  border-color: rgba(30, 166, 88, 0.18);
  background: linear-gradient(180deg, rgba(30, 166, 88, 0.06), rgba(255, 255, 255, 0.92));
}

.offer-order-box {
  display: grid;
  gap: 0.95rem;
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(225, 6, 0, 0.14);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.05), rgba(255, 255, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 42px rgba(18, 24, 32, 0.06);
}

.offer-appointment-box {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(28, 34, 42, 0.08);
  background: #ffffff;
}

.offer-appointment-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.offer-appointment-head strong {
  color: #202631;
  font-size: 1rem;
}

.offer-appointment-head span {
  color: #6f7784;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-appointment-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-appointment-note {
  margin: 0;
  color: #69717e;
  line-height: 1.55;
}

.offer-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.offer-order-head strong {
  color: #232933;
  font-size: 1.15rem;
}

.offer-order-head span {
  color: #69717e;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-order-summary {
  display: grid;
  gap: 0.75rem;
}

.offer-payment-methods {
  display: grid;
  gap: 0.7rem;
}

.offer-payment-methods > span {
  color: #5f6774;
  font-weight: 700;
}

.offer-payment-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.offer-payment-choice {
  display: grid;
  gap: 0.25rem;
  justify-items: start;
  min-height: 4.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(28, 34, 42, 0.08);
  border-radius: 1rem;
  background: #ffffff;
  color: #232933;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.offer-payment-choice strong {
  color: #202631;
  font-size: 1rem;
}

.offer-payment-choice small {
  color: #6f7784;
  line-height: 1.45;
}

.offer-payment-choice:hover,
.offer-payment-choice:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.26);
  box-shadow: 0 14px 26px rgba(18, 24, 32, 0.06);
  outline: 0;
}

.offer-payment-choice.is-active {
  border-color: rgba(225, 6, 0, 0.3);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.07), #ffffff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 16px 28px rgba(225, 6, 0, 0.08);
}

.offer-order-line,
.offer-order-discount,
.offer-order-split,
.offer-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.offer-order-line span,
.offer-order-selected {
  color: #5f6774;
}

.offer-order-line span,
.offer-order-discount span,
.offer-order-split span {
  min-width: 0;
}

.offer-order-line strong {
  color: #202631;
}

.offer-order-discount {
  padding: 0.15rem 0;
}

.offer-order-discount span {
  color: #5f6774;
  font-weight: 600;
}

.offer-order-discount strong {
  color: var(--accent-alt);
  font-weight: 700;
}

.offer-order-split {
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(28, 34, 42, 0.06);
  background: #ffffff;
}

.offer-order-split.is-hidden {
  display: none;
}

.offer-order-split span {
  color: #4e5664;
  font-weight: 700;
}

.offer-order-split strong {
  color: #202631;
  font-weight: 700;
}

#order-deposit-line {
  border-color: rgba(225, 6, 0, 0.16);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.08), #ffffff);
}

#order-deposit-line strong {
  color: var(--accent-alt);
  font-family: "Teko", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 0.95;
}

.offer-order-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: flex-start;
  min-height: 3.65rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(28, 34, 42, 0.06);
  background: #ffffff;
  line-height: 1.55;
}

.offer-order-selected.is-empty {
  display: block;
  color: #7b8390;
  font-style: italic;
}

.offer-order-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.15rem;
  padding: 0.1rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(28, 34, 42, 0.08);
  background: linear-gradient(180deg, #ffffff, #f3f5f8);
  color: #232933;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(18, 24, 32, 0.05);
}

.offer-order-pill.is-discounted {
  border-color: rgba(30, 166, 88, 0.2);
  background: linear-gradient(180deg, rgba(30, 166, 88, 0.06), #ffffff);
}

.offer-order-pill-price {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.offer-order-pill s {
  color: #8b93a0;
  font-size: 0.76rem;
}

.offer-order-pill small {
  color: var(--accent-alt);
  font-size: 0.8rem;
  font-weight: 700;
}

.offer-order-pill em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.3rem;
  padding: 0 0.42rem;
  border-radius: 999px;
  background: rgba(30, 166, 88, 0.14);
  color: #148047;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.offer-order-total {
  padding-top: 0.1rem;
  border-top: 1px solid rgba(32, 39, 51, 0.1);
}

.offer-order-total span {
  color: #232933;
  font-weight: 700;
}

.offer-order-total strong {
  color: var(--accent-alt);
  font-family: "Teko", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 0.95;
}

.offer-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.offer-order-actions .button {
  flex: 1 1 15rem;
}

.offer-order-actions .button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.offer-order-note {
  margin: 0;
  color: #6a7280;
  line-height: 1.6;
}

.offer-insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.offer-insights article {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  background: #f2f4f7;
}

.offer-insights span {
  color: #6a7280;
  font-size: 0.82rem;
}

.offer-insights strong {
  color: #212733;
  font-size: 1.1rem;
}

.offer-extra-note,
.offer-support-note {
  margin: 0;
  color: #606874;
  line-height: 1.6;
}

.offer-support-note {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(32, 39, 51, 0.12);
}

.simulator-hidden-values {
  display: none;
}

.range-meta {
  display: grid;
  gap: 0.7rem;
}

input[type="range"] {
  width: 100%;
  appearance: none;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.55), rgba(255, 59, 54, 0.18));
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--accent-alt);
  border: 0;
  box-shadow: 0 0 0 8px rgba(225, 6, 0, 0.08);
}

select,
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
  width: 100%;
  min-height: 3.2rem;
  border-radius: 1rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0 1rem;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

select:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.08);
}

input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

textarea {
  min-height: 8.2rem;
  padding: 0.95rem 1rem;
  resize: vertical;
}

input[readonly] {
  color: rgba(255, 255, 255, 0.88);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-alt) 50%),
    linear-gradient(135deg, var(--accent-alt) 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) calc(50% - 0.15rem),
    calc(100% - 0.85rem) calc(50% - 0.15rem);
  background-size: 0.4rem 0.4rem, 0.4rem 0.4rem;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}

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

.results-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.6rem;
}

.result-card {
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-card strong {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-family: "Teko", sans-serif;
  font-weight: 600;
}

.result-card-accent {
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.22), rgba(255, 59, 54, 0.08));
}

.result-card-outline {
  border-color: rgba(225, 6, 0, 0.4);
  background: rgba(225, 6, 0, 0.08);
}

.section-pricing {
  padding-top: 1rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.pricing-panel {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.16), transparent 42%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.pricing-panel-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pricing-panel-head strong {
  font-size: 1.35rem;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.13);
  color: var(--accent-alt);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-list {
  display: grid;
  gap: 0.75rem;
}

.pricing-list-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-row span {
  color: var(--text);
  flex: 1 1 auto;
  line-height: 1.45;
  min-width: 0;
}

.pricing-row strong {
  color: var(--accent-alt);
  font-family: "Teko", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
  white-space: nowrap;
}

.pricing-row-featured {
  border-color: rgba(225, 6, 0, 0.35);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.03));
}

.pricing-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.showcase-header strong {
  font-size: 1.45rem;
}

.showcase-stat {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.showcase-stat p {
  margin-top: 0.4rem;
  color: var(--text);
}

.showcase-copy {
  margin-top: 1rem;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(225, 6, 0, 0.14);
  color: var(--accent-alt);
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
}

.testimonial-card p {
  margin-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.booking-card {
  display: grid;
  gap: 1.15rem;
}

.booking-card-head {
  display: grid;
  gap: 0.55rem;
}

.booking-card-head strong {
  font-size: 1.4rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

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

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.booking-actions .button {
  flex: 1 1 14rem;
}

.booking-helper {
  margin: -0.1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info-card {
  gap: 0.9rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-line {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-line:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-line a,
.contact-line p {
  margin: 0.45rem 0 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.contact-button {
  width: fit-content;
  margin-top: 0.75rem;
}

.site-footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.95rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  outline: 0;
}

.footer-logo {
  display: block;
  width: min(9rem, 32vw);
  height: auto;
  mix-blend-mode: screen;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  padding: 1.6rem 0 0.5rem;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-back {
  color: var(--muted);
  font-weight: 600;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--text);
  outline: 0;
}

.legal-main {
  padding: 1.5rem 0 4rem;
}

.account-main-page {
  padding-top: 1.6rem;
}

.legal-hero {
  display: grid;
  gap: 0.9rem;
  max-width: 56rem;
  margin-bottom: 2rem;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.95;
  font-family: "Teko", sans-serif;
  font-weight: 600;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-alert {
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(225, 6, 0, 0.24);
  background: rgba(225, 6, 0, 0.08);
  color: var(--text);
}

.legal-grid {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.35rem 1.4rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.14), transparent 42%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.legal-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p + p,
.legal-card ul,
.legal-card ol {
  margin-top: 0.9rem;
}

.legal-list,
.legal-ordered {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal-meta {
  display: grid;
  gap: 0.7rem;
}

.legal-meta div {
  display: grid;
  gap: 0.2rem;
}

.legal-meta strong {
  color: var(--text);
}

.legal-note {
  color: var(--text);
}

.account-hero {
  max-width: 60rem;
}

.account-gate.is-hidden,
.account-shell.is-hidden {
  display: none;
}

.account-gate {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 20rem);
}

.account-gate-card {
  width: min(100%, 34rem);
  display: grid;
  gap: 1.35rem;
}

.account-gate-copy {
  display: grid;
  gap: 0.75rem;
}

.account-gate-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  font-family: "Teko", sans-serif;
  font-weight: 600;
}

.account-gate-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.account-shell {
  display: grid;
  gap: 1rem;
}

.account-overview-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.45rem 1.5rem;
}

.account-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.account-overview-copy {
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
}

.account-overview-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.94;
  font-family: "Teko", sans-serif;
  font-weight: 600;
}

.account-overview-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.account-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.account-overview-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.account-overview-meta article {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.account-overview-meta span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-overview-meta strong {
  color: var(--text);
  line-height: 1.45;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.4fr);
  gap: 1rem;
}

.account-sidebar,
.account-main {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.account-card {
  gap: 1rem;
}

.account-side-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.account-identity-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.account-identity-avatar {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), #ff5a43);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 32px rgba(225, 6, 0, 0.22);
}

.account-identity-copy {
  display: grid;
  gap: 0.18rem;
}

.account-identity-copy strong {
  color: var(--text);
}

.account-identity-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.account-card-head,
.account-panel-head {
  display: grid;
  gap: 0.45rem;
}

.account-card-head strong,
.account-panel-head strong {
  font-size: 1.3rem;
}

.account-panel-head span {
  color: var(--muted);
  line-height: 1.6;
}

.account-access-form {
  display: grid;
  gap: 0.95rem;
}

.account-reset-panel {
  display: grid;
  gap: 0.95rem;
}

.account-reset-copy {
  display: grid;
  gap: 0.45rem;
}

.account-reset-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 0.96;
  font-family: "Teko", sans-serif;
  font-weight: 600;
}

.account-reset-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.account-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.bot-trap-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.account-stats article {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.account-stats span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-stats strong {
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.95;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-tab {
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.account-tab:hover,
.account-tab:focus-visible {
  border-color: rgba(225, 6, 0, 0.25);
  color: var(--text);
  outline: 0;
}

.account-tab.is-active {
  border-color: rgba(225, 6, 0, 0.34);
  background: rgba(225, 6, 0, 0.12);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.account-panel.is-hidden {
  display: none;
}

.account-table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.account-table th,
.account-table td {
  padding: 0.95rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.account-table th {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-table td {
  color: var(--text);
  line-height: 1.55;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.12);
  color: var(--accent-alt);
  font-size: 0.8rem;
  font-weight: 700;
}

.account-doc-button {
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(225, 6, 0, 0.24);
  border-radius: 0.85rem;
  background: rgba(225, 6, 0, 0.08);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.account-doc-button:hover,
.account-doc-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.36);
  background: rgba(225, 6, 0, 0.12);
  outline: 0;
}

.account-empty {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  line-height: 1.7;
}

.account-empty.is-hidden {
  display: none;
}

.account-vehicle-list {
  display: grid;
  gap: 0.8rem;
}

.account-vehicle-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.account-vehicle-card strong {
  font-size: 1rem;
}

.account-vehicle-card span {
  color: var(--muted);
  line-height: 1.6;
}

.backoffice-grid {
  align-items: start;
}

.backoffice-session-note {
  margin: 0;
}

.backoffice-toolbar {
  display: grid;
  gap: 1rem;
}

.backoffice-subgrid {
  display: grid;
  gap: 1rem;
}

.backoffice-filter-tabs {
  align-items: center;
}

.backoffice-search-field input {
  width: 100%;
}

.backoffice-notification-summary {
  display: grid;
  gap: 0.9rem;
}

.backoffice-notification-summary span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.backoffice-notification-summary strong {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.95;
}

.backoffice-notification-summary strong::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff5a43);
  box-shadow: 0 0 0 0.35rem rgba(225, 6, 0, 0.12);
}

.backoffice-notification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.backoffice-notification-list {
  display: grid;
  gap: 0.8rem;
}

.backoffice-notification-item {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.backoffice-notification-item:hover,
.backoffice-notification-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.24);
  background: rgba(225, 6, 0, 0.08);
  outline: 0;
}

.backoffice-notification-item.is-unread {
  border-color: rgba(225, 6, 0, 0.22);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.11), rgba(255, 255, 255, 0.03));
}

.backoffice-notification-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.backoffice-notification-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
}

.backoffice-notification-dot {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.backoffice-notification-item.is-unread .backoffice-notification-dot {
  background: linear-gradient(135deg, var(--accent), #ff5a43);
  box-shadow: 0 0 0 0.35rem rgba(225, 6, 0, 0.12);
}

.backoffice-notification-meta {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.backoffice-notification-copy {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.backoffice-row-active td {
  background: rgba(225, 6, 0, 0.08);
}

.backoffice-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.backoffice-detail-section {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.backoffice-detail-title {
  font-size: 1.05rem;
}

.backoffice-detail-list {
  display: grid;
  gap: 0.75rem;
}

.backoffice-detail-item {
  display: grid;
  gap: 0.25rem;
}

.backoffice-detail-item span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.backoffice-detail-item strong,
.backoffice-detail-paragraph {
  color: var(--text);
  line-height: 1.65;
}

.backoffice-detail-paragraph {
  margin: 0;
}

.backoffice-file-list {
  display: grid;
  gap: 0.8rem;
}

.backoffice-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.backoffice-file-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.backoffice-file-copy strong {
  word-break: break-word;
}

.backoffice-file-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.backoffice-admin-form {
  display: grid;
  gap: 0.9rem;
}

.backoffice-pricing-tabs {
  margin-bottom: 1rem;
}

.backoffice-pricing-panel.is-hidden {
  display: none;
}

.backoffice-pricing-form {
  display: grid;
  gap: 1rem;
}

.backoffice-pricing-columns {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.backoffice-pricing-group {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.backoffice-pricing-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.backoffice-pricing-grid input {
  width: 100%;
}

.backoffice-showcase-layout,
.backoffice-showcase-form,
.backoffice-editor-layout,
.backoffice-editor-form {
  display: grid;
  gap: 1rem;
}

.backoffice-showcase-grid,
.backoffice-editor-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.backoffice-showcase-form textarea,
.backoffice-editor-form textarea {
  min-height: 8rem;
}

.backoffice-showcase-toggle,
.backoffice-editor-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.backoffice-showcase-toggle input,
.backoffice-editor-toggle input {
  width: 1rem;
  height: 1rem;
}

.backoffice-showcase-row-active td,
.backoffice-testimonial-row-active td {
  background: rgba(225, 6, 0, 0.08);
}

.backoffice-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.backoffice-admin-form textarea {
  min-height: 10rem;
}

.backoffice-page {
  position: relative;
  isolation: isolate;
}

.backoffice-page .topbar {
  position: relative;
  z-index: 2;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(9, 9, 9, 0.92)),
    radial-gradient(circle at top left, rgba(225, 6, 0, 0.16), transparent 42%);
}

.backoffice-page .topbar-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.backoffice-header {
  position: relative;
  z-index: 2;
}

.backoffice-page .legal-top {
  padding: 0.4rem 0 0.2rem;
}

.backoffice-page .legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.backoffice-page .legal-back:hover,
.backoffice-page .legal-back:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.38);
  background: rgba(225, 6, 0, 0.1);
  box-shadow: 0 18px 34px rgba(225, 6, 0, 0.14);
}

.backoffice-page .legal-main {
  position: relative;
  z-index: 1;
}

.backoffice-hero {
  position: relative;
  max-width: none;
  margin-bottom: 1.4rem;
  padding: 1.8rem 1.85rem;
  border: 1px solid rgba(225, 6, 0, 0.18);
  border-radius: 1.7rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 36%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.backoffice-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.3;
  pointer-events: none;
}

.backoffice-hero > * {
  position: relative;
  z-index: 1;
}

.backoffice-hero h1 {
  max-width: 44rem;
}

.backoffice-hero p {
  max-width: 52rem;
}

.backoffice-page .legal-alert {
  max-width: 54rem;
  backdrop-filter: blur(14px);
}

.backoffice-page .legal-card {
  border-radius: 1.55rem;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.16), transparent 40%),
    rgba(8, 8, 8, 0.84);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.backoffice-page .account-gate-card {
  width: min(100%, 42rem);
  padding: 1.5rem;
}

.backoffice-page .account-gate-copy h2 {
  max-width: 28rem;
}

.backoffice-overview-card {
  position: relative;
  overflow: hidden;
}

.backoffice-overview-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.18), transparent 68%);
  pointer-events: none;
}

.backoffice-page .account-overview-head,
.backoffice-page .account-overview-meta,
.backoffice-page .account-sidebar,
.backoffice-page .account-main {
  position: relative;
  z-index: 1;
}

.backoffice-page .account-overview-copy {
  gap: 0.85rem;
  max-width: 48rem;
}

.backoffice-page .account-overview-copy h2 {
  max-width: 38rem;
}

.backoffice-page .account-overview-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.backoffice-page .account-overview-meta article {
  position: relative;
  gap: 0.45rem;
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 1.1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.8);
}

.backoffice-page .account-overview-meta article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff6a46 82%);
  opacity: 0.95;
}

.backoffice-page .account-overview-meta article:nth-child(2)::before {
  background: linear-gradient(90deg, #ff7a4c, #ffb14a 85%);
}

.backoffice-page .account-overview-meta article:nth-child(3)::before {
  background: linear-gradient(90deg, #ffffff, #ff6a46 85%);
}

.backoffice-page .account-overview-meta article:nth-child(4)::before {
  background: linear-gradient(90deg, #ff412f, #ffd16e 85%);
}

.backoffice-page .account-overview-meta strong {
  font-family: "Teko", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 0.88;
}

.backoffice-page .account-grid {
  gap: 1.15rem;
}

.backoffice-page .account-sidebar {
  position: sticky;
  top: 1rem;
}

.backoffice-page .account-card,
.backoffice-page .account-panel {
  gap: 1.05rem;
}

.backoffice-page .account-card-head strong,
.backoffice-page .account-panel-head strong {
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}

.backoffice-page .account-identity-card {
  border-color: rgba(225, 6, 0, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.7);
}

.backoffice-page .account-identity-avatar {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.05rem;
  box-shadow:
    0 18px 34px rgba(225, 6, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.backoffice-page .form-field {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.72);
}

.backoffice-page .form-field span {
  color: rgba(255, 255, 255, 0.84);
}

.backoffice-page .form-field input,
.backoffice-page .form-field select,
.backoffice-page .form-field textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.backoffice-page .form-field input:focus,
.backoffice-page .form-field select:focus,
.backoffice-page .form-field textarea:focus {
  border-color: rgba(225, 6, 0, 0.34);
  box-shadow: 0 0 0 0.25rem rgba(225, 6, 0, 0.1);
}

.backoffice-page .account-tab {
  min-height: 2.95rem;
  padding: 0 1.1rem;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.72);
}

.backoffice-page .account-tab.is-active {
  border-color: rgba(225, 6, 0, 0.36);
  background:
    linear-gradient(180deg, rgba(225, 6, 0, 0.18), rgba(225, 6, 0, 0.1)),
    rgba(255, 255, 255, 0.03);
  color: #ffffff;
  box-shadow:
    0 12px 26px rgba(225, 6, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.backoffice-page .account-table-wrap {
  border-radius: 1.2rem;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.014)),
    rgba(7, 7, 7, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.backoffice-page .account-table thead {
  background: rgba(255, 255, 255, 0.035);
}

.backoffice-page .account-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}

.backoffice-page .account-table tbody tr:hover td {
  background: rgba(225, 6, 0, 0.07);
}

.backoffice-page .account-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.backoffice-page .backoffice-row-active td,
.backoffice-page .backoffice-showcase-row-active td,
.backoffice-page .backoffice-testimonial-row-active td {
  background: rgba(225, 6, 0, 0.12);
  box-shadow: inset 3px 0 0 var(--accent);
}

.backoffice-page .account-empty {
  padding: 1.15rem 1.2rem;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.backoffice-page .backoffice-notification-summary,
.backoffice-page .backoffice-detail-section,
.backoffice-page .backoffice-pricing-group,
.backoffice-page .backoffice-file-item {
  border-color: rgba(225, 6, 0, 0.14);
}

.backoffice-page .backoffice-detail-section,
.backoffice-page .backoffice-pricing-group {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.74);
}

.backoffice-page .backoffice-subgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.backoffice-page .backoffice-pricing-grid {
  gap: 0.8rem;
}

.backoffice-page .backoffice-admin-actions {
  padding-top: 0.2rem;
}

.backoffice-page .backoffice-showcase-layout,
.backoffice-page .backoffice-editor-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.backoffice-page .backoffice-showcase-form,
.backoffice-page .backoffice-editor-form {
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1080px) {
  .hero-metrics,
  .catalogue-stats,
  .vehicle-meta,
  .services-grid,
  .proof-cards,
  .showcase-grid,
  .testimonial-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .proof-grid,
  .upload-funnel-body,
  .flex-simulator-grid,
  .flex-simulator-layout,
  .pricing-layout,
  .faq-grid,
  .contact-grid,
  .account-grid,
  .account-overview-meta {
    grid-template-columns: 1fr;
  }

  .brand-strip-track {
    animation-duration: 92s;
  }

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

  .hero-panel {
    justify-self: stretch;
    max-width: none;
  }

  .upload-summary-card {
    position: static;
  }

  .section-simulator .section-heading {
    grid-template-columns: 1fr;
  }

  .section-flex-simulator .section-heading {
    grid-template-columns: 1fr;
  }

  .flex-simulator-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flex-result-card-accent {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .catalogue-step-models.is-promoted .choice-grid-models,
  .catalogue-step-versions.is-promoted .choice-grid-versions,
  .catalogue-step-engines.is-promoted .choice-grid-engines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upload-step-rail,
  .upload-reader-tools,
  .upload-service-grid,
  .upload-option-grid,
  .upload-final-grid,
  .upload-form-grid,
  .backoffice-subgrid,
  .backoffice-detail-grid,
  .backoffice-pricing-columns,
  .backoffice-pricing-grid,
  .backoffice-showcase-grid,
  .backoffice-editor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-step-brands {
    grid-column: 1 / -1;
  }

  .catalogue-step-models,
  .catalogue-step-versions,
  .catalogue-step-engines,
  .catalogue-step-stages {
    grid-column: auto;
  }

  .brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pricing-list-options {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand-logo {
    width: min(10.5rem, 46vw);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    max-height: calc(100vh - 6.5rem);
    overflow-y: auto;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: rgba(6, 6, 6, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .account-modal-dialog {
    max-height: calc(100vh - 1rem);
    padding: 1.2rem;
    border-radius: 1.25rem;
  }

  .account-modal-actions {
    display: grid;
  }

  .site-nav .account-nav-link {
    min-height: 3rem;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 0.7rem 0.85rem;
    align-self: stretch;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
  }

  .site-nav .account-nav-link::after {
    display: block;
    content: "Espace client";
    margin-left: 0.65rem;
    color: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  .site-nav > a:not(.button)::before,
  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav a:not(.button) {
    width: 100%;
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
  }

  .site-nav a:not(.button):hover,
  .site-nav a:not(.button):focus-visible,
  .site-nav .account-nav-link:hover,
  .site-nav .account-nav-link:focus-visible {
    transform: none;
    background: rgba(225, 6, 0, 0.08);
  }

  .header-cta {
    width: 100%;
    min-height: 3.1rem;
    padding: 0 1.35rem;
    justify-content: center;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-grid {
    min-height: auto;
    gap: 1.6rem;
  }

  .hero-panel {
    justify-self: stretch;
    max-width: none;
  }

  .hero-card-top {
    align-items: flex-start;
  }

  .status-pill {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-actions,
  .hero-metrics,
  .catalogue-stats,
  .topbar-links,
  .vehicle-meta,
  .fuel-grid,
  .results-grid,
  .services-grid,
  .proof-cards,
  .showcase-grid,
  .testimonial-grid,
  .hero-actions {
    display: grid;
  }

  .hero-metrics,
  .catalogue-stats,
  .vehicle-meta,
  .services-grid,
  .proof-cards,
  .showcase-grid,
  .testimonial-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 1.05rem;
  }

  .account-gate {
    min-height: auto;
  }

  .account-overview-head,
  .account-overview-actions {
    display: grid;
  }

  .backoffice-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .backoffice-pricing-columns,
  .backoffice-pricing-grid,
  .backoffice-showcase-grid,
  .backoffice-subgrid,
  .backoffice-showcase-layout,
  .backoffice-editor-layout {
    grid-template-columns: 1fr;
  }

  .backoffice-editor-grid {
    grid-template-columns: 1fr;
  }

  .backoffice-file-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .backoffice-notification-head,
  .backoffice-notification-actions {
    display: grid;
  }

  .brand-strip {
    mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  }

  .brand-strip-track {
    animation-duration: 108s;
  }

  .brand-strip-group {
    gap: 0.65rem;
    padding-right: 0.65rem;
  }

  .hero-brand-card {
    width: 4.5rem;
    min-width: 4.5rem;
    min-height: 3.95rem;
    padding: 0.58rem;
  }

  .hero-brand-card .brand-card-mark.has-image {
    padding: 0.34rem 0.4rem;
  }

  .hero-card,
  .simulator-card,
  .pricing-panel,
  .contact-card {
    padding: 1.15rem;
  }

  .section-simulator .container {
    width: min(100%, calc(100vw - 1rem));
  }

  .section-upload-funnel .container {
    width: min(100%, calc(100vw - 1rem));
  }

  .upload-funnel-shell,
  .upload-pane,
  .upload-summary-card {
    padding: 1.1rem;
  }

  .upload-step-rail,
  .upload-reader-tools,
  .upload-option-grid,
  .upload-inline-choice-grid,
  .upload-service-grid,
  .upload-final-grid,
  .upload-form-grid {
    grid-template-columns: 1fr;
  }

  .upload-tuning-summary-grid {
    grid-template-columns: 1fr;
  }

  .upload-pane-actions,
  .upload-summary-line,
  .upload-consent {
    align-items: flex-start;
  }

  .upload-pane-actions {
    display: grid;
  }

  .upload-pane-actions .button,
  .hero-actions .button,
  .booking-actions .button,
  .offer-order-actions .button,
  .account-modal-actions .button {
    width: 100%;
  }

  .section-simulator .section-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .section-simulator .section-heading h2 {
    max-width: 100%;
  }

  .section-flex-simulator .section-heading h2 {
    max-width: 100%;
  }

  .section-flex-simulator .container {
    width: min(100%, calc(100vw - 1rem));
  }

  .flex-simulator-card {
    min-height: auto;
    padding: 1.2rem;
  }

  .flex-simulator-form-grid,
  .flex-simulator-results-grid {
    grid-template-columns: 1fr;
  }

  .flex-simulator-form-grid .form-field,
  .flex-simulator-actions {
    grid-column: auto;
  }

  .simulator-offer,
  .offer-insights {
    grid-template-columns: 1fr;
  }

  .offer-vehicle-card,
  .offer-detail-card {
    padding: 1.15rem;
  }

  .offer-vehicle-logo-shell {
    padding: 0.85rem;
  }

  .offer-vehicle-logo-wrap {
    min-height: 6.7rem;
  }

  .offer-brand-logo {
    max-width: min(100%, 9.2rem);
    max-height: 5.1rem;
  }

  .offer-detail-head {
    display: grid;
  }

  .offer-back-button {
    justify-self: flex-start;
  }

  .offer-table-head,
  .offer-table-row {
    grid-template-columns: minmax(76px, 0.9fr) repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.85rem 0.8rem;
    font-size: 0.9rem;
  }

  .offer-options {
    gap: 0.55rem;
  }

  .offer-order-head,
  .offer-order-line,
  .offer-order-discount,
  .offer-order-split,
  .offer-order-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-order-selected {
    min-height: auto;
  }

  .offer-order-actions {
    display: grid;
  }

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

  .footer-inner,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-stats {
    grid-template-columns: 1fr;
  }

  .account-access-actions,
  .account-tabs {
    display: grid;
  }

  .backoffice-filter-tabs {
    justify-items: flex-start;
  }

  .account-table {
    min-width: 560px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .spec-cluster {
    grid-template-columns: 1fr;
  }

  .catalogue-step {
    padding: 1rem;
  }

  .catalogue-step-head {
    gap: 0.75rem;
  }

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

  .catalogue-flow,
  .choice-grid,
  .stage-chip-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-step-models.is-promoted .choice-grid-models,
  .catalogue-step-versions.is-promoted .choice-grid-versions,
  .catalogue-step-engines.is-promoted .choice-grid-engines {
    grid-template-columns: 1fr;
  }

  .catalogue-step-brands,
  .catalogue-step-models,
  .catalogue-step-versions,
  .catalogue-step-engines,
  .catalogue-step-stages {
    grid-column: 1 / -1;
  }

  .choice-grid-models,
  .choice-grid-versions,
  .choice-grid-engines,
  .brand-grid-shell {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .choice-grid-models .choice-card,
  .choice-grid-versions .choice-card,
  .choice-grid-engines .choice-card {
    min-height: 7.75rem;
  }

  .upload-file-item,
  .pricing-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-actions,
  .offer-order-actions {
    display: grid;
  }

  .contact-button {
    width: 100%;
  }

  .section {
    padding: 4.4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-delay {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .site-nav a {
    transition: none;
  }

  .site-nav > a:not(.button)::before,
  .site-nav > a:not(.button)::after {
    animation: none !important;
    transition: none !important;
  }
}
