:root {
  --bg: #f5f7fa;
  --panel: #ffffff;
  --ink: #151922;
  --muted: #6f7785;
  --line: #dde3ec;
  --accent: #165dff;
  --accent-soft: #eef4ff;
  --warning: #ffb800;
  --success: #07a66b;
  --shadow: 0 8px 24px rgba(25, 36, 58, 0.08);
  --shell: 480px;
  --slide-distance: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #eef1f5;
  color: var(--ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

button,
select {
  font: inherit;
}

.home-page {
  background: #f3f6fb;
  color: #101828;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(243, 246, 251, 0.92);
  backdrop-filter: blur(12px);
}

.home-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0d2454;
  font-size: 18px;
}

.home-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.home-logo span {
  font-weight: 700;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5d6980;
  font-size: 14px;
}

.home-nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.home-nav a:hover {
  background: #e8eef8;
  color: #0d2454;
}

.home-hero,
.home-section,
.home-metrics,
.home-final-cta,
.home-footer {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 32px;
  align-items: center;
  min-height: 620px;
  padding: 34px 28px 48px;
}

.home-hero-copy {
  display: grid;
  gap: 18px;
}

.home-kicker,
.home-section-head span {
  margin: 0;
  color: #165dff;
  font-size: 14px;
  font-weight: 700;
}

.home-hero h1 {
  margin: 0;
  color: #0b1836;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 620px;
  margin: 0;
  color: #536074;
  font-size: 18px;
  line-height: 1.65;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.home-primary,
.home-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

.home-primary {
  background: #165dff;
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 93, 255, 0.24);
}

.home-secondary {
  border: 1px solid #d5deec;
  background: #fff;
  color: #23304a;
}

.home-quote-preview {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid #d9e2f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(23, 39, 72, 0.12);
}

.preview-top,
.preview-car,
.preview-list div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #f7f9fd;
}

.preview-top span,
.preview-car span,
.preview-list span,
.home-metrics span {
  color: #68758b;
  font-size: 13px;
}

.preview-top strong,
.preview-car strong,
.preview-list strong {
  color: #15223d;
  font-size: 16px;
}

.preview-car {
  min-height: 160px;
  align-content: end;
  background:
    linear-gradient(140deg, rgba(22, 93, 255, 0.12), rgba(255, 255, 255, 0.2)),
    #eef4ff;
}

.preview-car em {
  color: #536074;
  font-style: normal;
  font-size: 13px;
}

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

.home-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 28px 36px;
}

.home-metrics div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid #dce4ef;
  border-radius: 14px;
  background: #fff;
}

.home-metrics strong {
  color: #0d2454;
  font-size: 28px;
}

.home-section {
  display: grid;
  gap: 24px;
  padding: 54px 28px;
}

.home-section-head {
  display: grid;
  gap: 10px;
}

.home-section-head h2,
.home-final-cta h2 {
  margin: 0;
  color: #0b1836;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.home-section-head p,
.home-final-cta p {
  max-width: 720px;
  margin: 0;
  color: #5f6c82;
  line-height: 1.65;
}

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

.home-card-grid article,
.home-steps li {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  background: #fff;
}

.home-card-grid strong,
.home-steps strong {
  color: #14213d;
  font-size: 18px;
}

.home-card-grid p,
.home-steps p {
  margin: 0;
  color: #657187;
  line-height: 1.55;
}

.home-process {
  padding-top: 28px;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-steps span {
  color: #165dff;
  font-size: 13px;
  font-weight: 700;
}

.home-final-cta {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-top: 30px;
  margin-bottom: 44px;
  padding: 34px 28px;
  border-radius: 22px;
  background: #10224b;
  color: #fff;
}

.home-final-cta h2,
.home-final-cta p {
  color: #fff;
}

.home-final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.home-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  color: #707b8f;
  font-size: 13px;
}

.special-page {
  background: #f3f6fb;
  color: #101828;
}

.special-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(243, 246, 251, 0.94);
  backdrop-filter: blur(12px);
}

.special-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
}

.special-hero {
  display: grid;
  gap: 12px;
  padding: 40px 0 28px;
}

.special-hero span {
  color: #165dff;
  font-size: 14px;
  font-weight: 700;
}

.special-hero h1 {
  margin: 0;
  color: #0b1836;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

.special-hero p {
  max-width: 720px;
  margin: 0;
  color: #5f6c82;
  line-height: 1.65;
}

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

.special-card,
.special-empty {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid #dce4ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(23, 39, 72, 0.08);
}

.special-badge {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0d8;
  color: #a15a00;
  font-size: 12px;
  font-weight: 700;
}

.special-car {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  align-items: center;
}

.special-car span {
  color: #66758b;
  font-size: 13px;
}

.special-car h2 {
  margin: 6px 0;
  color: #0d2454;
  font-size: 24px;
}

.special-car p,
.special-desc {
  margin: 0;
  color: #5f6c82;
  line-height: 1.5;
}

.special-car img {
  width: 150px;
  height: 90px;
  object-fit: contain;
}

.special-specs {
  display: grid;
  gap: 8px;
  margin: 0;
}

.special-specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #edf1f6;
}

.special-specs dt {
  color: #728098;
}

.special-specs dd {
  margin: 0;
  color: #15223d;
  text-align: right;
}

.special-actions {
  display: flex;
  gap: 10px;
}

.special-empty {
  justify-items: start;
}

.special-empty strong {
  color: #0d2454;
  font-size: 22px;
}

.special-empty p {
  margin: 0;
  color: #66758b;
}

.topbar {
  position: relative;
  z-index: 10;
  display: grid;
  max-width: var(--shell);
  margin: 0 auto;
  background: #fff;
  border-bottom: 1px solid #e7ebf2;
}

.topbar-main {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 132px;
  padding: 20px 16px 18px;
}

.service-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.service-logo img {
  display: block;
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.service-notice {
  display: grid;
  gap: 6px;
  color: #4f647e;
  font-size: 13px;
  line-height: 1.25;
}

.service-notice strong {
  color: #3f526b;
  font-size: 13px;
  font-weight: 700;
}

.service-notice span,
.service-notice small {
  display: block;
  font-size: 13px;
}

.service-notice .notice-spacer {
  display: block;
  height: 4px;
}

.topbar button,
.top-link,
.primary,
.segmented button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.topbar button {
  min-height: 30px;
  padding: 0 10px;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.back-button {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  min-height: 36px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 49, 109, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #11316d !important;
  font-size: 20px !important;
  line-height: 1;
}

.topbar-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  background: #0f4fbd;
  color: #fff;
  border-radius: 0 0 8px 8px;
}

.topbar-strip b {
  min-width: 0;
  font-size: 13px;
  line-height: 1.25;
}

.top-link-light {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 10px;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.top-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  text-decoration: none;
}

.layout {
  max-width: var(--shell);
  margin: 0 auto;
  overflow: visible;
}

.page-exit-left .layout,
.page-exit-right .layout {
  overflow: hidden;
}

.page-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px 0;
}

.picker-panel,
.quote-panel > section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.picker-panel {
  padding: 18px 16px;
}

.quote-panel {
  position: static;
  align-self: start;
  display: grid;
  gap: 10px;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
}

.section-head h1 {
  font-size: 26px;
}

.section-head h2 {
  font-size: 18px;
}

.section-head p,
.section-head span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-head.slim {
  align-items: center;
  margin: 0 0 12px;
}

.progress-sticky {
  position: sticky;
  top: 0;
  z-index: 8;
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid #dbe6ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(23, 42, 79, 0.08);
  backdrop-filter: blur(10px);
}

.progress-dots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.progress-dots button {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 32px;
  padding: 0 2px;
  border: 0;
  border-radius: 999px;
  background: #d9e2f4;
  color: #60708a;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.progress-dots button.active {
  background: #9db8ff;
  color: #fff;
}

.progress-dots button.current {
  background: var(--accent);
  color: #fff;
}

.progress-nav {
  padding: 14px 16px;
  border: 1px solid #dbe6ff;
  border-radius: 8px;
  background: #f5f8ff;
  color: #11316d;
  font-size: 16px;
  font-weight: 950;
}

.step {
  margin-top: 16px;
  scroll-margin-top: 148px;
}

.step[hidden] {
  display: none !important;
}

.condition-card,
.results-card {
  scroll-margin-top: 148px;
}

.step h2,
.condition-card h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.step h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  cursor: pointer;
}

.step h2::after {
  content: attr(data-summary);
  min-width: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step.completed-step {
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step.completed-step h2 {
  margin: 0;
}

.step.completed-step .card-grid {
  display: none;
}

.card-grid {
  display: grid;
  gap: 10px;
}

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

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

.lineup-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}

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

.card-grid.empty {
  display: block;
  padding: 18px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.pick-card {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 88px;
  padding: 10px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.model-grid .pick-card {
  min-height: 92px;
  gap: 6px;
}

.brand-grid .pick-card {
  min-height: 82px;
}

.lineup-grid .pick-card {
  align-content: center;
  justify-content: start;
  min-height: 54px;
  width: auto;
  min-width: 220px;
  padding: 12px 16px;
}

.trim-grid .pick-card {
  place-items: center start;
  min-height: 64px;
  padding: 12px 14px;
  text-align: left;
}

.pick-card:hover,
.pick-card.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.pick-card img {
  max-width: 82px;
  max-height: 48px;
  object-fit: contain;
}

.brand-grid .pick-card img {
  max-width: 70px;
  max-height: 34px;
}

.model-grid .pick-card img {
  max-width: 78px;
  max-height: 38px;
}

.model-grid .pick-card span {
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.pick-card span {
  display: block;
  width: 100%;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.trim-grid .pick-card span {
  text-align: left;
  white-space: normal;
}

.lineup-grid .pick-card span {
  overflow: visible;
  text-align: left;
  text-overflow: clip;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.pick-card small {
  display: block;
  width: 100%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.trim-grid .pick-card small {
  text-align: left;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.vehicle-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px;
}

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

.vehicle-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.vehicle-card em {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.vehicle-card img {
  justify-self: center;
  width: 264px;
  max-width: 100%;
  height: 168px;
  object-fit: contain;
}

.condition-card,
.results-card {
  padding: 18px;
}

.condition-group {
  margin-top: 16px;
}

.condition-group > span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

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

.segmented button {
  min-height: 44px;
  font-weight: 800;
}

.segmented button.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.fixed-mileage-card {
  display: grid;
  place-items: center;
  min-height: 26px;
  margin: 6px 0 12px;
  padding: 4px 10px;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  background: #f3f5f8;
  color: #646d79;
  cursor: not-allowed;
  user-select: none;
  text-align: center;
}

.fixed-mileage-card strong {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.fixed-mileage-card small {
  display: none;
}

.primary {
  width: 100%;
  min-height: 48px;
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.primary:disabled {
  border-color: var(--line);
  background: #e8edf4;
  color: #9aa4b2;
  cursor: not-allowed;
}

.quote-results {
  display: grid;
  gap: 8px;
  position: relative;
  min-height: 248px;
  transition: opacity .16s ease, filter .16s ease;
}

.quote-results.is-pending > * {
  opacity: .42;
  filter: saturate(.8);
}

.quote-results.is-pending::after {
  content: "견적을 다시 계산 중입니다";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 9px 13px;
  border: 1px solid rgba(31, 95, 191, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
  color: #0f3f87;
  font-size: 12px;
  white-space: nowrap;
}

.quote-loading-shell {
  display: grid;
  gap: 8px;
}

.quote-skeleton {
  min-height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(238, 242, 247, .92), rgba(248, 250, 252, .96), rgba(238, 242, 247, .92));
  background-size: 220% 100%;
  animation: quoteSkeleton 1.05s ease-in-out infinite;
}

.quote-skeleton.best {
  min-height: 86px;
}

@keyframes quoteSkeleton {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

.best-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.best-box {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.best-box.monthly {
  border-color: var(--success);
  background: #effbf6;
}

.best-box.acquisition {
  border-color: var(--warning);
  background: #fff8df;
}

.best-box.muted {
  background: #f8fafd;
}

.best-box span,
.best-box small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.best-box strong {
  font-size: 14px;
}

.best-box b {
  color: var(--accent);
  font-size: 18px;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-row.best {
  border-color: var(--success);
  background: #effbf6;
}

.quote-row.acquisition-best {
  box-shadow: inset 3px 0 0 var(--warning);
}

.quote-row strong {
  display: block;
  font-size: 15px;
}

.quote-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.quote-row b {
  color: var(--accent);
  font-size: 18px;
}

.badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-size: 11px;
  vertical-align: middle;
}

.badge.acquisition {
  background: var(--warning);
  color: #2b2400;
}

.empty-state {
  padding: 16px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.consult-request-button {
  margin-top: 8px;
}

.consult-layout {
  max-width: var(--shell);
  margin: 0 auto;
  overflow: hidden;
  padding: 14px 0;
}

.consult-card {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.consult-slider {
  position: relative;
  overflow: hidden;
}

.consult-screen {
  transition: transform 340ms cubic-bezier(0.2, 0.85, 0.25, 1), opacity 340ms ease;
}

.consult-form-screen {
  transform: translateX(0);
  opacity: 1;
}

.consult-complete-screen {
  position: absolute;
  inset: 18px 16px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  min-height: 360px;
  padding: 22px 18px 18px;
  transform: translateX(105%);
  opacity: 0;
  text-align: center;
}

.consult-slider.show-complete .consult-form-screen {
  position: absolute;
  inset: 18px 16px;
  transform: translateX(-105%);
  opacity: 0;
  pointer-events: none;
}

.consult-slider.show-complete .consult-complete-screen {
  position: relative;
  inset: auto;
  transform: translateX(0);
  opacity: 1;
}

.complete-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #effbf6;
  color: var(--success);
  font-size: 40px;
  font-weight: 950;
}

.consult-complete-screen h1,
.consult-complete-screen p {
  margin: 0;
}

.consult-complete-screen h1 {
  font-size: 22px;
}

.consult-complete-screen p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.complete-summary {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
}

.complete-summary strong,
.complete-summary span,
.complete-summary em {
  display: block;
}

.complete-summary span {
  color: var(--muted);
  font-size: 12px;
}

.complete-vehicle-image {
  width: 100%;
  max-width: 220px;
  height: 120px;
  object-fit: contain;
  justify-self: center;
  margin: 4px 0 2px;
}

.complete-summary em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.complete-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.consult-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
}

.consult-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.consult-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.35;
}

.consult-summary em {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.consult-summary img {
  width: 160px;
  height: 96px;
  object-fit: contain;
}

.condition-summary {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.condition-summary div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 44px;
}

.condition-summary dt,
.condition-summary dd {
  margin: 0;
}

.condition-summary dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.condition-summary dd {
  font-weight: 900;
}

.consult-form {
  display: grid;
  gap: 10px;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.consult-form textarea {
  resize: vertical;
}

.check-line {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
}

.check-line input {
  width: 18px;
  min-height: 18px;
  padding: 0;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-status.success {
  color: var(--success);
}

@keyframes pageEnterFromRight {
  from {
    opacity: 1;
    transform: translate3d(var(--slide-distance), 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pageExitToLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(calc(var(--slide-distance) * -1), 0, 0);
  }
}

@keyframes pageExitToRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--slide-distance), 0, 0);
  }
}

.page-enter .consult-card {
  animation: pageEnterFromRight 340ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

.page-exit-left .page-content {
  animation: pageExitToLeft 340ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
  will-change: transform;
}

.page-exit-right .page-content,
.page-exit-right .consult-card {
  animation: pageExitToRight 340ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
  will-change: transform;
}

.form-status.error {
  color: #d93025;
}

/* Customer UI uses regular-weight typography; admin styles below keep their own weights. */
.topbar b,
.topbar button,
.top-link-light,
.service-notice strong,
.progress-dots button,
.progress-nav,
.section-head h1,
.section-head h2,
.step h2,
.step h2::after,
.condition-card h2,
.consult-complete-screen h1,
.pick-card span,
.pick-card small,
label,
.vehicle-card strong,
.vehicle-card em,
.condition-group > span,
.segmented button,
.primary,
.best-box span,
.best-box small,
.best-box strong,
.best-box b,
.quote-row strong,
.quote-row b,
.consult-complete-screen p,
.complete-mark,
.complete-summary em,
.consult-summary span,
.consult-summary strong,
.consult-summary em,
.condition-summary strong,
.condition-summary dt,
.condition-summary dd,
.badge {
  font-weight: 400;
}
.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.admin-login-card,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.admin-login-card {
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
  padding: 28px;
}

.admin-login-card h1,
.admin-login-card p {
  margin: 0;
}

.admin-nav {
  display: flex;
  gap: 8px;
}

.admin-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.admin-summary div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-summary strong {
  font-size: 26px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
}

.admin-tabs a {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  text-decoration: none;
}

.admin-tabs a.active {
  border-color: #1f5fbf;
  background: #eef5ff;
  color: #0f3f87;
}

.admin-summary-wide {
  margin-top: 14px;
}

.admin-capital-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.admin-capital-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
}

.admin-capital-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-capital-grid strong {
  font-size: 20px;
}

.admin-capital-grid small {
  color: var(--muted);
}

.admin-embed-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
}

.admin-embed-actions div {
  display: grid;
  gap: 4px;
}

.admin-embed-actions span,
.admin-embed-note {
  color: var(--muted);
  font-size: 13px;
}

.admin-embed-actions a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #1f5fbf;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.admin-embed-note {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background: #eef5ff;
}

.update-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.update-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.update-card.active {
  border-color: #1f5fbf;
  background: #eef5ff;
}

.update-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.update-card strong {
  font-size: 24px;
  font-weight: 700;
}

.update-card small,
.update-card em,
.update-detail p,
.update-tools code {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.update-card em.good {
  color: #11713b;
}

.update-card em.warn {
  color: #9a6400;
}

.update-card em.danger {
  color: #b42318;
}

.update-detail {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.update-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid #dbe6ff;
  border-radius: 8px;
  background: #f7faff;
}

.update-detail-head h2 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}

.update-detail-head p {
  margin: 0;
}

.update-tools {
  display: grid;
  gap: 5px;
  justify-items: end;
}

.update-tools code {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.update-summary-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.update-summary-strip div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.update-summary-strip span {
  color: var(--muted);
  font-size: 12px;
}

.update-summary-strip strong {
  font-size: 18px;
  font-weight: 700;
}

.update-table {
  min-width: 980px;
}

.admin-tool-frame {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-quality-filter {
  grid-template-columns: 120px 160px 150px minmax(220px, 1fr) auto auto;
}

.catalog-filter {
  grid-template-columns: 130px 130px minmax(220px, 1fr) auto auto;
}

.section-head-compact {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.section-head-compact h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.catalog-table {
  min-width: 1080px;
}

.catalog-action-form {
  min-width: 120px;
}

.catalog-action-form button {
  min-height: 36px;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #bde9ca;
  border-radius: 8px;
  background: #e8f7ee;
  color: #11713b;
  cursor: pointer;
  font-weight: 900;
}

.catalog-action-form button.danger {
  border-color: #f2b7b7;
  background: #fff3f3;
  color: #b42318;
}

.catalog-tree {
  display: grid;
  gap: 10px;
  margin: 14px 0 22px;
}

.catalog-node {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.catalog-node > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

.catalog-node > summary::-webkit-details-marker {
  display: none;
}

.catalog-node > summary::before {
  content: ">";
  display: inline-grid;
  place-items: center;
  position: absolute;
  width: 18px;
  height: 18px;
  transform: translateX(-4px) rotate(0deg);
  color: var(--muted);
  font-size: 14px;
}

.catalog-node[open] > summary::before {
  transform: translateX(-4px) rotate(90deg);
}

.catalog-main {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-left: 20px;
}

.catalog-main img {
  width: 54px;
  height: 36px;
  object-fit: contain;
}

.catalog-main strong,
.trim-node strong {
  display: block;
  font-weight: 600;
}

.catalog-main small,
.trim-node small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.catalog-side,
.trim-node-side {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.catalog-node-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 14px 12px;
}

.lineup-tree {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px 28px;
}

.lineup-node {
  background: #f8fafd;
}

.lineup-node .catalog-main {
  grid-template-columns: minmax(0, 1fr);
}

.trim-tree {
  display: grid;
  gap: 6px;
  padding: 0 12px 12px 28px;
}

.trim-node {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trim-node.inactive {
  background: #fff7f7;
}

.quality-risk-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.quality-risk-cards a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.quality-risk-cards a.active {
  border-color: #1f5fbf;
  background: #eef5ff;
}

.quality-risk-cards span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.quality-risk-cards strong {
  font-size: 20px;
}

.quality-table {
  min-width: 1120px;
}

.quality-breakdown {
  max-width: 360px;
  line-height: 1.45;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.quality-badge {
  display: inline-block !important;
  margin: 0 4px 4px 0;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.quality-badge.good {
  background: #e8f7ee;
  color: #11713b;
}

.quality-badge.warn {
  background: #fff2d7;
  color: #985900;
}

.quality-badge.danger {
  background: #fff3f3;
  color: #b42318;
}

.quality-badge.neutral {
  background: #eef2f7;
  color: #526070;
}

.quality-action-form {
  display: grid;
  gap: 8px;
  min-width: 240px;
}

.quality-action-form textarea {
  width: 100%;
  min-height: 64px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.quality-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.quality-action-buttons button {
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.quality-action-buttons button:first-child {
  border-color: #bde9ca;
  background: #e8f7ee;
  color: #11713b;
}

.quality-action-buttons button.danger {
  border-color: #f2b7b7;
  background: #fff3f3;
  color: #b42318;
}

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

.capital-visibility-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.capital-visibility-card.active {
  border-color: #b8d2f6;
  background: #f7fbff;
}

.capital-visibility-card.inactive {
  border-color: #e4e7ec;
  background: #f7f8fa;
  color: #667085;
}

.capital-visibility-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.capital-visibility-head div {
  display: grid;
  gap: 4px;
}

.capital-visibility-head span,
.capital-visibility-card small,
.capital-visibility-stats span {
  color: var(--muted);
  font-size: 12px;
}

.capital-visibility-head strong {
  font-size: 18px;
  font-weight: 600;
}

.capital-visibility-head em {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #0f3f87;
  font-size: 12px;
  font-style: normal;
}

.capital-visibility-card.inactive .capital-visibility-head em {
  background: #eef0f3;
  color: #667085;
}

.capital-visibility-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.capital-visibility-stats div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .75);
}

.capital-visibility-stats strong {
  font-size: 14px;
  font-weight: 600;
}

.capital-visibility-form button {
  width: 100%;
  min-height: 40px;
  border: 1px solid #b8d2f6;
  border-radius: 8px;
  background: #eef5ff;
  color: #0f3f87;
  cursor: pointer;
}

.capital-name-form {
  display: grid;
  gap: 8px;
}

.capital-name-form label {
  display: grid;
  gap: 5px;
}

.capital-name-form label span {
  color: var(--muted);
  font-size: 12px;
}

.capital-name-form input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.capital-visibility-form button.danger {
  border-color: #f2b7b7;
  background: #fff3f3;
  color: #b42318;
}

.capital-visibility-form button:hover {
  filter: brightness(.98);
}

.quality-action-buttons button.muted {
  background: #f7f9fc;
  color: var(--muted);
}

.admin-panel {
  padding: 20px;
}

.admin-filter {
  display: grid;
  grid-template-columns: 160px minmax(220px, 1fr) auto auto;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-filter input,
.admin-filter select,
.admin-filter button,
.admin-filter a,
.admin-status-form select,
.admin-status-form textarea,
.admin-status-form button,
.admin-login-card input {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.admin-filter button,
.admin-filter a,
.admin-bulk-actions button,
.admin-status-form button {
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.admin-notify-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafd;
}

.admin-notify-box span {
  color: var(--muted);
  font-size: 12px;
}

.admin-bulk-actions {
  display: flex;
  justify-content: flex-end;
  margin: 12px 0;
}

.admin-bulk-actions button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #f2b7b7;
  border-radius: 8px;
  background: #fff3f3;
  color: #b42318;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-check-cell {
  width: 42px;
  text-align: center !important;
}

.admin-check-cell input {
  width: 18px;
  height: 18px;
}

.admin-table strong,
.admin-table small,
.admin-table a {
  display: block;
}

.admin-table small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.admin-table a {
  margin-top: 4px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.request-type-badge {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  margin-top: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef2f7;
  color: #475569;
  font-size: 11px;
  line-height: 1;
}

.request-type-badge.special {
  background: #eaf2ff;
  color: #1458d4;
}

.admin-vehicle-cell {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.admin-vehicle-cell img {
  width: 74px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f7fb;
}

.preorder-admin-table td {
  vertical-align: middle;
}

.preorder-admin-table .muted-row {
  opacity: .62;
}

.preorder-update-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
}

.preorder-update-panel strong,
.preorder-update-panel small {
  display: block;
}

.preorder-update-panel small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.preorder-update-panel form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preorder-update-panel select {
  min-width: 320px;
}

@media (max-width: 760px) {
  .preorder-update-panel,
  .preorder-update-panel form {
    align-items: stretch;
    flex-direction: column;
  }

  .preorder-update-panel select {
    min-width: 0;
    width: 100%;
  }
}

.admin-status-form {
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.admin-status-form textarea {
  resize: vertical;
}

.site-text-form {
  display: grid;
  gap: 16px;
}

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

.site-text-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}

.site-text-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.site-text-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.site-text-card input,
.site-text-card textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.site-text-card textarea {
  min-height: 180px;
  line-height: 1.45;
  resize: vertical;
}

.site-text-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.special-inline-form {
  margin: 0;
}

.special-edit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px;
  min-width: 360px;
  margin-bottom: 6px;
}

.special-edit-form input,
.special-edit-form select {
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.special-edit-form button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.admin-empty {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .quote-panel {
    position: static;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-quote-preview {
    max-width: 560px;
  }

  .home-card-grid,
  .home-steps,
  .special-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .special-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .special-layout {
    padding: 16px;
  }

  .special-car {
    grid-template-columns: 1fr;
  }

  .special-car img {
    width: 100%;
    max-width: 220px;
    height: 120px;
  }

  .special-actions,
  .special-specs div {
    flex-direction: column;
  }

  .special-specs dd {
    text-align: left;
  }

  .special-edit-form {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .home-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .home-logo span {
    display: none;
  }

  .home-nav {
    gap: 2px;
    font-size: 13px;
  }

  .home-nav a {
    padding: 8px;
  }

  .home-hero,
  .home-section,
  .home-final-cta,
  .home-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-hero {
    gap: 20px;
    padding-top: 24px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .home-hero p {
    font-size: 15px;
  }

  .home-actions,
  .home-footer {
    flex-direction: column;
  }

  .home-primary,
  .home-secondary {
    width: 100%;
  }

  .home-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-metrics strong {
    font-size: 24px;
  }

  .home-quote-preview {
    border-radius: 16px;
    padding: 14px;
  }

  .topbar {
    padding: 0;
  }

  .picker-panel,
  .condition-card,
  .results-card,
  .vehicle-card {
    padding: 14px;
  }

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

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

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

  .lineup-grid .pick-card {
    min-width: 0;
  }

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

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

  .consult-layout {
    padding: 14px;
  }

  .consult-card,
  .consult-summary {
    padding: 14px;
  }

  .consult-summary {
    display: grid;
  }

  .consult-summary img {
    width: 100%;
    max-width: 220px;
    justify-self: center;
  }

  .condition-summary div {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    padding: 14px;
  }

  .admin-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-filter {
    grid-template-columns: 1fr;
  }

  .admin-quality-filter {
    grid-template-columns: 1fr;
  }

  .catalog-filter {
    grid-template-columns: 1fr;
  }

  .admin-notify-box {
    display: grid;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quality-risk-cards {
    grid-template-columns: 1fr 1fr;
  }

  .admin-capital-grid {
    grid-template-columns: 1fr;
  }

  .admin-embed-actions {
    display: grid;
  }

  .admin-tool-frame {
    min-height: 620px;
  }

  .update-metrics,
  .update-summary-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .update-tools {
    justify-items: start;
  }

  .update-table {
    min-width: 760px;
  }
}

/* Landing homepage redesign - 2026-06-23 */
.landing-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(67, 136, 255, .13), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fc 46%, #f7f9fc 100%);
  color: #071d3d;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-header,
.landing-main,
.landing-footer {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.landing-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  min-height: 84px;
  border-bottom: 1px solid rgba(15, 41, 76, .12);
}

.site-common-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 249, 253, .94);
  backdrop-filter: blur(16px);
}

.site-common-header a,
.site-common-header a:visited,
.site-common-header a:hover,
.site-common-header a:focus {
  text-decoration: none;
}

.site-common-header .landing-brand,
.site-common-header .landing-brand:visited {
  color: #071d3d;
}

.site-common-header .landing-nav a,
.site-common-header .landing-nav a:visited {
  color: #0c2344;
}

.landing-brand {
  color: #071d3d;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
}

.landing-nav {
  display: flex;
  gap: 42px;
  align-items: center;
  color: #0c2344;
  font-size: 15px;
  font-weight: 600;
}

.landing-nav a {
  padding: 10px 0;
}

.landing-nav a:hover {
  color: #075dff;
}

.landing-nav a[aria-current="page"] {
  color: #075dff;
}

.landing-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #0b63ff;
  border-radius: 9px;
  background: rgba(255,255,255,.72);
  color: #075dff;
  font-size: 14px;
  font-weight: 700;
}

.landing-chat::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 -5px 0 rgba(7, 93, 255, .12);
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 44px 0 36px;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}

.landing-hero-copy h1 {
  margin: 0;
  color: #082147;
  font-size: clamp(48px, 5.4vw, 70px);
  line-height: 1.16;
  font-weight: 850;
  letter-spacing: 0;
}

.landing-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #354864;
  font-size: 18px;
  line-height: 1.72;
}

.landing-trust-pill {
  justify-self: start;
  padding: 12px 18px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #075dff;
  font-weight: 750;
  box-shadow: inset 0 0 0 1px rgba(7, 93, 255, .08);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.landing-primary,
.landing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 750;
}

.landing-primary {
  border: 1px solid #075dff;
  background: linear-gradient(180deg, #136dff 0%, #0057ed 100%);
  color: #fff;
  box-shadow: 0 18px 28px rgba(0, 87, 237, .20);
}

.landing-secondary {
  border: 1px solid #075dff;
  background: rgba(255,255,255,.68);
  color: #075dff;
}

.landing-primary::after,
.landing-secondary::after,
.landing-outline-more::after,
.deal-card a::after,
.dark-cta-actions a::after {
  content: ">";
  margin-left: 12px;
  font-size: 20px;
  line-height: 1;
}

.landing-hero-visual {
  position: relative;
  min-height: 450px;
}

.hero-car {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 2;
  width: min(600px, 100%);
  height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(9, 30, 66, .22));
}

.chart-card,
.saving-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(14, 54, 112, .09);
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(10, 38, 84, .10);
  backdrop-filter: blur(14px);
}

.chart-card {
  top: 14px;
  left: 4px;
  width: 320px;
  padding: 18px 20px 16px;
}

.chart-title {
  padding-bottom: 13px;
  border-bottom: 1px solid #e3e9f2;
  color: #102b54;
  font-size: 14px;
  font-weight: 750;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 120px;
  padding: 18px 10px 8px;
}

.mini-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #b9d2ff 0%, #78a8ff 100%);
}

.mini-chart span.active {
  background: linear-gradient(180deg, #0b67ff 0%, #0053df 100%);
}

.chart-card strong {
  position: absolute;
  top: 52px;
  right: 34px;
  padding: 7px 10px;
  border-radius: 5px;
  background: #0762ff;
  color: #fff;
  font-size: 13px;
}

.saving-card {
  top: 18px;
  right: 20px;
  display: grid;
  gap: 12px;
  width: 180px;
  padding: 24px 22px;
}

.saving-card span {
  color: #53647c;
  font-size: 13px;
  font-weight: 700;
}

.saving-card strong {
  color: #082147;
  font-size: 29px;
  line-height: 1.15;
}

.saving-card em {
  padding-top: 10px;
  border-top: 1px solid #e4eaf2;
  color: #03a875;
  font-style: normal;
  font-size: 16px;
  font-weight: 800;
}

.landing-quick-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.quick-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  min-height: 136px;
  padding: 22px;
  border: 1px solid #e0e7f1;
  border-radius: 13px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 30px rgba(10, 38, 84, .07);
}

.quick-card::after {
  content: ">";
  color: #8090a8;
  font-size: 25px;
}

.quick-card.hot {
  border-color: #1167ff;
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid #1268ff;
  border-radius: 15px;
  color: #1268ff;
  font-weight: 800;
}

.quick-card strong,
.quick-card small {
  grid-column: 2;
}

.quick-card strong {
  color: #0c2344;
  font-size: 19px;
  font-weight: 800;
}

.quick-card strong b {
  display: inline-flex;
  margin-left: 5px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #0863ff;
  color: #fff;
  font-size: 11px;
}

.quick-card small {
  color: #53647c;
  font-size: 13px;
  line-height: 1.45;
}

.landing-panel,
.quote-program,
.truth-box,
.dark-cta {
  border: 1px solid #dce5f1;
  border-radius: 15px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(10, 38, 84, .07);
}

.landing-panel {
  display: grid;
  gap: 22px;
  padding: 28px 20px 24px;
}

.landing-section-head h2,
.quote-program h2,
.truth-box h2,
.dark-cta h2 {
  margin: 0;
  color: #0a244d;
  font-size: 29px;
  line-height: 1.24;
  font-weight: 830;
}

.landing-section-head p,
.quote-program p,
.truth-box p,
.dark-cta p {
  margin: 8px 0 0;
  color: #42546f;
  line-height: 1.58;
}

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

.deal-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #dce6f4;
  border-radius: 9px;
  background: #fff;
}

.deal-card img {
  width: 100%;
  height: 118px;
  object-fit: contain;
}

.deal-card strong {
  color: #102b54;
  font-size: 18px;
  font-weight: 800;
}

.deal-card span {
  color: #53647c;
  font-size: 13px;
}

.deal-card em {
  color: #075dff;
  font-style: normal;
  font-size: 22px;
  font-weight: 850;
}

.deal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deal-tags small {
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9f8f0;
  color: #078655;
  font-weight: 700;
}

.deal-tags small + small {
  background: #edf4ff;
  color: #075dff;
}

.deal-card a,
.landing-outline-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  border: 1px solid #0b63ff;
  border-radius: 7px;
  color: #075dff;
  font-weight: 750;
}

.landing-outline-more {
  justify-self: center;
  min-width: 300px;
  padding: 0 22px;
  background: #fff;
}

.quote-program {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
  margin-top: 0;
  padding: 30px 34px;
}

.fake-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 22px;
}

.fake-form-grid label {
  display: grid;
  gap: 8px;
  color: #172c4d;
  font-size: 13px;
  font-weight: 750;
}

.fake-form-grid span {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 0 14px;
  border: 1px solid #d6e0ee;
  border-radius: 7px;
  background: #fff;
  color: #53647c;
  font-weight: 500;
}

.estimate-box {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 34px 24px;
  border: 1px solid #dce6f4;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.estimate-box span {
  color: #102b54;
  font-weight: 750;
}

.estimate-box strong {
  color: #075dff;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 850;
}

.estimate-box small,
.estimate-box p {
  color: #6a7890;
  font-size: 13px;
}

.estimate-box .landing-primary {
  width: 100%;
}

.truth-box {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 24px 28px;
  background: linear-gradient(90deg, #edf5ff, #fff);
}

.truth-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #d9eaff;
  color: #075dff;
  font-size: 34px;
  font-weight: 850;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.feature-row article {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid #dce6f4;
  border-radius: 10px;
  background: #fff;
}

.feature-row strong {
  color: #0a244d;
  font-size: 14px;
  font-weight: 800;
}

.feature-row span {
  color: #52637c;
  font-size: 13px;
  line-height: 1.48;
}

.dark-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: center;
  margin: 18px 0 0;
  padding: 34px 38px;
  background: linear-gradient(135deg, #001d43 0%, #003a83 100%);
  color: #fff;
  overflow: hidden;
}

.dark-cta h2,
.dark-cta p {
  color: #fff;
}

.dark-cta p {
  color: rgba(255,255,255,.78);
}

.dark-cta-actions {
  display: grid;
  gap: 12px;
}

.dark-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 7px;
  background: rgba(255,255,255,.96);
  color: #075dff;
  font-weight: 800;
}

.dark-cta-actions a + a {
  background: transparent;
  color: #fff;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  background: #002653;
  padding: 0 24px;
}

.landing-footer strong {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .landing-header,
  .landing-main,
  .landing-footer {
    width: min(100% - 28px, 720px);
  }

  .landing-header {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 16px 0;
  }

  .landing-nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    font-size: 13px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .landing-hero-visual {
    min-height: 360px;
  }

  .chart-card {
    width: 260px;
  }

  .saving-card {
    right: 0;
  }

  .hero-car {
    width: 100%;
    height: 260px;
  }

  .landing-quick-cards,
  .deal-grid,
  .feature-row,
  .quote-program,
  .dark-cta {
    grid-template-columns: 1fr;
  }

  .fake-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .landing-brand {
    font-size: 22px;
  }

  .landing-chat {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .landing-hero-copy h1 {
    font-size: 39px;
  }

  .landing-hero-copy p {
    font-size: 15px;
  }

  .landing-actions,
  .landing-primary,
  .landing-secondary {
    width: 100%;
  }

  .landing-hero-visual {
    min-height: 300px;
  }

  .chart-card {
    left: 0;
    width: 220px;
    padding: 14px;
  }

  .saving-card {
    top: 52px;
    width: 150px;
    padding: 16px;
  }

  .saving-card strong {
    font-size: 22px;
  }

  .hero-car {
    bottom: 0;
    height: 210px;
  }

  .quick-card {
    grid-template-columns: 56px minmax(0, 1fr) 18px;
    min-height: 112px;
    padding: 16px;
  }

  .quick-icon {
    width: 48px;
    height: 48px;
  }

  .fake-form-grid,
  .truth-box {
    grid-template-columns: 1fr;
  }

  .landing-section-head h2,
  .quote-program h2,
  .truth-box h2,
  .dark-cta h2 {
    font-size: 24px;
  }

  .estimate-box strong {
    font-size: 34px;
  }
}

/* Special deals interactive page - 2026-06-23 */
.special-redesign-page {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
}

.special-redesign-header {
  max-width: 1180px;
  border-bottom: 1px solid rgba(15, 41, 76, .12);
}

.special-redesign-layout {
  max-width: 1180px;
}

.special-redesign-hero h1 {
  color: #082147;
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 850;
}

.special-redesign-hero p {
  max-width: 860px;
}

.special-grid.special-deal-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.special-deal-card {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 292px;
  padding: 16px;
  border: 1px solid #dce6f4;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(10, 38, 84, .07);
  color: #102b54;
  cursor: pointer;
  text-align: left;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.special-deal-card:hover,
.special-deal-card.active {
  transform: translateY(-2px);
  border-color: #0b63ff;
  box-shadow: 0 18px 38px rgba(10, 82, 202, .13);
}

.special-deal-card .special-badge {
  justify-self: start;
}

.special-deal-card img {
  width: 100%;
  height: 108px;
  object-fit: contain;
}

.special-deal-card strong {
  color: #0a244d;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.28;
}

.special-deal-card small {
  color: #65758e;
  font-size: 13px;
  line-height: 1.35;
}

.special-deal-card em {
  margin-top: 4px;
  color: #075dff;
  font-size: 20px;
  font-style: normal;
  font-weight: 850;
}

.special-detail-panel {
  scroll-margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .8fr) minmax(260px, .65fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #dce6f4;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(10, 38, 84, .08);
}

.special-detail-car,
.special-condition-box,
.special-rent-result {
  border: 1px solid #e2eaf5;
  border-radius: 12px;
  background: #fff;
}

.special-detail-car {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.special-detail-car h2 {
  margin: 10px 0 8px;
  color: #082147;
  font-size: 27px;
  line-height: 1.22;
  font-weight: 830;
}

.special-detail-car p {
  margin: 0;
  color: #53647c;
  font-size: 14px;
  line-height: 1.48;
}

.special-detail-car img {
  width: 180px;
  height: 120px;
  object-fit: contain;
}

.special-detail-specs {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
}

.special-detail-specs div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #edf2f8;
}

.special-detail-specs dt {
  color: #718096;
}

.special-detail-specs dd {
  margin: 0;
  color: #102b54;
}

.special-condition-box {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.special-condition-group {
  display: grid;
  gap: 9px;
}

.special-condition-group > span {
  color: #102b54;
  font-size: 14px;
  font-weight: 760;
}

.special-segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.special-segmented button {
  min-height: 42px;
  border: 1px solid #d7e1ef;
  border-radius: 8px;
  background: #fff;
  color: #33445d;
  cursor: pointer;
  font-weight: 650;
}

.special-segmented button.active {
  border-color: #075dff;
  background: #eef5ff;
  color: #075dff;
}

.special-fixed-mileage {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #f3f5f8;
  color: #647085;
  font-size: 14px;
}

.special-rent-result {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: center;
  padding: 22px;
  text-align: center;
}

.special-rent-result span {
  color: #53647c;
  font-size: 14px;
}

.special-rent-result strong {
  color: #075dff;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 850;
}

.special-rent-result small {
  color: #6d7c92;
  line-height: 1.4;
}

.special-rent-result .landing-primary {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
}

.special-rent-result .landing-primary.disabled {
  border-color: #d6dce6;
  background: #e9edf3;
  color: #8b95a5;
  box-shadow: none;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .special-grid.special-deal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .special-grid.special-deal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .special-deal-card {
    min-height: 250px;
    padding: 13px;
  }

  .special-deal-card img {
    height: 86px;
  }

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

  .special-detail-car img {
    width: 100%;
    max-width: 240px;
    justify-self: center;
  }

  .special-segmented {
    gap: 6px;
  }

  .special-rent-result strong {
    font-size: 28px;
  }
}

/* Preorder dedicated module UI - 2026-06-23 */
.preorder-sticky-brand-bar {
  position: sticky;
  top: 84px;
  z-index: 24;
  margin: 0 0 14px;
  padding: 8px 0 4px;
  background: rgba(246, 249, 253, .94);
  backdrop-filter: blur(14px);
}

.preorder-list-mode .preorder-sticky-brand-bar {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(15, 41, 76, .08);
  box-shadow: 0 12px 24px rgba(8, 33, 71, .07);
}

.preorder-brand-tabs {
  display: flex;
  gap: 10px;
  margin: 0;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.preorder-brand-tab {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px;
  column-gap: 10px;
  min-width: 176px;
  padding: 14px 16px;
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: #fff;
  color: #102b54;
  text-align: left;
  box-shadow: 0 10px 24px rgba(12, 40, 82, .06);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.preorder-brand-tab img {
  grid-row: 1 / span 2;
  align-self: center;
  width: 42px;
  height: 30px;
  object-fit: contain;
}

.preorder-brand-tab:hover,
.preorder-brand-tab.active {
  border-color: #0b63ff;
  background: #f1f6ff;
  transform: translateY(-1px);
}

.preorder-brand-tab strong {
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  min-width: 0;
}

.preorder-brand-tab span {
  color: #60708a;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  min-width: 0;
}

.preorder-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.preorder-groups.is-switching .preorder-group-card:not([hidden]) {
  animation: preorderGroupReveal .32s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--reveal-index, 0) * 35ms);
}

@keyframes preorderGroupReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.preorder-group-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  row-gap: 12px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid #dce6f4;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #f7fbff 58%, #eef6ff 100%);
  box-shadow: 0 12px 26px rgba(10, 38, 84, .08);
  color: #102b54;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  position: relative;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.preorder-group-card > span,
.preorder-group-card > strong {
  display: none !important;
}

.preorder-group-visible {
  display: grid !important;
  gap: 8px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.preorder-group-visible-brand {
  display: none;
  justify-self: start;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #075dff;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.preorder-all-selected .preorder-group-visible-brand {
  display: inline-flex;
}

.preorder-group-visible-title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  min-width: 0;
}

.preorder-group-visible-title > div {
  min-width: 0;
  color: #082147;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.2;
}

.preorder-group-visible-title em {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 999px;
  background: #eef4ff;
  color: #075dff;
  font-size: 12px;
  font-style: normal;
  line-height: 1.2;
}

.preorder-group-card[hidden] {
  display: none !important;
}

.preorder-view {
  display: none;
}

.preorder-view.is-active {
  display: block;
}

.preorder-list-view {
  animation: preorderSlideIn .26s ease both;
}

.preorder-list-head {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 0 0 16px;
  padding: 18px 20px;
  border: 1px solid #dce6f4;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #f7fbff 58%, #eef6ff 100%);
  box-shadow: 0 10px 22px rgba(10, 38, 84, .06);
}

.preorder-list-head-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.preorder-list-head-main > div {
  min-width: 0;
}

.preorder-list-head-main img {
  justify-self: end;
  width: 190px;
  height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(11, 45, 96, .12));
}

.preorder-list-head span {
  display: block;
  color: #075dff;
  font-size: 13px;
  margin-bottom: 4px;
}

.preorder-list-head h2 {
  margin: 0;
  color: #082147;
  font-size: 26px;
  line-height: 1.2;
}

.preorder-list-head p {
  margin: 6px 0 0;
  color: #667894;
  font-size: 14px;
}

.preorder-back-button,
.preorder-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dbe6f4;
  border-radius: 10px;
  background: #f7fbff;
  color: #0a2c5f;
  cursor: pointer;
}

.preorder-back-button {
  align-self: center;
  flex: 0 0 auto;
}

.preorder-list-cards {
  display: grid;
  gap: 10px;
}

.preorder-row-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, auto);
  align-items: center;
  gap: 16px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid #dce6f4;
  border-radius: 12px;
  background: #fff;
  color: #102b54;
  text-align: left;
  box-shadow: 0 8px 20px rgba(10, 38, 84, .05);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.preorder-row-card:hover,
.preorder-row-card.active {
  border-color: #075dff;
  background: #f7fbff;
}

.preorder-row-main,
.preorder-row-side {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.preorder-row-main strong {
  color: #082147;
  font-size: 16px;
  line-height: 1.28;
}

.preorder-row-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.preorder-row-spec {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #e6edf7;
  border-radius: 9px;
  background: #f8fbff;
}

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

.preorder-row-spec b {
  color: #7b8ba4;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.preorder-row-spec em {
  overflow: hidden;
  color: #19345b;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preorder-row-main small,
.preorder-row-side small {
  color: #687891;
  font-size: 12px;
  line-height: 1.35;
}

.preorder-row-side {
  justify-items: end;
}

.preorder-row-side em {
  color: #075dff;
  font-size: 18px;
  font-style: normal;
  line-height: 1.2;
  white-space: nowrap;
}

.preorder-quote-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  background: rgba(7, 20, 44, 0);
  transition: background .24s ease;
}

.preorder-quote-drawer.open {
  pointer-events: auto;
  background: rgba(7, 20, 44, .28);
}

.preorder-drawer-panel {
  width: min(520px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  background: #fff;
  box-shadow: -18px 0 44px rgba(6, 25, 58, .18);
  transform: translateX(100%);
  transition: transform .28s ease;
}

.preorder-quote-drawer.open .preorder-drawer-panel {
  transform: translateX(0);
}

.preorder-drawer-close {
  margin-left: auto;
  margin-bottom: 12px;
  font-size: 24px;
}

.preorder-drawer-car {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #dce6f4;
  border-radius: 12px;
  background: #fff;
}

.preorder-drawer-car h2 {
  margin: 4px 0 0;
  color: #082147;
  font-size: 22px;
  line-height: 1.25;
}

.preorder-drawer-car p {
  margin: 0;
  color: #60708a;
  font-size: 13px;
  line-height: 1.4;
}

.preorder-drawer-car img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.preorder-drawer-specs {
  display: grid;
  gap: 8px;
  margin: 0;
}

.preorder-drawer-specs div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #edf2f8;
}

.preorder-drawer-specs dt {
  color: #718096;
}

.preorder-drawer-specs dd {
  margin: 0;
  color: #102b54;
  line-height: 1.45;
}

.preorder-drawer-conditions,
.preorder-drawer-result {
  margin-top: 14px;
}

.preorder-offer-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.preorder-offer-list > strong {
  color: #102b54;
  font-size: 14px;
  font-weight: 680;
}

.preorder-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dce6f4;
  border-radius: 10px;
  background: #fff;
  color: #102b54;
  text-align: left;
  cursor: pointer;
}

.preorder-offer-row.active {
  border-color: #0b63ff;
  background: #f1f6ff;
}

.preorder-offer-row span {
  min-width: 0;
  color: #243b61;
  font-size: 13px;
}

.preorder-offer-row em {
  flex-shrink: 0;
  color: #075dff;
  font-size: 14px;
  font-style: normal;
  font-weight: 720;
}

@keyframes preorderSlideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.preorder-group-card img {
  justify-self: center;
  align-self: end;
  width: 168px;
  height: 121px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(11, 45, 96, .13));
  margin: 8px 0 2px;
}

.preorder-group-card:hover,
.preorder-group-card.active {
  border-color: #0b63ff;
  background: #f1f6ff;
  box-shadow: 0 16px 30px rgba(10, 38, 84, .12);
  transform: translateY(-2px);
}

.preorder-group-brand {
  display: none;
  justify-self: start;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #075dff !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.preorder-all-selected .preorder-group-brand {
  display: inline-flex;
}

.preorder-group-info {
  display: grid;
  gap: 8px;
  min-width: 0;
  position: relative;
  z-index: 1;
  grid-row: 1;
}

.preorder-group-titleline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.preorder-group-titleline strong {
  display: block !important;
  min-width: 0;
  color: #082147;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.2;
}

.preorder-group-titleline em {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #075dff;
  font-size: 12px;
  font-style: normal;
  line-height: 1.2;
}

.preorder-group-info ~ .preorder-group-brand,
.preorder-group-info ~ strong,
.preorder-group-info ~ span:not(.preorder-group-brand) {
  display: none !important;
}

.preorder-group-card strong {
  min-width: 0;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.2;
}

.preorder-group-card span {
  min-width: 0;
  color: #60708a;
  font-size: 13px;
  line-height: 1.35;
}

.preorder-company-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  scroll-margin-top: 24px;
}

.preorder-company-block {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #dce6f4;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(10, 38, 84, .06);
}

.preorder-company-block h2 {
  margin: 0;
  color: #082147;
  font-size: 21px;
  font-weight: 780;
}

.preorder-item-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.preorder-item-card {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 226px;
  padding: 13px;
  border: 1px solid #e0e8f3;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.preorder-item-card:hover,
.preorder-item-card.active {
  border-color: #075dff;
  background: #f7fbff;
}

.preorder-item-card img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.preorder-item-card span {
  color: #0a244d;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.28;
}

.preorder-item-card small {
  color: #6a7890;
  font-size: 12px;
  line-height: 1.35;
}

.preorder-item-card em {
  color: #075dff;
  font-size: 14px;
  font-style: normal;
  font-weight: 820;
}

.preorder-stock-note {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #245aa6 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.preorder-detail-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .75fr) minmax(260px, .6fr);
}

.preorder-detail-car {
  grid-template-columns: minmax(0, 1fr) 190px;
}

.preorder-detail-specs .option-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
}

.preorder-detail-specs .option-row dd {
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.preorder-consult-summary strong {
  line-height: 1.32;
}

.preorder-condition-summary div:nth-child(4) {
  grid-column: 1 / -1;
}

.preorder-condition-summary div:nth-child(4) dd {
  white-space: pre-wrap;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .preorder-groups,
  .preorder-item-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .preorder-groups,
  .preorder-item-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preorder-list-head {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .preorder-list-head-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .preorder-list-head-main img {
    justify-self: center;
    width: 180px;
    height: 108px;
  }

  .preorder-row-card {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .preorder-row-side {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
    padding-top: 2px;
  }

  .preorder-row-side small {
    justify-self: end;
  }

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

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

  .preorder-detail-car img {
    justify-self: center;
    width: 100%;
    max-width: 240px;
  }
}

/* Preorder hero refresh */
.preorder-hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .72fr);
  align-items: center;
  gap: 28px;
  margin: 18px 0 18px;
  padding: 30px 34px;
  overflow: hidden;
  border: 1px solid #dce8f8;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 26%, rgba(22, 93, 255, .16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #edf5ff 100%);
  box-shadow: 0 18px 45px rgba(9, 35, 78, .08);
}

.preorder-hero-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(22, 93, 255, .06);
  border-radius: 50%;
  pointer-events: none;
}

.preorder-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.special-hero .preorder-hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  background: #eef5ff;
  color: #075dff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.preorder-hero-panel h1 {
  max-width: 560px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
}

.preorder-hero-panel p {
  max-width: 620px;
  color: #52647c;
  font-size: 15px;
  line-height: 1.7;
}

.preorder-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.special-hero .preorder-hero-points span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(7, 93, 255, .17);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #12335f;
  font-size: 13px;
  font-weight: 500;
}

.preorder-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 190px;
  display: grid;
  place-items: center;
}

.preorder-hero-visual img {
  width: min(100%, 330px);
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(8, 31, 64, .18));
  transform: translateY(8px);
}

.preorder-hero-mini-card {
  position: absolute;
  right: 0;
  top: 14px;
  display: grid;
  gap: 2px;
  min-width: 112px;
  padding: 12px 14px;
  border: 1px solid rgba(207, 224, 255, .86);
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 30px rgba(8, 31, 64, .10);
  backdrop-filter: blur(8px);
}

.preorder-hero-mini-card small {
  color: #667894;
  font-size: 12px;
}

.preorder-hero-mini-card strong {
  color: #075dff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

@media (max-width: 760px) {
  .preorder-hero-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px 18px;
    border-radius: 18px;
  }

  .preorder-hero-visual {
    min-height: 150px;
  }

  .preorder-hero-visual img {
    width: min(100%, 270px);
    height: 145px;
  }

  .preorder-hero-mini-card {
    right: 8px;
    top: 4px;
    min-width: 96px;
    padding: 10px 12px;
  }
}
/* Landing special preorder slider */
.deal-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 2px 4px 14px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
}

.deal-slider::-webkit-scrollbar {
  height: 8px;
}

.deal-slider::-webkit-scrollbar-thumb {
  background: #c8d7ee;
  border-radius: 999px;
}

.deal-slider .deal-card {
  flex: 0 0 clamp(230px, 31%, 300px);
  scroll-snap-align: start;
  min-height: 320px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.deal-slider .deal-card img {
  height: 132px;
}

.preorder-home-form {
  margin-top: 8px;
  gap: 6px;
}

.preorder-home-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5d6b80;
  font-size: 12px;
}

.preorder-home-form input[type="number"] {
  width: 64px;
  min-height: 32px;
  border: 1px solid #d7e1ee;
  border-radius: 8px;
  padding: 4px 8px;
}

@media (max-width: 720px) {
  .deal-slider .deal-card {
    flex-basis: 82%;
  }
}
/* Landing special preorder polish */
.deal-slider {
  scrollbar-width: none;
  padding: 4px 2px 8px;
}

.deal-slider::-webkit-scrollbar {
  display: none;
}

.deal-slider .deal-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(250px, 31.5%, 318px);
  min-height: 350px;
  padding: 18px;
  border: 1px solid rgba(126, 162, 215, .45);
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 14%, rgba(44, 123, 255, .14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 16px 36px rgba(22, 70, 135, .10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.deal-slider .deal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 99, 255, .55);
  box-shadow: 0 22px 46px rgba(22, 70, 135, .16);
}

.deal-slider .deal-card::before {
  content: "즉시출고";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(7, 93, 255, .10);
  color: #075dff;
  font-size: 12px;
  font-weight: 650;
}

.deal-slider .deal-card img {
  width: 100%;
  height: 150px;
  margin: 12px 0 4px;
  padding: 10px 8px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(235, 244, 255, .72), rgba(255, 255, 255, .35));
}

.deal-slider .deal-card strong {
  min-height: 46px;
  color: #071f46;
  font-size: 18px;
  font-weight: 720;
  line-height: 1.28;
}

.deal-slider .deal-card span {
  min-height: 36px;
  color: #53647c;
  font-size: 13px;
  line-height: 1.35;
}

.deal-slider .deal-card em {
  align-self: end;
  color: #075dff;
  font-size: 23px;
  font-weight: 760;
  letter-spacing: 0;
}

.deal-slider .deal-tags small {
  background: #eef6ff;
  color: #0b63ff;
  font-weight: 600;
}

.deal-slider .deal-tags small + small {
  background: #f2f7fb;
  color: #50647f;
}

.deal-slider .deal-card a {
  border-radius: 10px;
  background: #075dff;
  color: #fff;
  box-shadow: 0 12px 22px rgba(7, 93, 255, .18);
}

.deal-slider .deal-card a::after {
  color: inherit;
}

.deal-slider-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 28px;
  margin-top: -6px;
}

.deal-slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.deal-slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c9d8ef;
  cursor: pointer;
  transition: width .2s ease, background .2s ease, opacity .2s ease;
}

.deal-slider-dots button.active {
  width: 22px;
  background: #075dff;
}

.deal-slider-count {
  min-width: 42px;
  color: #65758e;
  font-size: 13px;
  text-align: right;
}

.deal-slider-count b {
  color: #075dff;
  font-weight: 720;
}

@media (max-width: 720px) {
  .deal-slider .deal-card {
    flex-basis: 84%;
    min-height: 332px;
  }

  .deal-slider .deal-card img {
    height: 136px;
  }
}
/* Landing special preorder arrows */
.deal-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
}

.deal-slider-shell .deal-slider {
  min-width: 0;
}

.deal-slider-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 143, 188, .28);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
  color: #0a2a58;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(18, 65, 130, .12);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.deal-slider-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(7, 93, 255, .48);
  box-shadow: 0 16px 30px rgba(18, 65, 130, .16);
}

.deal-slider-nav:disabled {
  opacity: .34;
  cursor: default;
  box-shadow: none;
}

@media (max-width: 720px) {
  .deal-slider-shell {
    grid-template-columns: 1fr;
  }

  .deal-slider-nav {
    display: none;
  }
}

/* Landing quick menu icon polish */
.landing-quick-cards {
  gap: 12px;
}

.quick-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: 74px minmax(0, 1fr) 26px;
  min-height: 154px;
  padding: 22px;
  border-color: rgba(179, 199, 229, .72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(7, 93, 255, .08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(15, 45, 91, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 93, 255, .46);
  box-shadow: 0 22px 44px rgba(15, 67, 145, .14);
}

.quick-card.hot {
  border-color: rgba(7, 93, 255, .95);
  background:
    radial-gradient(circle at 84% 16%, rgba(7, 93, 255, .16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.quick-card::before {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(7, 93, 255, .055);
}

.quick-card::after {
  position: relative;
  z-index: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #6b7d99;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(121, 150, 190, .18);
}

.quick-card:hover::after {
  color: #075dff;
  box-shadow: inset 0 0 0 1px rgba(7, 93, 255, .24);
}

.quick-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(7, 93, 255, .46);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 12px 24px rgba(7, 93, 255, .12), inset 0 0 0 5px rgba(255, 255, 255, .72);
  color: transparent;
  font-size: 0;
}

.quick-icon::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background: #075dff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.quick-icon-quote::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h5'/%3E%3Cpath d='M8 17h3'/%3E%3Ccircle cx='17' cy='17' r='3'/%3E%3Cpath d='m19.3 19.3 2 2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h5'/%3E%3Cpath d='M8 17h3'/%3E%3Ccircle cx='17' cy='17' r='3'/%3E%3Cpath d='m19.3 19.3 2 2'/%3E%3C/svg%3E");
}

.quick-icon-car::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9L18 10l-2-4H8l-2 4-2.5 1.1C2.7 11.4 2 12.1 2 13v3c0 .6.4 1 1 1h2'/%3E%3Ccircle cx='7' cy='17' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3Cpath d='M5 13h14'/%3E%3Cpath d='M8 10h8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9L18 10l-2-4H8l-2 4-2.5 1.1C2.7 11.4 2 12.1 2 13v3c0 .6.4 1 1 1h2'/%3E%3Ccircle cx='7' cy='17' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3Cpath d='M5 13h14'/%3E%3Cpath d='M8 10h8'/%3E%3C/svg%3E");
}

.quick-icon-consult::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11a9 9 0 0 1 18 0'/%3E%3Cpath d='M5 11v5a3 3 0 0 0 3 3h1'/%3E%3Cpath d='M19 11v4a4 4 0 0 1-4 4h-1'/%3E%3Crect x='2' y='11' width='4' height='6' rx='2'/%3E%3Crect x='18' y='11' width='4' height='6' rx='2'/%3E%3Cpath d='M9 19h6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11a9 9 0 0 1 18 0'/%3E%3Cpath d='M5 11v5a3 3 0 0 0 3 3h1'/%3E%3Cpath d='M19 11v4a4 4 0 0 1-4 4h-1'/%3E%3Crect x='2' y='11' width='4' height='6' rx='2'/%3E%3Crect x='18' y='11' width='4' height='6' rx='2'/%3E%3Cpath d='M9 19h6'/%3E%3C/svg%3E");
}

.quick-card strong,
.quick-card small {
  position: relative;
  z-index: 1;
}

.quick-card strong {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
}

.quick-card small {
  max-width: 178px;
  color: #52657f;
}

.quick-card strong b {
  vertical-align: middle;
}

@media (max-width: 720px) {
  .quick-card {
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    min-height: 116px;
    padding: 16px;
  }

  .quick-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .quick-icon::before {
    width: 29px;
    height: 29px;
  }
}

/* Landing quick menu premium icon refresh */
.quick-icon {
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #eef6ff 0%, #ffffff 47%, #eaf3ff 100%);
  box-shadow:
    0 16px 28px rgba(22, 82, 173, .14),
    inset 0 0 0 1px rgba(84, 139, 221, .22),
    inset 0 -10px 18px rgba(7, 93, 255, .07);
}

.quick-icon::before {
  width: 42px;
  height: 42px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-mask-image: none;
  mask-image: none;
}

.quick-icon::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #5ea1ff;
  box-shadow: 0 0 0 5px rgba(94, 161, 255, .12);
}

.quick-icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='12' y1='8' x2='52' y2='56' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230B72FF'/%3E%3Cstop offset='1' stop-color='%230036B8'/%3E%3C/linearGradient%3E%3Cfilter id='s' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeDropShadow dx='0' dy='4' stdDeviation='3' flood-color='%230B63FF' flood-opacity='.22'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M18 10h21l9 9v33a4 4 0 0 1-4 4H18a4 4 0 0 1-4-4V14a4 4 0 0 1 4-4Z' fill='white' stroke='url(%23a)' stroke-width='3' filter='url(%23s)'/%3E%3Cpath d='M38 11v10h10' fill='%23DCEBFF' stroke='url(%23a)' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M22 29h18M22 37h12' stroke='%23075DFF' stroke-width='4' stroke-linecap='round'/%3E%3Ccircle cx='43' cy='43' r='8' fill='%23EAF4FF' stroke='%23075DFF' stroke-width='3'/%3E%3Cpath d='m49 49 5 5' stroke='%230036B8' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.quick-icon-car::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='9' y1='15' x2='55' y2='51' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230B72FF'/%3E%3Cstop offset='1' stop-color='%230034B5'/%3E%3C/linearGradient%3E%3Cfilter id='s' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeDropShadow dx='0' dy='5' stdDeviation='3' flood-color='%230B63FF' flood-opacity='.23'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M15 35 21 22c1-2 3-4 6-4h10c3 0 5 2 6 4l6 13 4 3v9a4 4 0 0 1-4 4h-3a7 7 0 0 1-14 0h-4a7 7 0 0 1-14 0H7a4 4 0 0 1-4-4v-9l12-3Z' fill='url(%23a)' filter='url(%23s)'/%3E%3Cpath d='M20 34h24l-4-9a4 4 0 0 0-4-3h-8a4 4 0 0 0-4 3l-4 9Z' fill='%23EAF4FF' opacity='.95'/%3E%3Ccircle cx='17' cy='51' r='5' fill='white'/%3E%3Ccircle cx='47' cy='51' r='5' fill='white'/%3E%3Cpath d='M11 41h7M46 41h7' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M24 40h16' stroke='%238FC0FF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.quick-icon-consult::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='13' y1='9' x2='51' y2='55' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230B72FF'/%3E%3Cstop offset='1' stop-color='%230035B8'/%3E%3C/linearGradient%3E%3Cfilter id='s' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeDropShadow dx='0' dy='5' stdDeviation='3' flood-color='%230B63FF' flood-opacity='.22'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M14 32a18 18 0 0 1 36 0' fill='none' stroke='url(%23a)' stroke-width='6' stroke-linecap='round' filter='url(%23s)'/%3E%3Crect x='7' y='30' width='11' height='18' rx='5' fill='url(%23a)'/%3E%3Crect x='46' y='30' width='11' height='18' rx='5' fill='url(%23a)'/%3E%3Cpath d='M50 46c0 8-6 11-14 11h-5' fill='none' stroke='%230035B8' stroke-width='5' stroke-linecap='round'/%3E%3Crect x='25' y='52' width='12' height='7' rx='3.5' fill='%230B72FF'/%3E%3Cpath d='M23 30h17a8 8 0 0 1 8 8v2a8 8 0 0 1-8 8H29l-8 6v-7a8 8 0 0 1-6-8v-1a8 8 0 0 1 8-8Z' fill='white' stroke='%23075DFF' stroke-width='3'/%3E%3Ccircle cx='28' cy='39' r='2' fill='%23075DFF'/%3E%3Ccircle cx='35' cy='39' r='2' fill='%23075DFF'/%3E%3C/svg%3E");
}

.quick-card:hover .quick-icon {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(22, 82, 173, .18),
    inset 0 0 0 1px rgba(7, 93, 255, .28),
    inset 0 -10px 18px rgba(7, 93, 255, .08);
}

@media (max-width: 720px) {
  .quick-icon::before {
    width: 34px;
    height: 34px;
  }
}

/* Landing quick menu real image icons */
.quick-icon {
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: transform .18s ease;
}

.quick-icon::before,
.quick-icon::after {
  display: none;
}

.quick-icon img {
  display: block;
  width: 76px;
  height: 76px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(7, 93, 255, .16));
}

.quick-card:hover .quick-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: none;
}

.quick-card {
  grid-template-columns: 86px minmax(0, 1fr) 28px;
}

.quick-card.hot .quick-icon img {
  filter: drop-shadow(0 16px 20px rgba(7, 93, 255, .22));
}

@media (max-width: 720px) {
  .quick-card {
    grid-template-columns: 64px minmax(0, 1fr) 24px;
  }

  .quick-icon img {
    width: 60px;
    height: 60px;
  }
}

/* Landing quick menu generated premium images */
.quick-card {
  grid-template-columns: 98px minmax(0, 1fr) 28px;
  min-height: 162px;
  background:
    radial-gradient(circle at 88% 15%, rgba(7, 93, 255, .10), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
}

.quick-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
}

.quick-icon img {
  width: 94px;
  height: 94px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow:
    0 18px 32px rgba(20, 69, 137, .16),
    0 0 0 1px rgba(7, 93, 255, .08);
  filter: none;
}

.quick-card.hot .quick-icon img {
  box-shadow:
    0 20px 38px rgba(7, 93, 255, .22),
    0 0 0 1px rgba(7, 93, 255, .16);
  filter: none;
}

.quick-card:hover .quick-icon {
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 720px) {
  .quick-card {
    grid-template-columns: 70px minmax(0, 1fr) 22px;
    min-height: 122px;
  }

  .quick-icon {
    width: 66px;
    height: 66px;
  }

  .quick-icon img {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }
}

/* Landing hero premium refresh */
.landing-hero {
  isolation: isolate;
  overflow: hidden;
  margin: 18px 0 18px;
  padding: 54px 44px 42px;
  border: 1px solid rgba(158, 187, 226, .42);
  border-radius: 30px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .98) 0%, rgba(246, 250, 255, .96) 45%, rgba(228, 239, 255, .92) 100%);
  box-shadow: 0 28px 70px rgba(28, 63, 115, .11);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 93, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 255, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(115deg, transparent 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.75) 100%);
}

.landing-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -20%;
  z-index: 0;
  width: 58%;
  height: 72%;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(7, 93, 255, .11), rgba(255,255,255,0) 62%);
  transform: skewX(-12deg);
}

.landing-hero-copy,
.landing-hero-visual {
  position: relative;
  z-index: 1;
}

.landing-hero-copy {
  gap: 20px;
  align-self: center;
}

.landing-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(42px, 4.85vw, 62px);
  line-height: 1.1;
  font-weight: 820;
  color: #061f47;
  text-wrap: balance;
}

.landing-hero-copy p {
  max-width: 590px;
  color: #3d506c;
  font-size: 14px;
  line-height: 1.7;
}

.landing-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px 11px 14px;
  border: 1px solid rgba(7, 93, 255, .12);
  background: rgba(234, 243, 255, .78);
  box-shadow: 0 10px 24px rgba(7, 93, 255, .08), inset 0 0 0 1px rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
}

.landing-trust-pill::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #075dff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4.5 5.3v5.6c0 4.8 3.2 9.3 7.5 10.8 4.3-1.5 7.5-6 7.5-10.8V5.3L12 2Zm3.8 8.2-4.4 4.7a1 1 0 0 1-1.5 0l-2-2.2 1.5-1.4 1.3 1.4 3.7-3.9 1.4 1.4Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.landing-actions {
  gap: 12px;
  margin-top: 4px;
}

.landing-primary,
.landing-secondary {
  min-height: 56px;
  border-radius: 14px;
  padding: 0 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.landing-primary:hover,
.landing-secondary:hover {
  transform: translateY(-2px);
}

.landing-primary {
  border-color: #075dff;
  background: linear-gradient(180deg, #1677ff 0%, #075dff 58%, #004bd1 100%);
  box-shadow: 0 18px 32px rgba(7, 93, 255, .25);
}

.landing-secondary {
  border-color: rgba(7, 93, 255, .36);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 28px rgba(20, 65, 130, .08);
  backdrop-filter: blur(10px);
}

.landing-hero-visual {
  min-height: 470px;
}

.landing-hero-visual::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 34px;
  z-index: 1;
  width: min(560px, 95%);
  height: 250px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(204, 225, 255, .28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 30px 70px rgba(43, 93, 160, .13);
  transform: perspective(600px) rotateX(3deg) skewX(-4deg);
}

.hero-car {
  right: -8px;
  bottom: 16px;
  width: min(640px, 104%);
  height: 350px;
  filter: drop-shadow(0 38px 32px rgba(9, 30, 66, .24));
}

.chart-card,
.saving-card {
  border: 1px solid rgba(145, 174, 214, .28);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 54px rgba(24, 61, 120, .14);
  backdrop-filter: blur(18px);
}

.chart-card {
  top: 22px;
  left: 0;
  width: 330px;
  padding: 20px 22px 18px;
}

.chart-title {
  color: #0a244d;
  font-weight: 760;
}

.mini-chart {
  align-items: end;
  gap: 10px;
  height: 118px;
  padding: 20px 8px 4px;
}

.mini-chart span {
  border-radius: 9px 9px 3px 3px;
  background: linear-gradient(180deg, #bad5ff 0%, #74a7fb 100%);
}

.mini-chart span.active {
  background: linear-gradient(180deg, #1677ff 0%, #0457e8 100%);
  box-shadow: 0 12px 22px rgba(7, 93, 255, .24);
}

.chart-card strong {
  top: 58px;
  right: 20px;
  border-radius: 10px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #1677ff 0%, #0056ed 100%);
  box-shadow: 0 10px 22px rgba(7, 93, 255, .22);
}

.saving-card {
  top: 38px;
  right: 0;
  width: 205px;
  padding: 24px;
}

.saving-card span {
  color: #526680;
  font-weight: 700;
}

.saving-card strong {
  margin: 12px 0;
  color: #061f47;
  font-size: 31px;
  line-height: 1.18;
}

.saving-card em {
  color: #009b63;
  font-weight: 760;
}

@media (max-width: 1080px) {
  .landing-hero {
    padding: 42px 28px 34px;
  }

  .landing-hero-copy h1 {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .landing-hero {
    margin-top: 10px;
    padding: 28px 18px 24px;
    border-radius: 24px;
  }

  .landing-hero-copy h1 {
    font-size: 35px;
    line-height: 1.12;
  }

  .landing-hero-copy p {
    font-size: 14px;
  }

  .landing-hero-visual {
    min-height: 320px;
  }

  .landing-hero-visual::before {
    right: 0;
    bottom: 12px;
    width: 100%;
    height: 170px;
    border-radius: 28px;
  }

  .chart-card {
    width: 218px;
    border-radius: 17px;
  }

  .saving-card {
    right: 0;
    width: 150px;
    padding: 16px;
    border-radius: 17px;
  }

  .saving-card strong {
    font-size: 22px;
  }

  .hero-car {
    right: -8px;
    height: 220px;
  }
}

/* Landing hero CTA and metric cards final polish */
.landing-actions {
  align-items: center;
}

.landing-primary,
.landing-secondary {
  position: relative;
  overflow: hidden;
  gap: 10px;
  min-width: 214px;
  min-height: 60px;
  border-radius: 16px;
  font-weight: 720;
  letter-spacing: 0;
}

.landing-primary::before,
.landing-secondary::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.landing-primary::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 3h10l4 4v14H5V3Zm9 1.8V8h3.2L14 4.8ZM8 12h8v2H8v-2Zm0 4h5v2H8v-2Z'/%3E%3C/svg%3E");
}

.landing-secondary::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 13 6.6 7.3A4 4 0 0 1 10.2 5h3.6a4 4 0 0 1 3.6 2.3L20 13l2 1.4V20h-3a3 3 0 0 1-6 0h-2a3 3 0 0 1-6 0H2v-5.6L4 13Zm4.4-4L7 12h10l-1.4-3a2 2 0 0 0-1.8-1h-3.6a2 2 0 0 0-1.8 1Z'/%3E%3C/svg%3E");
}

.landing-primary::after,
.landing-secondary::after {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: 18px;
}

.landing-secondary::after {
  background: rgba(7, 93, 255, .08);
}

.landing-primary {
  background:
    radial-gradient(circle at 24% 0%, rgba(255,255,255,.35), transparent 34%),
    linear-gradient(180deg, #1c7cff 0%, #075dff 58%, #0047c9 100%);
  box-shadow: 0 20px 38px rgba(7, 93, 255, .30), inset 0 1px 0 rgba(255,255,255,.28);
}

.landing-secondary {
  border-color: rgba(7, 93, 255, .28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(244,249,255,.9));
  color: #075dff;
  box-shadow: 0 16px 34px rgba(26, 74, 145, .11), inset 0 1px 0 rgba(255,255,255,.9);
}

.landing-hero-visual {
  min-height: 500px;
}

.chart-card,
.saving-card {
  background: rgba(255,255,255,.88);
  border-color: rgba(139, 171, 216, .32);
  box-shadow: 0 28px 58px rgba(25, 67, 132, .15);
}

.chart-card {
  top: 24px;
  left: 0;
  width: min(318px, 60%);
  min-width: 270px;
  z-index: 4;
}

.saving-card {
  top: 156px;
  right: 0;
  width: 210px;
  z-index: 5;
}

.chart-card::before,
.saving-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,0) 44%);
}

.chart-title,
.mini-chart,
.chart-card strong,
.saving-card span,
.saving-card strong,
.saving-card em {
  position: relative;
  z-index: 1;
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-title::after {
  content: "LIVE";
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef6ff;
  color: #075dff;
  font-size: 10px;
  font-weight: 760;
}

.mini-chart {
  height: 126px;
}

.chart-card strong {
  top: 62px;
  right: 22px;
}

.saving-card span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #03a875;
  box-shadow: 0 0 0 5px rgba(3, 168, 117, .10);
}

.hero-car {
  right: -18px;
  bottom: 14px;
  z-index: 2;
  width: min(660px, 108%);
  height: 365px;
}

@media (max-width: 1080px) {
  .chart-card {
    width: min(300px, 58%);
    min-width: 245px;
  }

  .saving-card {
    top: 146px;
    width: 190px;
  }
}

@media (max-width: 720px) {
  .landing-primary,
  .landing-secondary {
    min-width: 0;
    width: 100%;
  }

  .landing-hero-visual {
    min-height: 360px;
  }

  .chart-card {
    top: 8px;
    left: 0;
    width: 64%;
    min-width: 205px;
  }

  .saving-card {
    top: 142px;
    right: 0;
    width: 155px;
  }

  .hero-car {
    right: -10px;
    bottom: 4px;
    height: 230px;
  }
}

/* Home embedded quote program */
.home-quote-program {
  align-items: stretch;
  gap: 28px;
  padding: 34px;
  border-color: rgba(145, 174, 214, .36);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(7, 93, 255, .08), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.96));
  box-shadow: 0 24px 60px rgba(25, 67, 132, .11);
}

.home-quote-copy {
  gap: 10px;
}

.home-quote-kicker {
  justify-self: start;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef6ff;
  color: #075dff;
  font-size: 12px;
  font-weight: 720;
}

.home-quote-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.home-quote-picker label,
.home-quote-condition > div:not(.home-mileage-chip) {
  display: grid;
  gap: 7px;
}

.home-quote-picker span,
.home-quote-condition span {
  color: #18365d;
  font-size: 13px;
  font-weight: 680;
}

.home-quote-picker select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d6e3f5;
  border-radius: 13px;
  background: rgba(255,255,255,.9);
  color: #173251;
  font-size: 14px;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.home-quote-picker select:focus {
  border-color: #075dff;
  box-shadow: 0 0 0 4px rgba(7, 93, 255, .10);
}

.home-quote-picker select:disabled {
  color: #9aa8ba;
  background: #f3f6fb;
}

.home-quote-condition {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.home-segment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid #dce7f6;
  border-radius: 14px;
  background: #f5f8fd;
}

.home-segment button {
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #53657d;
  font-weight: 640;
  cursor: pointer;
}

.home-segment button.active {
  background: #fff;
  color: #075dff;
  box-shadow: 0 8px 18px rgba(29, 75, 135, .10), inset 0 0 0 1px rgba(7, 93, 255, .12);
}

.home-mileage-chip {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 14px;
  background: #eef2f7;
  color: #607086;
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
}

.home-estimate-box {
  align-content: start;
  justify-items: stretch;
  min-height: 100%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,250,255,.96));
}

.home-estimate-box > span,
.home-estimate-box > small,
.home-estimate-box > p {
  text-align: center;
}

.home-estimate-box > strong {
  text-align: center;
  font-size: 40px;
}

.home-quote-list {
  display: grid;
  gap: 8px;
  min-height: 82px;
}

.home-quote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #e0e8f4;
  border-radius: 13px;
  background: #fff;
  color: #40526c;
  font-size: 13px;
}

.home-quote-row.best {
  border-color: rgba(7, 93, 255, .22);
  background: #f5f9ff;
}

.home-quote-row strong {
  color: #075dff;
  font-size: 15px;
  font-weight: 760;
  white-space: nowrap;
}

.home-quote-loading {
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(90deg, #eef3fa, #f9fbff, #eef3fa);
  background-size: 220% 100%;
  animation: quoteSkeleton 1.05s ease-in-out infinite;
}

.home-quote-loading.short {
  width: 76%;
}

.home-estimate-box .landing-primary.disabled {
  border-color: #d5dde9;
  background: #e9eef6;
  color: #8d9aad;
  box-shadow: none;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .home-quote-condition {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-quote-program {
    padding: 22px 16px;
  }

  .home-quote-picker {
    grid-template-columns: 1fr;
  }

  .home-estimate-box > strong {
    font-size: 34px;
  }
}

/* Quick consultation page */
.quick-consult-page {
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 48%, #eef5ff 100%);
}

.quick-consult-layout {
  width: min(760px, calc(100% - 28px));
  margin: 34px auto 70px;
  overflow: hidden;
}

.quick-consult-shell {
  display: grid;
  grid-template-columns: 100% 100%;
  border: 1px solid rgba(145, 174, 214, .38);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 26px 70px rgba(22, 68, 135, .13);
  overflow: hidden;
}

.quick-consult-screen {
  min-width: 0;
  padding: 34px;
  transform: translateX(0);
  transition: transform .42s cubic-bezier(.22, .86, .32, 1), opacity .28s ease;
}

.quick-consult-shell.is-complete .quick-consult-screen {
  transform: translateX(-100%);
}

.quick-consult-form-screen {
  background:
    radial-gradient(circle at 94% 4%, rgba(7, 93, 255, .10), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.98));
}

.quick-consult-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.quick-consult-hero span {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #075dff;
  font-size: 13px;
  font-weight: 700;
}

.quick-consult-hero h1 {
  margin: 0;
  color: #061f42;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.quick-consult-hero p {
  margin: 0;
  color: #52657f;
  font-size: 15px;
  line-height: 1.7;
}

.quick-consult-form {
  display: grid;
  gap: 10px;
}

.quick-consult-form label:not(.check-line) {
  display: grid;
  gap: 8px;
  color: #173251;
  font-size: 14px;
  font-weight: 620;
}

.quick-consult-form input,
.quick-consult-form textarea {
  width: 100%;
  border: 1px solid #d6e3f5;
  border-radius: 14px;
  background: #fff;
  color: #173251;
  font: inherit;
  outline: 0;
  box-sizing: border-box;
}

.quick-consult-form input {
  min-height: 52px;
  padding: 0 15px;
}

.quick-consult-form textarea {
  padding: 14px 15px;
  resize: vertical;
}

.quick-consult-form input:focus,
.quick-consult-form textarea:focus {
  border-color: #075dff;
  box-shadow: 0 0 0 4px rgba(7, 93, 255, .10);
}

.quick-check-line {
  margin-top: 4px;
  color: #63748b;
  font-size: 13px;
}

.quick-consult-submit {
  min-height: 56px;
  border-radius: 16px;
  font-size: 16px;
}

.quick-consult-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.quick-consult-complete-screen {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 560px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 16%, rgba(7, 93, 255, .12), transparent 32%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.quick-consult-complete-screen h1 {
  margin: 14px 0 8px;
  color: #061f42;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 0;
}

.quick-consult-complete-screen p {
  margin: 0;
  color: #52657f;
  line-height: 1.7;
}

.quick-complete-box {
  display: grid;
  gap: 7px;
  width: min(420px, 100%);
  margin: 24px 0;
  padding: 18px;
  border: 1px solid #dce7f6;
  border-radius: 18px;
  background: #fff;
  color: #52657f;
}

.quick-complete-box strong {
  color: #075dff;
  font-size: 20px;
}

@media (max-width: 640px) {
  .quick-consult-layout {
    width: min(430px, calc(100% - 20px));
    margin-top: 18px;
  }

  .quick-consult-screen {
    padding: 24px 18px;
  }

  .quick-consult-complete-screen {
    min-height: 520px;
  }
}
/* Home quote image pickers */
.home-image-field {
  display: grid;
  gap: 7px;
  position: relative;
}

.home-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.home-image-select {
  position: relative;
}

.home-image-select-button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid #d6e3f5;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  color: #173251;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.home-image-select-button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid #8da0ba;
  border-bottom: 2px solid #8da0ba;
  transform: rotate(45deg) translateY(-2px);
}

.home-image-select-button:focus-visible {
  outline: 0;
  border-color: #075dff;
  box-shadow: 0 0 0 4px rgba(7, 93, 255, .10);
}

.home-image-select-button:disabled {
  cursor: default;
  color: #9aa8ba;
  background: #f3f6fb;
}

.home-image-select-button img {
  width: 52px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #f8fbff;
}

.home-image-select-button span:not(.home-picker-placeholder) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 660;
}

.home-picker-placeholder {
  color: #75869e;
}

.home-image-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  max-height: 310px;
  padding: 8px;
  border: 1px solid #d6e3f5;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 50px rgba(21, 64, 128, .16);
  overflow: auto;
}

.home-image-select-menu.open {
  display: grid;
  gap: 6px;
}

.home-image-select-menu button {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #173251;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.home-image-select-menu button:hover,
.home-image-select-menu button:focus-visible {
  background: #f0f6ff;
  outline: 0;
}

.home-image-select-menu img,
.home-picker-noimage {
  width: 56px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #f7faff;
}

.home-image-select-menu span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 620;
}

.home-selected-vehicle-art {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin: -4px 0 4px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 80%, rgba(7, 93, 255, .13), transparent 45%),
    linear-gradient(180deg, #f7fbff, #eef5ff);
  overflow: hidden;
}

.home-selected-vehicle-art img {
  width: min(92%, 310px);
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(18, 52, 104, .16));
}

@media (max-width: 720px) {
  .home-image-select-menu {
    max-height: 260px;
  }

  .home-selected-vehicle-art {
    min-height: 130px;
  }

  .home-selected-vehicle-art img {
    height: 118px;
  }
}
/* Fixed single-row common header */
.site-common-header {
  grid-template-columns: minmax(118px, 1fr) minmax(0, auto) auto;
  column-gap: clamp(10px, 3vw, 34px);
  overflow: visible;
}

.site-common-header .landing-brand,
.site-common-header .landing-chat,
.site-common-header .landing-nav a {
  white-space: nowrap;
}

.site-common-header .landing-nav {
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.site-common-header .landing-nav::-webkit-scrollbar {
  display: none;
}

@media (max-width: 980px) {
  .site-common-header.landing-header {
    grid-template-columns: minmax(86px, 1fr) minmax(0, auto) auto;
    gap: 8px;
    align-items: center;
    min-height: 64px;
    padding: 10px 0;
  }

  .site-common-header .landing-nav {
    grid-column: auto;
    justify-content: flex-start;
    gap: 18px;
    font-size: 13px;
    padding: 0 2px;
  }

  .site-common-header .landing-nav a {
    flex: 0 0 auto;
    padding: 8px 0;
  }

  .site-common-header .landing-brand {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
  }

  .site-common-header .landing-chat {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
    border-radius: 10px;
  }

  .site-common-header .landing-chat::before {
    width: 14px;
    height: 14px;
    border-width: 1.6px;
  }
}

@media (max-width: 520px) {
  .site-common-header.landing-header {
    width: min(100% - 18px, 720px);
    grid-template-columns: minmax(72px, .82fr) minmax(118px, 1fr) auto;
    gap: 7px;
  }

  .site-common-header .landing-nav {
    gap: 10px;
    font-size: 12px;
  }

  .site-common-header .landing-brand {
    font-size: 14px;
  }

  .site-common-header .landing-chat {
    min-height: 34px;
    padding: 0 9px;
    font-size: 11px;
  }
}
/* Premium top quick consult CTA */
.site-common-header .landing-chat {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  padding: 0 18px 0 15px;
  border: 1px solid rgba(7, 93, 255, .30);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,246,255,.94));
  color: #075dff;
  font-weight: 760;
  letter-spacing: 0;
  box-shadow:
    0 14px 30px rgba(7, 93, 255, .12),
    inset 0 1px 0 rgba(255,255,255,.92);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

.site-common-header .landing-chat::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 11px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.78), transparent 30%),
    linear-gradient(135deg, #0b6bff, #0045d8);
  box-shadow:
    0 9px 18px rgba(7, 93, 255, .25),
    inset 0 1px 0 rgba(255,255,255,.35);
  flex: 0 0 auto;
}

.site-common-header .landing-chat::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 15px;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,.72) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .45s ease;
}

.site-common-header .landing-chat:hover,
.site-common-header .landing-chat:focus-visible {
  color: #003fc7;
  border-color: rgba(7, 93, 255, .52);
  box-shadow:
    0 18px 38px rgba(7, 93, 255, .18),
    inset 0 1px 0 rgba(255,255,255,.96);
  transform: translateY(-1px);
  outline: 0;
}

.site-common-header .landing-chat:hover::after,
.site-common-header .landing-chat:focus-visible::after {
  transform: translateX(120%);
}

.site-common-header .landing-chat span {
  position: relative;
}

@media (max-width: 980px) {
  .site-common-header .landing-chat {
    min-height: 40px;
    padding: 0 12px 0 10px;
    border-radius: 14px;
    font-size: 12px;
  }

  .site-common-header .landing-chat::before {
    width: 23px;
    height: 23px;
    border-radius: 9px;
  }
}

@media (max-width: 520px) {
  .site-common-header .landing-chat {
    min-height: 36px;
    padding: 0 10px 0 8px;
    border-radius: 13px;
    font-size: 11px;
  }

  .site-common-header .landing-chat::before {
    width: 20px;
    height: 20px;
    border-radius: 8px;
  }
}

/* Main specials to quote standard spacing */
.landing-panel#specials + .home-quote-program {
  margin-top: 18px;
}
/* Home quote anti-jitter */
.home-estimate-box {
  grid-template-rows: auto 22px 56px 22px minmax(202px, auto) auto 42px;
  min-height: 585px;
}

.home-estimate-box > span {
  min-height: 22px;
  display: block;
}

.home-estimate-box > strong {
  min-height: 56px;
  line-height: 1.22;
  transition: opacity .16s ease, filter .16s ease;
}

.home-estimate-box > small {
  min-height: 22px;
  display: block;
}

.home-quote-list {
  min-height: 202px;
  align-content: start;
  transition: opacity .16s ease, filter .16s ease;
}

.home-quote-list.is-refreshing,
.home-estimate-box > strong.is-refreshing {
  opacity: .62;
  filter: saturate(.92);
}

.home-quote-list:empty::before {
  content: "";
  display: block;
  min-height: 202px;
}

.home-quote-row {
  min-height: 45px;
  box-sizing: border-box;
}

#homeSelectedVehicle {
  min-height: 42px;
  display: grid;
  place-items: center;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .home-estimate-box {
    min-height: 545px;
  }

  .home-quote-list,
  .home-quote-list:empty::before {
    min-height: 184px;
  }
}
/* Home text pickers and centered arrows */
.home-text-select .home-image-select-button {
  min-height: 54px;
}

.home-text-select .home-image-select-button span:not(.home-picker-placeholder) {
  display: block;
  width: 100%;
}

.home-text-select-menu button {
  min-height: 48px;
  padding: 10px 12px;
}

.home-text-select-menu button span:last-child {
  white-space: normal;
  line-height: 1.35;
}

.deal-slider-nav {
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  text-align: center;
  font-size: 0;
}

.deal-slider-nav::before {
  content: attr(aria-label);
  display: none;
}

.deal-slider-nav-prev::after,
.deal-slider-nav-next::after {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.deal-slider-nav-prev::after {
  content: "<";
}

.deal-slider-nav-next::after {
  content: ">";
}

.deal-slider-nav-prev,
.deal-slider-nav-next {
  color: transparent;
}

.deal-slider-nav-prev::after,
.deal-slider-nav-next::after {
  color: #173251;
}

.landing-primary::after,
.landing-secondary::after,
.landing-outline-more::after,
.deal-card a::after,
.dark-cta-actions a::after,
.quick-card::after {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  text-align: center;
}

.quick-card::after {
  align-self: center;
}
/* Home quote picker stability and arrow centering */
.home-quote-program,
.home-quote-copy,
.home-quote-picker,
.home-image-field {
  overflow: visible;
}

.home-image-field {
  position: relative;
  z-index: 4;
}

.home-image-select.is-open,
.home-image-field:focus-within {
  z-index: 80;
}

.home-image-select-menu.open {
  z-index: 90;
}

.home-text-select-menu button span:last-child {
  white-space: normal;
  line-height: 1.35;
}

.deal-slider-nav {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

.deal-slider-nav-prev::after,
.deal-slider-nav-next::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #173251;
  font-size: 22px;
  line-height: 0;
  transform: translateY(-1px);
}

.deal-slider-nav-prev::after { content: "<"; }
.deal-slider-nav-next::after { content: ">"; }

.landing-primary::after,
.landing-secondary::after,
.landing-outline-more::after,
.deal-card a::after,
.dark-cta-actions a::after,
.quick-card::after {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
  transform: translateY(-1px);
}
/* Home quote heading spacing */
.home-quote-kicker + h2 {
  margin-top: 6px;
}
/* Hero visual redesign */
.landing-hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  border: 1px solid rgba(134, 170, 222, .34);
  border-radius: 30px;
  background:
    linear-gradient(rgba(109, 158, 229, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 158, 229, .07) 1px, transparent 1px),
    radial-gradient(circle at 76% 22%, rgba(8, 102, 255, .18), transparent 28%),
    linear-gradient(145deg, #f8fbff 0%, #edf5ff 52%, #e7f1ff 100%);
  background-size: 54px 54px, 54px 54px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 28px 72px rgba(28, 75, 140, .13);
  overflow: hidden;
}

.landing-hero-visual::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 44px;
  z-index: 1;
  width: 72%;
  height: 40%;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.18));
  box-shadow: 0 36px 64px rgba(51, 100, 166, .18);
  transform: skewX(-11deg);
}

.landing-hero-visual::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 48px;
  z-index: 1;
  width: 60%;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(18, 47, 89, .28), transparent 68%);
  filter: blur(8px);
}

.hero-car {
  position: absolute;
  right: -8px;
  bottom: 58px;
  z-index: 2;
  width: min(600px, 94%);
  height: 300px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 26px rgba(9, 30, 66, .24));
}

.chart-card,
.saving-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(119, 154, 206, .24);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 54px rgba(21, 62, 122, .16);
  backdrop-filter: blur(18px);
}

.chart-card {
  top: 42px;
  left: 28px;
  display: grid;
  gap: 10px;
  box-sizing: border-box;
  width: min(214px, 47%);
  padding: 18px 20px 17px;
}

.chart-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #e1eaf5;
  color: #102b54;
  font-size: 14px;
  font-weight: 760;
}

.chart-title::after {
  content: "LIVE";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #075dff;
  font-size: 10px;
  font-weight: 800;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 78px;
  padding: 18px 8px 4px;
}

.mini-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 9px 9px 3px 3px;
  background: linear-gradient(180deg, #bfd8ff 0%, #78a9ff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
}

.mini-chart span.active {
  background: linear-gradient(180deg, #247aff 0%, #0056e8 100%);
  box-shadow: 0 14px 24px rgba(0, 86, 232, .24);
}

.chart-card strong {
  position: static;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: -2px;
  padding: 0 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #1b78ff 0%, #0059ee 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 820;
  box-shadow: 0 12px 24px rgba(0, 91, 238, .24);
}

.saving-card {
  top: 148px;
  right: 20px;
  display: grid;
  gap: 10px;
  box-sizing: border-box;
  width: min(166px, 37%);
  padding: 18px 18px 20px;
}

.saving-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3f536e;
  font-size: 13px;
  font-weight: 740;
}

.saving-card span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #14b894;
  box-shadow: 0 0 0 4px rgba(20, 184, 148, .12);
}

.saving-card strong {
  color: #061f45;
  font-size: clamp(25px, 2.6vw, 32px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.saving-card em {
  padding-top: 14px;
  border-top: 1px solid #e2eaf4;
  color: #009b70;
  font-style: normal;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 780;
}

@media (max-width: 980px) {
  .landing-hero-visual {
    min-height: 430px;
  }

  .hero-car {
    right: -14px;
    bottom: 42px;
    height: 265px;
  }

  .chart-card {
    top: 28px;
    left: 22px;
    width: min(214px, 47%);
  }

  .saving-card {
    top: 88px;
    right: 18px;
    width: min(200px, 38%);
  }
}

@media (max-width: 560px) {
  .landing-hero-visual {
    min-height: 390px;
    border-radius: 24px;
  }

  .chart-card {
    top: 22px;
    left: 16px;
    width: 58%;
    padding: 16px;
    border-radius: 18px;
  }

  .mini-chart {
    gap: 8px;
    height: 82px;
  }

  .saving-card {
    top: 120px;
    right: 14px;
    width: 42%;
    padding: 17px 15px;
    border-radius: 18px;
  }

  .saving-card strong {
    font-size: 24px;
  }

  .saving-card em {
    font-size: 13px;
  }

  .hero-car {
    right: -24px;
    bottom: 30px;
    width: 108%;
    height: 220px;
  }
}
/* Final hero visual collision guard */
.landing-page .landing-hero .landing-hero-visual .chart-card {
  box-sizing: border-box !important;
  width: 214px !important;
  min-width: 0 !important;
  max-width: 47% !important;
}

.landing-page .landing-hero .landing-hero-visual .saving-card {
  box-sizing: border-box !important;
  top: 42px !important;
  width: 166px !important;
  min-width: 0 !important;
  max-width: 37% !important;
}

@media (max-width: 560px) {
  .landing-page .landing-hero .landing-hero-visual .chart-card {
    width: 58% !important;
    min-width: 0 !important;
    max-width: 58% !important;
  }

  .landing-page .landing-hero .landing-hero-visual .saving-card {
    top: 120px !important;
    width: 42% !important;
    min-width: 0 !important;
    max-width: 42% !important;
  }
}
/* Home quote result anti-jitter and count animation */
.home-estimate-box {
  grid-template-rows: auto 24px 54px 22px minmax(154px, auto) auto 34px;
}

.home-estimate-box > span {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
  white-space: nowrap;
}

.home-estimate-box > strong {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  will-change: contents;
}

.home-estimate-box > small {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
  white-space: nowrap;
}

.home-quote-list {
  min-height: 154px;
  align-content: start;
}

.home-quote-row {
  min-height: 44px;
  box-sizing: border-box;
}

.home-quote-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-quote-row strong {
  font-variant-numeric: tabular-nums;
}

.home-estimate-box > p {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .home-estimate-box {
    grid-template-rows: auto 24px 48px 22px minmax(154px, auto) auto 34px;
  }

  .home-estimate-box > strong {
    min-height: 48px;
  }
}
/* Common top and bottom frame */
.site-common-header,
.site-common-footer {
  flex: 0 0 auto;
}

.site-common-header {
  box-shadow: 0 10px 30px rgba(8, 33, 71, .04);
}

.site-common-footer {
  width: min(1180px, calc(100% - 56px));
  margin: 18px auto 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -14px 40px rgba(6, 30, 68, .08);
}

body:has(.site-common-header) {
  min-height: 100vh;
}

body:has(.site-common-header) > main {
  min-height: calc(100vh - 184px);
}

@media (max-width: 980px) {
  .site-common-footer {
    width: min(100% - 28px, 720px);
  }
}

@media (max-width: 560px) {
  .site-common-footer {
    margin-top: 14px;
    border-radius: 16px 16px 0 0;
  }
}
/* Unified radius system and quick consult drawer */
:root {
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

.site-common-header {
  border-right: 1px solid rgba(15, 41, 76, .08);
  border-bottom: 1px solid rgba(15, 41, 76, .12);
  border-left: 1px solid rgba(15, 41, 76, .08);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.landing-chat,
.landing-primary,
.landing-secondary,
.primary,
.complete-link,
.quick-drawer-submit {
  border-radius: var(--radius-sm);
}

.landing-hero-visual,
.home-quote-program,
.landing-panel,
.quote-program,
.truth-box,
.dark-cta,
.topbar,
.content-card,
.results-card,
.condition-card,
.quick-consult-shell,
.special-hero,
.preorder-list-hero,
.preorder-drawer-panel,
.quick-drawer-panel {
  border-radius: var(--radius-xl);
}

.quick-card,
.deal-card,
.home-image-field,
.home-image-select-button,
.home-image-select-menu,
.home-segment,
.home-mileage-chip,
.home-quote-row,
.estimate-box,
.special-item-card,
.preorder-brand-card,
.preorder-group-card {
  border-radius: var(--radius-md);
}

.site-common-footer {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.quick-drawer {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  justify-items: end;
  pointer-events: none;
  visibility: hidden;
}

.quick-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.quick-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 40, .46);
  opacity: 0;
  transition: opacity .24s ease;
  backdrop-filter: blur(5px);
}

.quick-drawer.is-open .quick-drawer-backdrop {
  opacity: 1;
}

.quick-drawer-panel {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100vw - 28px));
  height: calc(100vh - 28px);
  margin: 14px;
  overflow: hidden;
  border: 1px solid rgba(135, 166, 214, .38);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: -24px 0 70px rgba(9, 31, 67, .22);
  transform: translateX(108%);
  transition: transform .34s cubic-bezier(.2, .78, .2, 1);
}

.quick-drawer.is-open .quick-drawer-panel {
  transform: translateX(0);
}

.quick-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d8e3f2;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #52647e;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.quick-drawer-track {
  display: grid;
  grid-template-columns: 100% 100%;
  width: 200%;
  height: 100%;
  transform: translateX(0);
  transition: transform .32s cubic-bezier(.2, .78, .2, 1);
}

.quick-drawer-track.is-complete {
  transform: translateX(-50%);
}

.quick-drawer-screen {
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  padding: 54px 30px 30px;
}

.quick-drawer-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.quick-drawer-head span {
  justify-self: start;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #075dff;
  font-size: 12px;
  font-weight: 720;
}

.quick-drawer-head h2,
.quick-drawer-complete-screen h2 {
  margin: 0;
  color: #071f46;
  font-size: 28px;
  line-height: 1.22;
  font-weight: 780;
}

.quick-drawer-head p,
.quick-drawer-complete-screen p {
  margin: 0;
  color: #52647e;
  font-size: 15px;
  line-height: 1.62;
}

.quick-drawer-form {
  display: grid;
  gap: 14px;
}

.quick-drawer-form label:not(.check-line) {
  display: grid;
  gap: 8px;
  color: #173251;
  font-size: 13px;
  font-weight: 680;
}

.quick-drawer-form input[type="text"],
.quick-drawer-form input[type="tel"],
.quick-drawer-form textarea {
  width: 100%;
  border: 1px solid #d8e3f2;
  border-radius: var(--radius-md);
  background: #fff;
  color: #142948;
  font: inherit;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.quick-drawer-form input[type="text"],
.quick-drawer-form input[type="tel"] {
  min-height: 50px;
  padding: 0 15px;
}

.quick-drawer-form textarea {
  min-height: 124px;
  padding: 14px 15px;
  resize: vertical;
}

.quick-drawer-form input:focus,
.quick-drawer-form textarea:focus {
  border-color: #075dff;
  box-shadow: 0 0 0 4px rgba(7, 93, 255, .10);
}

.quick-drawer-check {
  align-items: flex-start;
  color: #607086;
  font-size: 13px;
  line-height: 1.45;
}

.quick-drawer-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: linear-gradient(180deg, #126cff 0%, #0057ed 100%);
  color: #fff;
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 87, 237, .20);
}

.quick-drawer-submit:disabled {
  opacity: .58;
  cursor: wait;
}

.quick-drawer-complete-screen {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.quick-drawer-complete-screen .complete-link {
  width: 100%;
  max-width: 260px;
  min-height: 50px;
  border: 0;
  cursor: pointer;
}

.quick-drawer-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .site-common-header {
    border-radius: 0 0 18px 18px;
  }

  .quick-drawer {
    align-items: end;
    justify-items: stretch;
  }

  .quick-drawer-panel {
    width: auto;
    height: min(88vh, 760px);
    margin: 10px;
    transform: translateY(108%);
    border-radius: 24px 24px 18px 18px;
  }

  .quick-drawer.is-open .quick-drawer-panel {
    transform: translateY(0);
  }

  .quick-drawer-screen {
    padding: 52px 20px 24px;
  }
}
/* Quick drawer transform hard override */
.quick-drawer.is-open .quick-drawer-panel { transform: translateX(0) !important; }
@media (max-width: 560px) { .quick-drawer.is-open .quick-drawer-panel { transform: translateY(0) !important; } }

/* Viewport fit polish for common header and quick consult drawer */
.site-common-header.landing-header {
  width: min(1180px, calc(100% - 28px));
  min-height: clamp(66px, 7vw, 84px);
  grid-template-columns: minmax(150px, 1fr) minmax(0, auto) auto;
  gap: clamp(12px, 2.6vw, 34px);
  padding: 0 clamp(14px, 2vw, 22px);
  box-sizing: border-box;
}

.site-common-header .landing-brand {
  min-width: 0;
  white-space: nowrap;
  font-size: clamp(20px, 2.2vw, 26px);
}

.site-common-header .landing-nav {
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.site-common-header .landing-nav::-webkit-scrollbar {
  display: none;
}

.site-common-header .landing-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-common-header .landing-chat {
  flex: 0 0 auto;
  min-height: clamp(40px, 4.5vw, 46px);
  padding-inline: clamp(12px, 1.8vw, 18px);
  white-space: nowrap;
}

.quick-drawer {
  padding: 14px;
  box-sizing: border-box;
}

.quick-drawer-panel {
  width: min(440px, calc(100vw - 28px));
  height: min(720px, calc(100dvh - 28px));
  max-height: calc(100dvh - 28px);
  margin: 0;
  align-self: center;
  border-radius: 24px;
  box-sizing: border-box;
}

.quick-drawer-screen {
  padding: clamp(48px, 5vw, 58px) clamp(20px, 3vw, 30px) clamp(22px, 3vw, 30px);
}

.quick-drawer-head h2,
.quick-drawer-complete-screen h2 {
  font-size: clamp(22px, 4vw, 28px);
}

.quick-drawer-form input[type="text"],
.quick-drawer-form input[type="tel"] {
  min-height: clamp(46px, 6vw, 50px);
}

@media (max-width: 820px) {
  .site-common-header.landing-header {
    grid-template-columns: minmax(140px, 1fr) auto;
    row-gap: 8px;
    min-height: auto;
    padding-block: 12px;
  }

  .site-common-header .landing-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    padding: 2px 0 0;
  }

  .site-common-header .landing-chat {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 560px) {
  .site-common-header.landing-header {
    width: min(100% - 16px, 520px);
    border-radius: 0 0 18px 18px;
    padding-inline: 12px;
  }

  .site-common-header .landing-nav {
    gap: 18px;
    font-size: 12px;
  }

  .site-common-header .landing-chat {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .quick-drawer {
    padding: 8px;
    align-items: end;
    justify-items: stretch;
  }

  .quick-drawer-panel {
    width: calc(100vw - 16px);
    height: min(84dvh, 680px);
    max-height: calc(100dvh - 16px);
    margin: 0;
    border-radius: 24px 24px 18px 18px;
  }

  .quick-drawer-screen {
    padding: 50px 18px 22px;
  }
}

/* Quick drawer inner slide sizing fix */
.quick-drawer-track {
  grid-template-columns: repeat(2, minmax(0, 50%));
}

.quick-drawer-screen {
  width: 100%;
  box-sizing: border-box;
}

/* Seamless header/footer finish */
body {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 42%, #f7fbff 100%);
}

.site-common-header.landing-header {
  background: rgba(247, 251, 255, .88);
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-common-header.landing-header::before,
.site-common-header.landing-header::after,
.landing-header::before,
.landing-header::after {
  display: none !important;
}

.site-common-header .landing-nav a {
  text-decoration: none !important;
}

.site-common-header .landing-chat {
  box-shadow: inset 0 0 0 1px rgba(7, 93, 255, .18), 0 8px 18px rgba(7, 93, 255, .08) !important;
}

.landing-footer,
.home-footer,
.site-footer {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0) 0%, #edf5ff 100%) !important;
  border: 0 !important;
  border-top: 0 !important;
  box-shadow: none !important;
}

.landing-footer::before,
.landing-footer::after,
.home-footer::before,
.home-footer::after,
.site-footer::before,
.site-footer::after {
  display: none !important;
}

body:has(.site-common-header) > main {
  border-top: 0 !important;
}

@media (max-width: 560px) {
  .site-common-header.landing-header {
    background: rgba(247, 251, 255, .94);
  }
}

/* Full-width connected header/footer */
.site-common-header.landing-header {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  padding-left: max(18px, calc((100vw - 1180px) / 2 + 22px)) !important;
  padding-right: max(18px, calc((100vw - 1180px) / 2 + 22px)) !important;
  background: rgba(247, 251, 255, .94) !important;
}

.site-common-footer,
.landing-footer,
.home-footer,
.site-footer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  padding-left: max(18px, calc((100vw - 1180px) / 2 + 22px)) !important;
  padding-right: max(18px, calc((100vw - 1180px) / 2 + 22px)) !important;
  color: #173251 !important;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0) 0%, #eef6ff 44%, #e7f1ff 100%) !important;
}

.site-common-footer *,
.landing-footer *,
.home-footer *,
.site-footer * {
  color: inherit !important;
  text-decoration: none !important;
}

.site-common-footer strong,
.landing-footer strong,
.home-footer strong,
.site-footer strong {
  color: #071f46 !important;
  font-weight: 760;
}

.site-common-footer span,
.site-common-footer small,
.landing-footer span,
.landing-footer small,
.home-footer span,
.home-footer small,
.site-footer span,
.site-footer small {
  color: #52647e !important;
}

@media (max-width: 560px) {
  .site-common-header.landing-header,
  .site-common-footer,
  .landing-footer,
  .home-footer,
  .site-footer {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    border-radius: 0 !important;
  }
}

/* Remove page-change blur/fog during normal navigation */
.site-common-header.landing-header {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.page-exit-left .layout,
.page-exit-right .layout {
  overflow: visible !important;
}

.page-enter .consult-card,
.page-exit-left .page-content,
.page-exit-right .page-content,
.page-exit-right .consult-card {
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Precise centered chevrons for all arrow-style controls */
:root {
  --chevron-right-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M5.25 3.2L8.95 6.9L5.25 10.6' stroke='%23075DFF' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --chevron-right-navy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M5.25 3.2L8.95 6.9L5.25 10.6' stroke='%23173251' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --chevron-left-navy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M8.75 3.2L5.05 6.9L8.75 10.6' stroke='%23173251' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.quick-card {
  grid-template-columns: 74px minmax(0, 1fr) 38px !important;
}

.quick-card::after {
  content: "" !important;
  display: block !important;
  justify-self: end !important;
  align-self: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(7, 93, 255, .10) !important;
  background-color: rgba(255, 255, 255, .78) !important;
  background-image: var(--chevron-right-blue) !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 14px 14px !important;
  box-shadow: 0 8px 18px rgba(7, 93, 255, .08) !important;
  transform: none !important;
  line-height: 1 !important;
  font-size: 0 !important;
  color: transparent !important;
}

.deal-slider-nav-prev,
.deal-slider-nav-next {
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  text-align: center !important;
  color: transparent !important;
}

.deal-slider-nav-prev::after,
.deal-slider-nav-next::after {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 15px 15px !important;
  transform: none !important;
  line-height: 0 !important;
  font-size: 0 !important;
}

.deal-slider-nav-prev::after {
  background-image: var(--chevron-left-navy) !important;
}

.deal-slider-nav-next::after {
  background-image: var(--chevron-right-navy) !important;
}

.landing-primary::after,
.landing-secondary::after,
.landing-outline-more::after,
.deal-card a::after,
.dark-cta-actions a::after {
  content: "" !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: 14px !important;
  height: 14px !important;
  margin-left: 8px !important;
  background-image: var(--chevron-right-navy) !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 14px 14px !important;
  transform: none !important;
  line-height: 0 !important;
  font-size: 0 !important;
  vertical-align: middle !important;
}

.landing-primary::after,
.deal-card a::after {
  background-image: var(--chevron-right-blue) !important;
}

/* Fixed-size slider chevron fallback */
.deal-slider-nav-prev::after,
.deal-slider-nav-next::after {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  background-position: 50% 50% !important;
  background-size: 15px 15px !important;
}

/* Guard against orphan dim overlay */
.quick-drawer[aria-hidden="true"],
.quick-drawer:not(.is-open) {
  visibility: hidden !important;
  pointer-events: none !important;
}

.quick-drawer[aria-hidden="true"] .quick-drawer-backdrop,
.quick-drawer:not(.is-open) .quick-drawer-backdrop {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.quick-drawer[aria-hidden="false"].is-open {
  visibility: visible !important;
  pointer-events: auto !important;
}

.quick-drawer[aria-hidden="false"].is-open .quick-drawer-backdrop {
  visibility: visible !important;
}

/* Hero copy, CTA and metric card tuning */
.landing-page .landing-hero-copy h1 {
  font-size: clamp(42px, 5.2vw, 68px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.landing-page .landing-primary {
  color: #fff !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(135deg, #1974ff 0%, #075dff 52%, #0048d8 100%) !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  box-shadow: 0 18px 36px rgba(7, 93, 255, .26), inset 0 1px 0 rgba(255,255,255,.28) !important;
  text-shadow: 0 1px 1px rgba(0, 28, 92, .28) !important;
  font-weight: 760 !important;
}

.landing-page .landing-primary:hover,
.landing-page .landing-primary:focus-visible {
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 42px rgba(7, 93, 255, .32), inset 0 1px 0 rgba(255,255,255,.34) !important;
}

.landing-page .landing-primary::after {
  filter: brightness(0) invert(1) !important;
  opacity: .96 !important;
}

.landing-page .landing-hero-visual .chart-card {
  top: 24px !important;
  left: 26px !important;
}

.landing-page .landing-hero-visual .saving-card {
  top: 92px !important;
  right: 18px !important;
}

.landing-page .mini-chart span {
  background: linear-gradient(180deg, #b9d4ff 0%, #7aa8f4 100%) !important;
  opacity: .82;
}

.landing-page .mini-chart span.active {
  background: linear-gradient(180deg, #16d69b 0%, #05a974 100%) !important;
  box-shadow: 0 16px 30px rgba(5, 169, 116, .26) !important;
  opacity: 1;
}

.landing-page .chart-card strong {
  background: linear-gradient(135deg, #05a974, #038a62) !important;
  color: #fff !important;
}

@media (max-width: 760px) {
  .landing-page .landing-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .landing-page .landing-hero-visual .chart-card {
    top: 16px !important;
    left: 14px !important;
  }

  .landing-page .landing-hero-visual .saving-card {
    top: 78px !important;
    right: 10px !important;
  }
}

/* 2026-06-29: Hero title sizing and entrance motion */
.landing-page .landing-hero-copy h1 {
  font-size: clamp(38px, 4.85vw, 62px) !important;
  line-height: 1.11 !important;
  animation: heroCopyRise .72s cubic-bezier(.2, .8, .2, 1) both;
  transform-origin: left center;
}

.landing-page .landing-hero-copy p {
  animation: heroCopyRise .72s cubic-bezier(.2, .8, .2, 1) .08s both;
}

.landing-page .landing-trust-pill {
  animation: heroSoftPop .68s cubic-bezier(.2, .8, .2, 1) .16s both;
}

.landing-page .landing-actions {
  animation: heroCopyRise .72s cubic-bezier(.2, .8, .2, 1) .24s both;
}

.landing-page .landing-hero-copy h1::after {
  content: "";
  display: block;
  width: min(168px, 36%);
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 101, 255, .9), rgba(20, 101, 255, 0));
  animation: heroLineSweep .9s cubic-bezier(.2, .8, .2, 1) .22s both;
}

@keyframes heroCopyRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroSoftPop {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(.985);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroLineSweep {
  from {
    opacity: 0;
    transform: scaleX(.15);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 760px) {
  .landing-page .landing-hero-copy h1 {
    font-size: clamp(31px, 9.1vw, 42px) !important;
  }

  .landing-page .landing-hero-copy h1::after {
    width: 132px;
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .landing-hero-copy h1,
  .landing-page .landing-hero-copy p,
  .landing-page .landing-trust-pill,
  .landing-page .landing-actions,
  .landing-page .landing-hero-copy h1::after {
    animation: none !important;
  }
}

/* 2026-06-29: Compact home estimate box until quote data appears */
.home-estimate-box {
  min-height: 0 !important;
  grid-template-rows: auto 22px 50px 20px 0fr auto 28px !important;
  gap: 12px !important;
  padding-block: 26px !important;
  transition: grid-template-rows .36s cubic-bezier(.2, .8, .2, 1), padding .36s cubic-bezier(.2, .8, .2, 1), box-shadow .36s ease;
}

.home-estimate-box:not(.has-quotes) {
  align-content: center !important;
}

.home-estimate-box.has-quotes {
  grid-template-rows: auto 24px 54px 22px minmax(154px, auto) auto 34px !important;
  gap: 16px !important;
  padding-block: 34px !important;
}

.home-estimate-box .home-selected-vehicle-art {
  transition: transform .36s cubic-bezier(.2, .8, .2, 1), opacity .28s ease;
}

.home-estimate-box:not(.has-quotes) .home-selected-vehicle-art {
  transform: scale(.88);
  opacity: .82;
}

.home-estimate-box.has-quotes .home-selected-vehicle-art {
  transform: scale(1);
  opacity: 1;
}

.home-estimate-box > strong {
  transition: font-size .3s ease, color .25s ease, transform .3s ease;
}

.home-estimate-box:not(.has-quotes) > strong {
  font-size: 34px !important;
  transform: translateY(-1px);
}

.home-estimate-box.has-quotes > strong {
  font-size: 40px !important;
  transform: translateY(0);
}

.home-estimate-box .home-quote-list {
  overflow: hidden;
  min-height: 0 !important;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .36s cubic-bezier(.2, .8, .2, 1), min-height .36s cubic-bezier(.2, .8, .2, 1);
}

.home-estimate-box.has-quotes .home-quote-list {
  min-height: 154px !important;
  opacity: 1;
  transform: translateY(0);
}

.home-estimate-box.has-quotes .home-quote-row {
  animation: quoteRowReveal .34s cubic-bezier(.2, .8, .2, 1) both;
}

.home-estimate-box.has-quotes .home-quote-row:nth-child(2) { animation-delay: .04s; }
.home-estimate-box.has-quotes .home-quote-row:nth-child(3) { animation-delay: .08s; }
.home-estimate-box.has-quotes .home-quote-row:nth-child(4) { animation-delay: .12s; }

@keyframes quoteRowReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 720px) {
  .home-estimate-box:not(.has-quotes) > strong {
    font-size: 30px !important;
  }

  .home-estimate-box.has-quotes > strong {
    font-size: 34px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-estimate-box,
  .home-estimate-box .home-selected-vehicle-art,
  .home-estimate-box > strong,
  .home-estimate-box .home-quote-list,
  .home-estimate-box.has-quotes .home-quote-row {
    transition: none !important;
    animation: none !important;
  }
}

/* 2026-06-29: Polished hero quote preview visual */
.landing-page .landing-hero-visual {
  min-height: 500px !important;
  border-radius: 34px !important;
  border: 1px solid rgba(120, 165, 232, .38) !important;
  background:
    radial-gradient(circle at 82% 16%, rgba(27, 120, 255, .18), transparent 28%),
    radial-gradient(circle at 30% 88%, rgba(3, 169, 244, .13), transparent 32%),
    linear-gradient(rgba(104, 153, 226, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 153, 226, .065) 1px, transparent 1px),
    linear-gradient(145deg, #f8fbff 0%, #edf6ff 52%, #e5f0ff 100%) !important;
  background-size: auto, auto, 56px 56px, 56px 56px, auto !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    0 34px 78px rgba(32, 83, 154, .15) !important;
  overflow: hidden !important;
}

.landing-page .landing-hero-visual::before {
  content: "" !important;
  position: absolute !important;
  left: 12% !important;
  right: 8% !important;
  bottom: 66px !important;
  z-index: 1 !important;
  height: 34% !important;
  border-radius: 44px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .22)),
    linear-gradient(135deg, rgba(28, 118, 255, .08), rgba(8, 47, 103, .02)) !important;
  box-shadow:
    0 34px 70px rgba(46, 102, 176, .18),
    inset 0 1px 0 rgba(255, 255, 255, .72) !important;
  transform: skewX(-9deg) !important;
}

.landing-page .landing-hero-visual::after {
  content: "" !important;
  position: absolute !important;
  left: 22% !important;
  right: 12% !important;
  bottom: 52px !important;
  z-index: 2 !important;
  height: 26px !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse, rgba(9, 31, 72, .28), transparent 70%) !important;
  filter: blur(9px) !important;
}

.landing-page .hero-car {
  right: 4% !important;
  bottom: 56px !important;
  z-index: 3 !important;
  width: 82% !important;
  height: 274px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: drop-shadow(0 30px 28px rgba(8, 30, 68, .22)) saturate(1.04) !important;
  animation: heroCarSettle .9s cubic-bezier(.2, .8, .2, 1) .12s both !important;
}

.landing-page .landing-hero-visual .chart-card,
.landing-page .landing-hero-visual .saving-card {
  z-index: 5 !important;
  border: 1px solid rgba(131, 170, 228, .34) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(244, 249, 255, .84)) !important;
  box-shadow:
    0 24px 54px rgba(24, 70, 139, .16),
    inset 0 1px 0 rgba(255, 255, 255, .82) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.landing-page .landing-hero-visual .chart-card {
  top: 38px !important;
  left: 32px !important;
  width: min(238px, 46%) !important;
  padding: 18px 20px 17px !important;
  animation: heroCardIn .72s cubic-bezier(.2, .8, .2, 1) both !important;
}

.landing-page .landing-hero-visual .saving-card {
  top: 42px !important;
  right: 28px !important;
  width: min(184px, 36%) !important;
  padding: 18px 18px 20px !important;
  animation: heroCardIn .72s cubic-bezier(.2, .8, .2, 1) .08s both !important;
}

.landing-page .chart-title {
  border-bottom-color: rgba(151, 178, 218, .34) !important;
  color: #0a2a57 !important;
  font-size: 13px !important;
  font-weight: 720 !important;
}

.landing-page .chart-title::after {
  min-height: 20px !important;
  background: linear-gradient(135deg, #eaf3ff, #dcecff) !important;
  color: #075dff !important;
  font-size: 9px !important;
  letter-spacing: .02em !important;
}

.landing-page .mini-chart {
  height: 76px !important;
  gap: 9px !important;
  padding: 17px 6px 2px !important;
}

.landing-page .mini-chart span {
  background: linear-gradient(180deg, #c5dcff 0%, #82aff6 100%) !important;
  opacity: .92 !important;
}

.landing-page .mini-chart span.active {
  background: linear-gradient(180deg, #18d4a2 0%, #08a87a 100%) !important;
  box-shadow: 0 14px 26px rgba(8, 168, 122, .25) !important;
}

.landing-page .chart-card strong {
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0fb990, #07886b) !important;
  color: #fff !important;
  font-size: 13px !important;
  box-shadow: 0 14px 24px rgba(7, 136, 107, .24) !important;
}

.landing-page .saving-card span {
  color: #31506f !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.landing-page .saving-card strong {
  color: #061f45 !important;
  font-size: clamp(24px, 2.4vw, 30px) !important;
  line-height: 1.12 !important;
  font-weight: 820 !important;
}

.landing-page .saving-card em {
  color: #07956f !important;
  font-size: 13px !important;
  font-weight: 720 !important;
  line-height: 1.42 !important;
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(.97);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroCarSettle {
  from {
    opacity: 0;
    transform: translate3d(28px, 18px, 0) scale(.985);
    filter: drop-shadow(0 24px 24px rgba(8, 30, 68, .16)) saturate(1.02) blur(3px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 30px 28px rgba(8, 30, 68, .22)) saturate(1.04) blur(0);
  }
}

@media (max-width: 980px) {
  .landing-page .landing-hero-visual {
    min-height: 430px !important;
  }

  .landing-page .hero-car {
    right: 2% !important;
    bottom: 42px !important;
    width: 86% !important;
    height: 244px !important;
  }

  .landing-page .landing-hero-visual .chart-card {
    top: 30px !important;
    left: 24px !important;
    width: min(226px, 48%) !important;
  }

  .landing-page .landing-hero-visual .saving-card {
    top: 36px !important;
    right: 22px !important;
    width: min(178px, 37%) !important;
  }
}

@media (max-width: 760px) {
  .landing-page .landing-hero-visual {
    min-height: 390px !important;
    border-radius: 26px !important;
  }

  .landing-page .landing-hero-visual .chart-card {
    top: 18px !important;
    left: 16px !important;
    width: 52% !important;
    padding: 15px 14px !important;
  }

  .landing-page .landing-hero-visual .saving-card {
    top: 26px !important;
    right: 14px !important;
    width: 40% !important;
    padding: 15px 14px !important;
  }

  .landing-page .saving-card strong {
    font-size: 22px !important;
  }

  .landing-page .saving-card em {
    font-size: 12px !important;
  }

  .landing-page .hero-car {
    right: 0 !important;
    bottom: 38px !important;
    width: 92% !important;
    height: 220px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .hero-car,
  .landing-page .landing-hero-visual .chart-card,
  .landing-page .landing-hero-visual .saving-card {
    animation: none !important;
  }
}

/* 2026-06-29: Hero preview spacing refinement */
.landing-page .hero-car {
  bottom: 22px !important;
  height: 260px !important;
  width: 84% !important;
}

.landing-page .landing-hero-visual::before {
  bottom: 42px !important;
  height: 32% !important;
}

.landing-page .landing-hero-visual::after {
  bottom: 26px !important;
}

@media (max-width: 980px) {
  .landing-page .hero-car {
    bottom: 24px !important;
    height: 230px !important;
    width: 88% !important;
  }
}

@media (max-width: 760px) {
  .landing-page .hero-car {
    bottom: 22px !important;
    height: 202px !important;
    width: 92% !important;
  }
}

/* 2026-06-29: Hero preview final car placement */
.landing-page .hero-car {
  bottom: 16px !important;
  height: 230px !important;
  width: 86% !important;
}

.landing-page .landing-hero-visual::before {
  bottom: 30px !important;
  height: 28% !important;
}

.landing-page .landing-hero-visual::after {
  bottom: 14px !important;
}

@media (max-width: 980px) {
  .landing-page .hero-car {
    bottom: 16px !important;
    height: 210px !important;
    width: 89% !important;
  }
}

@media (max-width: 760px) {
  .landing-page .hero-car {
    bottom: 14px !important;
    height: 184px !important;
    width: 94% !important;
  }
}

/* 2026-06-29: Main polish pass for quick cards, CTA, preview and trust box */
.landing-page .landing-hero-visual .saving-card {
  top: 38px !important;
  min-height: 200px !important;
  height: 200px !important;
  align-content: center !important;
}

.landing-page .hero-car {
  height: 246px !important;
  width: 92% !important;
  right: -4% !important;
  bottom: 10px !important;
  filter: drop-shadow(0 34px 34px rgba(8, 30, 68, .22)) saturate(1.04) contrast(1.02) !important;
}

.landing-quick-cards {
  align-items: stretch !important;
}

.quick-card {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) 34px !important;
  grid-template-rows: auto 1fr !important;
  grid-template-areas:
    "icon title arrow"
    "icon copy arrow" !important;
  column-gap: 18px !important;
  row-gap: 10px !important;
  align-items: center !important;
  min-height: 156px !important;
  padding: 24px 24px !important;
  background:
    radial-gradient(circle at 92% 78%, rgba(7, 93, 255, .075), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.96)) !important;
}

.quick-card .quick-icon {
  grid-area: icon !important;
  align-self: start !important;
  justify-self: center !important;
  margin-top: 4px !important;
}

.quick-card strong {
  grid-area: title !important;
  align-self: end !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px 8px !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #08254f !important;
  line-height: 1.26 !important;
  word-break: keep-all !important;
}

.quick-card small {
  grid-area: copy !important;
  align-self: start !important;
  max-width: 190px !important;
  margin: 0 !important;
  color: #536983 !important;
  line-height: 1.45 !important;
  word-break: keep-all !important;
}

.quick-card strong b {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 20px !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #126dff, #004de1) !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1 !important;
  box-shadow: 0 8px 16px rgba(7, 93, 255, .18) !important;
}

.quick-card::after {
  grid-area: arrow !important;
  align-self: center !important;
  justify-self: center !important;
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  transform: none !important;
}

.site-common-header .landing-chat {
  min-width: 132px !important;
  min-height: 46px !important;
  padding: 0 18px 0 12px !important;
  gap: 10px !important;
  border: 1px solid rgba(7, 93, 255, .36) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 16% 20%, rgba(255,255,255,.95), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 100%) !important;
  color: #075dff !important;
  box-shadow:
    0 16px 36px rgba(7, 93, 255, .14),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}

.site-common-header .landing-chat::before {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 36% 30%, rgba(255,255,255,.78), transparent 27%),
    linear-gradient(145deg, #2f86ff 0%, #075dff 52%, #003dc6 100%) !important;
  box-shadow:
    0 9px 20px rgba(7, 93, 255, .30),
    inset 0 1px 0 rgba(255,255,255,.34) !important;
}

.site-common-header .landing-chat::after {
  border-radius: 999px !important;
}

.site-common-header .landing-chat .landing-chat-label {
  font-weight: 730 !important;
  white-space: nowrap !important;
}

.home-estimate-box .landing-primary {
  position: relative !important;
  min-height: 58px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 46%),
    linear-gradient(135deg, #1b7dff 0%, #075dff 54%, #0046d8 100%) !important;
  color: #fff !important;
  font-weight: 720 !important;
  box-shadow:
    0 18px 34px rgba(7, 93, 255, .28),
    inset 0 1px 0 rgba(255,255,255,.30) !important;
}

.home-estimate-box .landing-primary::before {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 8px !important;
  background: currentColor !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6Zm-1 2.5L17.5 9H13V4.5ZM8 13h8v2H8v-2Zm0 4h8v2H8v-2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6Zm-1 2.5L17.5 9H13V4.5ZM8 13h8v2H8v-2Zm0 4h8v2H8v-2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.home-estimate-box .landing-primary.disabled {
  background: linear-gradient(135deg, #dce7f6, #cbd8ea) !important;
  color: #7f90a8 !important;
  box-shadow: none !important;
}

.truth-box {
  position: relative !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: center !important;
  padding: 30px 34px !important;
  border: 1px solid rgba(111, 163, 237, .30) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 8% 50%, rgba(7, 93, 255, .13), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,247,255,.94)) !important;
  box-shadow:
    0 24px 56px rgba(30, 78, 145, .10),
    inset 0 1px 0 rgba(255,255,255,.86) !important;
  overflow: hidden !important;
}

.truth-box::after {
  content: "실견적 데이터 기반" !important;
  position: absolute !important;
  right: 28px !important;
  top: 22px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(7, 93, 255, .08) !important;
  color: #075dff !important;
  font-size: 12px !important;
  font-weight: 720 !important;
}

.truth-icon {
  width: 76px !important;
  height: 76px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.88), transparent 30%),
    linear-gradient(145deg, #ddecff, #bcd8ff) !important;
  color: #075dff !important;
  box-shadow:
    0 18px 30px rgba(7, 93, 255, .14),
    inset 0 1px 0 rgba(255,255,255,.84) !important;
  font-size: 32px !important;
  font-weight: 800 !important;
}

.truth-box h2 {
  margin: 0 0 10px !important;
  color: #08254f !important;
  font-size: clamp(24px, 2.2vw, 32px) !important;
  line-height: 1.25 !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
}

.truth-box p {
  max-width: 760px !important;
  color: #405773 !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

@media (max-width: 760px) {
  .quick-card {
    grid-template-columns: 64px minmax(0, 1fr) 30px !important;
    min-height: 126px !important;
    padding: 18px !important;
  }

  .quick-card strong {
    font-size: 18px !important;
  }

  .site-common-header .landing-chat {
    min-width: 0 !important;
    min-height: 38px !important;
  }

  .truth-box {
    grid-template-columns: 1fr !important;
    padding: 26px 22px !important;
  }

  .truth-box::after {
    position: static !important;
    justify-self: start !important;
    order: -1 !important;
  }
}

/* 2026-06-29: Precise quick-card spacing and hero card alignment */
.landing-page .landing-hero-visual .saving-card {
  top: 38px !important;
}

.quick-card {
  grid-template-columns: 92px minmax(0, 1fr) 34px !important;
  column-gap: 22px !important;
}

.quick-card .quick-icon {
  width: 82px !important;
  height: 82px !important;
}

.quick-card .quick-icon img {
  width: 82px !important;
  height: 82px !important;
  border-radius: 22px !important;
}

.quick-card strong {
  font-size: 19px !important;
}

.quick-card.hot strong {
  max-width: 150px !important;
}

@media (max-width: 760px) {
  .quick-card {
    grid-template-columns: 70px minmax(0, 1fr) 30px !important;
    column-gap: 16px !important;
  }

  .quick-card .quick-icon,
  .quick-card .quick-icon img {
    width: 64px !important;
    height: 64px !important;
  }
}

/* 2026-06-29: Exact hero metric card top alignment */
.landing-page .landing-hero .landing-hero-visual .saving-card,
.landing-page .landing-hero-visual .saving-card {
  top: 38px !important;
}

/* 2026-06-29: Quick-card readable text column */
.quick-card {
  grid-template-columns: 76px minmax(0, 1fr) 32px !important;
  column-gap: 20px !important;
}

.quick-card .quick-icon,
.quick-card .quick-icon img {
  width: 72px !important;
  height: 72px !important;
}

.quick-card .quick-icon img {
  border-radius: 20px !important;
}

.quick-card strong {
  font-size: 18px !important;
  line-height: 1.28 !important;
}

.quick-card.hot strong {
  max-width: none !important;
}

@media (max-width: 760px) {
  .quick-card {
    grid-template-columns: 62px minmax(0, 1fr) 28px !important;
    column-gap: 14px !important;
  }

  .quick-card .quick-icon,
  .quick-card .quick-icon img {
    width: 58px !important;
    height: 58px !important;
  }
}

/* 2026-06-29: Header/footer logo and trust icon update */
.site-common-header .landing-brand {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
  height: 46px !important;
}

.site-logo-img {
  display: block !important;
  width: 168px !important;
  max-width: 32vw !important;
  height: auto !important;
  object-fit: contain !important;
}

.site-common-header .landing-chat {
  min-width: 104px !important;
  min-height: 42px !important;
  padding: 0 20px !important;
  justify-content: center !important;
  gap: 0 !important;
}

.site-common-header .landing-chat::before {
  display: none !important;
  content: none !important;
}

.site-common-footer .site-footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.site-footer-logo {
  display: block !important;
  width: 150px !important;
  max-width: 42vw !important;
  height: auto !important;
  object-fit: contain !important;
}

.truth-icon {
  font-size: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.truth-icon::before {
  content: "" !important;
  width: 42px !important;
  height: 42px !important;
  display: block !important;
  background: linear-gradient(135deg, #075dff 0%, #0246ce 100%) !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2 4.5 5.2v5.7c0 4.7 3.1 9 7.5 10.5 4.4-1.5 7.5-5.8 7.5-10.5V5.2L12 2Zm3.7 8.3-4.5 4.7-2.5-2.5 1.2-1.2 1.3 1.3 3.3-3.5 1.2 1.2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2 4.5 5.2v5.7c0 4.7 3.1 9 7.5 10.5 4.4-1.5 7.5-5.8 7.5-10.5V5.2L12 2Zm3.7 8.3-4.5 4.7-2.5-2.5 1.2-1.2 1.3 1.3 3.3-3.5 1.2 1.2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.truth-icon::after {
  content: "" !important;
  position: absolute !important;
  inset: 12px !important;
  border-radius: 999px !important;
  background: rgba(7, 93, 255, .09) !important;
  z-index: -1 !important;
}

@media (max-width: 760px) {
  .site-logo-img {
    width: 138px !important;
    max-width: 38vw !important;
  }

  .site-common-header .landing-chat {
    min-width: 86px !important;
    min-height: 36px !important;
    padding: 0 13px !important;
  }

  .site-footer-logo {
    width: 132px !important;
  }
}
/* 2026-06-29: Smooth common shell page entry */
body:has(.site-common-header) {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 58%, #f7fbff 100%) !important;
}

.site-common-header,
.site-common-footer {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body:has(.site-common-header) > main {
  animation: commonMainEnter .28s cubic-bezier(.22, .8, .22, 1) both;
  will-change: transform, opacity;
}

@keyframes commonMainEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:has(.site-common-header) > main {
    animation: none !important;
  }
}
/* 2026-06-29: Cross-document page transition for shared header/footer */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .24s;
  animation-timing-function: cubic-bezier(.22, .8, .22, 1);
}

.site-common-header {
  view-transition-name: common-header;
}

.site-common-footer {
  view-transition-name: common-footer;
}

::view-transition-old(common-header),
::view-transition-new(common-header),
::view-transition-old(common-footer),
::view-transition-new(common-footer) {
  animation-duration: .01s;
}
/* 2026-06-29: Quote page uses homepage quick quote program */
.quote-home-main {
  display: grid !important;
  gap: 22px !important;
}

.quote-page-hero {
  max-width: 1100px !important;
  width: min(100%, 1100px) !important;
  margin: 0 auto !important;
  padding: 34px 36px !important;
  border: 1px solid rgba(159, 190, 235, .62) !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,243,255,.92)) !important;
  box-shadow: 0 22px 54px rgba(10, 50, 110, .08) !important;
}

.quote-page-hero span {
  display: inline-flex !important;
  align-items: center !important;
  height: 28px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  background: rgba(0, 93, 255, .09) !important;
  color: #075dff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.quote-page-hero h1 {
  margin: 14px 0 10px !important;
  color: #071f45 !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.quote-page-hero p {
  max-width: 720px !important;
  margin: 0 !important;
  color: #4a5f7f !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.quote-home-page .home-quote-program {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .quote-page-hero {
    padding: 24px 20px !important;
    border-radius: 22px !important;
  }
}
/* 2026-06-29: Quote page hero and estimate overflow fix */
.quote-page-truth-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr) !important;
  gap: 28px !important;
  align-items: center !important;
  min-height: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.quote-page-truth-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 93, 255, .14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(225,240,255,.84)) !important;
  pointer-events: none !important;
}

.quote-page-hero-copy,
.quote-page-hero-visual {
  position: relative !important;
  z-index: 1 !important;
}

.quote-page-hero-text {
  display: grid !important;
  gap: 10px !important;
  max-width: 710px !important;
}

.quote-page-hero-text p {
  margin: 0 !important;
  color: #415979 !important;
  font-size: 15px !important;
  line-height: 1.68 !important;
  word-break: keep-all !important;
}

.quote-page-hero-visual {
  min-height: 260px !important;
  display: grid !important;
  place-items: center !important;
}

.quote-page-hero-visual img {
  width: min(100%, 390px) !important;
  max-height: 230px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 24px 34px rgba(7, 31, 69, .2)) !important;
}

.quote-hero-orbit {
  position: absolute !important;
  width: min(88%, 360px) !important;
  aspect-ratio: 1.4 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(198,224,255,.42)) !important;
  box-shadow: inset 0 0 0 1px rgba(75, 137, 221, .2), 0 22px 52px rgba(18, 87, 170, .12) !important;
}

.quote-hero-card {
  position: absolute !important;
  right: 10px !important;
  top: 16px !important;
  display: grid !important;
  gap: 3px !important;
  padding: 13px 15px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.86) !important;
  border: 1px solid rgba(154, 190, 238, .55) !important;
  box-shadow: 0 16px 32px rgba(8, 48, 110, .1) !important;
}

.quote-hero-card small {
  color: #6680a5 !important;
  font-size: 11px !important;
}

.quote-hero-card strong {
  color: #075dff !important;
  font-size: 16px !important;
}

.quote-home-page .home-quote-program {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px) !important;
  align-items: stretch !important;
  overflow: visible !important;
}

.quote-home-page .home-estimate-box {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 330px !important;
  overflow: hidden !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.quote-home-page .home-estimate-box > strong {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  font-size: clamp(30px, 4.2vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.quote-home-page .home-estimate-box > span,
.quote-home-page .home-estimate-box > small,
.quote-home-page .home-estimate-box > p {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: keep-all !important;
}

.quote-home-page .home-estimate-box .landing-primary {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 920px) {
  .quote-page-truth-hero,
  .quote-home-page .home-quote-program {
    grid-template-columns: 1fr !important;
  }

  .quote-page-hero-visual {
    min-height: 210px !important;
  }

  .quote-home-page .home-estimate-box {
    max-width: none !important;
  }
}

@media (max-width: 560px) {
  .quote-page-hero-text p {
    font-size: 14px !important;
  }

  .quote-page-hero-visual img {
    width: min(100%, 300px) !important;
  }

  .quote-hero-card {
    right: 0 !important;
    top: 0 !important;
  }
}
/* 2026-06-29: Home quote estimate step guide */
.home-estimate-box > strong.home-step-guide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  padding: 0 18px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(7, 93, 255, .09), rgba(0, 178, 165, .08)) !important;
  border: 1px solid rgba(91, 145, 225, .24) !important;
  color: #075dff !important;
  font-size: clamp(18px, 2.3vw, 24px) !important;
  line-height: 1.25 !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: keep-all !important;
  letter-spacing: 0 !important;
}

.home-estimate-box:not(.has-quotes) > strong.home-step-guide {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.home-estimate-box.has-quotes > strong:not(.home-step-guide) {
  white-space: nowrap !important;
}
/* 2026-06-29: stabilize quote status label */
#homeQuoteStatus { min-height: 20px; display: inline-flex; align-items: center; justify-content: center; }

/* 2026-06-29: quote page comparison monitor visual */
.quote-page-truth-hero .quote-page-hero-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 300px !important;
  padding: 18px !important;
}

.quote-page-truth-hero .quote-page-hero-visual img {
  width: min(100%, 380px) !important;
  max-height: 270px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 24px 34px rgba(5, 55, 132, .15)) !important;
}

.quote-page-truth-hero .quote-hero-orbit {
  display: none !important;
}

.quote-page-truth-hero .quote-hero-card {
  right: 20px !important;
  top: 22px !important;
}

.quote-home-page #homeConsultLink::before {
  display: none !important;
  content: none !important;
}

.quote-home-page #homeConsultLink {
  gap: 8px !important;
}
/* 2026-06-29: main hero action buttons without left emoji icons */
.landing-hero .landing-actions .landing-primary::before,
.landing-hero .landing-actions .landing-secondary::before {
  display: none !important;
  content: none !important;
}

.landing-hero .landing-actions .landing-primary,
.landing-hero .landing-actions .landing-secondary {
  gap: 10px !important;
}

/* 2026-06-29: quote page section title spacing */
.quote-home-page .home-quote-kicker + h2 {
  margin-top: 14px !important;
}
/* 2026-06-29: center quick consult modal with smooth open/close */
.quick-drawer {
  display: block !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.quick-drawer.is-closing {
  visibility: visible !important;
  pointer-events: none !important;
}

.quick-drawer-backdrop {
  transition: opacity .32s ease, backdrop-filter .32s ease !important;
}

.quick-drawer.is-closing .quick-drawer-backdrop {
  visibility: visible !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.quick-drawer-panel {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  width: min(430px, calc(100vw - 32px)) !important;
  height: min(720px, calc(100dvh - 44px)) !important;
  max-height: calc(100dvh - 44px) !important;
  margin: 0 !important;
  align-self: auto !important;
  border-radius: 24px !important;
  opacity: 0 !important;
  transform: translate(-50%, -47%) scale(.94) !important;
  transform-origin: 50% 50% !important;
  box-shadow: 0 30px 80px rgba(6, 31, 70, .24) !important;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), opacity .24s ease !important;
  will-change: transform, opacity !important;
}

.quick-drawer.is-open .quick-drawer-panel {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

.quick-drawer.is-closing .quick-drawer-panel {
  visibility: visible !important;
  opacity: 0 !important;
  transform: translate(-50%, -47%) scale(.96) !important;
}

@media (max-width: 560px) {
  .quick-drawer {
    padding: 0 !important;
    align-items: initial !important;
    justify-items: initial !important;
  }

  .quick-drawer-panel {
    width: min(430px, calc(100vw - 20px)) !important;
    height: min(84dvh, 680px) !important;
    max-height: calc(100dvh - 20px) !important;
    border-radius: 24px !important;
    transform: translate(-50%, -45%) scale(.94) !important;
  }

  .quick-drawer.is-open .quick-drawer-panel {
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .quick-drawer.is-closing .quick-drawer-panel {
    transform: translate(-50%, -45%) scale(.96) !important;
  }
}
/* 2026-06-29: current comparison consultation page */
.compare-consult-layout {
  padding-top: 26px !important;
}

.compare-consult-card {
  max-width: 760px !important;
  margin-inline: auto !important;
}

.compare-consult-head .home-quote-kicker {
  margin-bottom: 14px !important;
}

.compare-consult-head h1 {
  letter-spacing: 0 !important;
  word-break: keep-all !important;
}

.compare-consult-summary img,
.compare-consult-page .complete-vehicle-image {
  object-fit: contain !important;
}

.compare-condition-summary dt,
.compare-condition-summary dd {
  word-break: keep-all !important;
}
/* 2026-06-29: keep home quote dropdown fields fixed while selected text gets long */
.home-quote-picker {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start !important;
}

.home-quote-picker label,
.home-quote-picker .home-image-field,
.home-quote-picker .home-image-select,
.home-quote-picker .home-image-select-button {
  min-width: 0 !important;
  max-width: 100% !important;
}

.home-quote-picker .home-image-select-button {
  height: 54px !important;
  min-height: 54px !important;
  overflow: hidden !important;
}

.home-quote-picker .home-image-select-button img,
.home-quote-picker .home-picker-noimage {
  flex: 0 0 auto !important;
}

.home-quote-picker .home-image-select-button span,
.home-quote-picker .home-image-select-button span:not(.home-picker-placeholder),
.home-quote-picker .home-text-select .home-image-select-button span:not(.home-picker-placeholder) {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.home-quote-picker .home-image-select-button::after {
  flex: 0 0 8px !important;
}

@media (max-width: 520px) {
  .home-quote-picker {
    grid-template-columns: 1fr !important;
  }
}

/* 2026-06-29: replace green accents in main hero preview with sky-blue accents */
.landing-page .landing-hero-visual .mini-chart span.active {
  background: linear-gradient(180deg, #7dd3fc 0%, #0ea5e9 100%) !important;
  box-shadow: 0 14px 26px rgba(14, 165, 233, .24) !important;
}

.landing-page .landing-hero-visual .chart-card strong {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%) !important;
  box-shadow: 0 14px 24px rgba(2, 132, 199, .24) !important;
}

.landing-page .landing-hero-visual .saving-card span::before {
  background: #38bdf8 !important;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, .16) !important;
}

.landing-page .landing-hero-visual .saving-card em {
  color: #0284c7 !important;
}
/* 2026-06-30: Header consultation action buttons */
.site-common-header .landing-contact-actions {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  min-width: 0 !important;
  white-space: nowrap !important;
}

.site-common-header .landing-contact-actions .landing-chat {
  min-width: auto !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 10px 24px rgba(16, 94, 255, .12) !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
}

.site-common-header .landing-contact-actions .landing-chat:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 28px rgba(16, 94, 255, .18) !important;
}

.site-common-header .landing-chat-primary {
  color: #ffffff !important;
  border-color: #1167ff !important;
  background: linear-gradient(135deg, #287dff 0%, #075dff 100%) !important;
}

.site-common-header .landing-chat-kakao {
  color: #263238 !important;
  border-color: #f4cf36 !important;
  background: linear-gradient(135deg, #ffe870 0%, #ffd43b 100%) !important;
  box-shadow: 0 10px 24px rgba(245, 196, 0, .16) !important;
}

.site-common-header .landing-chat-phone {
  color: #064f43 !important;
  border-color: #a5eadc !important;
  background: linear-gradient(135deg, #e9fff9 0%, #c8f7ee 100%) !important;
  box-shadow: 0 10px 24px rgba(17, 185, 151, .13) !important;
}

@media (max-width: 980px) {
  .site-common-header .landing-contact-actions {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 2px !important;
    scrollbar-width: none !important;
  }

  .site-common-header .landing-contact-actions::-webkit-scrollbar {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .site-common-header .landing-contact-actions {
    gap: 6px !important;
  }

  .site-common-header .landing-contact-actions .landing-chat {
    min-height: 34px !important;
    padding: 0 11px !important;
    font-size: 12px !important;
  }
}

/* 2026-06-30: Header kakao/phone icon-only buttons */
.site-common-header .landing-contact-actions .landing-chat-icon-only {
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.site-common-header .landing-contact-actions .landing-chat-icon-only .landing-chat-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-common-header .landing-contact-actions .landing-chat-icon-only::after {
  content: "" !important;
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  background: currentColor !important;
}

.site-common-header .landing-contact-actions .landing-chat-kakao::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 4C7.03 4 3 7.13 3 11c0 2.36 1.5 4.45 3.8 5.72l-.55 2.34c-.08.34.3.58.58.37l2.7-1.96c.79.18 1.62.27 2.47.27 4.97 0 9-3.13 9-7S16.97 4 12 4Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 4C7.03 4 3 7.13 3 11c0 2.36 1.5 4.45 3.8 5.72l-.55 2.34c-.08.34.3.58.58.37l2.7-1.96c.79.18 1.62.27 2.47.27 4.97 0 9-3.13 9-7S16.97 4 12 4Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.site-common-header .landing-contact-actions .landing-chat-phone::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM8 4h8v13H8V4Zm4 16a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM8 4h8v13H8V4Zm4 16a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

@media (max-width: 560px) {
  .site-common-header .landing-contact-actions .landing-chat-icon-only {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
  }

  .site-common-header .landing-contact-actions .landing-chat-icon-only::after {
    width: 18px !important;
    height: 18px !important;
  }
}
/* 2026-06-30: Header contact image icons */
.site-common-header .landing-contact-actions .landing-chat-icon-only {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-common-header .landing-contact-actions .landing-chat-icon-only::after {
  display: none !important;
}

.site-common-header .landing-contact-actions .landing-chat-icon-img {
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(15, 49, 107, 0.14) !important;
}

.site-common-header .landing-contact-actions .landing-chat-icon-only:hover .landing-chat-icon-img {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 49, 107, 0.2) !important;
}

@media (max-width: 560px) {
  .site-common-header .landing-contact-actions .landing-chat-icon-img {
    width: 30px !important;
    height: 30px !important;
    border-radius: 9px !important;
  }
}
/* 2026-06-30: Main hero split into simple vertical blocks */
.landing-page .landing-hero {
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  padding: 34px 38px 36px !important;
  min-height: auto !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(239,247,255,.92) 100%),
    linear-gradient(135deg, rgba(218,235,255,.9), rgba(255,255,255,.95)) !important;
}

.landing-page .landing-hero-copy {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-areas:
    "title actions"
    "desc actions"
    "pill actions" !important;
  align-items: center !important;
  gap: 10px 28px !important;
  align-self: stretch !important;
}

.landing-page .landing-hero-copy h1 {
  grid-area: title !important;
  max-width: 620px !important;
  font-size: clamp(38px, 4.4vw, 58px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.landing-page .landing-hero-copy p {
  grid-area: desc !important;
  max-width: 600px !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #48607e !important;
}

.landing-page .landing-trust-pill {
  grid-area: pill !important;
  width: fit-content !important;
  padding: 9px 14px !important;
  font-size: 14px !important;
  background: rgba(255,255,255,.8) !important;
}

.landing-page .landing-actions {
  grid-area: actions !important;
  display: grid !important;
  gap: 10px !important;
  width: 230px !important;
  margin-top: 0 !important;
}

.landing-page .landing-actions .landing-primary,
.landing-page .landing-actions .landing-secondary {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 18px !important;
  justify-content: space-between !important;
}

.landing-page .landing-hero-visual {
  min-height: 322px !important;
  width: 100% !important;
  border: 1px solid rgba(50, 130, 230, .18) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background:
    linear-gradient(135deg, rgba(236,248,255,.96), rgba(218,237,255,.86)),
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(180,222,255,.34)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 40px rgba(31, 82, 146, .08) !important;
}

.landing-page .landing-hero-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 18px !important;
  border-radius: 18px !important;
  background-image:
    linear-gradient(rgba(70, 135, 210, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 135, 210, .08) 1px, transparent 1px) !important;
  background-size: 74px 74px !important;
  opacity: .7 !important;
}

.landing-page .landing-hero-visual::after {
  content: "" !important;
  position: absolute !important;
  right: 8% !important;
  bottom: 28px !important;
  width: 42% !important;
  height: 112px !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(99, 181, 255, .28), rgba(255,255,255,0) 72%) !important;
}

.landing-page .landing-hero-visual .chart-card {
  left: 30px !important;
  top: 32px !important;
  width: 260px !important;
  min-height: 204px !important;
  padding: 24px !important;
}

.landing-page .landing-hero-visual .saving-card {
  top: 32px !important;
  right: 30px !important;
  width: 210px !important;
  min-height: 204px !important;
  height: 204px !important;
  padding: 24px !important;
}

.landing-page .landing-hero-visual .hero-car {
  right: 14% !important;
  bottom: 12px !important;
  width: 56% !important;
  height: 238px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 26px 34px rgba(22, 58, 102, .2)) !important;
}

@media (max-width: 980px) {
  .landing-page .landing-hero {
    padding: 30px 28px 32px !important;
  }

  .landing-page .landing-hero-copy {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "desc"
      "pill"
      "actions" !important;
  }

  .landing-page .landing-actions {
    width: 100% !important;
    max-width: 440px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .landing-page .landing-hero-visual {
    min-height: 300px !important;
  }

  .landing-page .landing-hero-visual .chart-card {
    left: 22px !important;
    width: 230px !important;
  }

  .landing-page .landing-hero-visual .saving-card {
    right: 22px !important;
    width: 190px !important;
  }

  .landing-page .landing-hero-visual .hero-car {
    right: 9% !important;
    width: 62% !important;
    height: 210px !important;
  }
}

@media (max-width: 720px) {
  .landing-page .landing-hero {
    padding: 24px 20px 24px !important;
    gap: 18px !important;
  }

  .landing-page .landing-hero-copy h1 {
    font-size: 34px !important;
  }

  .landing-page .landing-actions {
    grid-template-columns: 1fr !important;
  }

  .landing-page .landing-hero-visual {
    display: grid !important;
    gap: 12px !important;
    min-height: auto !important;
    padding: 18px !important;
  }

  .landing-page .landing-hero-visual .chart-card,
  .landing-page .landing-hero-visual .saving-card {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    min-height: auto !important;
    height: auto !important;
  }

  .landing-page .landing-hero-visual .hero-car {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 180px !important;
    order: 3 !important;
  }
}
/* 2026-06-30: Full customer homepage redesign */
:root {
  --lab-bg: #eef6ff;
  --lab-panel: #ffffff;
  --lab-panel-soft: #f7fbff;
  --lab-ink: #061b3f;
  --lab-muted: #5e7190;
  --lab-line: rgba(21, 105, 255, 0.16);
  --lab-blue: #1266f1;
  --lab-blue-dark: #004cc8;
  --lab-sky: #43b7ff;
  --lab-cyan: #18c8f6;
  --lab-shadow: 0 22px 70px rgba(20, 85, 170, 0.14);
  --lab-radius: 28px;
  --lab-radius-sm: 18px;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  background:
    radial-gradient(circle at 12% 2%, rgba(67, 183, 255, 0.20), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(18, 102, 241, 0.13), transparent 32rem),
    linear-gradient(180deg, #f9fcff 0%, var(--lab-bg) 48%, #eaf4ff 100%);
  color: var(--lab-ink);
  letter-spacing: 0;
}

.landing-page .landing-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 46px;
}

.site-common-header,
.landing-page .landing-header.site-common-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 12px 18px 12px 22px;
  border: 1px solid rgba(20, 95, 210, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(31, 91, 160, 0.10);
  backdrop-filter: blur(18px);
}

.site-common-header .landing-logo,
.site-common-footer .landing-logo,
.landing-page .landing-logo {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  color: var(--lab-ink);
  font-weight: 800;
  text-decoration: none;
}

.site-common-header .landing-logo img,
.site-common-footer .landing-logo img,
.landing-page .landing-logo img {
  width: 158px;
  max-height: 42px;
  object-fit: contain;
}

.site-common-header .landing-nav,
.landing-page .landing-nav {
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(235, 244, 255, 0.72);
}

.site-common-header .landing-nav a,
.landing-page .landing-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: #12305f;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-common-header .landing-nav a:hover,
.site-common-header .landing-nav a.active,
.landing-page .landing-nav a:hover,
.landing-page .landing-nav a.active {
  background: #ffffff;
  color: var(--lab-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(18, 102, 241, 0.10);
}

.landing-contact-actions {
  gap: 8px;
}

.landing-chat,
.site-common-header .landing-chat {
  height: 44px;
  min-width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(18, 102, 241, 0.22);
  background: #fff;
  box-shadow: 0 10px 22px rgba(18, 102, 241, 0.10);
  color: var(--lab-blue);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.landing-chat:hover,
.site-common-header .landing-chat:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 102, 241, 0.46);
  box-shadow: 0 16px 32px rgba(18, 102, 241, 0.18);
}

.landing-chat-primary,
.site-common-header .landing-chat-primary {
  min-width: 94px;
  padding: 0 18px;
  background: linear-gradient(135deg, #1b7cff, #0057e7);
  color: #fff;
  font-weight: 800;
}

.landing-chat-icon-only img {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  object-fit: cover;
}

.landing-page .landing-hero,
.landing-page .landing-panel,
.landing-page .quote-program,
.landing-page .truth-box,
.landing-page .dark-cta {
  border: 1px solid var(--lab-line);
  border-radius: var(--lab-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--lab-shadow);
}

.landing-page .landing-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  min-height: 0;
  padding: 44px 44px 36px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 249, 255, 0.94) 58%, rgba(224, 240, 255, 0.90) 100%);
}

.landing-page .landing-hero::before,
.landing-page .landing-hero::after,
.landing-page .landing-hero-copy::before,
.landing-page .landing-hero-visual::before {
  content: none !important;
}

.landing-page .landing-hero-copy {
  max-width: 820px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.landing-page .landing-hero-copy h1 {
  margin: 0;
  color: var(--lab-ink);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.landing-page .landing-hero-copy h1::after {
  display: block;
  width: 132px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lab-blue), var(--lab-cyan), transparent);
  content: "";
}

.landing-page .landing-hero-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #34506f;
  font-size: 17px;
  line-height: 1.75;
}

.landing-page .landing-trust-pill {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(18, 102, 241, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--lab-blue);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(18, 102, 241, 0.08);
}

.landing-page .landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-page .landing-primary,
.landing-page .landing-secondary,
.landing-page .landing-outline-more,
.landing-page .deal-card a,
.landing-page .dark-cta a,
.landing-page .home-estimate-box .landing-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.landing-page .landing-primary,
.landing-page .deal-card a,
.landing-page .home-estimate-box .landing-primary {
  border: 0;
  background: linear-gradient(135deg, #2487ff 0%, #075ce8 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(18, 102, 241, 0.24);
}

.landing-page .landing-secondary,
.landing-page .landing-outline-more {
  border: 1px solid rgba(18, 102, 241, 0.24);
  background: #fff;
  color: var(--lab-ink);
  box-shadow: 0 10px 28px rgba(18, 102, 241, 0.08);
}

.landing-page .landing-primary::after,
.landing-page .landing-secondary::after,
.landing-page .landing-outline-more::after,
.landing-page .deal-card a::after,
.landing-page .dark-cta a::after,
.landing-page .home-estimate-box .landing-primary::after {
  content: "›";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  line-height: 1;
}

.landing-page .landing-secondary::after,
.landing-page .landing-outline-more::after {
  background: rgba(18, 102, 241, 0.08);
  color: var(--lab-blue);
}

.landing-page .landing-primary:hover,
.landing-page .landing-secondary:hover,
.landing-page .landing-outline-more:hover,
.landing-page .deal-card a:hover,
.landing-page .dark-cta a:hover,
.landing-page .home-estimate-box .landing-primary:hover {
  transform: translateY(-2px);
}

.landing-page .landing-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(220px, 0.65fr) minmax(340px, 1.35fr);
  align-items: center;
  gap: 20px;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(18, 102, 241, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(229,244,255,0.78)),
    repeating-linear-gradient(90deg, rgba(18,102,241,0.055) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(18,102,241,0.045) 0 1px, transparent 1px 72px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.landing-page .chart-card,
.landing-page .saving-card {
  position: relative;
  inset: auto;
  width: auto;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(18, 102, 241, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(31, 91, 160, 0.12);
  backdrop-filter: blur(14px);
}

.landing-page .chart-card {
  grid-column: 1;
}

.landing-page .saving-card {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.landing-page .chart-title,
.landing-page .saving-card span {
  color: #193866;
  font-size: 14px;
  font-weight: 850;
}

.landing-page .mini-chart {
  height: 82px;
  gap: 12px;
  margin: 22px 0 12px;
  align-items: flex-end;
}

.landing-page .mini-chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, #bfddff, #7fb2ff);
  box-shadow: none;
}

.landing-page .mini-chart span.active {
  background: linear-gradient(180deg, #55d6ff, #1387f2);
  box-shadow: 0 12px 20px rgba(19, 135, 242, 0.24);
}

.landing-page .chart-card strong {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, #18b8f7, #0a79e9);
  color: #fff;
  font-size: 15px;
}

.landing-page .saving-card strong {
  color: var(--lab-ink);
  font-size: 32px;
  line-height: 1.15;
  word-break: keep-all;
}

.landing-page .saving-card em {
  color: #008fbb;
  font-size: 15px;
  font-style: normal;
  font-weight: 850;
}

.landing-page .hero-car {
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 3;
  width: min(100%, 470px);
  max-height: 260px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(15, 50, 95, 0.22));
}

.landing-page .landing-quick-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.landing-page .quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr 42px;
  align-items: center;
  gap: 18px;
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--lab-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(31, 91, 160, 0.10);
  color: var(--lab-ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.landing-page .quick-card::before {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(18,102,241,0.09), rgba(67,183,255,0.07));
}

.landing-page .quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 102, 241, 0.34);
  box-shadow: 0 22px 52px rgba(18, 102, 241, 0.16);
}

.landing-page .quick-card.hot {
  border-color: rgba(18, 102, 241, 0.38);
  background: linear-gradient(135deg, #ffffff, #eff7ff);
}

.landing-page .quick-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #eaf4ff);
  box-shadow: 0 14px 30px rgba(18, 102, 241, 0.14);
}

.landing-page .quick-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.landing-page .quick-card strong {
  display: block;
  grid-column: 2;
  color: var(--lab-ink);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.landing-page .quick-card strong b {
  display: inline-grid;
  place-items: center;
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--lab-blue);
  color: #fff;
  font-size: 11px;
  vertical-align: middle;
}

.landing-page .quick-card small {
  grid-column: 2;
  color: var(--lab-muted);
  font-size: 14px;
  line-height: 1.55;
}

.landing-page .quick-card::after {
  content: "›";
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 3;
  grid-row: 1 / span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--lab-blue);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(18, 102, 241, 0.10);
}

.landing-page .landing-panel {
  padding: 34px 28px 32px;
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,251,255,0.92));
}

.landing-page .landing-section-head h2,
.landing-page .quote-program h2,
.landing-page .truth-box h2,
.landing-page .dark-cta h2 {
  color: var(--lab-ink);
  letter-spacing: -0.015em;
}

.landing-page .landing-section-head h2 {
  font-size: 32px;
  line-height: 1.2;
}

.landing-page .landing-section-head p,
.landing-page .quote-program p,
.landing-page .truth-box p,
.landing-page .dark-cta p {
  color: #3f5878;
  line-height: 1.7;
}

.landing-page .deal-slider-shell {
  position: relative;
  margin-top: 24px;
}

.landing-page .deal-slider {
  gap: 16px;
  scroll-padding: 8px;
}

.landing-page .deal-card {
  min-width: 292px;
  padding: 20px;
  border: 1px solid rgba(18, 102, 241, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 16px 36px rgba(31, 91, 160, 0.10);
}

.landing-page .deal-card img {
  height: 150px;
  margin-bottom: 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f6fbff, #e9f4ff);
  object-fit: contain;
}

.landing-page .deal-card strong {
  color: var(--lab-ink);
  font-size: 21px;
  line-height: 1.25;
}

.landing-page .deal-card span {
  min-height: 42px;
  color: var(--lab-muted);
}

.landing-page .deal-card em {
  color: var(--lab-blue);
  font-size: 27px;
  font-style: normal;
  font-weight: 900;
}

.landing-page .deal-tags small {
  border: 0;
  background: #eef6ff;
  color: #276098;
  font-weight: 800;
}

.landing-page .deal-slider-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(18, 102, 241, 0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--lab-blue);
  font-size: 0;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(31, 91, 160, 0.14);
}

.landing-page .deal-slider-nav::before {
  font-size: 24px;
  line-height: 1;
}

.landing-page .deal-slider-nav-prev::before {
  content: "‹";
}

.landing-page .deal-slider-nav-next::before {
  content: "›";
}

.landing-page .deal-slider-status {
  margin-top: 22px;
}

.landing-page .deal-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(18, 102, 241, 0.20);
}

.landing-page .deal-slider-dots button.active {
  width: 26px;
  background: var(--lab-blue);
}

.landing-page .quote-program {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.72fr);
  gap: 34px;
  margin-top: 24px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,251,255,0.92));
}

.landing-page .home-quote-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf4ff;
  color: var(--lab-blue);
  font-size: 13px;
  font-weight: 900;
}

.landing-page .quote-program h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.18;
}

.landing-page .home-quote-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  max-width: 690px;
  margin-top: 24px;
}

.landing-page .home-image-field {
  min-width: 0;
}

.landing-page .home-image-field > span,
.landing-page .home-quote-condition span {
  color: #173968;
  font-size: 14px;
  font-weight: 850;
}

.landing-page .home-image-select-button {
  height: 62px;
  min-height: 62px;
  width: 100%;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(18, 102, 241, 0.16);
  border-radius: 16px;
  background: #f7fbff;
  color: var(--lab-ink);
  box-shadow: none;
  overflow: hidden;
}

.landing-page .home-image-select-button > span,
.landing-page .home-picker-placeholder,
.landing-page .home-text-option span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-page .home-image-select-button img {
  flex: 0 0 auto;
}

.landing-page .home-image-select-menu {
  max-height: 320px;
  border: 1px solid rgba(18, 102, 241, 0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 20px 48px rgba(18, 102, 241, 0.16);
  overflow: auto;
}

.landing-page .home-quote-condition {
  max-width: 690px;
  margin-top: 24px;
  gap: 18px;
}

.landing-page .home-segment {
  min-height: 58px;
  border: 1px solid rgba(18, 102, 241, 0.12);
  border-radius: 18px;
  background: #f2f7fe;
  padding: 5px;
}

.landing-page .home-segment button {
  border-radius: 14px;
  color: #4a6080;
  font-weight: 850;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.landing-page .home-segment button.active {
  background: #fff;
  color: var(--lab-blue);
  box-shadow: 0 8px 22px rgba(18, 102, 241, 0.12);
}

.landing-page .home-mileage-chip {
  height: 54px;
  border-radius: 16px;
  background: #edf3f9;
  color: #687a92;
  font-weight: 800;
}

.landing-page .home-estimate-box {
  align-self: stretch;
  min-height: 540px;
  padding: 30px 28px;
  border: 1px solid rgba(18, 102, 241, 0.16);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(31, 91, 160, 0.10);
}

.landing-page .home-selected-vehicle-art {
  width: 100%;
  height: 180px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fbff, #eaf4ff);
}

.landing-page .home-selected-vehicle-art img {
  max-width: 92%;
  max-height: 150px;
  object-fit: contain;
}

.landing-page .home-estimate-box > span,
.landing-page #homeQuoteStatus {
  margin-top: 18px;
  min-height: 24px;
  color: #16345f;
  font-weight: 900;
}

.landing-page #homeBestRent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 62px;
  margin: 12px auto 8px;
  padding: 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf8ff, #f7fbff);
  color: var(--lab-blue);
  font-size: clamp(25px, 3.3vw, 42px);
  line-height: 1.1;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.landing-page #homeBestRent:not(.home-step-guide) {
  background: transparent;
  padding: 0;
}

.landing-page .home-quote-list {
  gap: 9px;
  margin: 18px 0;
}

.landing-page .home-quote-row {
  min-height: 48px;
  border: 1px solid rgba(18, 102, 241, 0.16);
  border-radius: 14px;
  background: #f9fcff;
}

.landing-page .truth-box {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(239, 248, 255, 0.96), rgba(255,255,255,0.94));
}

.landing-page .truth-box::after {
  content: "실견적 데이터 기반";
  justify-self: end;
  align-self: start;
  padding: 9px 13px;
  border-radius: 999px;
  background: #e7f2ff;
  color: var(--lab-blue);
  font-size: 13px;
  font-weight: 900;
}

.landing-page .truth-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.18) 38%, transparent 39%),
    linear-gradient(135deg, #d9efff, #b8dcff);
  color: transparent;
  box-shadow: 0 16px 32px rgba(18, 102, 241, 0.14);
}

.landing-page .truth-icon::before {
  content: "";
  width: 34px;
  height: 40px;
  background: linear-gradient(180deg, #1377ff, #004fd4);
  clip-path: polygon(50% 0, 88% 14%, 88% 52%, 50% 100%, 12% 52%, 12% 14%);
}

.landing-page .truth-box h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.landing-page .feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.landing-page .feature-row article {
  min-height: 148px;
  padding: 22px;
  border: 1px solid rgba(18, 102, 241, 0.14);
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 10px 28px rgba(31, 91, 160, 0.08);
}

.landing-page .feature-row strong {
  color: var(--lab-ink);
  font-size: 17px;
}

.landing-page .feature-row span {
  margin-top: 12px;
  color: var(--lab-muted);
  line-height: 1.62;
}

.landing-page .dark-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 38px 44px;
  border: 0;
  background:
    radial-gradient(circle at 86% 50%, rgba(67, 183, 255, 0.25), transparent 20rem),
    linear-gradient(135deg, #05245a, #003b91 70%, #0b65e8);
  color: #fff;
}

.landing-page .dark-cta h2,
.landing-page .dark-cta p {
  color: #fff;
}

.landing-page .dark-cta-actions {
  display: grid;
  gap: 12px;
}

.landing-page .dark-cta a {
  min-height: 58px;
  border: 1px solid rgba(255,255,255,0.30);
  background: #fff;
  color: #064dcb;
}

.site-common-footer,
.landing-page .landing-footer.site-common-footer {
  width: min(1180px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto 22px;
  padding: 22px 4px;
  border: 0;
  background: transparent;
  color: #34506f;
}

.site-common-footer .landing-logo img {
  width: 150px;
  max-height: 40px;
}

.quick-drawer {
  display: grid;
  place-items: center;
}

.quick-drawer-panel {
  width: min(460px, calc(100% - 32px));
  max-height: min(720px, calc(100vh - 48px));
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(5, 27, 63, 0.30);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.quick-drawer.is-open .quick-drawer-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (max-width: 980px) {
  .landing-page .landing-main,
  .site-common-header,
  .site-common-footer,
  .landing-page .landing-header.site-common-header,
  .landing-page .landing-footer.site-common-footer {
    width: min(100% - 28px, 720px);
  }

  .site-common-header,
  .landing-page .landing-header.site-common-header {
    border-radius: 22px;
    align-items: center;
    gap: 10px;
  }

  .site-common-header .landing-logo img,
  .landing-page .landing-logo img {
    width: 130px;
  }

  .site-common-header .landing-nav,
  .landing-page .landing-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .landing-page .landing-hero {
    padding: 34px 24px 28px;
  }

  .landing-page .landing-hero-copy h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .landing-page .landing-hero-visual {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding: 20px;
  }

  .landing-page .hero-car {
    grid-column: 1 / -1;
    max-height: 210px;
  }

  .landing-page .landing-quick-cards,
  .landing-page .quote-program,
  .landing-page .feature-row,
  .landing-page .dark-cta {
    grid-template-columns: 1fr;
  }

  .landing-page .quote-program {
    padding: 28px 22px;
  }

  .landing-page .home-quote-picker {
    grid-template-columns: 1fr;
  }

  .landing-page .truth-box {
    grid-template-columns: 72px 1fr;
  }

  .landing-page .truth-box::after {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .landing-page .landing-main {
    width: calc(100% - 20px);
    padding-top: 18px;
  }

  .landing-page .landing-hero-copy p {
    font-size: 15px;
  }

  .landing-page .landing-actions {
    display: grid;
  }

  .landing-page .landing-hero-visual {
    grid-template-columns: 1fr;
  }

  .landing-page .chart-card,
  .landing-page .saving-card,
  .landing-page .hero-car {
    grid-column: 1;
  }

  .landing-page .quick-card {
    grid-template-columns: 72px 1fr 36px;
    min-height: 126px;
    padding: 18px;
  }

  .landing-page .quick-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .landing-page .quick-icon img {
    width: 56px;
    height: 56px;
  }

  .landing-page .quick-card strong {
    font-size: 19px;
  }

  .landing-page .deal-card {
    min-width: 82%;
  }

  .landing-page .truth-box,
  .landing-page .dark-cta {
    padding: 24px;
  }
}
/* 2026-06-30: Full redesign mobile compression */
@media (max-width: 640px) {
  .landing-page .landing-hero {
    gap: 20px;
    padding: 28px 18px 22px;
  }

  .landing-page .landing-hero-copy h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .landing-page .landing-hero-copy h1::after {
    margin-top: 18px;
  }

  .landing-page .landing-trust-pill {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .landing-page .landing-hero-visual {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .landing-page .chart-card,
  .landing-page .saving-card {
    grid-column: auto;
    min-height: 132px;
    padding: 16px;
    border-radius: 18px;
  }

  .landing-page .mini-chart {
    height: 48px;
    gap: 7px;
    margin: 14px 0 8px;
  }

  .landing-page .chart-title,
  .landing-page .saving-card span {
    font-size: 12px;
  }

  .landing-page .chart-card strong {
    padding: 7px 9px;
    font-size: 12px;
  }

  .landing-page .saving-card strong {
    font-size: 22px;
  }

  .landing-page .saving-card em {
    font-size: 12px;
  }

  .landing-page .hero-car {
    grid-column: 1 / -1;
    max-height: 170px;
  }
}
/* 2026-06-30: Repair homepage hero preview layout */
.landing-page .landing-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr) !important;
  align-items: center !important;
  column-gap: 42px !important;
  row-gap: 28px !important;
  padding: 46px 48px !important;
}

.landing-page .landing-hero-copy {
  max-width: 520px !important;
}

.landing-page .landing-hero-copy h1 {
  font-size: clamp(42px, 4.6vw, 62px) !important;
}

.landing-page .landing-hero-copy .landing-actions {
  justify-content: flex-start !important;
}

.landing-page .landing-hero-visual {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  min-height: 430px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  border: 1px solid rgba(18, 102, 241, 0.14) !important;
  background:
    radial-gradient(circle at 72% 72%, rgba(255, 255, 255, 0.78) 0 0, transparent 17rem),
    linear-gradient(135deg, rgba(247, 252, 255, 0.98), rgba(221, 239, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(18,102,241,0.045) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(18,102,241,0.035) 0 1px, transparent 1px 68px) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.80), 0 22px 52px rgba(19, 81, 155, 0.12) !important;
}

.landing-page .landing-hero-visual::after {
  content: "" !important;
  position: absolute !important;
  right: 34px !important;
  bottom: 30px !important;
  width: 58% !important;
  height: 38% !important;
  border-radius: 42px !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.68), rgba(197,226,255,0.32)) !important;
  z-index: 0 !important;
}

.landing-page .landing-hero-visual .chart-card,
.landing-page .landing-hero-visual .saving-card {
  position: absolute !important;
  inset: auto !important;
  z-index: 2 !important;
  width: auto !important;
  min-height: 0 !important;
  border-radius: 24px !important;
  border: 1px solid rgba(18, 102, 241, 0.13) !important;
  background: rgba(255, 255, 255, 0.90) !important;
  box-shadow: 0 18px 38px rgba(24, 90, 166, 0.14) !important;
  backdrop-filter: blur(14px) !important;
}

.landing-page .landing-hero-visual .chart-card {
  left: 30px !important;
  top: 32px !important;
  width: min(45%, 245px) !important;
  height: 205px !important;
  padding: 22px !important;
}

.landing-page .landing-hero-visual .saving-card {
  right: 30px !important;
  top: 34px !important;
  width: min(36%, 198px) !important;
  height: 205px !important;
  padding: 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 13px !important;
  text-align: left !important;
}

.landing-page .landing-hero-visual .chart-title,
.landing-page .landing-hero-visual .saving-card span {
  display: block !important;
  color: #143664 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
}

.landing-page .landing-hero-visual .mini-chart {
  display: flex !important;
  align-items: flex-end !important;
  height: 86px !important;
  gap: 10px !important;
  margin: 22px 0 14px !important;
}

.landing-page .landing-hero-visual .mini-chart span {
  display: block !important;
  flex: 1 1 0 !important;
  min-width: 16px !important;
  border-radius: 10px 10px 7px 7px !important;
  background: linear-gradient(180deg, #b9dcff, #7db4ff) !important;
}

.landing-page .landing-hero-visual .mini-chart span.active {
  background: linear-gradient(180deg, #65d8ff, #148cff) !important;
  box-shadow: 0 10px 20px rgba(20, 140, 255, 0.24) !important;
}

.landing-page .landing-hero-visual .chart-card strong {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  padding: 9px 12px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #27bfff, #1277ea) !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.landing-page .landing-hero-visual .saving-card strong {
  color: #061b3f !important;
  font-size: clamp(24px, 2.6vw, 34px) !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
  word-break: keep-all !important;
  white-space: normal !important;
}

.landing-page .landing-hero-visual .saving-card em {
  color: #1282bf !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

.landing-page .landing-hero-visual .hero-car {
  position: absolute !important;
  right: 20px !important;
  bottom: 12px !important;
  z-index: 1 !important;
  width: min(72%, 500px) !important;
  height: auto !important;
  max-height: 260px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 28px 34px rgba(12, 45, 90, 0.22)) !important;
}

@media (max-width: 1060px) {
  .landing-page .landing-hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(410px, 1fr) !important;
    column-gap: 30px !important;
    padding: 40px !important;
  }

  .landing-page .landing-hero-copy h1 {
    font-size: clamp(38px, 4.9vw, 54px) !important;
  }

  .landing-page .landing-hero-visual {
    min-height: 390px !important;
  }

  .landing-page .landing-hero-visual .chart-card {
    left: 24px !important;
    top: 26px !important;
    width: 210px !important;
    height: 188px !important;
  }

  .landing-page .landing-hero-visual .saving-card {
    right: 24px !important;
    top: 28px !important;
    width: 168px !important;
    height: 188px !important;
    padding: 20px !important;
  }
}

@media (max-width: 900px) {
  .landing-page .landing-hero {
    grid-template-columns: 1fr !important;
    padding: 34px 24px 26px !important;
  }

  .landing-page .landing-hero-copy {
    max-width: none !important;
  }

  .landing-page .landing-hero-visual {
    min-height: 360px !important;
  }
}

@media (max-width: 640px) {
  .landing-page .landing-hero-visual {
    min-height: 430px !important;
  }

  .landing-page .landing-hero-visual .chart-card {
    left: 16px !important;
    top: 16px !important;
    width: calc(100% - 32px) !important;
    height: 158px !important;
    padding: 18px !important;
  }

  .landing-page .landing-hero-visual .saving-card {
    left: 16px !important;
    right: auto !important;
    top: 188px !important;
    width: 168px !important;
    height: 132px !important;
    padding: 16px !important;
  }

  .landing-page .landing-hero-visual .hero-car {
    right: -10px !important;
    bottom: 14px !important;
    width: 78% !important;
    max-height: 170px !important;
  }
}
/* 2026-06-30: Quote estimate status spacing fix */
.landing-page .home-estimate-box #homeQuoteStatus,
.quote-page .home-estimate-box #homeQuoteStatus {
  display: block !important;
  margin-top: 30px !important;
  margin-bottom: 18px !important;
  padding: 0 12px !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.landing-page .home-estimate-box #homeBestRent,
.quote-page .home-estimate-box #homeBestRent {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

.landing-page .home-estimate-box #homeBestMeta,
.quote-page .home-estimate-box #homeBestMeta {
  display: block !important;
  margin-top: 2px !important;
  margin-bottom: 22px !important;
  text-align: center !important;
}
/* 2026-06-30: Quote estimate status move up */
.landing-page .home-estimate-box #homeQuoteStatus,
.quote-page .home-estimate-box #homeQuoteStatus {
  margin-top: 10px !important;
  margin-bottom: 8px !important;
  padding: 0 10px !important;
  line-height: 1.35 !important;
}

.landing-page .home-estimate-box #homeBestRent,
.quote-page .home-estimate-box #homeBestRent {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.landing-page .home-estimate-box #homeBestMeta,
.quote-page .home-estimate-box #homeBestMeta {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
/* 2026-06-30: Clean slate landing redesign */
body.landing-page {
  --fresh-bg: #f3f8ff;
  --fresh-card: #ffffff;
  --fresh-ink: #071b3d;
  --fresh-muted: #5d7190;
  --fresh-blue: #1268f3;
  --fresh-blue-2: #35b9ff;
  --fresh-line: rgba(18, 104, 243, 0.16);
  --fresh-shadow: 0 24px 70px rgba(27, 92, 164, 0.13);
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 185, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(18, 104, 243, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0%, #eff7ff 44%, #eaf4ff 100%) !important;
  color: var(--fresh-ink) !important;
}

.landing-page .landing-main {
  width: min(1180px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 28px 0 52px !important;
}

.landing-page .landing-hero {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  min-height: 0 !important;
  padding: 44px !important;
  border: 1px solid var(--fresh-line) !important;
  border-radius: 34px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(240, 248, 255, 0.94)),
    radial-gradient(circle at 88% 18%, rgba(53, 185, 255, 0.15), transparent 26rem) !important;
  box-shadow: var(--fresh-shadow) !important;
  overflow: hidden !important;
}

.landing-page .landing-hero,
.landing-page .landing-hero * {
  writing-mode: horizontal-tb !important;
  word-break: keep-all !important;
}

.landing-page .landing-hero-copy {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-areas:
    "title actions"
    "text actions"
    "pill actions" !important;
  align-items: center !important;
  column-gap: 36px !important;
  row-gap: 18px !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

.landing-page .landing-hero-copy h1 {
  grid-area: title !important;
  max-width: 720px !important;
  margin: 0 !important;
  color: var(--fresh-ink) !important;
  font-size: clamp(44px, 5vw, 68px) !important;
  line-height: 1.04 !important;
  font-weight: 950 !important;
  letter-spacing: -0.02em !important;
  white-space: normal !important;
}

.landing-page .landing-hero-copy h1::after {
  display: block !important;
  width: 138px !important;
  height: 4px !important;
  margin-top: 22px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--fresh-blue), var(--fresh-blue-2), transparent) !important;
  content: "" !important;
}

.landing-page .landing-hero-copy p {
  grid-area: text !important;
  max-width: 660px !important;
  margin: 0 !important;
  color: #3d5879 !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  white-space: normal !important;
}

.landing-page .landing-trust-pill {
  grid-area: pill !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid rgba(18, 104, 243, 0.18) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--fresh-blue) !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  box-shadow: 0 12px 28px rgba(18, 104, 243, 0.08) !important;
}

.landing-page .landing-actions {
  grid-area: actions !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  width: 260px !important;
  margin: 0 !important;
}

.landing-page .landing-actions a {
  width: 100% !important;
  min-height: 58px !important;
  border-radius: 17px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.landing-page .landing-primary {
  background: linear-gradient(135deg, #2388ff, #075ce8) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(18, 104, 243, 0.26) !important;
}

.landing-page .landing-secondary {
  border: 1px solid rgba(18, 104, 243, 0.22) !important;
  background: #fff !important;
  color: var(--fresh-ink) !important;
  box-shadow: 0 12px 30px rgba(18, 104, 243, 0.09) !important;
}

.landing-page .landing-hero-visual {
  display: grid !important;
  grid-template-columns: minmax(210px, 0.85fr) minmax(170px, 0.62fr) minmax(330px, 1.45fr) !important;
  align-items: center !important;
  gap: 22px !important;
  position: relative !important;
  min-height: 310px !important;
  width: 100% !important;
  padding: 28px !important;
  overflow: hidden !important;
  border: 1px solid rgba(18, 104, 243, 0.14) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 80% 76%, rgba(255,255,255,0.85), transparent 19rem),
    linear-gradient(135deg, rgba(248,252,255,0.98), rgba(224,241,255,0.88)),
    repeating-linear-gradient(90deg, rgba(18,104,243,0.045) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(18,104,243,0.035) 0 1px, transparent 1px 72px) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78) !important;
}

.landing-page .landing-hero-visual::before,
.landing-page .landing-hero-visual::after {
  content: none !important;
}

.landing-page .landing-hero-visual .chart-card,
.landing-page .landing-hero-visual .saving-card {
  position: static !important;
  inset: auto !important;
  z-index: 2 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 190px !important;
  padding: 24px !important;
  border: 1px solid rgba(18, 104, 243, 0.12) !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,0.92) !important;
  box-shadow: 0 18px 40px rgba(24, 90, 166, 0.13) !important;
  backdrop-filter: blur(14px) !important;
}

.landing-page .landing-hero-visual .chart-card {
  grid-column: 1 !important;
}

.landing-page .landing-hero-visual .saving-card {
  grid-column: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 13px !important;
}

.landing-page .landing-hero-visual .chart-title,
.landing-page .landing-hero-visual .saving-card span {
  display: block !important;
  color: #143664 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.landing-page .landing-hero-visual .mini-chart {
  display: flex !important;
  align-items: flex-end !important;
  height: 88px !important;
  gap: 10px !important;
  margin: 22px 0 14px !important;
}

.landing-page .landing-hero-visual .mini-chart span {
  flex: 1 1 0 !important;
  min-width: 16px !important;
  border-radius: 10px 10px 7px 7px !important;
  background: linear-gradient(180deg, #b8dcff, #7db4ff) !important;
}

.landing-page .landing-hero-visual .mini-chart span.active {
  background: linear-gradient(180deg, #64d8ff, #148cff) !important;
  box-shadow: 0 10px 20px rgba(20, 140, 255, 0.22) !important;
}

.landing-page .landing-hero-visual .chart-card strong {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 9px 12px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #2cc1ff, #1277ea) !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.landing-page .landing-hero-visual .saving-card strong {
  color: var(--fresh-ink) !important;
  font-size: clamp(24px, 2.4vw, 34px) !important;
  line-height: 1.14 !important;
  font-weight: 950 !important;
}

.landing-page .landing-hero-visual .saving-card em {
  color: #1182c0 !important;
  font-size: 14px !important;
  line-height: 1.38 !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

.landing-page .landing-hero-visual .hero-car {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  grid-column: 3 !important;
  justify-self: center !important;
  width: min(100%, 490px) !important;
  max-height: 250px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 28px 34px rgba(12, 45, 90, 0.22)) !important;
}

.landing-page .landing-quick-cards {
  margin-top: 24px !important;
}

.landing-page .landing-panel,
.landing-page .quote-program,
.landing-page .truth-box,
.landing-page .dark-cta {
  border-radius: 30px !important;
  border-color: var(--fresh-line) !important;
  box-shadow: var(--fresh-shadow) !important;
}

@media (max-width: 1040px) {
  .landing-page .landing-hero-copy {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "text"
      "pill"
      "actions" !important;
  }

  .landing-page .landing-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 540px) !important;
  }

  .landing-page .landing-hero-visual {
    grid-template-columns: minmax(190px, 0.9fr) minmax(165px, 0.65fr) minmax(280px, 1.2fr) !important;
  }
}

@media (max-width: 820px) {
  .landing-page .landing-main {
    width: min(100% - 28px, 720px) !important;
  }

  .landing-page .landing-hero {
    padding: 30px 22px !important;
  }

  .landing-page .landing-hero-copy h1 {
    font-size: clamp(36px, 10vw, 52px) !important;
  }

  .landing-page .landing-hero-visual {
    grid-template-columns: 1fr 1fr !important;
    min-height: 0 !important;
  }

  .landing-page .landing-hero-visual .hero-car {
    grid-column: 1 / -1 !important;
    max-height: 210px !important;
  }
}

@media (max-width: 560px) {
  .landing-page .landing-main {
    width: calc(100% - 20px) !important;
  }

  .landing-page .landing-actions {
    grid-template-columns: 1fr !important;
  }

  .landing-page .landing-hero-visual {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }

  .landing-page .landing-hero-visual .chart-card,
  .landing-page .landing-hero-visual .saving-card,
  .landing-page .landing-hero-visual .hero-car {
    grid-column: 1 !important;
  }
}
/* 2026-06-30: Clean slate landing redesign v2 */
.landing-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 119, 255, 0.10), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(71, 199, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 48%, #f8fbff 100%) !important;
  color: #071f42 !important;
}

.landing-page .landing-main {
  width: min(1180px, calc(100vw - 48px)) !important;
  margin: 0 auto !important;
  padding: 34px 0 56px !important;
  display: grid !important;
  gap: 26px !important;
  animation: none !important;
}

.landing-page .landing-hero,
.landing-page .landing-hero * {
  writing-mode: horizontal-tb !important;
  word-break: keep-all !important;
  text-orientation: mixed !important;
}

.landing-page .landing-hero {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr) !important;
  align-items: stretch !important;
  gap: 34px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(34px, 4.2vw, 56px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(70, 138, 230, 0.22) !important;
  border-radius: 34px !important;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 255, 0.72)),
    repeating-linear-gradient(90deg, rgba(54, 126, 225, 0.045) 0 1px, transparent 1px 64px) !important;
  box-shadow: 0 26px 80px rgba(32, 81, 143, 0.14) !important;
}

.landing-page .landing-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: auto -10% -34% 46% !important;
  height: 68% !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(0, 95, 255, 0.10), rgba(54, 205, 255, 0.18)) !important;
  pointer-events: none !important;
}

.landing-page .landing-hero-copy {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 20px !important;
}

.landing-page .landing-hero h1 {
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  margin: 0 !important;
  color: #061b3a !important;
  font-size: clamp(38px, 4.7vw, 64px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  font-weight: 850 !important;
  text-wrap: balance !important;
  white-space: normal !important;
}

.landing-page .landing-hero h1::after {
  content: "" !important;
  display: block !important;
  width: 138px !important;
  height: 4px !important;
  margin-top: 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #0b63ff, #33d2ff, rgba(51, 210, 255, 0)) !important;
}

.landing-page .landing-hero-copy p {
  width: min(100%, 540px) !important;
  margin: 0 !important;
  color: #42607f !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.landing-page .landing-trust-pill {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(0, 102, 255, 0.16) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #075ee8 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 28px rgba(21, 94, 239, 0.08) !important;
}

.landing-page .landing-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 6px !important;
}

.landing-page .landing-actions a {
  min-width: 210px !important;
  height: 58px !important;
  padding: 0 26px !important;
  border-radius: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.landing-page .landing-primary {
  border: 0 !important;
  background: linear-gradient(135deg, #1473ff, #004bdc) !important;
  color: #fff !important;
  box-shadow: 0 18px 32px rgba(0, 86, 229, 0.25) !important;
}

.landing-page .landing-secondary {
  border: 1px solid rgba(14, 93, 220, 0.22) !important;
  background: #fff !important;
  color: #07234a !important;
  box-shadow: 0 14px 26px rgba(35, 85, 143, 0.08) !important;
}

.landing-page .landing-hero-visual {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: 1.1fr 0.78fr !important;
  grid-template-rows: auto 1fr !important;
  gap: 18px !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 430px !important;
  padding: 26px !important;
  border: 1px solid rgba(40, 128, 255, 0.20) !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  background:
    linear-gradient(145deg, rgba(238, 248, 255, 0.96), rgba(214, 235, 255, 0.88)),
    repeating-linear-gradient(0deg, rgba(31, 111, 219, 0.045) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(90deg, rgba(31, 111, 219, 0.045) 0 1px, transparent 1px 62px) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.90), 0 18px 44px rgba(40, 103, 180, 0.10) !important;
}

.landing-page .landing-hero-visual::after {
  content: "" !important;
  position: absolute !important;
  right: 42px !important;
  bottom: 36px !important;
  width: 360px !important;
  height: 150px !important;
  border-radius: 80px 80px 34px 34px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  pointer-events: none !important;
}

.landing-page .chart-card,
.landing-page .saving-card {
  position: static !important;
  transform: none !important;
  width: auto !important;
  min-width: 0 !important;
  border: 1px solid rgba(80, 143, 225, 0.18) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 18px 34px rgba(40, 97, 165, 0.11) !important;
}

.landing-page .chart-card {
  grid-column: 1 !important;
  grid-row: 1 !important;
  padding: 24px !important;
  min-height: 210px !important;
}

.landing-page .saving-card {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-height: 210px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.landing-page .hero-car {
  position: relative !important;
  z-index: 1 !important;
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  justify-self: end !important;
  align-self: end !important;
  width: min(92%, 520px) !important;
  max-width: 520px !important;
  height: auto !important;
  max-height: 280px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: drop-shadow(0 28px 30px rgba(4, 31, 65, 0.24)) !important;
}

.landing-page .chart-title,
.landing-page .saving-label {
  color: #0b2d5d !important;
  font-weight: 800 !important;
}

.landing-page .chart-bars span {
  background: linear-gradient(180deg, #9bc6ff, #5b9fff) !important;
  border-radius: 10px 10px 4px 4px !important;
}

.landing-page .chart-bars span:nth-child(4) {
  background: linear-gradient(180deg, #40d5c3, #08a789) !important;
}

.landing-page .saving-price {
  color: #061b3a !important;
  font-size: clamp(26px, 3vw, 36px) !important;
  font-weight: 850 !important;
  line-height: 1.16 !important;
}

.landing-page .quick-card,
.landing-page .landing-panel,
.landing-page .quote-program,
.landing-page .truth-box,
.landing-page .dark-cta {
  border-radius: 28px !important;
  border: 1px solid rgba(84, 141, 214, 0.18) !important;
  box-shadow: 0 18px 48px rgba(35, 81, 138, 0.10) !important;
}

.landing-page .landing-quick-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.landing-page .quick-card {
  min-height: 154px !important;
  padding: 28px !important;
  background: linear-gradient(145deg, #fff, #f0f7ff) !important;
  align-items: center !important;
}

@media (max-width: 920px) {
  .landing-page .landing-main {
    width: min(100% - 26px, 680px) !important;
    padding-top: 22px !important;
  }

  .landing-page .landing-hero {
    grid-template-columns: 1fr !important;
    padding: 30px !important;
    gap: 24px !important;
    border-radius: 28px !important;
  }

  .landing-page .landing-hero h1 {
    font-size: clamp(34px, 9vw, 48px) !important;
    max-width: 100% !important;
  }

  .landing-page .landing-hero-visual {
    min-height: 0 !important;
    grid-template-columns: 1fr 0.86fr !important;
  }

  .landing-page .landing-quick-cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .landing-page .landing-main {
    width: calc(100vw - 20px) !important;
    gap: 18px !important;
  }

  .landing-page .landing-hero {
    padding: 24px 18px !important;
  }

  .landing-page .landing-hero-copy {
    gap: 16px !important;
  }

  .landing-page .landing-hero h1 {
    font-size: 34px !important;
  }

  .landing-page .landing-actions,
  .landing-page .landing-actions a {
    width: 100% !important;
  }

  .landing-page .landing-hero-visual {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
  }

  .landing-page .chart-card,
  .landing-page .saving-card,
  .landing-page .hero-car {
    grid-column: 1 !important;
  }
}
/* 2026-06-30: Clean slate landing sharpness fix */
.landing-page .landing-hero-visual::after {
  display: none !important;
  content: none !important;
  filter: none !important;
}

.landing-page .landing-hero,
.landing-page .landing-hero-copy,
.landing-page .landing-hero-visual,
.landing-page .chart-card,
.landing-page .saving-card,
.landing-page .quick-card,
.landing-page .landing-panel,
.landing-page .quote-program,
.landing-page .truth-box,
.landing-page .feature-row,
.landing-page .dark-cta {
  filter: none !important;
  backdrop-filter: none !important;
  text-shadow: none !important;
}

.landing-page .landing-hero {
  background:
    linear-gradient(135deg, #ffffff 0%, #f2f8ff 58%, #e7f4ff 100%) !important;
}

.landing-page .landing-hero-visual {
  background:
    linear-gradient(145deg, #f8fcff 0%, #e7f4ff 100%),
    repeating-linear-gradient(0deg, rgba(28, 98, 190, 0.055) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(90deg, rgba(28, 98, 190, 0.055) 0 1px, transparent 1px 62px) !important;
}

.landing-page .landing-hero h1,
.landing-page .landing-hero-copy p,
.landing-page .quick-card strong,
.landing-page .quick-card p,
.landing-page .landing-panel h2,
.landing-page .landing-panel p {
  opacity: 1 !important;
  filter: none !important;
}

.landing-page .hero-car {
  opacity: 1 !important;
  filter: drop-shadow(0 24px 26px rgba(6, 31, 65, 0.22)) !important;
}
/* 2026-06-30: Move home quote status upward */
.landing-page .home-estimate-box,
.quote-page .home-estimate-box {
  align-content: start !important;
  gap: 10px !important;
  padding-top: 24px !important;
}

.landing-page .home-estimate-box .home-selected-vehicle-art,
.quote-page .home-estimate-box .home-selected-vehicle-art {
  min-height: 0 !important;
  height: 176px !important;
  margin-bottom: 0 !important;
}

.landing-page .home-estimate-box .home-selected-vehicle-art img,
.quote-page .home-estimate-box .home-selected-vehicle-art img {
  max-height: 156px !important;
  object-fit: contain !important;
}

.landing-page .home-estimate-box #homeQuoteStatus,
.quote-page .home-estimate-box #homeQuoteStatus {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
  min-height: 20px !important;
  line-height: 1.25 !important;
  transform: translateY(-8px) !important;
}

.landing-page .home-estimate-box #homeBestRent,
.quote-page .home-estimate-box #homeBestRent {
  margin-top: -4px !important;
}

@media (max-width: 720px) {
  .landing-page .home-estimate-box .home-selected-vehicle-art,
  .quote-page .home-estimate-box .home-selected-vehicle-art {
    height: 150px !important;
  }

  .landing-page .home-estimate-box .home-selected-vehicle-art img,
  .quote-page .home-estimate-box .home-selected-vehicle-art img {
    max-height: 132px !important;
  }
}
/* 2026-06-30: Sticky bottom customer nav */
:root {
  --sticky-bottom-nav-height: 82px;
}

body:not(.admin-page) {
  padding-bottom: calc(var(--sticky-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 18px) !important;
}

.sticky-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  z-index: 9998;
  width: min(560px, calc(100vw - 22px));
  height: var(--sticky-bottom-nav-height);
  padding: 9px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  transform: translateX(-50%);
  border: 1px solid rgba(91, 152, 235, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(20, 62, 118, 0.18), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.sticky-bottom-nav-item {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 18px;
  color: #0b2a55;
  text-decoration: none;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.sticky-bottom-nav-item:hover,
.sticky-bottom-nav-item:focus-visible {
  background: #eef6ff;
  color: #005ff2;
  transform: translateY(-2px);
  outline: none;
}

.sticky-bottom-nav-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #eef6ff, #ffffff);
  color: #0967ef;
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(40, 105, 190, 0.13);
}

.sticky-bottom-nav-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.sticky-bottom-nav-strong {
  background: linear-gradient(135deg, #197cff, #0055e7);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 93, 239, 0.25);
}

.sticky-bottom-nav-strong .sticky-bottom-nav-icon {
  background: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: none;
}

.sticky-bottom-nav-strong:hover,
.sticky-bottom-nav-strong:focus-visible {
  background: linear-gradient(135deg, #2688ff, #005ff2);
  color: #fff;
}

@media (min-width: 900px) {
  .sticky-bottom-nav {
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --sticky-bottom-nav-height: 74px;
  }

  .sticky-bottom-nav {
    width: calc(100vw - 14px);
    padding: 7px;
    border-radius: 21px;
  }

  .sticky-bottom-nav-item {
    border-radius: 15px;
    font-size: 11px;
    gap: 4px;
  }

  .sticky-bottom-nav-icon {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }

  .sticky-bottom-nav-icon img {
    width: 22px;
    height: 22px;
  }
}

/* 2026-06-30: Sky logo theme override */
:root {
  --lab-sky: #38bdf8;
  --lab-sky-deep: #0284c7;
  --lab-sky-dark: #075985;
  --lab-sky-soft: #e0f2fe;
  --lab-sky-softer: #f0f9ff;
  --lab-sky-line: rgba(56, 189, 248, .34);
  --lab-sky-shadow: rgba(14, 165, 233, .24);
}

.landing-page {
  background:
    radial-gradient(circle at 16% 12%, rgba(186, 230, 253, .52), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(125, 211, 252, .32), transparent 26%),
    linear-gradient(180deg, #f8fdff 0%, #eef9ff 52%, #f8fdff 100%) !important;
}

.landing-page .landing-header,
.landing-page .site-common-header {
  background: rgba(248, 253, 255, .92) !important;
}

.landing-page .landing-nav,
.landing-page .landing-header nav {
  background: rgba(240, 249, 255, .84) !important;
  border-color: rgba(125, 211, 252, .28) !important;
}

.landing-page .landing-nav a,
.landing-page .landing-header nav a {
  color: #0b3558 !important;
}

.landing-page .landing-nav a:hover,
.landing-page .landing-header nav a:hover,
.landing-page .landing-nav a.active,
.landing-page .landing-header nav a.active {
  color: var(--lab-sky-deep) !important;
  background: rgba(224, 242, 254, .72) !important;
}

.landing-page .landing-chat,
.landing-page .landing-primary,
.landing-page .landing-panel a,
.landing-page .deal-card a,
.landing-page .dark-cta a,
.landing-page #homeConsultLink,
.quote-page #homeConsultLink,
.specials-page .special-primary,
.special-consult-submit,
.consult-submit,
.quick-submit {
  border-color: rgba(14, 165, 233, .42) !important;
  background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 46%, #0ea5e9 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 32px rgba(14, 165, 233, .26), inset 0 1px 0 rgba(255,255,255,.35) !important;
}

.landing-page .landing-primary:hover,
.landing-page .landing-panel a:hover,
.landing-page .deal-card a:hover,
.landing-page .dark-cta a:hover,
.landing-page #homeConsultLink:hover,
.quote-page #homeConsultLink:hover,
.specials-page .special-primary:hover,
.special-consult-submit:hover,
.consult-submit:hover,
.quick-submit:hover {
  background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 42%, #0284c7 100%) !important;
  box-shadow: 0 18px 36px rgba(14, 165, 233, .32), inset 0 1px 0 rgba(255,255,255,.42) !important;
}

.landing-page .landing-secondary,
.landing-page .quick-card,
.landing-page .truth-box,
.landing-page .feature-card,
.landing-page .quote-program,
.landing-page .landing-panel,
.landing-page .home-estimate-box,
.quote-page .home-estimate-box,
.specials-page .specials-hero,
.specials-page .special-model-card,
.specials-page .special-list-card {
  border-color: rgba(125, 211, 252, .44) !important;
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%) !important;
  box-shadow: 0 22px 54px rgba(14, 116, 144, .10) !important;
}

.landing-page .landing-secondary,
.landing-page .quick-card .quick-arrow,
.landing-page .deal-slider-arrow,
.landing-page .quick-card:hover {
  color: var(--lab-sky-deep) !important;
}

.landing-page .quick-card:hover,
.landing-page .deal-card:hover,
.landing-page .special-model-card:hover {
  border-color: rgba(14, 165, 233, .72) !important;
  box-shadow: 0 24px 56px rgba(14, 165, 233, .16) !important;
}

.landing-page .landing-hero {
  border-color: rgba(56, 189, 248, .36) !important;
  background:
    radial-gradient(circle at 82% 16%, rgba(125, 211, 252, .24), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f0f9ff 54%, #e0f2fe 100%) !important;
}

.landing-page .landing-hero-visual,
.quote-page .quote-page-hero-visual {
  border-color: rgba(56, 189, 248, .42) !important;
  background:
    linear-gradient(145deg, rgba(240, 249, 255, .96), rgba(224, 242, 254, .9)),
    repeating-linear-gradient(90deg, rgba(14, 165, 233, .06) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(14, 165, 233, .05) 0 1px, transparent 1px 72px) !important;
}

.landing-page .chart-card,
.landing-page .saving-card {
  border-color: rgba(125, 211, 252, .5) !important;
  background: rgba(255, 255, 255, .78) !important;
  box-shadow: 0 18px 36px rgba(14, 116, 144, .12) !important;
}

.landing-page .saving-card::before,
.landing-page .home-estimate-box::before,
.quote-page .home-estimate-box::before {
  background: var(--lab-sky) !important;
}

.landing-page .hero-bar.active,
.landing-page .hero-bar.best,
.landing-page .chart-bar.active,
.landing-page .chart-bar.best {
  background: linear-gradient(180deg, #67e8f9 0%, #0ea5e9 100%) !important;
}

.landing-page .hero-price-badge,
.landing-page .live-badge,
.landing-page .home-section-badge,
.landing-page .truth-box-badge,
.landing-page .deal-badge,
.landing-page .special-badge {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd) !important;
  color: #036986 !important;
  border-color: rgba(56, 189, 248, .42) !important;
}

.landing-page .home-quote-control,
.quote-page .home-quote-control,
.landing-page .home-picker-menu,
.quote-page .home-picker-menu {
  border-color: rgba(125, 211, 252, .48) !important;
  background: #f8fdff !important;
}

.landing-page .home-quote-control:hover,
.quote-page .home-quote-control:hover,
.landing-page .home-quote-control.is-open,
.quote-page .home-quote-control.is-open {
  border-color: rgba(14, 165, 233, .78) !important;
  box-shadow: 0 12px 28px rgba(14, 165, 233, .14) !important;
}

.landing-page .home-segmented button.is-active,
.quote-page .home-segmented button.is-active,
.landing-page .home-picker-option.is-selected,
.quote-page .home-picker-option.is-selected {
  border-color: rgba(14, 165, 233, .5) !important;
  background: linear-gradient(135deg, #e0f2fe, #ffffff) !important;
  color: var(--lab-sky-deep) !important;
  box-shadow: 0 10px 22px rgba(14, 165, 233, .14) !important;
}

.landing-page #homeBestRent,
.quote-page #homeBestRent,
.landing-page .deal-price,
.landing-page .home-rank-price,
.quote-page .home-rank-price {
  color: var(--lab-sky-deep) !important;
}

.landing-page .dark-cta {
  background: linear-gradient(135deg, #075985 0%, #0ea5e9 100%) !important;
  box-shadow: 0 24px 54px rgba(7, 89, 133, .22) !important;
}

.sticky-bottom-nav {
  border-color: rgba(125, 211, 252, .42) !important;
  background: rgba(248, 253, 255, .94) !important;
  box-shadow: 0 22px 50px rgba(14, 116, 144, .16), inset 0 1px 0 rgba(255,255,255,.92) !important;
}

.sticky-bottom-nav-item:hover,
.sticky-bottom-nav-item:focus-visible {
  background: #e0f2fe !important;
  color: var(--lab-sky-deep) !important;
}

.sticky-bottom-nav-icon {
  background: linear-gradient(145deg, #e0f2fe, #ffffff) !important;
  color: var(--lab-sky-deep) !important;
  box-shadow: 0 8px 18px rgba(14, 165, 233, .15) !important;
}

.sticky-bottom-nav-strong {
  background: linear-gradient(135deg, #67e8f9, #0ea5e9) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(14, 165, 233, .25) !important;
}

.sticky-bottom-nav-strong:hover,
.sticky-bottom-nav-strong:focus-visible {
  background: linear-gradient(135deg, #22d3ee, #0284c7) !important;
}

.landing-page input:focus,
.landing-page textarea:focus,
.landing-page select:focus {
  border-color: rgba(14, 165, 233, .72) !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .16) !important;
}

/* 2026-06-30: Quote hero copy readability */
.quote-page .quote-page-truth-hero {
  align-items: center !important;
}

.quote-page .quote-page-hero-copy {
  max-width: 690px !important;
}

.quote-page .quote-page-hero-copy h1 {
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
  word-break: keep-all !important;
}

.quote-page .quote-page-hero-text {
  gap: 12px !important;
  max-width: 700px !important;
  margin-top: 4px !important;
}

.quote-page .quote-page-hero-text p {
  font-size: 14px !important;
  line-height: 1.72 !important;
  color: #365273 !important;
}

@media (max-width: 920px) {
  .quote-page .quote-page-hero-copy {
    max-width: none !important;
  }
}

@media (max-width: 560px) {
  .quote-page .quote-page-hero-copy h1 {
    font-size: clamp(32px, 9vw, 42px) !important;
  }

  .quote-page .quote-page-hero-text p {
    font-size: 13.5px !important;
    line-height: 1.68 !important;
  }
}
/* 2026-07-01: restore sky-logo-theme1 layout guard */
:root {
  --sky-primary: #23b8ee;
  --sky-primary-deep: #0498d7;
  --sky-soft: #eaf8ff;
  --sky-border: #b8e6fb;
}

.landing-page .landing-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 28px 110px;
}

.landing-page .landing-hero {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr) !important;
  gap: 52px !important;
  align-items: center !important;
  min-height: 0 !important;
  margin: 18px 0 24px !important;
  padding: 58px 48px !important;
  border: 1px solid var(--sky-border) !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, #fbfdff 0%, #f2fbff 46%, #e7f7ff 100%) !important;
  box-shadow: 0 28px 70px rgba(18, 108, 170, .12) !important;
  overflow: hidden !important;
}

.landing-page .landing-hero::before,
.landing-page .landing-hero::after {
  pointer-events: none !important;
}

.landing-page .landing-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 22px !important;
  min-width: 0 !important;
}

.landing-page .landing-hero-copy h1 {
  max-width: 580px !important;
  margin: 0 !important;
  color: #071f43 !important;
  font-size: clamp(42px, 4.5vw, 60px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  word-break: keep-all !important;
}

.landing-page .landing-hero-copy p {
  max-width: 560px !important;
  margin: 0 !important;
  color: #425b78 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  text-align: left !important;
  word-break: keep-all !important;
}

.landing-page .landing-trust-pill {
  color: #077fbd !important;
  border-color: rgba(35, 184, 238, .26) !important;
  background: rgba(234, 248, 255, .82) !important;
}

.landing-page .landing-trust-pill::before {
  background: linear-gradient(135deg, var(--sky-primary), var(--sky-primary-deep)) !important;
}

.landing-page .landing-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 2px !important;
}

.landing-page .landing-primary,
.landing-page .landing-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  padding: 0 28px !important;
  border-radius: 15px !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.landing-page .landing-primary {
  color: #fff !important;
  border-color: var(--sky-primary) !important;
  background: linear-gradient(180deg, #48cfff 0%, var(--sky-primary) 56%, var(--sky-primary-deep) 100%) !important;
  box-shadow: 0 18px 32px rgba(35, 184, 238, .25) !important;
}

.landing-page .landing-secondary {
  color: #073356 !important;
  border-color: rgba(35, 184, 238, .34) !important;
  background: rgba(255,255,255,.76) !important;
}

.landing-page .landing-hero-visual {
  position: relative !important;
  z-index: 1 !important;
  min-height: 430px !important;
  width: 100% !important;
  border: 1px solid rgba(104, 207, 247, .48) !important;
  border-radius: 30px !important;
  background:
    linear-gradient(rgba(35, 184, 238, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 184, 238, .06) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(35, 184, 238, .22), transparent 30%),
    linear-gradient(145deg, #f8fdff 0%, #eaf8ff 100%) !important;
  background-size: 54px 54px, 54px 54px, auto, auto !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 30px 70px rgba(17, 117, 179, .14) !important;
  overflow: hidden !important;
}

.landing-page .landing-hero-visual::before {
  content: "" !important;
  position: absolute !important;
  left: 16% !important;
  right: 7% !important;
  bottom: 58px !important;
  z-index: 1 !important;
  height: 34% !important;
  border-radius: 44px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.22)) !important;
  box-shadow: 0 34px 70px rgba(18, 108, 170, .16) !important;
  transform: skewX(-8deg) !important;
}

.landing-page .landing-hero-visual::after {
  content: "" !important;
  position: absolute !important;
  left: 26% !important;
  right: 14% !important;
  bottom: 46px !important;
  z-index: 2 !important;
  height: 26px !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse, rgba(7, 31, 67, .24), transparent 70%) !important;
  filter: blur(9px) !important;
}

.landing-page .hero-chart-card,
.landing-page .landing-hero-visual .saving-card {
  position: absolute !important;
  z-index: 5 !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(122, 213, 248, .42) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(243, 251, 255, .86)) !important;
  box-shadow: 0 24px 54px rgba(18, 108, 170, .15), inset 0 1px 0 rgba(255,255,255,.84) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.landing-page .hero-chart-card {
  top: 44px !important;
  left: 34px !important;
  display: grid !important;
  gap: 14px !important;
  width: 238px !important;
  padding: 20px 20px 18px !important;
}

.landing-page .chart-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding-bottom: 13px !important;
  border-bottom: 1px solid #d9eef9 !important;
  color: #0a2a57 !important;
  font-size: 14px !important;
  font-weight: 720 !important;
  line-height: 1.2 !important;
}

.landing-page .chart-title span,
.landing-page .chart-title::after {
  content: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 20px !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  background: #e5f8ff !important;
  color: #0798d3 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
}

.landing-page .hero-bars {
  display: flex !important;
  align-items: end !important;
  gap: 10px !important;
  height: 84px !important;
  padding: 12px 8px 2px !important;
}

.landing-page .hero-bars i {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  border-radius: 10px 10px 4px 4px !important;
  background: linear-gradient(180deg, #c8efff 0%, #7fd2f6 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45) !important;
}

.landing-page .hero-bars i:nth-child(1) { height: 58%; }
.landing-page .hero-bars i:nth-child(2) { height: 50%; }
.landing-page .hero-bars i:nth-child(3) { height: 68%; }
.landing-page .hero-bars i:nth-child(4) { height: 42%; }
.landing-page .hero-bars i:nth-child(5) { height: 60%; }
.landing-page .hero-bars i.best {
  background: linear-gradient(180deg, #35d0ff 0%, var(--sky-primary-deep) 100%) !important;
  box-shadow: 0 14px 24px rgba(35, 184, 238, .25) !important;
}

.landing-page .hero-chart-card > strong {
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--sky-primary), var(--sky-primary-deep)) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 820 !important;
  line-height: 1 !important;
  box-shadow: 0 14px 24px rgba(35, 184, 238, .24) !important;
}

.landing-page .landing-hero-visual .saving-card {
  top: 48px !important;
  right: 30px !important;
  display: grid !important;
  gap: 12px !important;
  width: 196px !important;
  min-height: 0 !important;
  padding: 20px 18px !important;
  text-align: left !important;
}

.landing-page .saving-card span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #31506f !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  writing-mode: horizontal-tb !important;
}

.landing-page .saving-card span::before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: var(--sky-primary) !important;
  box-shadow: 0 0 0 4px rgba(35, 184, 238, .13) !important;
}

.landing-page .saving-card strong {
  color: #061f45 !important;
  font-size: 30px !important;
  line-height: 1.12 !important;
  font-weight: 820 !important;
  writing-mode: horizontal-tb !important;
}

.landing-page .saving-card em {
  padding-top: 12px !important;
  border-top: 1px solid #d9eef9 !important;
  color: #0486bd !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 720 !important;
  line-height: 1.42 !important;
  writing-mode: horizontal-tb !important;
}

.landing-page .hero-car {
  position: absolute !important;
  right: 12px !important;
  bottom: 56px !important;
  z-index: 3 !important;
  width: 72% !important;
  height: 260px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: drop-shadow(0 28px 26px rgba(7, 31, 67, .22)) saturate(1.04) !important;
}

.landing-page .landing-quick-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 24px 0 !important;
}

.landing-page .quick-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) 42px !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  column-gap: 18px !important;
  min-height: 150px !important;
  padding: 24px !important;
  border: 1px solid rgba(129, 213, 247, .46) !important;
  border-radius: 22px !important;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(241,250,255,.88)) !important;
  box-shadow: 0 20px 46px rgba(18, 108, 170, .09) !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.landing-page .quick-card img {
  grid-row: 1 / span 2 !important;
  width: 82px !important;
  height: 82px !important;
  object-fit: contain !important;
  border-radius: 22px !important;
  justify-self: center !important;
}

.landing-page .quick-card strong {
  grid-column: 2 !important;
  align-self: end !important;
  margin: 0 !important;
  color: #082447 !important;
  font-size: 22px !important;
  line-height: 1.22 !important;
  font-weight: 780 !important;
  text-align: left !important;
  word-break: keep-all !important;
}

.landing-page .quick-card strong small {
  display: inline-flex !important;
  margin-left: 8px !important;
  transform: translateY(-2px) !important;
}

.landing-page .quick-card p {
  grid-column: 2 !important;
  align-self: start !important;
  margin: 8px 0 0 !important;
  color: #526884 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-align: left !important;
  word-break: keep-all !important;
}

.landing-page .quick-card > span {
  grid-column: 3 !important;
  grid-row: 1 / span 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--sky-primary-deep) !important;
  font-size: 28px !important;
  line-height: 1 !important;
  justify-self: end !important;
  box-shadow: 0 12px 24px rgba(18, 108, 170, .10) !important;
}

.landing-page .quick-card::after {
  display: none !important;
}

.landing-page .quick-card.hot {
  border-color: var(--sky-primary) !important;
}

.landing-page .home-quote-result-card,
.landing-page #homeEstimateBox {
  align-self: stretch !important;
}

.landing-page #homeQuoteStatus {
  display: block !important;
  margin: 16px 0 8px !important;
  line-height: 1.45 !important;
}

@media (max-width: 980px) {
  .landing-page .landing-main { padding: 34px 20px 110px; }
  .landing-page .landing-hero {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 38px 28px !important;
  }
  .landing-page .landing-hero-visual { min-height: 390px !important; }
  .landing-page .hero-chart-card { left: 24px !important; top: 28px !important; width: 228px !important; }
  .landing-page .landing-hero-visual .saving-card { right: 22px !important; top: 34px !important; width: 184px !important; }
  .landing-page .hero-car { right: 0 !important; bottom: 42px !important; width: 78% !important; height: 236px !important; }
  .landing-page .landing-quick-cards { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .landing-page .landing-main { padding: 24px 12px 96px; }
  .landing-page .landing-hero { padding: 28px 18px !important; border-radius: 24px !important; }
  .landing-page .landing-hero-copy h1 { font-size: 36px !important; }
  .landing-page .landing-hero-visual { min-height: 350px !important; border-radius: 24px !important; }
  .landing-page .hero-chart-card { left: 14px !important; top: 18px !important; width: 52% !important; padding: 15px !important; }
  .landing-page .landing-hero-visual .saving-card { right: 14px !important; top: 22px !important; width: 40% !important; padding: 15px !important; }
  .landing-page .saving-card strong { font-size: 22px !important; }
  .landing-page .saving-card em { font-size: 12px !important; }
  .landing-page .hero-car { right: -8px !important; bottom: 32px !important; width: 92% !important; height: 210px !important; }
  .landing-page .quick-card { grid-template-columns: 74px minmax(0, 1fr) 36px !important; min-height: 128px !important; padding: 18px !important; }
  .landing-page .quick-card img { width: 66px !important; height: 66px !important; }
  .landing-page .quick-card strong { font-size: 19px !important; }
}
/* 2026-07-01: quote page sky restore guard */
.quote-page .quote-page-hero,
.quote-page .quote-page-truth-hero {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr) !important;
  gap: 44px !important;
  align-items: center !important;
  min-height: 0 !important;
  margin: 36px 0 28px !important;
  padding: 48px !important;
  border: 1px solid var(--sky-border) !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, #fbfdff 0%, #f2fbff 52%, #e8f7ff 100%) !important;
  box-shadow: 0 28px 70px rgba(18, 108, 170, .10) !important;
  overflow: hidden !important;
}

.quote-page .quote-page-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  min-width: 0 !important;
  text-align: left !important;
}

.quote-page .quote-page-hero-copy > span {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100% !important;
  padding: 7px 13px !important;
  border-radius: 999px !important;
  background: #e5f8ff !important;
  color: #058fc9 !important;
  font-size: 13px !important;
  font-weight: 780 !important;
  line-height: 1.2 !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
}

.quote-page .quote-page-hero-copy h1 {
  max-width: 620px !important;
  margin: 0 !important;
  color: #071f43 !important;
  font-size: clamp(38px, 4.2vw, 54px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  word-break: keep-all !important;
  text-align: left !important;
}

.quote-page .quote-page-hero-text {
  display: grid !important;
  gap: 12px !important;
  max-width: 650px !important;
}

.quote-page .quote-page-hero-text p {
  margin: 0 !important;
  color: #38516f !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
  text-align: left !important;
}

.quote-page .quote-page-hero-visual {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 270px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(rgba(35, 184, 238, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 184, 238, .06) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(218,244,255,.62)) !important;
  background-size: 48px 48px, 48px 48px, auto !important;
  overflow: hidden !important;
}

.quote-page .quote-page-hero-visual img {
  display: block !important;
  width: min(330px, 84%) !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 26px 30px rgba(18, 108, 170, .14)) !important;
}

.quote-page .quote-hero-float {
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  z-index: 3 !important;
  display: grid !important;
  gap: 6px !important;
  width: auto !important;
  max-width: 190px !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(122, 213, 248, .42) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.9) !important;
  box-shadow: 0 18px 38px rgba(18, 108, 170, .12) !important;
  text-align: left !important;
}

.quote-page .quote-hero-float span,
.quote-page .quote-hero-float strong {
  display: block !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  text-align: left !important;
  line-height: 1.35 !important;
}

.quote-page .quote-hero-float span {
  color: #5a718c !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.quote-page .quote-hero-float strong {
  color: #0498d7 !important;
  font-size: 17px !important;
  font-weight: 820 !important;
}

@media (max-width: 900px) {
  .quote-page .quote-page-hero,
  .quote-page .quote-page-truth-hero {
    grid-template-columns: 1fr !important;
    padding: 34px 24px !important;
  }
  .quote-page .quote-page-hero-visual { min-height: 240px !important; }
}

/* 2026-07-01: specials slider and home estimate box restore guard */
.landing-page #specials-preview {
  position: relative !important;
  margin: 24px 0 28px !important;
  padding: 34px 46px 40px !important;
  border: 1px solid rgba(125, 211, 252, .44) !important;
  border-radius: 28px !important;
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%) !important;
  box-shadow: 0 22px 54px rgba(14, 116, 144, .10) !important;
  overflow: hidden !important;
}

.landing-page #specials-preview h2 {
  margin: 0 0 10px !important;
  color: #07264f !important;
  font-size: 30px !important;
  line-height: 1.25 !important;
  font-weight: 820 !important;
  letter-spacing: 0 !important;
}

.landing-page #specials-preview > p {
  display: block !important;
  width: auto !important;
  margin: 0 0 26px !important;
  color: #49627f !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  writing-mode: horizontal-tb !important;
}

.landing-page #specials-preview .deal-slider-shell {
  position: relative !important;
  margin: 0 !important;
  padding: 0 34px 58px !important;
  overflow: visible !important;
}

.landing-page #specials-preview .deal-slider {
  display: flex !important;
  align-items: stretch !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 2px 0 12px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-padding: 0 !important;
  scrollbar-width: none !important;
}

.landing-page #specials-preview .deal-slider::-webkit-scrollbar {
  display: none !important;
}

.landing-page #specials-preview .deal-card {
  position: relative !important;
  flex: 0 0 calc((100% - 36px) / 3) !important;
  min-width: 0 !important;
  min-height: 430px !important;
  display: grid !important;
  grid-template-rows: auto 170px auto auto auto auto 1fr auto !important;
  gap: 10px !important;
  padding: 22px !important;
  scroll-snap-align: start !important;
  border: 1px solid rgba(125, 211, 252, .52) !important;
  border-radius: 22px !important;
  background: linear-gradient(145deg, #ffffff 0%, #f4fbff 100%) !important;
  box-shadow: 0 18px 42px rgba(14, 116, 144, .10) !important;
  overflow: hidden !important;
}

.landing-page #specials-preview .deal-card::before {
  display: none !important;
}

.landing-page #specials-preview .deal-badge {
  justify-self: start !important;
  min-height: 0 !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(14, 165, 233, .12) !important;
  color: #0284c7 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 780 !important;
}

.landing-page #specials-preview .deal-card img {
  width: 100% !important;
  height: 170px !important;
  margin: 0 !important;
  padding: 12px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(240,249,255,.96), rgba(255,255,255,.72)) !important;
}

.landing-page #specials-preview .deal-card h3 {
  margin: 4px 0 0 !important;
  color: #082447 !important;
  font-size: 21px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.landing-page #specials-preview .deal-card p {
  margin: 0 !important;
  min-height: 38px !important;
  color: #536b89 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.landing-page #specials-preview .deal-card strong {
  min-height: 0 !important;
  color: #0284c7 !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
}

.landing-page #specials-preview .deal-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.landing-page #specials-preview .deal-tags span {
  min-height: 0 !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: #eef8ff !important;
  color: #31506f !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 720 !important;
}

.landing-page #specials-preview .deal-card a {
  align-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  margin-top: 10px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #5bc8f5, #0ea5e9) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 16px 30px rgba(14, 165, 233, .22) !important;
}

.landing-page #specials-preview .deal-slider-arrow {
  position: absolute !important;
  top: calc(50% - 30px) !important;
  z-index: 5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border: 1px solid rgba(125, 211, 252, .55) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.96) !important;
  color: #0284c7 !important;
  font-size: 28px !important;
  line-height: 1 !important;
  box-shadow: 0 14px 28px rgba(14, 116, 144, .14) !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
}

.landing-page #specials-preview .deal-slider-arrow.prev { left: 2px !important; }
.landing-page #specials-preview .deal-slider-arrow.next { right: 2px !important; }

.landing-page #specials-preview .deal-slider-meta {
  position: absolute !important;
  left: 50% !important;
  bottom: 18px !important;
  z-index: 4 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: auto !important;
  min-width: 0 !important;
  height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
}

.landing-page #specials-preview .deal-dots {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.landing-page #specials-preview .deal-dots button {
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #bfdbfe !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.landing-page #specials-preview .deal-dots button.active {
  width: 26px !important;
  background: #0ea5e9 !important;
}

.landing-page #specials-preview [data-deal-counter] {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 38px !important;
  color: #2563a8 !important;
  font-size: 13px !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.landing-page #specials-preview .deal-all-link {
  display: flex !important;
  width: min(360px, 100%) !important;
  margin: 20px auto 0 !important;
}

.landing-page #homeEstimateBox.home-estimate-box,
.quote-page #homeEstimateBox.home-estimate-box {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  min-height: 520px !important;
  padding: 28px 26px !important;
  overflow: hidden !important;
}

.landing-page #homeEstimateBox .home-estimate-image,
.quote-page #homeEstimateBox .home-estimate-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 170px !important;
  min-height: 170px !important;
  margin: 0 auto 14px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #f8fcff, #eef8ff) !important;
}

.landing-page #homeEstimateBox #homeSelectedVehicleImage,
.quote-page #homeEstimateBox #homeSelectedVehicleImage {
  position: static !important;
  display: block !important;
  width: min(230px, 88%) !important;
  max-width: 230px !important;
  height: 138px !important;
  max-height: 138px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  filter: drop-shadow(0 18px 22px rgba(7, 31, 67, .15)) !important;
}

.landing-page #homeEstimateBox #homeQuoteStatus,
.quote-page #homeEstimateBox #homeQuoteStatus {
  display: block !important;
  width: 100% !important;
  margin: 2px 0 8px !important;
  padding: 0 !important;
  color: #082447 !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  font-weight: 720 !important;
  text-align: center !important;
  transform: none !important;
}

.landing-page #homeEstimateBox #homeBestRent,
.quote-page #homeEstimateBox #homeBestRent {
  display: block !important;
  max-width: 100% !important;
  margin: 0 0 10px !important;
  color: #0284c7 !important;
  font-size: clamp(24px, 3.4vw, 38px) !important;
  line-height: 1.14 !important;
  font-weight: 860 !important;
  text-align: center !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

.landing-page #homeEstimateBox #homeBestMeta,
.quote-page #homeEstimateBox #homeBestMeta {
  display: block !important;
  margin: 0 0 18px !important;
  color: #6b7f99 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

.landing-page #homeEstimateBox #homeQuoteList,
.quote-page #homeEstimateBox #homeQuoteList {
  width: 100% !important;
  margin: 0 0 16px !important;
}

@media (max-width: 980px) {
  .landing-page #specials-preview {
    padding: 28px 18px 38px !important;
  }
  .landing-page #specials-preview .deal-slider-shell {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .landing-page #specials-preview .deal-card {
    flex-basis: min(82vw, 320px) !important;
  }
  .landing-page #specials-preview .deal-slider-arrow {
    width: 38px !important;
    height: 38px !important;
    font-size: 24px !important;
  }
}
/* 2026-07-01: force current preorder slider out of legacy grid shell */
.landing-page #specials-preview .deal-slider-shell[data-deal-slider] {
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
}

.landing-page #specials-preview .deal-slider-shell[data-deal-slider] > .deal-slider {
  grid-column: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.landing-page #specials-preview .deal-slider-shell[data-deal-slider] > .deal-slider-arrow.prev,
.landing-page #specials-preview .deal-slider-shell[data-deal-slider] > .deal-slider-arrow.next {
  grid-column: auto !important;
}

.landing-page #specials-preview .deal-slider-shell[data-deal-slider] > .deal-slider-meta {
  grid-column: auto !important;
}