:root {
  --color-navy: #071c3d;
  --color-navy-deep: #061e49;
  --color-gold: #c8962d;
  --color-gold-bright: #e4a902;
  --color-white: #ffffff;
  --color-ivory: #fffcf7;
  --color-beige: #f7f4ee;
  --color-beige-soft: #f4eee7;
  --color-text: #071c3d;
  --color-muted: #666666;
  --color-border: #e8e0d3;
  --color-panel: rgba(255, 255, 255, 0.92);
  --color-panel-soft: rgba(255, 252, 247, 0.88);
  --shadow-card: 0 18px 45px rgba(7, 28, 61, 0.1);
  --shadow-soft: 0 12px 28px rgba(7, 28, 61, 0.08);
  --shadow-lift: 0 22px 54px rgba(7, 28, 61, 0.16);
  --radius-card: 24px;
  --radius-button: 999px;
  --container-max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-ivory);
  font-family: "Pretendard", "SUIT", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(200, 150, 45, 0.65);
  outline-offset: 4px;
}

.container {
  width: min(100% - 44px, var(--container-max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
}

.section--ivory {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 244, 236, 0.9)),
    url("/assets/hero/hero-desktop.webp") center / cover fixed;
}

.section--beige {
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.94), rgba(239, 232, 219, 0.9)),
    url("/assets/hero/hero-desktop.webp") center / cover fixed;
}

.section--navy {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(6, 30, 73, 0.96), rgba(7, 28, 61, 0.9)),
    url("/assets/hero/hero-desktop.webp") center / cover;
  background-repeat: no-repeat;
}

.section:not(.form-section):not(.section--ivory):not(.section--beige):not(.section--navy) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 238, 0.86)),
    url("/assets/hero/hero-desktop.webp") center / cover fixed;
}

.section:not(.form-section):not(.section--navy)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(200, 150, 45, 0.08), transparent 28%, transparent 72%, rgba(6, 30, 73, 0.06)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.74), transparent 42%);
}

.section > .container {
  position: relative;
  z-index: 1;
}

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

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading--light {
  color: var(--color-white);
}

.section-heading h2 {
  margin: 8px 0 14px;
  font-size: 34px;
  line-height: 1.22;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button::after {
  content: "→";
  color: var(--color-gold-bright);
  font-weight: 900;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary,
.button--submit {
  color: var(--color-white);
  border: 1px solid rgba(228, 169, 2, 0.72);
  background: linear-gradient(135deg, #061a3c, #082a5f);
  box-shadow: 0 16px 34px rgba(6, 30, 73, 0.28);
}

.button--light {
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(255, 252, 247, 0.97) 0%, rgba(255, 252, 247, 0.9) 38%, rgba(255, 252, 247, 0.2) 64%, rgba(255, 252, 247, 0) 100%),
    url("/assets/hero/hero-mobile.webp");
  background-position: center top;
  background-size: cover;
}

.hero__inner {
  min-height: 790px;
  display: flex;
  align-items: flex-start;
  padding-top: 78px;
}

.hero__copy {
  width: min(100%, 620px);
}

.hero__brand-logo {
  display: none;
}

.hero h1 {
  margin: 12px 0 18px;
  font-size: 34px;
  line-height: 1.2;
}

.mobile-break {
  display: inline;
}

.hero__lead {
  margin: 0 0 22px;
  color: #24405f;
  font-size: 16px;
  font-weight: 500;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero__badges span {
  padding: 8px 12px;
  border: 1px solid rgba(200, 150, 45, 0.35);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 700;
}

.hero__note {
  display: inline-flex;
  margin: 13px 0 0;
  padding: 4px 10px;
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.72);
  color: #24405f;
  font-size: 14px;
  font-weight: 700;
}

.form-section {
  background-image:
    linear-gradient(180deg, rgba(6, 30, 73, 0.72), rgba(6, 30, 73, 0.5)),
    url("/assets/form/form-bg-mobile.webp");
  background-position: center top;
  background-size: cover;
}

.form-section__inner {
  display: grid;
  gap: 28px;
}

.lead-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.form-grid,
.extra-fields {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
}

.field label span {
  color: #b5402e;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-text);
  padding: 0 16px;
}

.field textarea {
  min-height: 118px;
  padding: 14px 16px;
  resize: vertical;
}

.phone-field {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  overflow: hidden;
}

.phone-field__prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-beige);
  color: var(--color-navy);
  font-weight: 900;
}

.phone-field input {
  border: 0;
  border-radius: 0;
}

.field-help,
.field-error,
.form-note,
.form-status {
  margin: 0;
  font-size: 13px;
}

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

.field-error {
  min-height: 20px;
  color: #b5402e;
  font-weight: 700;
}

.form-toggle,
.text-button {
  border: 0;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
  font-weight: 800;
}

.form-toggle {
  width: 100%;
  min-height: 50px;
  margin: 14px 0;
  border: 1px solid rgba(200, 150, 45, 0.45);
  border-radius: 16px;
  background: var(--color-ivory);
}

.agreements {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.agreement {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-ivory);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-navy-deep);
}

.text-button {
  min-height: 34px;
  margin-top: 6px;
  padding: 0;
  color: var(--color-gold);
}

.agreement__body {
  margin-top: 8px;
  padding: 12px;
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.65;
}

.button--submit {
  width: 100%;
  min-height: 60px;
  font-size: 18px;
}

.form-note,
.form-status {
  margin-top: 12px;
  color: var(--color-muted);
  text-align: center;
}

.form-status.is-error {
  color: #b5402e;
  font-weight: 800;
}

.form-status.is-info {
  color: var(--color-navy);
  font-weight: 800;
}

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

.vehicle-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 14px;
  border: 1px solid rgba(200, 150, 45, 0.34);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 252, 247, 0.95));
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.vehicle-card:hover,
.vehicle-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(200, 150, 45, 0.68);
  box-shadow: var(--shadow-lift);
}

.vehicle-card__image-wrap {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f5ef);
}

.vehicle-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vehicle-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.vehicle-card h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.vehicle-card__price {
  margin: 0;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 900;
}

.vehicle-card__terms {
  margin: 4px 0 14px;
  color: var(--color-muted);
  font-size: 13px;
}

.vehicle-card .button {
  min-height: 46px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(200, 150, 45, 0.55);
  background: linear-gradient(180deg, #ffffff, #fff8ea);
  color: var(--color-navy);
  box-shadow: none;
  font-size: 14px;
}

.section-note {
  margin: 22px 0 0;
  color: var(--color-muted);
  text-align: center;
  font-size: 14px;
}

.card-grid {
  display: grid;
  gap: 16px;
  counter-reset: info-card;
}

.info-card,
.compare-card,
.process-grid article {
  position: relative;
  border: 1px solid rgba(200, 150, 45, 0.28);
  border-radius: var(--radius-card);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.info-card:hover,
.compare-card:hover,
.process-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 150, 45, 0.62);
  box-shadow: var(--shadow-lift);
}

.info-card {
  counter-increment: info-card;
  min-height: 100%;
  padding: 24px;
}

.info-card::before,
.compare-card::before {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(200, 150, 45, 0.58);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #fff5df);
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(200, 150, 45, 0.08);
}

.info-card::before {
  content: counter(info-card, decimal-leading-zero);
}

.info-card h3,
.compare-card h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.info-card p,
.compare-card p,
.process-grid p {
  margin: 0;
  color: var(--color-muted);
}

.emphasis-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(228, 169, 2, 0.55);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(6, 30, 73, 0.96), rgba(8, 42, 95, 0.94)),
    url("/assets/hero/hero-desktop.webp") center / cover;
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.emphasis-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.emphasis-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.split-layout {
  display: grid;
  gap: 30px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.pill-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(200, 150, 45, 0.45);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.review-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
}

.review-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.review-track {
  display: flex;
  transition: transform 0.35s ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 2px;
}

.review-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 0;
}

.review-dots button.is-active {
  width: 28px;
  border-radius: var(--radius-button);
  background: var(--color-gold);
}

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

.compare-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.mobile-compare-table {
  display: none;
}

.compare-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px 20px 20px;
}

.compare-card:nth-child(1)::before {
  content: "할";
}

.compare-card:nth-child(2)::before {
  content: "리";
}

.compare-card:nth-child(3)::before {
  content: "렌";
}

.compare-card--featured {
  border-color: rgba(228, 169, 2, 0.85);
  background:
    linear-gradient(180deg, #061a3c 0%, #082a5f 44%, #ffffff 44%, #ffffff 100%);
  color: var(--color-white);
}

.compare-card--featured::before {
  border-color: rgba(228, 169, 2, 0.9);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold-bright);
  box-shadow: inset 0 0 0 5px rgba(228, 169, 2, 0.12);
}

.compare-card--featured h3 {
  color: var(--color-gold-bright);
}

.compare-card dl {
  display: grid;
  grid-template-columns: minmax(92px, 0.78fr) minmax(0, 1fr);
  margin: 10px -20px -20px;
  border-top: 1px solid rgba(200, 150, 45, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
}

.compare-card--featured dl {
  margin-top: 22px;
  border-top-color: rgba(228, 169, 2, 0.4);
  background: #ffffff;
  color: var(--color-text);
}

.compare-card dt,
.compare-card dd {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(200, 150, 45, 0.18);
}

.compare-card dt:nth-last-of-type(1),
.compare-card dd:nth-last-of-type(1) {
  border-bottom: 0;
}

.compare-card dt {
  padding-left: 20px;
  padding-right: 10px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
}

.compare-card dd {
  margin: 0;
  padding-right: 20px;
  color: var(--color-text);
  font-weight: 800;
}

.compare-card--featured dd {
  color: var(--color-navy);
}

.compare-card--featured dt {
  color: var(--color-gold);
}

.process-grid {
  display: grid;
  gap: 16px;
  counter-reset: process-card;
}

.process-grid article {
  counter-increment: process-card;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 247, 0.92));
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: var(--radius-button);
  border: 1px solid rgba(200, 150, 45, 0.48);
  background: #fff8ea;
  color: var(--color-gold);
  font-weight: 900;
}

.process-grid article::before {
  content: counter(process-card, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(7, 28, 61, 0.08);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.bottom-cta {
  min-height: 560px;
  color: var(--color-white);
  background-image:
    linear-gradient(180deg, rgba(6, 30, 73, 0.88), rgba(6, 30, 73, 0.56) 52%, rgba(6, 30, 73, 0.2) 100%),
    url("/assets/bottom/bottom-cta-mobile.webp");
  background-position: center top;
  background-size: cover;
}

.bottom-cta__inner {
  padding: 74px 0 210px;
}

.bottom-cta h2 {
  margin: 10px 0 14px;
  font-size: 34px;
  line-height: 1.22;
}

.bottom-cta p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.bottom-cta small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 244, 238, 0.92)),
      url("/assets/hero/hero-desktop.webp") center / cover fixed;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(200, 150, 45, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(200, 150, 45, 0.62);
  box-shadow: var(--shadow-lift);
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 18px 64px 18px 24px;
  border: 0;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 150, 45, 0.45);
  border-radius: 50%;
  background: #fff8ea;
  color: var(--color-gold);
  font-size: 23px;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--color-muted);
}

.faq-answer p {
  margin: 0 0 10px;
}

.site-footer {
  padding: 34px 0 94px;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 20px;
}

.site-footer p {
  margin: 4px auto 0;
  max-width: 720px;
  line-height: 1.55;
  word-break: keep-all;
}

.mobile-fixed-cta {
  position: fixed;
  z-index: 20;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  display: flex;
  width: max-content;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-button);
  background: var(--color-navy-deep);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(6, 30, 73, 0.28);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transform: translateX(-50%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-fixed-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 120%);
}

body.is-modal-open .mobile-fixed-cta {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 120%);
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 244, 238, 0.94)),
      url("/assets/hero/hero-desktop.webp") center / cover;
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 44px 22px;
}

.thanks-card {
  width: min(100%, 640px);
  padding: 34px 24px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.thanks-card h1 {
  margin: 10px 0 12px;
  font-size: 34px;
  line-height: 1.22;
}

.thanks-card p {
  margin: 0;
  color: var(--color-muted);
}

.thanks-card small {
  display: block;
  margin: 12px 0 24px;
  color: var(--color-muted);
}

@media (max-width: 359px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .bottom-cta h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, 430px);
  }

  .section {
    padding: 64px 0;
  }

  .section--ivory,
  .section--beige,
  .section:not(.form-section):not(.section--ivory):not(.section--beige):not(.section--navy),
  .faq-section {
    background-attachment: scroll;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading::before {
    display: none;
  }

  .section-heading h2 {
    margin-top: 0;
    color: var(--color-navy);
    font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.24;
    word-break: keep-all;
  }

  .section-heading p {
    font-size: 16px;
    line-height: 1.55;
    word-break: keep-all;
  }

  .section-heading--light h2 {
    color: var(--color-white);
  }

  .hero {
    min-height: 760px;
    background-image:
      linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.94) 39%, rgba(255, 252, 247, 0.12) 68%, rgba(255, 252, 247, 0) 100%),
      url("/assets/hero/hero-mobile.webp");
  }

  .hero__inner {
    min-height: 760px;
    justify-content: center;
    padding-top: 36px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__brand-logo {
    display: block;
    width: 132px;
    height: auto;
    margin: 0 auto 14px;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero .eyebrow::before {
    width: 42px;
  }

  .hero h1 {
    margin-top: 16px;
    font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.28;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero__badges {
    justify-content: center;
    gap: 8px;
    margin: 20px auto 18px;
  }

  .hero__badges span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 8px 18px rgba(7, 28, 61, 0.06);
  }

  .hero .button {
    width: min(100%, 286px);
    min-height: 56px;
    margin: 0 auto;
    border-width: 2px;
    font-size: 18px;
  }

  .hero__note {
    margin-top: 11px;
    background: rgba(255, 255, 255, 0.84);
  }

  .form-section {
    padding: 50px 0;
    background-position: center center;
  }

  .form-section .section-heading {
    margin-bottom: 18px;
  }

  .form-section .section-heading h2 {
    font-size: 28px;
  }

  .form-section .section-heading p {
    display: none;
  }

  .lead-form {
    padding: 18px 20px;
    border-radius: 20px;
  }

  .form-grid,
  .extra-fields {
    gap: 10px;
  }

  .field {
    gap: 5px;
  }

  .field label {
    font-size: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 14px;
  }

  .field textarea {
    min-height: 88px;
    padding: 12px 14px;
  }

  .phone-field {
    grid-template-columns: 70px minmax(0, 1fr);
    border-radius: 14px;
  }

  .field-help {
    font-size: 12px;
  }

  .field-error {
    min-height: 0;
    font-size: 12px;
  }

  .field-error:empty {
    display: none;
  }

  .form-toggle {
    min-height: 44px;
    margin: 8px 0;
    border-radius: 14px;
    font-size: 15px;
  }

  .agreements {
    gap: 8px;
    margin: 12px 0;
  }

  .agreement {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .check {
    gap: 8px;
    font-size: 13px;
  }

  .check input {
    width: 16px;
    height: 16px;
  }

  .text-button {
    min-height: auto;
    margin-top: 0;
    font-size: 13px;
  }

  .agreement__body {
    grid-column: 1 / -1;
  }

  .button--submit {
    min-height: 54px;
    font-size: 16px;
  }

  .form-note {
    display: none;
  }

  .vehicle-grid {
    gap: 12px;
  }

  .vehicle-card {
    border-radius: 18px;
  }

  .card-grid,
  .card-grid--four,
  .card-grid--five {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    display: grid;
    min-height: 112px;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .info-card::before {
    width: 58px;
    height: 58px;
    margin: 0;
    font-size: 15px;
    grid-row: 1 / span 2;
  }

  .info-card h3 {
    grid-column: 2;
    margin-bottom: 5px;
    font-size: 21px;
    line-height: 1.24;
  }

  .info-card p {
    grid-column: 2;
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
  }

  .info-card::before {
    content: "" !important;
    background:
      var(--card-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E")) center / 30px 30px no-repeat,
      linear-gradient(180deg, #ffffff, #fff5df);
  }

  #pain-points .info-card:nth-child(1),
  #brand-benefits .info-card:nth-child(1) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16v12H4z'/%3E%3Cpath d='M8 7V5h8v2'/%3E%3Cpath d='M8 12h8'/%3E%3Cpath d='M8 16h5'/%3E%3C/svg%3E");
  }

  #pain-points .info-card:nth-child(2),
  #brand-benefits .info-card:nth-child(3) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3a9 9 0 1 0 9 9'/%3E%3Cpath d='m14 9 5-5'/%3E%3Cpath d='m15 4 4 4'/%3E%3Cpath d='M9 12l2 2 5-5'/%3E%3C/svg%3E");
  }

  #pain-points .info-card:nth-child(3),
  #brand-benefits .info-card:nth-child(2) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l2-5h10l2 5'/%3E%3Cpath d='M4 12h16v5H4z'/%3E%3Ccircle cx='7' cy='17' r='1.5'/%3E%3Ccircle cx='17' cy='17' r='1.5'/%3E%3Cpath d='M12 4v3'/%3E%3C/svg%3E");
  }

  #pain-points .info-card:nth-child(4),
  #brand-benefits .info-card:nth-child(4) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3Cpath d='m15 14 2 2 4-5'/%3E%3C/svg%3E");
  }

  #rent-benefits .info-card:nth-child(1) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 11c0-3 3-6 6-6s6 3 6 6v7H6z'/%3E%3Cpath d='M9 10h6'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M12 10v6'/%3E%3C/svg%3E");
  }

  #rent-benefits .info-card:nth-child(2) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h8l4 4v14H7z'/%3E%3Cpath d='M15 3v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h4'/%3E%3Cpath d='M4 7v14h3'/%3E%3C/svg%3E");
  }

  #rent-benefits .info-card:nth-child(3) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3v4'/%3E%3Cpath d='M17 3v4'/%3E%3Cpath d='M4 8h16'/%3E%3Crect x='4' y='5' width='16' height='16' rx='2'/%3E%3Cpath d='M8 13h3'/%3E%3Cpath d='M8 17h8'/%3E%3C/svg%3E");
  }

  #rent-benefits .info-card:nth-child(4) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l2-5h10l2 5'/%3E%3Cpath d='M4 12h16v5H4z'/%3E%3Ccircle cx='7' cy='17' r='1.5'/%3E%3Ccircle cx='17' cy='17' r='1.5'/%3E%3Cpath d='m14 8 2 2 4-5'/%3E%3C/svg%3E");
  }

  #rent-benefits .info-card:nth-child(5) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M7 7l5-4 5 4'/%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M8 12l4-3 4 3'/%3E%3Cpath d='M7 17h10'/%3E%3Cpath d='M10 17l2-2 2 2'/%3E%3C/svg%3E");
  }

  #customer-types .info-card:nth-child(1) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 3 4 14h7l-1 7 9-11h-7z'/%3E%3C/svg%3E");
  }

  #customer-types .info-card:nth-child(2) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5'/%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M8 16v-4'/%3E%3Cpath d='M12 16V8'/%3E%3Cpath d='M16 16v-7'/%3E%3C/svg%3E");
  }

  #customer-types .info-card:nth-child(3) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V7l8-4 8 4v14'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3Cpath d='M8 9h.01'/%3E%3Cpath d='M12 9h.01'/%3E%3Cpath d='M16 9h.01'/%3E%3C/svg%3E");
  }

  #customer-types .info-card:nth-child(4) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l2-5h10l2 5'/%3E%3Cpath d='M4 12h16v5H4z'/%3E%3Ccircle cx='7' cy='17' r='1.5'/%3E%3Ccircle cx='17' cy='17' r='1.5'/%3E%3Cpath d='M12 4v3'/%3E%3C/svg%3E");
  }

  #customer-types .info-card:nth-child(5) {
    --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 2.4 5 5.6.8-4 3.9.9 5.5L12 15.6 7.1 18.2l.9-5.5-4-3.9 5.6-.8z'/%3E%3C/svg%3E");
  }

  .split-layout {
    gap: 22px;
  }

  .section-heading--left {
    text-align: center;
  }

  .section-heading--left .button {
    width: min(100%, 310px);
    margin-top: 22px;
  }

  .pill-list {
    justify-content: center;
  }

  .pill-list span {
    min-height: 42px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
  }

  .compare-grid {
    display: none;
  }

  .mobile-compare-table {
    display: grid;
    grid-template-columns: 84px repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(200, 150, 45, 0.4);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-card);
  }

  .mobile-compare-table > div {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    border-right: 1px solid rgba(200, 150, 45, 0.18);
    border-bottom: 1px solid rgba(200, 150, 45, 0.18);
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    word-break: keep-all;
  }

  .mobile-compare-table > div:nth-child(4n) {
    border-right: 0;
  }

  .mobile-compare-table > div:nth-last-child(-n + 4) {
    border-bottom: 0;
  }

  .mobile-compare-table__corner {
    background: rgba(255, 252, 247, 0.86);
  }

  .mobile-compare-table__head {
    min-height: 72px;
    flex-direction: column;
    background: rgba(255, 252, 247, 0.95);
    font-size: 16px;
  }

  .mobile-compare-table__head::before {
    width: 36px;
    height: 36px;
    margin-bottom: 5px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(200, 150, 45, 0.52);
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff, #fff1d4);
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-compare-table__head:nth-child(2)::before {
    content: "";
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16v12H4z'/%3E%3Cpath d='M8 7V5h8v2'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E") center / 24px 24px no-repeat,
      linear-gradient(180deg, #ffffff, #fff1d4);
  }

  .mobile-compare-table__head:nth-child(3)::before {
    content: "";
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l3 3v15H7z'/%3E%3Cpath d='M14 3v4h4'/%3E%3Cpath d='M9 12h6'/%3E%3Cpath d='M9 16h4'/%3E%3C/svg%3E") center / 24px 24px no-repeat,
      linear-gradient(180deg, #ffffff, #fff1d4);
  }

  .mobile-compare-table__head:nth-child(4)::before {
    content: "";
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c8962d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l2-5h10l2 5'/%3E%3Cpath d='M4 12h16v5H4z'/%3E%3Ccircle cx='7' cy='17' r='1.5'/%3E%3Ccircle cx='17' cy='17' r='1.5'/%3E%3C/svg%3E") center / 24px 24px no-repeat,
      linear-gradient(180deg, #ffffff, #fff1d4);
  }

  .mobile-compare-table__label {
    justify-content: flex-start !important;
    color: var(--color-gold) !important;
    font-size: 12px !important;
  }

  .mobile-compare-table__head--featured,
  .mobile-compare-table__featured {
    border-right: 0;
    background: linear-gradient(180deg, #061a3c, #082a5f);
    color: var(--color-gold-bright) !important;
  }

  .mobile-compare-table__head--featured {
    position: relative;
    border-left: 2px solid rgba(228, 169, 2, 0.88);
  }

  .mobile-compare-table__featured {
    border-left: 2px solid rgba(228, 169, 2, 0.88);
    font-size: 14px !important;
  }

  .emphasis-box {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .emphasis-box strong {
    font-size: 19px;
    line-height: 1.35;
  }

  .center-cta .button {
    width: min(100%, 330px);
    min-height: 58px;
    border-width: 2px;
    font-size: 17px;
  }

  .process-grid {
    position: relative;
    gap: 16px;
    padding-left: 34px;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 27px;
    width: 2px;
    background: linear-gradient(180deg, rgba(200, 150, 45, 0.2), rgba(200, 150, 45, 0.82), rgba(200, 150, 45, 0.2));
  }

  .process-grid article {
    min-height: 118px;
    padding: 20px 18px 20px 72px;
    border-radius: 16px;
    overflow: visible;
  }

  .process-grid article::before {
    display: none;
  }

  .process-grid span {
    position: absolute;
    top: 24px;
    left: -45px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: linear-gradient(180deg, #d7a64b, #a8741d);
    box-shadow: 0 12px 20px rgba(7, 28, 61, 0.15);
    color: transparent;
    font-size: 0;
  }

  .process-grid span::after {
    color: var(--color-white);
    font-size: 19px;
    font-weight: 900;
  }

  .process-grid article:nth-child(1) span::after {
    content: "01";
  }

  .process-grid article:nth-child(2) span::after {
    content: "02";
  }

  .process-grid article:nth-child(3) span::after {
    content: "03";
  }

  .process-grid article:nth-child(4) span::after {
    content: "04";
  }

  .process-grid h3 {
    margin-bottom: 5px;
    font-size: 23px;
  }

  .process-grid p {
    font-size: 14px;
    word-break: keep-all;
  }

  .faq-list {
    gap: 11px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    min-height: 58px;
    padding: 16px 58px 16px 18px;
    font-size: 15px;
  }

  .bottom-cta__inner {
    text-align: center;
  }

  .bottom-cta h2 {
    font-size: 31px;
    line-height: 1.24;
    word-break: keep-all;
  }

  .bottom-cta p {
    font-size: 16px;
    word-break: keep-all;
  }

  .bottom-cta .button {
    width: min(100%, 320px);
  }
}

@media (max-width: 767px) {
  body {
    background: #fbf7ef;
  }

  .section:not(.form-section):not(.section--navy),
  .section--ivory,
  .section--beige,
  .faq-section {
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 241, 230, 0.96));
  }

  .section-heading h2 {
    text-wrap: balance;
  }

  #pain-points::after,
  #rent-benefits::after,
  #customer-types::after {
    content: "";
    position: absolute;
    right: -112px;
    bottom: 12px;
    width: 300px;
    height: 210px;
    pointer-events: none;
    background: url("/assets/cars/sorento.webp") center / contain no-repeat;
    opacity: 0.08;
    filter: saturate(0.75);
  }

  #comparison-method,
  #brand-benefits {
    color: var(--color-white);
    background-image:
      linear-gradient(180deg, rgba(6, 22, 54, 0.96), rgba(7, 31, 72, 0.9)),
      url("/assets/form/form-bg-mobile.webp");
    background-position: center center;
    background-size: cover;
  }

  #comparison-method .section-heading h2,
  #brand-benefits .section-heading h2 {
    color: var(--color-white);
  }

  #comparison-method .section-heading p,
  #brand-benefits .section-heading p {
    color: rgba(255, 255, 255, 0.82);
  }

  #comparison-method .pill-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #comparison-method .pill-list span {
    min-height: 54px;
    justify-content: center;
    border-color: rgba(228, 169, 2, 0.42);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    box-shadow: none;
    text-align: center;
  }

  #brand-benefits .info-card {
    border-color: rgba(228, 169, 2, 0.24);
    background: rgba(255, 255, 255, 0.09);
    color: var(--color-white);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  }

  #brand-benefits .info-card h3 {
    color: var(--color-white);
  }

  #brand-benefits .info-card p {
    color: rgba(255, 255, 255, 0.76);
  }

  #brand-benefits .info-card::before {
    border-color: rgba(228, 169, 2, 0.64);
    background:
      var(--card-icon, none) center / 30px 30px no-repeat,
      rgba(6, 30, 73, 0.74);
  }

  #pain-points .info-card,
  #rent-benefits .info-card,
  #customer-types .info-card {
    border-color: rgba(200, 150, 45, 0.22);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 244, 0.9));
    box-shadow: 0 14px 34px rgba(7, 28, 61, 0.08);
  }

  #pain-points .info-card::after,
  #rent-benefits .info-card::after,
  #customer-types .info-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(200, 150, 45, 0.68), transparent);
  }

  #customer-types .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #customer-types .info-card {
    min-height: 168px;
    display: block;
    padding: 18px 15px;
  }

  #customer-types .info-card::before {
    display: grid;
    margin-bottom: 12px;
  }

  #customer-types .info-card h3,
  #customer-types .info-card p {
    grid-column: auto;
  }

  #customer-types .info-card h3 {
    font-size: 16px;
    line-height: 1.34;
    word-break: keep-all;
  }

  #customer-types .info-card p {
    font-size: 13px;
    word-break: keep-all;
  }

  #product-compare {
    background:
      linear-gradient(180deg, #fffdf9 0%, #f7efe3 100%);
  }

  #product-compare .section-heading h2 {
    font-size: 34px;
  }

  .mobile-compare-table {
    box-shadow: 0 22px 46px rgba(7, 28, 61, 0.12);
  }

  #process {
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 240, 228, 0.94)),
      url("/assets/bottom/bottom-cta-mobile.webp") center bottom / cover;
  }

  #process .process-grid article {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 80px, var(--container-max));
  }

  .section {
    padding: 96px 0;
  }

  .hero {
    min-height: 820px;
    background-image:
      linear-gradient(90deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.9) 42%, rgba(255, 252, 247, 0.25) 62%, rgba(255, 252, 247, 0) 100%),
      url("/assets/hero/hero-desktop.webp");
    background-position: center center;
  }

  .hero__inner {
    min-height: 820px;
    align-items: center;
    padding-top: 0;
  }

  .hero h1 {
    font-size: 66px;
    line-height: 1.13;
  }

  .mobile-break {
    display: none;
  }

  .hero__lead {
    font-size: 22px;
  }

  .hero__badges span {
    font-size: 15px;
  }

  .button {
    min-height: 64px;
    padding: 0 34px;
    font-size: 20px;
  }

  .section-heading h2 {
    font-size: 46px;
  }

  .section-heading p {
    font-size: 19px;
  }

  .form-section {
    background-image:
      linear-gradient(90deg, rgba(6, 30, 73, 0.75), rgba(6, 30, 73, 0.36)),
      url("/assets/form/form-bg-desktop.webp");
    background-position: center center;
  }

  .form-section__inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
    align-items: center;
  }

  .form-section .section-heading {
    margin: 0;
    text-align: left;
  }

  .lead-form {
    padding: 32px;
  }

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

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

  .extra-fields {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

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

  .vehicle-card {
    padding: 18px;
  }

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

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

  .split-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

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

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

  .review-carousel {
    grid-template-columns: 54px minmax(0, 900px) 54px;
    justify-content: center;
    gap: 16px;
  }

  .carousel-button {
    width: 54px;
    height: 54px;
  }

  .bottom-cta {
    min-height: 500px;
    background-image:
      linear-gradient(90deg, rgba(6, 30, 73, 0.88), rgba(6, 30, 73, 0.64) 48%, rgba(6, 30, 73, 0.28) 100%),
      url("/assets/bottom/bottom-cta-desktop.png");
    background-position: center center;
  }

  .bottom-cta__inner {
    max-width: 680px;
    margin-left: 0;
    padding: 100px 0;
  }

  .bottom-cta h2 {
    font-size: 50px;
    line-height: 1.16;
  }

  .mobile-fixed-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .thanks-card {
    padding: 48px;
  }

  .thanks-card h1 {
    font-size: 46px;
  }
}

/* Image-first landing flow */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero--image,
.image-section,
.form-section--image,
.bottom-cta--image {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  background: var(--color-ivory);
  overflow: visible;
}

.hero--image {
  position: relative;
  color: var(--color-navy);
}

.section-artboard {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.section-artboard__image {
  width: 100%;
  height: auto;
}

.image-hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  border: 0;
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0);
  color: transparent;
  cursor: pointer;
  font-size: 0;
}

.image-hotspot:focus-visible {
  background: rgba(228, 169, 2, 0.18);
  outline: 3px solid rgba(228, 169, 2, 0.75);
  outline-offset: 2px;
}

.image-hotspot--hero {
  left: 8%;
  top: 42%;
  width: 43%;
  height: 5.5%;
}

.image-hotspot--process {
  left: 8.4%;
  top: 90.2%;
  width: 83.2%;
  height: 5.5%;
}

.image-hotspot--bottom {
  left: 7.5%;
  top: 41.6%;
  width: 53.5%;
  height: 7.4%;
}

.section-artboard--price .price-hotspot {
  width: 31.2%;
  height: 2.8%;
}

.price-hotspot--sorento {
  left: 13.4%;
  top: 28.1%;
}

.price-hotspot--modely {
  left: 55.3%;
  top: 28.1%;
}

.price-hotspot--grandeur {
  left: 13.4%;
  top: 49.6%;
}

.price-hotspot--sonata {
  left: 55.3%;
  top: 49.6%;
}

.price-hotspot--avante {
  left: 13.4%;
  top: 71.0%;
}

.price-hotspot--carnival {
  left: 55.3%;
  top: 71.0%;
}

.price-hotspot--sportage {
  left: 13.4%;
  top: 92.0%;
}

.price-hotspot--santafe {
  left: 55.3%;
  top: 92.0%;
}

.form-section--image .form-section__inner {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.lead-form--image {
  isolation: isolate;
  position: relative;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 1080 / 1919;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: url("/assets/form/form-bg-mobile.webp") center top / 100% 100% no-repeat;
  box-shadow: none;
}

.lead-form--image::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 6.85%;
  top: 18.9%;
  width: 86.3%;
  height: 45.75%;
  border-radius: min(3.2vw, 32px);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 13px 34px rgba(7, 28, 61, 0.13);
  pointer-events: none;
}

.lead-form--image .form-grid,
.lead-form--image .extra-fields {
  display: contents;
}

.lead-form--image .field {
  position: absolute;
  z-index: 2;
  display: block;
  gap: 0;
}

.lead-form--image .field > label {
  position: absolute;
  left: 0;
  top: clamp(-23px, -4.35vw, -14px);
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  color: #18253d;
  font-size: clamp(12px, 2.15vw, 23px);
  font-weight: 800;
  line-height: 1.1;
}

.lead-form--image .field > label span {
  margin-left: 0.25em;
  color: #b5402e;
}

.lead-form--image .field-help {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lead-form--image .field--name::before,
.lead-form--image .field--phone::before,
.lead-form--image .field--car::before {
  content: none;
  position: absolute;
  top: clamp(-26px, -4.65vw, -14px);
  z-index: 3;
  color: #b5402e;
  font-size: clamp(11px, 2.15vw, 23px);
  font-weight: 900;
  line-height: 1;
}

.lead-form--image .field--name::before {
  left: clamp(24px, 6.15vw, 66px);
}

.lead-form--image .field--phone::before {
  left: clamp(38px, 9.7vw, 104px);
}

.lead-form--image .field--car::before {
  left: clamp(50px, 12.9vw, 138px);
}

.lead-form--image .field--name {
  left: 11.85%;
  top: 23.76%;
  width: 76.3%;
  height: 3.88%;
}

.lead-form--image .field--phone {
  left: 11.85%;
  top: 31.68%;
  width: 76.3%;
  height: 3.88%;
}

.lead-form--image .field--car {
  left: 11.85%;
  top: 39.6%;
  width: 76.3%;
  height: 3.88%;
}

.lead-form--image .field input,
.lead-form--image .field select,
.lead-form--image .field textarea {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid #d3d3d3;
  border-radius: min(1.25vw, 14px);
  background: #ffffff;
  color: var(--color-navy);
  padding: 0 2.6%;
  font-size: clamp(14px, 2.55vw, 28px);
}

.lead-form--image .field input::placeholder,
.lead-form--image .field textarea::placeholder {
  color: #a7a7a7;
}

.lead-form--image .phone-field {
  display: grid;
  grid-template-columns: 27% minmax(0, 1fr);
  gap: 2.4%;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.lead-form--image .phone-field__prefix,
.lead-form--image .phone-field input {
  min-height: 0;
  height: 100%;
  border: 1px solid #d3d3d3;
  border-radius: min(1.25vw, 14px);
  background: #ffffff;
}

.lead-form--image .phone-field__prefix {
  color: #0b1730;
  font-size: clamp(15px, 2.7vw, 30px);
  font-weight: 800;
}

.lead-form--image .phone-field input {
  padding: 0 4%;
}

.lead-form--image .form-toggle {
  position: absolute;
  z-index: 2;
  left: 11.85%;
  top: 45.02%;
  width: 76.3%;
  height: 3.56%;
  min-height: 0;
  margin: 0;
  border: 1px dashed rgba(200, 150, 45, 0.42);
  border-radius: min(1.25vw, 14px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-gold);
  font-size: clamp(13px, 2.35vw, 25px);
}

.lead-form--image .form-toggle::before {
  content: "+";
  margin-right: 0.55em;
  font-weight: 900;
}

.lead-form--image .extra-fields:not([hidden]) {
  position: absolute;
  z-index: 24;
  left: 11.85%;
  top: 48.9%;
  display: grid;
  width: 76.3%;
  gap: 7px;
  padding: 9px 10px 10px;
  border: 1px solid rgba(200, 150, 45, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(7, 28, 61, 0.16);
}

.lead-form--image .extra-fields:not([hidden]) .field {
  position: static;
  display: grid;
  gap: 4px;
  height: auto;
}

.lead-form--image .extra-fields:not([hidden]) .field > label {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  white-space: normal;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 900;
}

.lead-form--image .extra-fields:not([hidden]) select,
.lead-form--image .extra-fields:not([hidden]) textarea {
  min-height: 34px;
  height: auto;
  border-radius: 10px;
  font-size: 14px;
}

.lead-form--image .extra-fields:not([hidden]) textarea {
  min-height: 64px;
  padding: 9px 12px;
}

.extra-confirm {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius-button);
  background: linear-gradient(180deg, #062657, #071c3d);
  color: var(--color-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.extra-confirm::after {
  content: "→";
  margin-left: 0.75em;
  color: var(--color-gold-bright);
}

.lead-form--image .agreements {
  position: absolute;
  z-index: 2;
  left: 11.85%;
  top: 49.56%;
  display: grid;
  width: 76.3%;
  gap: 0;
  margin: 0;
}

.lead-form--image .agreement {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 10px;
  min-height: clamp(24px, 5.2vw, 58px);
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 28, 61, 0.1);
  border-radius: 0;
  background: transparent;
}

.lead-form--image .check {
  align-items: center;
  gap: clamp(6px, 1.6vw, 18px);
  color: #171717;
  font-size: clamp(12px, 2.15vw, 23px);
  font-weight: 700;
}

.lead-form--image .check input {
  width: clamp(16px, 3.35vw, 36px);
  height: clamp(16px, 3.35vw, 36px);
  margin: 0;
}

.lead-form--image .text-button {
  min-height: 0;
  margin: 0;
  padding-left: 10px;
  color: #333333;
  font-size: clamp(12px, 2.15vw, 23px);
  font-weight: 500;
  white-space: nowrap;
}

.lead-form--image .text-button::after {
  content: ">";
  margin-left: 0.7em;
}

.lead-form--image .agreement__body {
  position: absolute;
  left: 0;
  bottom: calc(100% + 6px);
  z-index: 6;
  width: 100%;
  max-height: min(138px, 28vw);
  margin: 0;
  padding: 10px 12px;
  overflow: auto;
  border: 1px solid rgba(200, 150, 45, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 14px 32px rgba(7, 28, 61, 0.16);
  color: #4f5561;
  font-size: 12px;
  line-height: 1.45;
}

.lead-form--image [data-error="agree"] {
  margin-top: 4px;
}

.lead-form--image .field-error {
  min-height: 0;
  margin: 3px 0 0;
  color: #b5402e;
  font-size: clamp(10px, 1.8vw, 18px);
  font-weight: 800;
}

.lead-form--image .field-error:empty {
  display: none;
}

.lead-form--image .field--phone [data-error="phone"] {
  width: 70%;
  margin-left: 29.4%;
  line-height: 1.15;
}

.lead-form--image .button--submit {
  position: absolute;
  z-index: 2;
  left: 11.1%;
  top: 57.74%;
  width: 77.8%;
  height: 4.88%;
  min-height: 0;
  border: 0;
  border-radius: var(--radius-button);
  background: linear-gradient(180deg, #062657, #071c3d);
  color: #ffffff;
  font-size: clamp(15px, 2.75vw, 30px);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(7, 28, 61, 0.18);
}

.lead-form--image .button--submit::after {
  content: "→";
  margin-left: 1.3em;
  color: var(--color-gold-bright);
}

.lead-form--image .form-status {
  position: absolute;
  z-index: 2;
  left: 11.85%;
  top: 63.2%;
  width: 76.3%;
  margin: 0;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, 2vw, 18px);
}

.lead-form--image .form-status:empty {
  display: none;
}

.lead-form--image.has-extra-open .agreements,
.lead-form--image.has-extra-open > .button--submit {
  display: none;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid,
.lead-form--image .phone-field input.is-invalid {
  border-color: #b5402e;
  box-shadow: 0 0 0 3px rgba(181, 64, 46, 0.12);
}

.review-carousel__viewport {
  aspect-ratio: 4 / 3;
}

.review-track,
.review-slide {
  height: 100%;
}

.review-slide img {
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

#reviews .section-heading h2,
#reviews .section-heading p {
  font-family: "Pretendard", "SUIT", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

#reviews .section-heading h2 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.16;
}

#reviews .section-heading p {
  margin-top: clamp(14px, 2vw, 24px);
  font-size: clamp(17px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.45;
}

@media (min-width: 768px) {
  #reviews {
    width: min(100%, 1440px);
    margin-right: auto;
    margin-left: auto;
    padding: 72px 0 76px;
  }

  #reviews .container {
    width: min(100% - 88px, 1320px);
  }

  #reviews .section-heading {
    margin-bottom: 42px;
  }

  #reviews .section-heading h2 {
    font-size: clamp(54px, 4.25vw, 72px);
    line-height: 1.15;
  }

  #reviews .section-heading p {
    font-size: clamp(22px, 1.65vw, 28px);
  }

  .section-artboard,
  .form-section--image .form-section__inner,
  .lead-form--image {
    max-width: 1440px;
  }

  .lead-form--image {
    aspect-ratio: 1920 / 1081;
    background-image: url("/assets/form/form-bg-desktop.webp");
  }

  .lead-form--image::before {
    left: 5.85%;
    top: 31.6%;
    width: 35.8%;
    height: 60.8%;
    border-radius: 18px;
  }

  .lead-form--image .field > label {
    top: -22px;
    font-size: clamp(13px, 0.95vw, 17px);
  }

  .lead-form--image .field--name,
  .lead-form--image .field--phone,
  .lead-form--image .field--car,
  .lead-form--image .form-toggle,
  .lead-form--image .extra-fields:not([hidden]),
  .lead-form--image .agreements,
  .lead-form--image .form-status {
    left: 7.7%;
    width: 31.7%;
  }

  .lead-form--image .field--name {
    top: 37.7%;
    height: 5.55%;
  }

  .lead-form--image .field--phone {
    top: 48.45%;
    height: 5.55%;
  }

  .lead-form--image .field--car {
    top: 58.9%;
    height: 5.55%;
  }

  .lead-form--image .field input,
  .lead-form--image .field select,
  .lead-form--image .field textarea {
    border-radius: 10px;
    font-size: clamp(14px, 1.05vw, 20px);
  }

  .lead-form--image .phone-field__prefix {
    border-radius: 10px;
    font-size: clamp(15px, 1.1vw, 21px);
  }

  .lead-form--image .phone-field input {
    border-radius: 10px;
  }

  .lead-form--image .form-toggle {
    top: 66.3%;
    height: 4.5%;
    border-radius: 10px;
    font-size: clamp(14px, 1vw, 18px);
  }

  .lead-form--image .extra-fields:not([hidden]) {
    top: 71.1%;
    gap: 8px;
  }

  .lead-form--image .agreements {
    top: 73%;
  }

  .lead-form--image .agreement {
    min-height: clamp(24px, 3.2vw, 36px);
  }

  .lead-form--image .check {
    font-size: clamp(13px, 0.95vw, 16px);
  }

  .lead-form--image .check input {
    width: clamp(16px, 1.25vw, 20px);
    height: clamp(16px, 1.25vw, 20px);
  }

  .lead-form--image .text-button {
    font-size: clamp(12px, 0.9vw, 15px);
  }

  .lead-form--image .agreement__body {
    max-height: min(160px, 16vw);
    font-size: 13px;
  }

  .lead-form--image .field-error {
    font-size: clamp(11px, 0.85vw, 14px);
  }

  .lead-form--image .button--submit {
    left: 7.5%;
    top: 83.1%;
    width: 32.3%;
    height: 6.5%;
    font-size: clamp(17px, 1.25vw, 24px);
  }

  .lead-form--image .form-status {
    top: 90.6%;
  }

  .image-hotspot--hero {
    left: 3.6%;
    top: 71.3%;
    width: 20.6%;
    height: 7.9%;
  }

  .image-hotspot--process {
    left: 35.4%;
    top: 83.3%;
    width: 29.1%;
    height: 9.6%;
  }

  .image-hotspot--bottom {
    left: 5.3%;
    top: 64.2%;
    width: 19.1%;
    height: 8.7%;
  }

  .section-artboard--price .price-hotspot {
    width: 16.4%;
    height: 3.9%;
  }

  .price-hotspot--sorento,
  .price-hotspot--modely,
  .price-hotspot--grandeur,
  .price-hotspot--sonata {
    top: 50.75%;
  }

  .price-hotspot--avante,
  .price-hotspot--carnival,
  .price-hotspot--sportage,
  .price-hotspot--santafe {
    top: 85.65%;
  }

  .price-hotspot--sorento,
  .price-hotspot--avante {
    left: 8.55%;
  }

  .price-hotspot--modely,
  .price-hotspot--carnival {
    left: 30.6%;
  }

  .price-hotspot--grandeur,
  .price-hotspot--sportage {
    left: 53.05%;
  }

  .price-hotspot--sonata,
  .price-hotspot--santafe {
    left: 75.15%;
  }

  .review-carousel {
    grid-template-columns: 44px minmax(0, 1180px) 44px;
  }

  .review-carousel__viewport {
    aspect-ratio: 4 / 1;
  }

  .review-slide {
    flex-basis: calc(100% / 3);
    padding: 0 8px;
  }

  .review-slide img {
    max-width: none;
  }
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 30, 73, 0.72);
  backdrop-filter: blur(6px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 28, 61, 0.08);
  color: var(--color-navy);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.lead-modal__head {
  padding: 26px 22px 0;
  text-align: center;
}

.lead-modal__head p {
  display: none;
}

.lead-modal__head h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 30px;
  line-height: 1.22;
}

.lead-modal__head span {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-button);
  background: rgba(200, 150, 45, 0.12);
  color: #5f4a18;
  font-size: 12px;
  font-weight: 800;
}

.lead-form--modal {
  max-width: none;
  margin: 0;
  padding: 14px 20px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lead-form--modal .form-grid,
.lead-form--modal .extra-fields {
  grid-template-columns: 1fr;
  gap: 8px;
}

.lead-form--modal .field {
  gap: 4px;
}

.lead-form--modal .field label {
  font-size: 13px;
}

.lead-form--modal .field input,
.lead-form--modal .field select,
.lead-form--modal .field textarea {
  min-height: 42px;
  border-radius: 13px;
  font-size: 14px;
}

.lead-form--modal .phone-field {
  min-height: 42px;
  grid-template-columns: 92px minmax(0, 1fr);
  border-radius: 13px;
}

.lead-form--modal .phone-field__prefix,
.lead-form--modal .phone-field input {
  min-height: 42px;
}

.lead-form--modal .field-help {
  font-size: 12px;
  line-height: 1.25;
}

.lead-form--modal .field-error {
  min-height: 0;
  font-size: 12px;
  line-height: 1.25;
}

.lead-form--modal .field-error:empty {
  display: none;
}

.lead-form--modal .field textarea {
  min-height: 64px;
}

.lead-form--modal .form-toggle {
  min-height: 40px;
  margin: 6px 0 8px;
}

.lead-form--modal .agreements {
  gap: 6px;
  margin: 8px 0 12px;
}

.lead-form--modal .agreement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 8px 10px;
  border-radius: 13px;
}

.lead-form--modal .check {
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.lead-form--modal .check input {
  width: 16px;
  height: 16px;
  margin-top: 0;
}

.lead-form--modal .text-button {
  min-height: 28px;
  margin-top: 0;
  font-size: 13px;
}

.lead-form--modal .agreement__body {
  grid-column: 1 / -1;
  max-height: 86px;
  margin-top: 2px;
  padding: 9px 10px;
  overflow: auto;
  font-size: 11.5px;
  line-height: 1.5;
}

.lead-form--modal .button--submit {
  min-height: 50px;
  font-size: 16px;
}

.lead-form--modal .form-status {
  margin-top: 8px;
}

body.is-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, var(--container-max));
  }

  .image-section + .image-section,
  .image-section + .section,
  .section + .image-section,
  .form-section--image + .image-section {
    margin-top: 0;
  }

  #reviews {
    padding: 54px 0 58px;
  }

  #reviews .section-heading {
    margin-bottom: 26px;
  }

  #reviews .section-heading h2 {
    max-width: min(100%, 460px);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(32px, 7.4vw, 40px);
    line-height: 1.17;
  }

  #reviews .section-heading p {
    margin-top: 13px;
    font-size: clamp(16px, 4.2vw, 20px);
    font-weight: 700;
  }

  .review-carousel {
    display: block;
    position: relative;
  }

  .review-carousel__viewport {
    width: min(100%, 342px);
    margin: 0 auto;
  }

  .carousel-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .carousel-button--prev {
    left: -2px;
  }

  .carousel-button--next {
    right: -2px;
  }

  .mobile-fixed-cta {
    border: 0;
  }

  .site-footer strong {
    font-size: 16px;
  }

  .site-footer p {
    font-size: 12px;
    line-height: 1.5;
  }
}
