:root {
  --bg: #050607;
  --bg-2: #080a0c;
  --panel: #111417;
  --panel-2: #15191d;
  --line: #242a2f;
  --muted: #8f989f;
  --text: #f4f7f5;
  --green: #10d46b;
  --green-2: #0aa753;
  --green-soft: rgba(16, 212, 107, .13);
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
}

.btn {
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-success {
  --bs-btn-bg: var(--green);
  --bs-btn-border-color: var(--green);
  --bs-btn-hover-bg: #19ec7b;
  --bs-btn-hover-border-color: #19ec7b;
  --bs-btn-color: #041007;
  --bs-btn-hover-color: #041007;
  box-shadow: 0 0 28px rgba(16, 212, 107, .24);
}

.btn-outline-light {
  --bs-btn-border-color: #2f383f;
  --bs-btn-color: #eef5f0;
  --bs-btn-hover-bg: #eef5f0;
  --bs-btn-hover-color: #040607;
}

.site-nav {
  padding: 14px 0;
  background: rgba(4, 5, 6, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.navbar-brand {
  font-size: .9rem;
  line-height: 1.05;
}

.site-logo-link {
  display: inline-flex;
}

.site-logo {
  display: block;
  height: 44px;
  max-width: 210px;
  object-fit: contain;
  width: auto;
}

.footer-logo {
  height: 52px;
  max-width: 250px;
}

.navbar-brand small,
.footer-brand small {
  color: var(--muted);
  display: block;
  font-size: .68rem;
  margin-top: 2px;
}

.brand-mark {
  align-items: center;
  background: radial-gradient(circle at 35% 25%, #3bff9a, var(--green-2));
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(16, 212, 107, .36);
  color: #06120a;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-link {
  color: #d5ddd9;
  font-size: .88rem;
  font-weight: 700;
}

.navbar-nav {
  gap: 6px;
}

.menu-pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  border: 1px solid rgba(16, 212, 107, .25);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 5px 14px rgba(0, 0, 0, .2);
  color: #ecf4f0;
  font-size: .78rem;
  min-width: auto;
  padding: 6px 12px !important;
  text-align: center;
}

.menu-pill:hover,
.menu-pill:focus {
  background: rgba(16, 212, 107, .13);
  border-color: rgba(16, 212, 107, .58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 0 22px rgba(16, 212, 107, .16);
  color: #45f58d;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--green);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.nav-cta {
  min-width: 118px;
}

.language-toggle {
  align-items: center;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #f2f7f4;
  display: inline-flex;
  font-size: .84rem;
  font-weight: 900;
  gap: 7px;
  min-height: 35px;
  padding: 7px 12px;
}

.language-toggle:hover,
.language-toggle:focus {
  background: rgba(16, 212, 107, .12);
  border-color: rgba(16, 212, 107, .45);
  color: var(--green);
}

.language-menu .dropdown-menu {
  background: #101417;
  border: 1px solid rgba(16, 212, 107, .2);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 150px;
  padding: 8px;
}

.language-menu .dropdown-item {
  border-radius: 8px;
  color: #dce5e0;
  font-size: .88rem;
  font-weight: 800;
}

.language-menu .dropdown-item:hover,
.language-menu .dropdown-item:focus,
.language-menu .dropdown-item.is-active {
  background: rgba(16, 212, 107, .13);
  color: var(--green);
}

.hero-section {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 5, 6, .98) 0%, rgba(3, 5, 6, .72) 43%, rgba(3, 5, 6, .3) 100%),
    linear-gradient(180deg, rgba(3, 5, 6, .25) 0%, var(--bg) 94%),
    url("https://images.pexels.com/photos/27906651/pexels-photo-27906651.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-section::after {
  background: radial-gradient(circle at 55% 42%, rgba(16, 212, 107, .18), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-section h1 {
  color: var(--green);
  font-size: clamp(2.35rem, 5.1vw, 4.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .95;
  margin: 12px 0;
}

.hero-section h1 span {
  color: #ffffff;
  display: inline-block;
  font-size: clamp(1.55rem, 3.45vw, 3.25rem);
}

.lead {
  color: #d1d8d4;
  font-size: 1rem;
  max-width: 610px;
}

.hero-copy {
  padding-top: 34px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  max-width: 860px;
}

.hero-pill {
  align-items: center;
  background: linear-gradient(90deg, rgba(6, 36, 22, .88), rgba(20, 91, 48, .72));
  border: 2px solid rgba(16, 212, 107, .42);
  border-radius: 999px;
  box-shadow:
    inset 0 0 16px rgba(16, 212, 107, .1),
    0 0 18px rgba(16, 212, 107, .1);
  color: #43f58c;
  display: inline-flex;
  font-size: clamp(.72rem, 1.05vw, .94rem);
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  letter-spacing: .03em;
  line-height: 1.1;
  min-height: 42px;
  padding: 10px 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-pill i {
  background: #35e984;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(53, 233, 132, .52);
  display: inline-block;
  flex: 0 0 auto;
  height: 9px;
  width: 9px;
}

.hero-action {
  margin-top: 22px;
}

.hero-cta {
  align-items: center;
  animation: ctaPulse 1.85s ease-in-out infinite;
  border: 4px solid rgba(4, 73, 34, .9);
  border-radius: 22px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .36),
    0 0 42px rgba(16, 212, 107, .2);
  display: inline-flex;
  font-size: clamp(1.05rem, 2vw, 1.65rem);
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  line-height: 1;
  min-height: 78px;
  min-width: min(100%, 430px);
  padding: 20px 34px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .34);
  transform-origin: center;
}

.hero-cta i {
  font-size: 1.12em;
  line-height: 1;
}

.hero-rating,
.hero-time {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-left: 4px;
}

.hero-rating {
  color: #e9efec;
  font-size: clamp(.92rem, 1.35vw, 1.08rem);
  margin-top: 16px;
}

.rating-star {
  align-items: center;
  color: #ffd43b;
  display: inline-flex;
  filter: drop-shadow(0 2px 7px rgba(255, 212, 59, .34));
  font-size: 1.06em;
}

.hero-time {
  color: rgba(207, 212, 218, .62);
  font-size: clamp(.84rem, 1.15vw, .98rem);
  font-weight: 700;
  margin-top: 10px;
}

.hero-time i {
  color: rgba(207, 212, 218, .7);
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

.eyebrow {
  color: var(--green);
  display: inline-flex;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  max-width: 430px;
}

.hero-stats-wrap {
  align-self: end;
  padding-bottom: 62px;
}

.hero-stats div,
.feature-card,
.stage-card,
.mini-card,
.platform-card,
.remote-panel,
.problem-grid div,
.brand-grid div,
.process-grid div,
.booking-grid article,
.review-grid article,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 15px;
}

.hero-stats strong {
  display: block;
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  display: block;
  font-size: .76rem;
  margin-top: 3px;
}

.section-pad {
  padding: 108px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.section-heading {
  margin: 0 auto 38px;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.remote-panel h2,
.final-cta h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 10px 0;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.feature-card,
.stage-card,
.platform-card {
  height: 100%;
  padding: 24px;
}

.feature-card i,
.platform-card i,
.booking-grid i {
  align-items: center;
  background: var(--green-soft);
  border: 1px solid rgba(16, 212, 107, .24);
  border-radius: 10px;
  color: var(--green);
  display: inline-flex;
  font-size: 1.2rem;
  height: 36px;
  justify-content: center;
  margin-bottom: 18px;
  width: 36px;
}

.feature-card h3,
.stage-card h3,
.platform-card h3,
.booking-grid h3,
.process-grid h3 {
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.feature-card p,
.stage-card p,
.platform-card p,
.booking-grid p,
.process-grid p {
  font-size: .92rem;
  margin-bottom: 0;
}

.chart-panel {
  background: #090c0e;
  border: 1px solid var(--line);
  border-radius: 16px;
  max-width: 720px;
  padding: 22px;
}

.curve-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  border-radius: 10px;
  min-height: 300px;
  position: relative;
}

.curve-grid svg {
  display: block;
  height: 100%;
  min-height: 300px;
  width: 100%;
}

.curve {
  fill: none;
  stroke-linecap: round;
  stroke-width: 8;
}

.curve.stock {
  stroke: rgba(255, 255, 255, .42);
}

.curve.tuned {
  filter: drop-shadow(0 0 12px rgba(16, 212, 107, .65));
  stroke: var(--green);
}

.curve-fill {
  fill: url("#curveFill");
}

.axis-label {
  color: #6f787e;
  font-size: .72rem;
  font-weight: 800;
  position: absolute;
}

.axis-label.top {
  left: 18px;
  top: 12px;
}

.axis-label.bottom {
  bottom: 12px;
  right: 20px;
}

.stage-card ul,
.check-list {
  color: #c7d1cb;
  font-size: .9rem;
  margin: 18px 0 22px;
  padding-left: 18px;
}

.stage-card li,
.check-list li {
  margin-bottom: 8px;
}

.stage-card.featured {
  background: linear-gradient(180deg, rgba(16, 212, 107, .22), rgba(13, 99, 53, .14));
  border-color: rgba(16, 212, 107, .38);
  transform: translateY(-12px);
}

.mini-grid,
.visual-grid,
.brand-grid,
.process-grid,
.review-grid,
.problem-grid,
.booking-grid {
  display: grid;
  gap: 14px;
}

.visual-section {
  background: #050607;
}

.visual-grid {
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
}

.visual-card {
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.visual-card.large {
  grid-row: span 2;
  min-height: 470px;
}

.visual-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.01);
  transition: transform .45s ease;
  width: 100%;
}

.visual-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .82));
  content: "";
  inset: 0;
  position: absolute;
}

.visual-card:hover img {
  transform: scale(1.06);
}

.visual-card div {
  bottom: 0;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.visual-card span {
  color: var(--green);
  display: block;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.visual-card strong {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
}

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

.mini-card {
  min-height: 110px;
  padding: 18px;
}

.mini-card i {
  color: var(--green);
}

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

.mini-card strong {
  margin: 8px 0 5px;
}

.mini-card span {
  color: var(--muted);
  font-size: .84rem;
}

.platform-card a {
  color: var(--green);
  display: inline-block;
  font-size: .85rem;
  font-weight: 800;
  margin-top: 18px;
}

.remote-panel {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.05fr .95fr;
  margin: 0 auto;
  max-width: 1030px;
  padding: 34px;
}

.remote-stack {
  display: grid;
  gap: 12px;
}

.remote-stack div {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 18px;
}

.remote-stack strong,
.remote-stack span {
  display: block;
}

.remote-stack span {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 4px;
}

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

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

.problem-grid div {
  padding: 18px;
}

.problem-grid i {
  color: #ff5468;
  margin-right: 8px;
}

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

.problem-grid span {
  color: var(--muted);
  font-size: .86rem;
  margin-top: 6px;
}

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

.brand-grid div {
  align-items: center;
  color: #d9e1de;
  display: flex;
  font-size: .84rem;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
  text-align: center;
}

.brand-grid i {
  color: var(--green);
}

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

.process-grid div,
.booking-grid article {
  padding: 22px;
}

.process-grid span {
  color: var(--green);
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.booking-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 18px;
  max-width: 900px;
}

.contact-form {
  margin: 0 auto;
  max-width: 900px;
  padding: 18px;
}

.form-control {
  background: #0c0f11;
  border-color: #283139;
  border-radius: 10px;
  color: #fff;
  min-height: 48px;
}

.form-control:focus {
  background: #0c0f11;
  border-color: var(--green);
  box-shadow: 0 0 0 .2rem rgba(16, 212, 107, .14);
  color: #fff;
}

.form-control::placeholder {
  color: #6f797f;
}

.form-note {
  font-size: .78rem;
  margin: 12px 0 0;
  text-align: center;
}

.faq {
  max-width: 820px;
}

.accordion {
  --bs-accordion-bg: var(--panel);
  --bs-accordion-border-color: var(--line);
  --bs-accordion-btn-bg: var(--panel);
  --bs-accordion-btn-color: #f6faf8;
  --bs-accordion-active-bg: #101d16;
  --bs-accordion-active-color: #ffffff;
  --bs-accordion-color: var(--muted);
  --bs-accordion-border-radius: var(--radius);
  --bs-accordion-inner-border-radius: var(--radius);
}

.accordion-button {
  font-weight: 800;
  letter-spacing: 0;
}

.accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(16, 212, 107, .13);
}

.accordion-button::after {
  filter: invert(1);
}

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

.review-grid article {
  padding: 22px;
}

.stars,
.review-score {
  color: var(--green);
  font-weight: 900;
}

.review-grid p {
  color: #d0d8d4;
  font-size: .94rem;
  margin: 12px 0 18px;
}

.review-grid strong {
  color: var(--muted);
  font-size: .86rem;
}

.review-score {
  margin-top: 12px;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 212, 107, .14), transparent 32%),
    linear-gradient(180deg, #080a0c, #050607);
  padding: 105px 0;
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

.site-footer {
  background: #0b0d0f;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 54px 0 28px;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.site-footer a:not(.btn):not(.footer-brand) {
  color: var(--muted);
  display: block;
  font-size: .9rem;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #626b70;
  font-size: .78rem;
  margin-top: 38px;
  padding-top: 22px;
  text-align: center;
}

.back-top {
  align-items: center;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 0 25px rgba(16, 212, 107, .42);
  color: #06120a;
  display: none;
  height: 44px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 44px;
  z-index: 20;
}

.back-top.is-visible {
  display: inline-flex;
}

.checker-body {
  min-height: 100vh;
  overflow-x: hidden;
}

.checker-body::before {
  background:
    radial-gradient(circle at 50% 12%, rgba(16, 212, 107, .14), transparent 34%),
    radial-gradient(circle at 78% 52%, rgba(16, 212, 107, .08), transparent 30%),
    linear-gradient(180deg, #06110c 0%, #030405 78%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

.checker-body::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .2), rgba(0, 0, 0, .82)),
    url("https://images.pexels.com/photos/12658302/pexels-photo-12658302.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  opacity: .12;
  pointer-events: none;
  position: fixed;
  z-index: -3;
}

.checker-nav {
  background: rgba(4, 6, 7, .82);
}

.checker-main {
  min-height: 100vh;
  padding: 132px 0 64px;
}

.checker-shell {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}

.checker-heading {
  margin: 0 auto 58px;
  max-width: 880px;
  text-align: center;
}

.checker-heading h1 {
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5.3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .96;
  margin: 16px 0 20px;
}

.checker-heading p {
  color: #aeb8b3;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.45;
  margin: 0 auto;
  max-width: 780px;
}

.checker-progress {
  margin: 0 auto 44px;
  max-width: 1040px;
}

.checker-progress span,
.checker-progress strong {
  color: #8d9792;
  font-size: 1rem;
  font-weight: 900;
}

.checker-progress strong {
  color: var(--green);
}

.checker-progress-bar {
  background: rgba(255, 255, 255, .14);
  border-radius: 999px;
  height: 9px;
  margin-top: 14px;
  overflow: hidden;
}

.checker-progress-bar .progress-bar {
  background: linear-gradient(90deg, var(--green-2), var(--green));
  border-radius: inherit;
  box-shadow: 0 0 22px rgba(16, 212, 107, .42);
  transition: width .28s ease;
}

.checker-card {
  margin: 0 auto;
  max-width: 1040px;
}

.selection-strip {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 42px;
  padding-top: 34px;
}

.selection-strip h2 {
  color: #8c929c;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.selection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selection-chip,
.empty-selection {
  align-items: center;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: #dce4df;
  display: inline-flex;
  font-size: .95rem;
  font-weight: 800;
  min-height: 42px;
  padding: 9px 18px;
}

.selection-chip {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  cursor: pointer;
  font: inherit;
}

button.selection-chip {
  appearance: none;
}

.selection-chip:hover,
.selection-chip:focus {
  background: rgba(16, 212, 107, .12);
  border-color: rgba(16, 212, 107, .52);
  color: var(--green);
  outline: none;
}

.empty-selection {
  color: #687078;
}

.checker-step {
  display: none;
}

.checker-step.is-active {
  display: block;
}

.checker-step h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.checker-step-subtitle {
  color: #858d96;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  margin: -12px 0 28px;
}

.option-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.service-options .choice-card,
.fuel-options .choice-card,
.modification-options .choice-card {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 86px;
  padding: 22px 28px;
}

.service-options .choice-card strong,
.fuel-options .choice-card strong,
.modification-options .choice-card strong {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  margin: 0;
}

.service-options .choice-card small {
  font-size: .9rem;
  margin-top: 8px;
}

.service-options .choice-card::after,
.fuel-options .choice-card::after,
.modification-options .choice-card::after {
  border: 3px solid rgba(160, 166, 176, .45);
  background: transparent;
  color: transparent;
  content: "";
  height: 30px;
  opacity: 1;
  position: static;
  transform: none;
  width: 30px;
}

.service-options .choice-card.is-selected::after,
.fuel-options .choice-card.is-selected::after,
.modification-options .choice-card.is-selected::after {
  background: var(--green);
  border-color: var(--green);
  color: #041007;
  content: "\F26A";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  transform: none;
}

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

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

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

.hardware-mode-options .choice-card {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 96px;
  padding: 22px 28px;
}

.hardware-mode-options .choice-card strong {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  margin: 0;
}

.hardware-mode-options .choice-card small {
  font-size: .9rem;
  margin-top: 8px;
}

.hardware-mode-options .choice-card::after {
  border: 3px solid rgba(160, 166, 176, .45);
  background: transparent;
  color: transparent;
  content: "";
  height: 30px;
  opacity: 1;
  position: static;
  transform: none;
  width: 30px;
}

.hardware-mode-options .choice-card.is-selected::after {
  background: var(--green);
  border-color: var(--green);
  color: #041007;
  content: "\F26A";
  font-family: "bootstrap-icons";
  font-size: 1rem;
}

.modification-detail-panel {
  display: none;
  margin-top: 22px;
}

.modification-detail-panel.is-visible {
  display: block;
}

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

.goal-options .choice-card {
  align-items: center;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  min-height: 68px;
  padding: 16px;
  text-align: center;
}

.goal-options .choice-card strong {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  margin: 0;
}

.goal-options .choice-card::after {
  display: none;
}

.service-area-copy {
  max-width: 760px;
}

.service-area-options {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.service-area-card {
  align-items: center;
  border-radius: 16px;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  min-height: 118px;
  padding: 28px 34px;
}

.service-area-card::after {
  display: none;
}

.service-area-card.featured {
  border-color: rgba(16, 212, 107, .42);
}

.service-area-card.is-selected .service-location-icon,
.service-area-card:hover .service-location-icon {
  color: var(--green);
}

.service-area-card h3 {
  color: #fff;
  font-size: 1.32rem;
  font-weight: 900;
  margin: 0 0 6px;
}

.service-area-card h3 small,
.area-pill {
  background: rgba(16, 212, 107, .14);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: .84rem;
  font-weight: 900;
  gap: 8px;
  line-height: 1;
  padding: 8px 14px;
}

.area-pill {
  border: 1px solid rgba(16, 212, 107, .4);
  text-transform: uppercase;
}

.area-pill i {
  background: var(--green);
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.service-area-card ul {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #aeb5bb;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0 0 18px;
}

.service-area-card li {
  line-height: 1.35;
  padding-left: 22px;
  position: relative;
}

.service-area-card li::before {
  color: var(--green);
  content: "•";
  font-size: 1.35rem;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
}

.service-area-card p {
  color: #a6adb4;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.service-area-card small {
  color: #8e969f;
  display: block;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
}

.mobile-location-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(24, 217, 118, .28);
  border-radius: 16px;
  background: rgba(9, 28, 18, .58);
}

.service-location-icon {
  color: #aeb3bb;
  font-size: 2rem;
}

.tuning-stage-intro {
  display: grid;
  gap: 10px;
  margin-top: -6px;
}

.tuning-stage-intro span {
  align-items: center;
  color: #8d949d;
  display: inline-flex;
  gap: 10px;
}

.tuning-stage-intro i {
  color: var(--green);
}

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

.tuning-stage-card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
}

.tuning-stage-card::after {
  display: none;
}

.tuning-stage-card.is-recommended {
  background: linear-gradient(180deg, rgba(16, 212, 107, .13), rgba(13, 16, 17, .94));
  border-color: rgba(16, 212, 107, .68);
  box-shadow: 0 0 0 2px rgba(16, 212, 107, .28), 0 24px 60px rgba(0, 0, 0, .42);
}

.stage-recommendation {
  align-items: center;
  align-self: flex-start;
  background: rgba(16, 212, 107, .16);
  border: 1px solid rgba(16, 212, 107, .38);
  border-radius: 999px;
  color: var(--green);
  display: none;
  font-size: .78rem;
  font-weight: 900;
  gap: 8px;
  line-height: 1;
  margin-bottom: 18px;
  padding: 8px 13px;
  text-transform: uppercase;
}

.stage-recommendation i {
  background: var(--green);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.tuning-stage-card > small {
  color: var(--green);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.tuning-stage-card h3 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  margin: 0 0 8px;
}

.tuning-stage-card p {
  color: #aab1b8;
  margin: 0 0 22px;
}

.tuning-stage-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.tuning-stage-card dl div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.tuning-stage-card dt {
  color: #9aa2aa;
  font-weight: 700;
}

.tuning-stage-card dd {
  color: #fff;
  font-weight: 900;
  margin: 0;
}

.tuning-stage-card ul {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: var(--green);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: auto 0 18px;
  padding: 0 0 20px;
}

.tuning-stage-card li {
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.25;
  padding-left: 26px;
  position: relative;
}

.tuning-stage-card li::before {
  color: var(--green);
  content: "\F26E";
  font-family: "bootstrap-icons";
  left: 0;
  position: absolute;
  top: 0;
}

.stage-price {
  display: grid;
  gap: 2px;
  margin-bottom: 18px;
}

.stage-price span {
  color: #9aa2aa;
  font-size: .9rem;
}

.stage-price strong {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.stage-cta {
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border-radius: 10px;
  color: #d7dcde;
  display: inline-flex;
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
}

.tuning-stage-card.is-recommended .stage-cta,
.tuning-stage-card.is-selected .stage-cta {
  background: var(--green);
  color: #031007;
}

.additional-service-options {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.additional-service-card {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 108px;
  text-align: left;
}

.additional-service-card.included {
  background: rgba(10, 50, 30, .56);
  border-color: rgba(27, 218, 111, .45);
  cursor: default;
}

.additional-service-card > i {
  align-items: center;
  border-radius: 999px;
  color: #25e07a;
  display: inline-flex;
  font-size: 1.35rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.additional-service-card strong {
  color: #fff;
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}

.additional-service-card small {
  color: #9aa0a7;
  display: block;
  font-size: .98rem;
  line-height: 1.4;
  margin-top: 5px;
}

.additional-service-card.included small,
.additional-service-card .addon-price {
  color: #44df89;
  font-weight: 900;
}

.additional-service-card .addon-price {
  font-size: 1.3rem;
  white-space: nowrap;
}

.brand-options {
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 560px;
  overflow-y: auto;
  padding-right: 6px;
}

.brand-options::-webkit-scrollbar {
  width: 8px;
}

.brand-options::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
}

.brand-options::-webkit-scrollbar-thumb {
  background: rgba(16, 212, 107, .55);
  border-radius: 999px;
}

.choice-card {
  background: rgba(13, 16, 17, .88);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: #fff;
  cursor: pointer;
  font: inherit;
  min-height: 96px;
  padding: 18px;
  position: relative;
  text-align: left;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.choice-card:hover,
.choice-card.is-selected {
  background: linear-gradient(180deg, rgba(16, 212, 107, .14), rgba(13, 16, 17, .92));
  border-color: rgba(16, 212, 107, .62);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, .42),
    0 0 34px rgba(16, 212, 107, .16);
  transform: translateY(-3px);
}

.choice-card::after {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #041007;
  content: "\F26A";
  display: flex;
  font-family: "bootstrap-icons";
  font-size: .86rem;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  transform: scale(.8);
  transition: opacity .2s ease, transform .2s ease;
  width: 26px;
}

.choice-card.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

.image-choice {
  align-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .055), transparent 44%),
    rgba(13, 16, 17, .88);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  overflow: hidden;
  padding: 34px 24px 28px;
  text-align: center;
}

.image-choice img {
  border-radius: 0;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, .46));
  height: 185px;
  max-width: 92%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.image-choice span,
.transmission-choice span,
.choice-card strong {
  color: #fff;
  display: block;
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 900;
  line-height: 1.1;
  margin-top: 22px;
}

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

.transmission-choice {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: space-between;
  max-height: 300px;
  min-height: 0;
  overflow: hidden;
  padding: 22px 22px 24px;
  text-align: center;
}

.transmission-choice img {
  border-radius: 10px;
  height: 210px;
  max-height: 210px;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.transmission-choice span {
  margin-top: 12px;
}

.compact-options .choice-card {
  min-height: 74px;
}

.brand-options .choice-card {
  align-items: center;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 138px;
  padding: 18px 14px;
  text-align: center;
}

.compact-options .choice-card strong {
  font-size: 1.06rem;
  margin: 0;
}

.brand-options .choice-card strong {
  color: #f4f7f5;
  font-size: 1.1rem;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}

.brand-logo-wrap,
.brand-logo-fallback {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 58px;
  justify-content: center;
  width: 82px;
}

.brand-logo-wrap {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .2), transparent 36%),
    linear-gradient(145deg, rgba(246, 250, 248, .08), rgba(0, 0, 0, .42));
  border: 1px solid var(--brand-accent, var(--green));
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 10px 22px rgba(0, 0, 0, .34);
}

.brand-logo-badge span,
.brand-logo-fallback {
  color: var(--brand-accent, var(--green));
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .02em;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .58);
}

.year-options {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.year-options .choice-card {
  align-items: center;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  min-height: 58px;
  padding: 14px;
  text-align: center;
}

.year-options .choice-card strong {
  font-size: 1.08rem;
  margin: 0;
}

.choice-card small {
  color: var(--muted);
  display: block;
  font-size: .84rem;
  margin-top: 8px;
}

.checker-label {
  color: #dce5e0;
  display: block;
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.checker-input {
  background: rgba(12, 15, 17, .94);
  border-color: rgba(255, 255, 255, .12);
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  min-height: 58px;
  padding: 16px 18px;
}

.checker-input:focus {
  background: rgba(12, 15, 17, .96);
  border-color: var(--green);
  box-shadow: 0 0 0 .22rem rgba(16, 212, 107, .14);
  color: #fff;
}

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

.contact-field {
  display: grid;
  gap: 12px;
}

.icon-label {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 0;
}

.icon-label i {
  color: var(--green);
  font-size: 1.2rem;
}

.contact-field .checker-input {
  font-size: 1rem;
  min-height: 56px;
  padding: 14px 16px;
}

.checker-input.is-invalid-field {
  border-color: rgba(255, 88, 88, .8);
  box-shadow: 0 0 0 3px rgba(255, 88, 88, .12);
}

.contact-error {
  background: rgba(255, 88, 88, .09);
  border: 1px solid rgba(255, 88, 88, .28);
  border-radius: 12px;
  color: #ffb6b6;
  display: none;
  font-size: .95rem;
  font-weight: 800;
  margin-top: 16px;
  padding: 12px 14px;
}

.contact-error.is-visible {
  display: block;
}

.compatibility-urgency {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.compatibility-status {
  align-items: center;
  background: linear-gradient(180deg, rgba(16, 212, 107, .13), rgba(255, 255, 255, .035));
  border: 1px solid rgba(16, 212, 107, .34);
  border-radius: 16px;
  display: flex;
  gap: 18px;
  padding: 20px;
}

.compatibility-status > i {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #031007;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.7rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.compatibility-status strong {
  color: #fff;
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
}

.compatibility-status span {
  color: var(--green);
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 6px;
}

.trust-pill {
  align-items: center;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 16px 22px;
}

.trust-pill span {
  color: #fff;
  font-weight: 900;
}

.trust-pill i {
  color: #ffd43b;
}

.trust-pill small {
  color: #aab2bb;
  flex-basis: 100%;
  font-size: .95rem;
}

.demand-box {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  color: #aeb6bd;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
}

.demand-box span {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
}

.demand-box i {
  color: var(--green);
}

.demand-box .spots-left {
  color: #f0d85b;
}

.demand-box .spots-left i {
  background: #f0d85b;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.appointment-status {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  color: #aeb6bd;
  font-weight: 800;
  margin-bottom: 22px;
  padding: 16px 18px;
}

.appointment-status:empty,
.appointment-status[hidden] {
  display: none;
}

.appointment-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(320px, .95fr) 1.05fr;
}

.appointment-dates,
.appointment-times {
  display: grid;
  gap: 18px;
}

.appointment-context {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.appointment-context strong {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.appointment-context span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.appointment-context small {
  color: #8e969f;
  font-size: .98rem;
  font-weight: 700;
}

.calendar-shell {
  background: rgba(3, 5, 6, .25);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 22px;
}

.calendar-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.calendar-nav strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: lowercase;
}

.calendar-nav-button {
  background: transparent;
  border: 0;
  color: #aeb6bd;
  font-size: 1.8rem;
  line-height: 1;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
}

.calendar-weekdays {
  color: #737b83;
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: lowercase;
}

.calendar-day {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, .18);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin: 3px auto;
  max-width: 46px;
  width: 100%;
}

.calendar-day.is-available {
  color: #f3f6f4;
  cursor: pointer;
}

.calendar-day.is-selected,
.calendar-day.is-available:hover {
  background: var(--green);
  color: #031007;
  box-shadow: 0 0 22px rgba(16, 212, 107, .32);
}

.calendar-day.is-disabled {
  cursor: default;
  opacity: .8;
}

.time-group {
  display: grid;
  gap: 14px;
}

.time-group h3 {
  align-items: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.05rem;
  font-weight: 900;
  gap: 10px;
  letter-spacing: .04em;
  margin: 0;
  text-transform: uppercase;
}

.time-group h3 small {
  color: var(--green);
  font-size: .88rem;
  letter-spacing: 0;
  text-transform: none;
}

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

.appointment-date,
.appointment-time {
  border-radius: 14px;
  min-height: 58px;
  padding: 14px 18px;
}

.appointment-time {
  align-items: center;
  justify-content: center;
  min-height: 70px;
  text-align: center;
}

.appointment-time::after {
  display: none;
}

.appointment-time span {
  background: var(--green);
  border-radius: 999px;
  color: #031007;
  display: inline-block;
  font-size: .72rem;
  font-weight: 900;
  left: 50%;
  padding: 6px 14px;
  position: absolute;
  top: -13px;
  transform: translateX(-50%);
  text-transform: uppercase;
  white-space: nowrap;
}

.appointment-date strong,
.appointment-time strong {
  font-size: 1rem;
  margin: 0;
}

.appointment-date small {
  color: var(--muted);
  display: block;
  font-size: .8rem;
  margin-top: 5px;
}

.appointment-empty {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  margin: 0;
  padding: 18px;
}

.appointment-final-note {
  align-items: flex-start;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  color: #b7bec5;
  display: flex;
  gap: 12px;
  line-height: 1.5;
  padding: 18px;
}

.appointment-final-note i {
  color: #aeb6bd;
  font-size: 1.2rem;
}

.appointment-substep-back {
  align-items: center;
  background: transparent;
  border: 0;
  color: #aeb6bd;
  display: none;
  font-weight: 900;
  gap: 8px;
  padding: 0;
  width: fit-content;
}

.model-search {
  margin-bottom: 26px;
  position: relative;
}

.model-search i {
  color: #838a94;
  font-size: 1.35rem;
  left: 22px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.model-search .checker-input {
  font-size: 1rem;
  min-height: 58px;
  padding-left: 58px;
}

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

.model-options .choice-card {
  border-radius: 12px;
  min-height: 58px;
  padding: 16px 20px;
}

.model-options .choice-card strong {
  font-size: 1rem;
  margin: 0;
}

.custom-vehicle-fields {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(16, 212, 107, .18);
  border-radius: 18px;
  display: none;
  margin-top: 26px;
  padding: 24px;
}

.custom-vehicle-fields.is-visible {
  display: block;
}

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

.engine-options .choice-card {
  border-radius: 12px;
  min-height: 58px;
  padding: 16px 20px;
}

.engine-options .choice-card strong {
  font-size: 1rem;
  margin: 0;
}

.checker-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
}

.checker-back,
.checker-reset,
.checker-next {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  min-width: 170px;
}

.checker-reset {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  min-width: 138px;
}

.checker-reset:hover {
  background: rgba(16, 212, 107, .1);
  border-color: rgba(16, 212, 107, .35);
  color: #fff;
}

.checker-back:disabled,
.checker-next:disabled {
  opacity: .35;
}

.result-panel {
  background: linear-gradient(180deg, rgba(16, 212, 107, .14), rgba(255, 255, 255, .03));
  border: 1px solid rgba(16, 212, 107, .32);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
}

.completion-panel {
  display: grid;
  gap: 24px;
}

.checker-new-search {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  justify-self: center;
  min-height: 52px;
  padding-inline: 22px;
}

.completion-panel[hidden],
.booking-review[hidden] {
  display: none;
}

.booking-review {
  display: grid;
  gap: 24px;
}

.reservation-summary-card {
  background: linear-gradient(180deg, rgba(16, 212, 107, .12), rgba(7, 21, 13, .72));
  border: 1px solid rgba(16, 212, 107, .34);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: 1.3fr .9fr .9fr;
  padding: 30px;
}

.reservation-summary-card span,
.reservation-details b {
  color: var(--green);
  display: block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.reservation-summary-card strong {
  color: #fff;
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.reservation-summary-card small {
  color: #9da5ad;
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 8px;
}

.reservation-total strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.reservation-price-breakdown {
  color: #9ca4ad;
  display: flex;
  flex-wrap: wrap;
  font-size: .95rem;
  gap: 10px 18px;
  margin: -8px 0 0;
}

.reservation-price-breakdown span {
  display: inline-flex;
  gap: 6px;
}

.reservation-price-breakdown b {
  color: #f4f7f5;
}

.reservation-details {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 22px;
}

.reservation-details b {
  color: #8d9792;
  display: inline;
  letter-spacing: 0;
  margin: 0 8px 0 0;
  text-transform: none;
}

.reservation-details strong {
  color: #fff;
  font-weight: 900;
}

.reservation-note {
  color: #aeb6bd;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  margin: -4px 0 0;
  text-align: center;
}

.confirmation-checks {
  display: grid;
  gap: 16px;
}

.confirmation-check {
  align-items: flex-start;
  color: #f4f7f5;
  cursor: pointer;
  display: grid;
  font-size: 1rem;
  font-weight: 800;
  gap: 14px;
  grid-template-columns: auto 1fr;
  line-height: 1.45;
}

.confirmation-check input {
  accent-color: #168fff;
  height: 22px;
  margin-top: 2px;
  width: 22px;
}

.reservation-error {
  background: rgba(255, 84, 104, .12);
  border: 1px solid rgba(255, 84, 104, .32);
  border-radius: 14px;
  color: #ff9aa7;
  display: none;
  font-weight: 900;
  padding: 14px 16px;
}

.reservation-error.is-visible {
  display: block;
}

.completion-message {
  background: linear-gradient(180deg, rgba(16, 212, 107, .16), rgba(255, 255, 255, .035));
  border: 1px solid rgba(16, 212, 107, .34);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}

.completion-message h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 12px auto;
  max-width: 760px;
}

.completion-message p {
  color: #b8c0bd;
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 760px;
}

.controlled-notice {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: #aeb3bb;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
  padding: 30px;
  text-align: center;
}

.custom-review-notice {
  display: none;
}

.custom-review-notice.is-visible {
  display: block;
}

.result-panel h3 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  margin: 12px 0;
}

.result-summary {
  background: rgba(3, 5, 6, .5);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 20px;
}

.result-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.result-summary div {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.result-summary dt {
  color: var(--muted);
  font-weight: 800;
}

.result-summary dd {
  color: #fff;
  font-weight: 900;
  margin: 0;
  text-align: right;
}

@media (max-width: 991.98px) {
  .site-nav {
    background: rgba(4, 5, 6, .93);
  }

  .navbar-nav {
    gap: 8px;
    margin-top: 16px;
  }

  .menu-pill {
    text-align: left;
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 14px;
  }

  .language-toggle,
  .nav-cta {
    justify-content: center;
    width: 100%;
  }

  .hero-section {
    min-height: 860px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(3, 5, 6, .84) 0%, rgba(3, 5, 6, .7) 45%, var(--bg) 100%),
      url("https://images.pexels.com/photos/27906651/pexels-photo-27906651.jpeg?auto=compress&cs=tinysrgb&w=1400");
    background-position: center top;
  }

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

  .hero-stats-wrap {
    padding-bottom: 0;
  }

  .hero-stats {
    margin-left: 0;
    margin-top: 24px;
    max-width: 540px;
  }

  .hero-pills {
    align-items: flex-start;
    flex-direction: column;
  }

  .remote-panel {
    grid-template-columns: 1fr;
  }

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

  .review-grid,
  .visual-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .visual-card.large {
    grid-row: auto;
    min-height: 300px;
  }

  .option-grid-images,
  .compact-options,
  .fuel-options,
  .transmission-options,
  .hardware-mode-options,
  .goal-options,
  .service-area-options,
  .tuning-stage-options,
  .appointment-layout,
  .model-options,
  .engine-options,
  .result-panel,
  .reservation-summary-card,
  .reservation-details {
    grid-template-columns: 1fr;
  }

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

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

  .brand-options .choice-card {
    min-height: 122px;
  }

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

  .image-choice {
    min-height: 280px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 78px 0;
  }

  .hero-section {
    min-height: 820px;
  }

  .site-logo {
    height: 36px;
    max-width: 170px;
  }

  .hero-copy {
    padding-top: 82px;
  }

  .hero-pill {
    font-size: .78rem;
    min-height: 46px;
    padding: 13px 17px;
    white-space: normal;
    width: 100%;
  }

  .hero-cta {
    border-radius: 22px;
    font-size: 1.28rem;
    min-height: 86px;
    min-width: 100%;
    padding: 22px 20px;
  }

  .hero-rating,
  .hero-time {
    margin-left: 2px;
  }

  .hero-stats,
  .mini-grid,
  .problem-grid,
  .brand-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stage-card.featured {
    transform: none;
  }

  .remote-panel {
    padding: 24px;
  }

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

  .checker-main {
    padding-top: 112px;
  }

  .checker-shell {
    padding: 0 16px;
  }

  .checker-heading {
    margin-bottom: 36px;
  }

  .checker-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
  }

  .checker-back,
  .checker-reset,
  .checker-next {
    min-width: 0;
    flex: 1 1 150px;
  }

  .image-choice img {
    height: 165px;
  }
}

/* Extra compact typography for the compatibility checker */
.checker-heading .eyebrow {
  font-size: .62rem;
}

.checker-heading h1 {
  font-size: clamp(1.8rem, 3.7vw, 3.35rem);
}

.checker-heading p {
  font-size: clamp(.84rem, 1.12vw, 1rem);
}

.checker-progress span,
.checker-progress strong {
  font-size: .8rem;
}

.checker-step h2 {
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
}

.checker-step-subtitle {
  font-size: clamp(.78rem, 1vw, .9rem);
}

.image-choice span,
.transmission-choice span,
.choice-card strong {
  font-size: clamp(.82rem, 1.02vw, .96rem);
}

.compact-options .choice-card strong,
.model-options .choice-card strong,
.engine-options .choice-card strong,
.year-options .choice-card strong {
  font-size: .84rem;
}

.brand-options .choice-card strong {
  font-size: .66rem;
}

.choice-card small,
.checker-label,
.checker-input,
.contact-field .checker-input,
.model-search .checker-input {
  font-size: .82rem;
}

.compatibility-status strong,
.service-area-card h3 {
  font-size: .96rem;
}

.compatibility-status span,
.trust-pill,
.trust-pill small,
.demand-box,
.service-area-card p,
.service-area-card small {
  font-size: .76rem;
}

.tuning-stage-card h3 {
  font-size: 1.02rem;
}

.tuning-stage-card > small,
.tuning-stage-card p,
.tuning-stage-card dt,
.tuning-stage-card dd,
.tuning-stage-card li,
.stage-cta {
  font-size: .74rem;
}

.stage-price span {
  font-size: .7rem;
}

.stage-price strong {
  font-size: 1.35rem;
}

.appointment-status,
.appointment-context,
.appointment-final-note,
.appointment-time strong,
.confirmation-check,
.reservation-note,
.checker-back,
.checker-next,
.selection-chip {
  font-size: .8rem;
}

.reservation-summary-card span,
.reservation-details b,
.selection-strip h2 {
  font-size: .68rem;
}

.reservation-summary-card strong {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.reservation-total strong {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

@media (max-width: 767.98px) {
  .checker-heading h1 {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
  }

  .checker-heading p {
    font-size: .86rem;
  }
}

/* Compact checker layout */
.checker-main {
  padding: 96px 0 40px;
}

.checker-shell {
  max-width: 1180px;
}

.checker-heading {
  margin-bottom: 34px;
  max-width: 780px;
}

.checker-heading .eyebrow {
  font-size: .68rem;
}

.checker-heading h1 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  margin: 10px 0 14px;
}

.checker-heading p {
  font-size: clamp(.95rem, 1.35vw, 1.18rem);
  line-height: 1.38;
  max-width: 680px;
}

.checker-progress {
  margin-bottom: 28px;
  max-width: 920px;
}

.checker-progress span,
.checker-progress strong {
  font-size: .9rem;
}

.checker-progress-bar {
  height: 7px;
  margin-top: 10px;
}

.checker-card {
  max-width: 920px;
}

.checker-step h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 20px;
}

.checker-step-subtitle {
  font-size: clamp(.88rem, 1.2vw, 1.02rem);
  margin: -8px 0 20px;
}

.option-grid {
  gap: 12px;
}

.choice-card {
  border-radius: 12px;
  min-height: 72px;
  padding: 14px 16px;
}

.choice-card:hover,
.choice-card.is-selected {
  transform: translateY(-2px);
}

.choice-card::after {
  height: 22px;
  right: 12px;
  top: 12px;
  width: 22px;
}

.image-choice {
  min-height: 250px;
  padding: 24px 18px 22px;
}

.image-choice img {
  height: 148px;
}

.image-choice span,
.transmission-choice span,
.choice-card strong {
  font-size: clamp(.92rem, 1.2vw, 1.08rem);
  margin-top: 14px;
}

.compact-options .choice-card {
  min-height: 54px;
  padding: 12px 16px;
}

.compact-options .choice-card strong,
.model-options .choice-card strong,
.engine-options .choice-card strong {
  font-size: .92rem;
}

.brand-options {
  gap: 12px;
  max-height: 420px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-options .choice-card {
  align-items: center;
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 86px;
  padding: 12px 14px;
  text-align: left;
}

.brand-logo-wrap,
.brand-logo-fallback {
  height: 46px;
  width: 50px;
}

.brand-logo-badge span {
  font-size: .64rem;
}

.brand-options .choice-card strong {
  font-size: clamp(.9rem, 1.25vw, 1.05rem);
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .brand-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.brand-options .choice-card strong {
  font-size: .72rem;
  margin-top: 10px;
}

.year-options .choice-card {
  min-height: 48px;
  padding: 10px;
}

.year-options .choice-card strong {
  font-size: .96rem;
}

.checker-input,
.model-search .checker-input {
  border-radius: 11px;
  font-size: .92rem;
  min-height: 46px;
  padding: 11px 14px;
}

.model-search {
  margin-bottom: 18px;
}

.model-search .checker-input {
  padding-left: 46px;
}

.model-search i {
  font-size: 1.05rem;
  left: 18px;
}

.custom-vehicle-fields {
  margin-top: 18px;
  padding: 18px;
}

.checker-label {
  font-size: .82rem;
  margin-bottom: 7px;
}

.contact-fields {
  gap: 12px;
}

.contact-field {
  gap: 8px;
}

.contact-field .checker-input {
  font-size: .92rem;
  min-height: 46px;
  padding: 11px 14px;
}

.compatibility-urgency {
  gap: 10px;
  margin-bottom: 18px;
}

.compatibility-status {
  border-radius: 13px;
  gap: 14px;
  padding: 14px 16px;
}

.compatibility-status > i {
  font-size: 1.25rem;
  height: 44px;
  width: 44px;
}

.compatibility-status strong {
  font-size: 1.08rem;
}

.compatibility-status span,
.trust-pill small,
.demand-box {
  font-size: .85rem;
}

.trust-pill {
  border-radius: 16px;
  padding: 12px 16px;
}

.demand-box {
  gap: 7px;
  padding: 12px 14px;
}

.service-area-options {
  gap: 12px;
}

.service-area-card {
  border-radius: 13px;
  gap: 16px;
  min-height: 86px;
  padding: 18px 20px;
}

.service-location-icon {
  font-size: 1.45rem;
}

.service-area-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.service-area-card p {
  font-size: .86rem;
}

.service-area-card small {
  font-size: .76rem;
  margin-top: 5px;
}

.tuning-stage-intro {
  gap: 8px;
}

.tuning-stage-options {
  gap: 12px;
}

.tuning-stage-card {
  border-radius: 13px;
  min-height: 330px;
  padding: 18px;
}

.stage-recommendation {
  font-size: .66rem;
  margin-bottom: 12px;
  padding: 6px 10px;
}

.tuning-stage-card > small {
  font-size: .82rem;
  margin-bottom: 10px;
}

.tuning-stage-card h3 {
  font-size: 1.18rem;
  margin-bottom: 5px;
}

.tuning-stage-card p {
  font-size: .84rem;
  margin-bottom: 14px;
}

.tuning-stage-card dl {
  gap: 8px;
  margin-bottom: 16px;
}

.tuning-stage-card dt,
.tuning-stage-card dd,
.tuning-stage-card li {
  font-size: .82rem;
}

.tuning-stage-card ul {
  gap: 7px;
  margin-bottom: 12px;
  padding-bottom: 14px;
}

.stage-price {
  margin-bottom: 12px;
}

.stage-price span {
  font-size: .78rem;
}

.stage-price strong {
  font-size: 1.55rem;
}

.stage-cta {
  border-radius: 9px;
  font-size: .86rem;
  min-height: 40px;
  padding: 9px 12px;
}

.appointment-status,
.appointment-context,
.appointment-final-note {
  font-size: .86rem;
}

.appointment-status {
  margin-bottom: 10px;
  padding: 12px 14px;
}

.appointment-layout {
  gap: 14px;
}

.appointment-dates.is-hidden-on-mobile,
.appointment-times.is-hidden-on-mobile {
  display: none;
}

.appointment-context {
  gap: 2px;
  margin-bottom: 10px;
}

.appointment-context strong {
  font-size: .98rem;
  line-height: 1.2;
}

.appointment-context span {
  font-size: .9rem;
  line-height: 1.25;
}

.appointment-context small {
  font-size: .78rem;
  line-height: 1.3;
}

.calendar-shell {
  border-radius: 14px;
  padding: 12px;
}

.calendar-nav {
  margin-bottom: 10px;
}

.calendar-nav strong {
  font-size: 1rem;
}

.calendar-day {
  margin: 1px auto;
  max-width: 34px;
}

.calendar-weekdays {
  font-size: .76rem;
  margin-bottom: 6px;
}

.appointment-substep-back {
  display: inline-flex;
  margin-bottom: 4px;
}

.time-grid {
  gap: 10px;
}

.appointment-time {
  min-height: 54px;
  padding: 10px 12px;
}

.appointment-time strong {
  font-size: .92rem;
}

.appointment-time span {
  font-size: .62rem;
  padding: 4px 10px;
}

.reservation-summary-card {
  border-radius: 16px;
  gap: 16px;
  padding: 20px;
}

.reservation-summary-card strong {
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
}

.reservation-total strong {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.reservation-details {
  border-radius: 14px;
  padding: 16px;
}

.confirmation-check {
  font-size: .88rem;
}

.checker-actions {
  margin-top: 30px;
}

.checker-back,
.checker-reset,
.checker-next {
  font-size: .9rem;
  min-height: 46px;
  min-width: 140px;
}

.selection-strip {
  margin-top: 28px;
  padding-top: 22px;
}

.selection-strip h2 {
  font-size: .76rem;
  margin-bottom: 12px;
}

.selection-chip {
  font-size: .84rem;
  min-height: 34px;
  padding: 7px 13px;
}

@media (max-width: 767.98px) {
  .checker-main {
    padding-top: 92px;
  }

  .checker-heading h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .checker-heading {
    margin-bottom: 24px;
  }

  .image-choice {
    min-height: 220px;
  }

  .image-choice img {
    height: 130px;
  }

  .transmission-choice {
    height: 240px;
    max-height: 240px;
  }

  .transmission-choice img {
    height: 160px;
    max-height: 160px;
  }
}

.hc-chat-widget {
  bottom: 22px;
  position: fixed;
  right: 22px;
  z-index: 1080;
}

.hc-chat-fab {
  align-items: center;
  background: linear-gradient(135deg, #20e876, #10b958);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(7, 214, 103, .35);
  color: #06100b;
  display: inline-flex;
  font-size: 1.55rem;
  height: 58px;
  justify-content: center;
  position: relative;
  width: 58px;
}

.hc-chat-pulse {
  animation: hcChatPulse 1.8s ease-out infinite;
  border: 2px solid rgba(32, 232, 118, .75);
  border-radius: inherit;
  inset: -5px;
  position: absolute;
}

.hc-chat-panel {
  background: rgba(15, 17, 18, .97);
  border: 1px solid rgba(32, 232, 118, .52);
  border-radius: 18px;
  bottom: 74px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .52);
  color: #fff;
  max-height: calc(100vh - 110px);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
  width: min(390px, calc(100vw - 28px));
}

.hc-chat-widget.is-open .hc-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hc-chat-widget.is-open .hc-chat-fab {
  display: none;
}

.hc-chat-header {
  align-items: center;
  background: linear-gradient(135deg, rgba(25, 139, 64, .92), rgba(21, 92, 46, .92));
  border-bottom: 1px solid rgba(32, 232, 118, .55);
  display: flex;
  gap: 12px;
  padding: 14px 16px;
}

.hc-chat-avatar {
  align-items: center;
  background: #22df72;
  border-radius: 999px;
  color: #05200f;
  display: flex;
  flex: 0 0 40px;
  font-size: 1.2rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.hc-chat-header strong,
.hc-chat-header span {
  display: block;
  line-height: 1.15;
}

.hc-chat-header strong {
  font-size: 1rem;
}

.hc-chat-header span {
  color: #b8ffc9;
  font-size: .78rem;
  font-weight: 700;
  margin-top: 3px;
}

.hc-chat-header span i {
  background: #1cff75;
  border-radius: 999px;
  display: inline-block;
  height: 7px;
  margin-right: 6px;
  width: 7px;
}

.hc-chat-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  margin-left: auto;
  opacity: .9;
}

.hc-chat-form {
  max-height: calc(100vh - 178px);
  overflow-y: auto;
  padding: 15px;
  scrollbar-color: #20e876 rgba(255, 255, 255, .08);
}

.hc-chat-form p {
  color: #f2f5f2;
  font-size: .9rem;
  line-height: 1.45;
  margin: 0 0 12px;
}

.hc-chat-form input,
.hc-chat-form textarea {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 11px;
  color: #fff;
  font: inherit;
  font-size: .9rem;
  margin-bottom: 9px;
  outline: 0;
  padding: 11px 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}

.hc-chat-form input:focus,
.hc-chat-form textarea:focus {
  border-color: rgba(32, 232, 118, .95);
  box-shadow: 0 0 0 3px rgba(32, 232, 118, .14);
}

.hc-chat-form input::placeholder,
.hc-chat-form textarea::placeholder {
  color: rgba(255, 255, 255, .72);
}

.hc-chat-label {
  color: rgba(255, 255, 255, .86);
  display: block;
  font-size: .75rem;
  font-weight: 800;
  margin: 3px 0 7px;
}

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

.hc-chat-form textarea {
  min-height: 94px;
  resize: vertical;
}

.hc-chat-submit {
  align-items: center;
  background: linear-gradient(135deg, #20e876, #12c761);
  border: 0;
  border-radius: 12px;
  color: #07130c;
  display: inline-flex;
  font-size: .92rem;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  width: 100%;
}

.hc-chat-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.hc-chat-status {
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 8px;
  min-height: 0;
}

.hc-chat-status.is-error,
.hc-chat-status.is-success {
  padding: 8px 10px;
}

.hc-chat-status.is-error {
  background: rgba(255, 76, 76, .14);
  color: #ffb5b5;
}

.hc-chat-status.is-success {
  background: rgba(32, 232, 118, .13);
  color: #91ffbc;
}

@keyframes hcChatPulse {
  0% {
    opacity: .85;
    transform: scale(.92);
  }

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

@media (max-width: 575.98px) {
  .hc-chat-widget {
    bottom: 16px;
    right: 14px;
  }

  .hc-chat-panel {
    bottom: 70px;
    right: 0;
    width: calc(100vw - 28px);
  }

  .hc-chat-grid {
    grid-template-columns: 1fr;
  }
}

.dodge-page {
  background: #030404;
}

.nav-cta-secondary {
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .86);
}

.dodge-hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.dodge-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .2) 100%),
    radial-gradient(circle at 42% 48%, rgba(16, 212, 107, .22), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.dodge-hero .container {
  z-index: 2;
}

.dodge-hero-bg {
  background-image: url("assets/dodge-hemi-hero.png");
  background-position: center right;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.015);
}

.dodge-pills {
  margin-bottom: 24px;
}

.dodge-hero h1 {
  color: #fff;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
  margin-bottom: 22px;
  max-width: 920px;
}

.dodge-hero .lead {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.6;
  max-width: 720px;
}

.dodge-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.dodge-ghost {
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 22px;
}

.dodge-ghost:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.dodge-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dodge-proof span {
  align-items: center;
  background: rgba(11, 24, 17, .82);
  border: 1px solid rgba(32, 232, 118, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  display: inline-flex;
  font-size: .88rem;
  font-weight: 800;
  gap: 8px;
  padding: 9px 14px;
}

.dodge-proof i {
  color: var(--green);
}

.dodge-unlock h2,
.dodge-cta-box h2 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.dodge-unlock p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.dodge-unlock-card {
  background: linear-gradient(160deg, rgba(11, 37, 22, .95), rgba(13, 14, 16, .96));
  border: 1px solid rgba(32, 232, 118, .34);
  border-radius: 18px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .38);
  padding: clamp(24px, 4vw, 42px);
}

.dodge-unlock-card > i {
  align-items: center;
  background: rgba(32, 232, 118, .14);
  border: 1px solid rgba(32, 232, 118, .45);
  border-radius: 18px;
  color: var(--green);
  display: flex;
  font-size: 2rem;
  height: 64px;
  justify-content: center;
  margin-bottom: 22px;
  width: 64px;
}

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

.dodge-unlock-card strong {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.dodge-unlock-card span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  margin-top: 10px;
}

.dodge-unlock-card ul,
.dodge-stage-card ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.dodge-unlock-card li,
.dodge-stage-card li {
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.dodge-unlock-card li::before,
.dodge-stage-card li::before {
  color: var(--green);
  content: "\F26E";
  font-family: "bootstrap-icons";
  font-weight: 400;
  left: 0;
  position: absolute;
  top: 0;
}

.dodge-stage-card {
  background: linear-gradient(180deg, rgba(20, 21, 23, .96), rgba(9, 10, 11, .96));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.dodge-stage-card.is-featured {
  background: linear-gradient(180deg, rgba(9, 45, 25, .96), rgba(9, 10, 11, .96));
  border-color: rgba(32, 232, 118, .5);
  box-shadow: 0 0 0 1px rgba(32, 232, 118, .12), 0 26px 70px rgba(6, 180, 86, .15);
}

.dodge-stage-head {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 20px;
}

.dodge-stage-head span {
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
  font-weight: 900;
}

.dodge-stage-head strong {
  color: var(--green);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 900;
}

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

.dodge-gain-grid div {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 16px;
}

.dodge-gain-grid small,
.dodge-gain-grid strong {
  display: block;
}

.dodge-gain-grid small {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 5px;
}

.dodge-gain-grid strong {
  color: #fff;
  font-size: 1.18rem;
}

.dodge-power-strip {
  align-items: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(32, 232, 118, .24);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  padding: 20px;
}

.dodge-power-strip div {
  min-width: 170px;
  text-align: center;
}

.dodge-power-strip span,
.dodge-power-strip strong {
  display: block;
}

.dodge-power-strip span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dodge-power-strip strong {
  color: #fff;
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  font-weight: 900;
}

.dodge-power-strip i {
  color: var(--green);
}

.dodge-cta-box {
  background: linear-gradient(135deg, rgba(9, 45, 25, .9), rgba(14, 15, 17, .96));
  border: 1px solid rgba(32, 232, 118, .32);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
}

.dodge-cta-box p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 14px auto 26px;
  max-width: 760px;
}

@media (max-width: 991.98px) {
  .dodge-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .92) 72%),
      radial-gradient(circle at 45% 50%, rgba(16, 212, 107, .2), transparent 32%);
  }

  .dodge-hero-bg {
    background-position: center top;
    opacity: .56;
  }
}

@media (max-width: 575.98px) {
  .dodge-hero {
    min-height: 760px;
  }

  .dodge-hero h1 {
    font-size: clamp(2.05rem, 12vw, 3.25rem);
  }

  .dodge-proof span,
  .dodge-ghost,
  .dodge-hero .hero-cta {
    width: 100%;
    justify-content: center;
  }

  .dodge-gain-grid {
    grid-template-columns: 1fr;
  }

  .dodge-stage-head {
    display: block;
  }

  .dodge-power-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .dodge-power-strip i {
    transform: rotate(90deg);
  }
}
