:root {
  --bg: #f6efe4;
  --paper: rgba(255, 250, 244, 0.9);
  --surface: #fff8ef;
  --surface-strong: #f3e1cc;
  --text: #2a211b;
  --muted: #706257;
  --line: rgba(83, 62, 40, 0.12);
  --brand: #d97846;
  --brand-deep: #945535;
  --brand-soft: #f2dcc2;
  --green: #708d79;
  --shadow: 0 24px 60px rgba(90, 63, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'SUIT', sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(234, 205, 166, 0.86), transparent 30%),
    radial-gradient(circle at top right, rgba(190, 210, 194, 0.38), transparent 28%),
    linear-gradient(180deg, #f5ead8 0%, #f6f0e7 38%, #f8f4ee 100%);
}

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

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

.site-header,
.section,
.site-footer {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 8px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(83, 62, 40, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn.primary {
  background: linear-gradient(180deg, #de8454, var(--brand));
  color: #fff;
  box-shadow: 0 16px 30px rgba(217, 120, 70, 0.26);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.header-link {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.btn.large {
  min-height: 60px;
  padding: 0 28px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.section {
  padding: 64px 0;
}

.section-surface {
  position: relative;
  padding: 32px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 252, 247, 0.62);
  border: 1px solid rgba(70, 50, 31, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  padding-top: 28px;
}

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

.hero-copy,
.hero-panel,
.content-card,
.quote-card,
.flow-card,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
}

.hero--single .hero-copy {
  max-width: 820px;
}

.hero-visual-panel {
  padding: 24px;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 220px;
  border: 1px solid rgba(70, 50, 31, 0.08);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 226, 0.92));
}

.hero-visual-card--main {
  grid-row: span 2;
}

.hero-visual-card--move {
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(249, 239, 227, 0.94));
}

.hero-visual-card--life {
  background: linear-gradient(135deg, rgba(249, 252, 247, 0.98), rgba(236, 244, 235, 0.94));
}

.hero-visual-figure {
  position: absolute;
  inset: 0;
}

.hero-visual-orb,
.hero-visual-box,
.hero-visual-line,
.hero-visual-cardlet {
  position: absolute;
  display: block;
}

.hero-visual-orb {
  right: 22px;
  top: 24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 206, 168, 0.9), rgba(237, 107, 47, 0.16));
}

.hero-visual-orb--green {
  width: 112px;
  height: 112px;
  background: radial-gradient(circle at 30% 30%, rgba(204, 232, 213, 0.95), rgba(97, 153, 114, 0.18));
}

.hero-visual-box {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(70, 50, 31, 0.06);
  box-shadow: 0 18px 28px rgba(118, 84, 47, 0.08);
}

.hero-visual-box--large {
  right: 54px;
  bottom: 44px;
  width: 150px;
  height: 110px;
}

.hero-visual-box--small {
  right: 164px;
  bottom: 62px;
  width: 72px;
  height: 72px;
}

.hero-visual-line {
  right: 62px;
  bottom: 38px;
  width: 126px;
  height: 6px;
  border-radius: 999px;
  background: rgba(237, 107, 47, 0.2);
}

.hero-visual-cardlet {
  right: 28px;
  bottom: 28px;
  width: 126px;
  height: 94px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(70, 50, 31, 0.06);
  box-shadow: 0 18px 28px rgba(118, 84, 47, 0.08);
}

.hero-visual-cardlet--offset {
  right: 126px;
  bottom: 56px;
  width: 88px;
  height: 68px;
}

.hero-visual-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  color: #fff;
}

.hero-visual-copy strong {
  font-size: 1.15rem;
  line-height: 1.4;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.hero-visual-chip {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.9);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual-chip--green {
  background: rgba(232, 245, 236, 0.92);
  color: #43624d;
}

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

.hero-icon-badge {
  min-height: 96px;
  border-radius: 22px;
  border: 1px solid rgba(70, 50, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px;
  box-shadow: 0 12px 24px rgba(99, 69, 36, 0.08);
}

.hero-icon-badge span {
  font-size: 1.8rem;
}

.hero-icon-badge em {
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.content-card h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 7.2ch;
  text-wrap: balance;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.hero-points,
.hero-proof,
.ga-floating-badge__stats,
.footer-links,
.photo-strip,
.review-list,
.faq-list,
.quote-breakdown {
  display: flex;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.proof-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(70, 50, 31, 0.08);
  box-shadow: 0 8px 18px rgba(77, 45, 13, 0.06);
}

.proof-item strong {
  display: block;
  font-size: 1rem;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-points span,
.quote-breakdown span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.94), rgba(248, 239, 227, 0.92)),
    linear-gradient(135deg, rgba(220, 237, 226, 0.52), rgba(255, 240, 219, 0.52));
}

.panel-intro h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.2;
  text-wrap: balance;
}

.stats-grid,
.story-grid,
.trust-strip,
.flow-grid,
.driver-proof-grid,
.trust-grid,
.credibility-grid,
.calculator-layout,
.quick-tags {
  display: grid;
  gap: 18px;
}

.full-width {
  width: 100%;
  margin-top: 20px;
}

.quick-band {
  padding-top: 0;
}

.quick-band-card {
  display: grid;
  gap: 18px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(247, 232, 214, 0.95), rgba(253, 248, 241, 0.94));
  box-shadow: var(--shadow);
}

.quick-band-card h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 26ch;
  word-break: keep-all;
}

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

.quick-tags span {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #6e5a46;
  font-weight: 700;
  text-align: center;
}

.service-hop-shell {
  padding-top: 12px;
}

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

.service-hop-card {
  display: grid;
  grid-template-rows: 170px auto;
  border-radius: 24px;
  border: 1px solid rgba(179, 103, 61, 0.18);
  background: rgba(255, 253, 248, 0.96);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(165, 116, 72, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-hop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(165, 116, 72, 0.14);
}

.service-hop-card strong {
  font-size: 1.05rem;
}

.service-hop-card span {
  color: var(--muted);
  line-height: 1.55;
}

.service-hop-card__media {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, rgba(248, 232, 214, 0.95), rgba(255, 250, 244, 0.95));
  position: relative;
}

.service-hop-card__media--move {
  background:
    linear-gradient(to top, rgba(30,18,8,0.52) 0%, rgba(30,18,8,0.1) 55%, transparent 100%),
    url('img/home/card-move.png') center/cover no-repeat;
}

.service-hop-card__media--clean {
  background:
    linear-gradient(to top, rgba(20,40,28,0.50) 0%, rgba(20,40,28,0.08) 55%, transparent 100%),
    url('img/home/card-clean.png') center/cover no-repeat;
}

.service-hop-card__media--delivery {
  background:
    linear-gradient(to top, rgba(30,40,60,0.38) 0%, rgba(30,40,60,0.04) 50%, transparent 100%),
    url('img/home/card-truck.png') center/cover no-repeat;
}

/* 사진 카드에서 도형 숨김 */
.service-hop-card__media--move .service-hop-card__figure,
.service-hop-card__media--clean .service-hop-card__figure,
.service-hop-card__media--delivery .service-hop-card__figure {
  display: none;
}

.service-hop-card__body {
  display: grid;
  gap: 8px;
  padding: 20px 22px 22px;
}

.service-hop-card__kicker {
  font-style: normal;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-hop-card__media--icon {
  display: grid;
  place-items: center;
}

.service-hop-card__figure {
  position: relative;
  height: 100%;
}

.service-hop-card__shape {
  position: absolute;
  display: block;
}

.service-hop-card__shape--pill {
  right: 26px;
  top: 30px;
  width: 120px;
  height: 120px;
  border-radius: 40px;
  background: rgba(237, 107, 47, 0.14);
}

.service-hop-card__shape--box {
  right: 72px;
  bottom: 28px;
  width: 112px;
  height: 70px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 22px rgba(86, 61, 35, 0.08);
}

.service-hop-card__shape--line {
  right: 84px;
  bottom: 20px;
  width: 86px;
  height: 6px;
  border-radius: 999px;
  background: rgba(237, 107, 47, 0.2);
}

.service-hop-card__shape--circle {
  right: 36px;
  top: 24px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(126, 181, 145, 0.16);
}

.service-hop-card__shape--spark,
.service-hop-card__shape--spark-small {
  right: 78px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 22px rgba(86, 61, 35, 0.08);
}

.service-hop-card__shape--spark-small {
  right: 138px;
  bottom: 52px;
  width: 34px;
  height: 34px;
}

.service-hop-card__shape--road {
  right: 32px;
  bottom: 26px;
  width: 150px;
  height: 22px;
  border-radius: 999px;
  background: rgba(72, 112, 168, 0.14);
}

.service-hop-card__shape--van {
  right: 82px;
  bottom: 50px;
  width: 84px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 22px rgba(86, 61, 35, 0.08);
}

.service-hop-card__icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  font-size: 1.7rem;
}

.stats-grid {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.stats-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(70, 50, 31, 0.08);
  box-shadow: 0 8px 18px rgba(77, 45, 13, 0.06);
}

.stat-card p,
.stat-card span,
.section-head p,
.content-card p,
.quote-status,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.stats-grid--compact .stat-card {
  padding: 18px 20px;
}

.stats-grid--compact .stat-card strong {
  font-size: 1.8rem;
}

.story-grid,
.trust-grid,
.trust-strip,
.credibility-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.cases-shell,
.expert-shell,
.review-shell,
.story-shell {
  padding-top: 20px;
}

.case-grid,
.expert-grid,
.review-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.case-card,
.expert-card,
.review-card,
.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
}

.case-card__visual {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.case-card__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.case-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.case-card__body,
.expert-card__copy,
.review-card,
.story-card {
  padding: 24px;
}

.case-card__body {
  display: grid;
  gap: 12px;
  max-width: calc(100% - 144px);
}

.case-card__body strong,
.expert-card__copy strong,
.review-card strong,
.story-card strong {
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.case-card__body p,
.expert-card__copy p,
.review-card p,
.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.case-card__body span,
.expert-card__copy span,
.review-card span {
  color: #8a7663;
  font-size: 0.92rem;
  font-weight: 700;
}

.expert-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

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

.expert-card__visual {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 136px;
  height: 136px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.expert-card__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.expert-card__copy {
  display: grid;
  gap: 8px;
  max-width: calc(100% - 156px);
}

.expert-card__copy q {
  margin: 4px 0 0;
  color: #8a7663;
  font-size: 0.95rem;
  line-height: 1.6;
  quotes: "“" "”" "‘" "’";
}

.expert-card__copy q::before {
  content: open-quote;
}

.expert-card__copy q::after {
  content: close-quote;
}

.expert-card__copy em {
  font-style: normal;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 800;
}

.review-card-grid {
  overflow: hidden;
}

.review-card-grid {
  align-items: stretch;
}

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

.story-card {
  position: relative;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, rgba(237, 107, 47, 0.9), rgba(255, 196, 146, 0.4));
}

.content-card {
  padding: 28px;
  position: relative;
  height: 100%;
}

.content-card::before,
.trust-chip-card::before,
.flow-card::before,
.quote-card::before,
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, rgba(237, 107, 47, 0.9), rgba(255, 196, 146, 0.4));
}

.trust-chip-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
  height: 100%;
}

.trust-chip-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.trust-chip-card p:last-child {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.content-card.accent {
  background: linear-gradient(180deg, rgba(244, 232, 215, 0.94), rgba(255, 249, 242, 0.92));
}

.bullet-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 34rem;
}

.bullet-list li + li {
  margin-top: 10px;
}

.calculator-shell {
  padding-top: 40px;
}

.section-head {
  max-width: 30rem;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 16ch;
  word-break: keep-all;
}

.section-head p:last-child {
  margin-top: 12px;
  max-width: 34rem;
  line-height: 1.8;
}

.calculator-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.estimate-form,
.quote-lines,
.faq-list {
  display: grid;
}

.estimate-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
}

.field,
.option-group {
  display: grid;
  gap: 8px;
}

.field.full,
.option-group.full,
.btn.full {
  grid-column: 1 / -1;
}

.field label,
.option-group legend {
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(70, 50, 31, 0.16);
  border-radius: 14px;
  background: #fffdf9;
}

.field textarea {
  resize: vertical;
}

.option-group {
  padding: 16px;
  border: 1px dashed rgba(70, 50, 31, 0.18);
  border-radius: 18px;
}

.option-group legend {
  padding: 0 6px;
}

.option-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.quote-card {
  position: sticky;
  top: 20px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(251, 245, 234, 0.96), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 40px rgba(90, 63, 34, 0.1);
  height: fit-content;
}

.quote-top h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
  max-width: 14ch;
  text-wrap: balance;
}

.quote-lines {
  gap: 14px;
  margin: 22px 0;
}

.quote-lines div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(70, 50, 31, 0.12);
}

.quote-lines dt {
  color: var(--muted);
  text-align: left;
  font-weight: 800;
}

.quote-lines dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: left;
}

.quote-breakdown {
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.quote-status {
  line-height: 1.6;
}

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

.driver-proof-shell .section-head {
  max-width: 32rem;
}

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

.driver-proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
  height: 100%;
}

.driver-proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 14%;
  background: rgba(255, 244, 228, 0.9);
}

.driver-proof-copy {
  padding: 18px 20px 20px;
}

.driver-proof-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.driver-proof-copy span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.flow-card {
  position: relative;
  padding: 24px;
  height: 100%;
}

.flow-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 800;
}

.flow-card h3 {
  margin: 16px 0 8px;
}

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

.media-card .photo-strip {
  margin-top: 22px;
}

.photo-strip {
  flex-wrap: wrap;
}

.photo-strip div {
  flex: 1 1 140px;
  min-height: 124px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 213, 166, 0.9), rgba(255, 255, 255, 0.9));
  color: var(--brand-deep);
  font-weight: 700;
}

.review-list {
  flex-direction: column;
  margin-top: 20px;
}

.review-list blockquote {
  margin: 0;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: #fffaf4;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.02rem;
  border: 1px solid rgba(70, 50, 31, 0.08);
}

.credibility-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.credibility-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(70, 50, 31, 0.08);
}

.credibility-item strong {
  display: block;
  font-size: 1rem;
}

.credibility-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.trust-proof-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.trust-proof-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(70, 50, 31, 0.08);
}

.trust-proof-item strong {
  display: block;
  font-size: 1rem;
}

.trust-proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-shell {
  padding-bottom: 12px;
}

.faq-list {
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 8px 18px rgba(77, 45, 13, 0.05);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  margin-top: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(237, 107, 47, 0.16), rgba(255, 245, 230, 0.9));
}

.reveal-block,
.reveal-stagger {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal-block.is-visible,
.reveal-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }

.trust-chip-card h3,
.flow-card h3,
.content-card h2 {
  text-wrap: balance;
}

.final-cta p:last-child {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  padding: 24px 0 40px;
  display: grid;
  gap: 16px;
}

.site-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-service-cta {
  display: none;
}

.footer-service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 234, 218, 0.94), rgba(255, 250, 243, 0.94));
  border: 1px solid rgba(70, 50, 31, 0.1);
  box-shadow: 0 12px 24px rgba(77, 45, 13, 0.08);
}

.footer-service-card h3 {
  margin: 6px 0 8px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.footer-service-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
}

.footer-links a {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(83, 62, 40, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 18px rgba(77, 45, 13, 0.06);
  font-weight: 700;
}

.biz-footer {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 8px 18px rgba(77, 45, 13, 0.05);
  overflow: hidden;
}

.biz-lines {
  padding: 18px 20px;
}

.biz-lines p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.biz-lines b {
  color: var(--text);
}

.biz-copy {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .calculator-layout,
  .story-grid,
  .trust-strip,
  .trust-grid,
  .credibility-grid,
  .flow-grid,
  .driver-proof-grid,
  .hero-proof,
  .quick-tags,
  .service-hop-grid,
  .case-grid,
  .expert-grid,
  .review-card-grid {
    grid-template-columns: 1fr;
  }

  .section-surface {
    padding: 22px;
  }

  .quick-band-card {
    gap: 16px;
  }

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

  .brand-row,
  .site-footer-main,
  .footer-service-card,
  .final-cta {
    border-radius: 24px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 0.92rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(70, 50, 31, 0.08);
  }

  .quote-card {
    position: static;
  }

  .section {
    padding: 48px 0;
  }

  .stats-grid--compact {
    grid-template-columns: 1fr;
  }

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

  .hero-visual-card--main {
    grid-row: auto;
    min-height: 240px;
  }

  .expert-card {
    min-height: 220px;
  }

  .expert-card__copy,
  .case-card__body {
    max-width: calc(100% - 128px);
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100vw - 20px, 1160px);
  }

  .hero-copy,
  .hero-panel,
  .content-card,
  .quote-card,
  .flow-card,
  .estimate-form,
  .final-cta {
    padding: 22px;
  }

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

  .field.two {
    grid-column: auto;
  }

  .brand-row,
  .site-footer-main,
  .footer-service-card,
  .final-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    text-align: center;
  }

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

  .header-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav a {
    justify-content: center;
    text-align: center;
  }

  .header-link,
  .header-cta,
  .btn,
  .btn.large {
    width: 100%;
  }

  .hero-visual-panel {
    padding: 18px;
  }

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

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .hero-text {
    max-width: none;
    font-size: 1rem;
    line-height: 1.65;
  }

  .quick-band-card h2,
  .section-head h2,
  .panel-intro h2 {
    max-width: none;
  }

  .reveal-block,
  .reveal-stagger {
    transform: translateY(22px);
    filter: blur(5px);
  }

  .service-hop-card {
    grid-template-rows: 150px auto;
  }

  .expert-card {
    min-height: 210px;
  }

  .case-card__visual {
    width: 96px;
    height: 96px;
    right: 14px;
    bottom: 14px;
  }

  .expert-card__visual {
    width: 100px;
    height: 100px;
    right: 14px;
    bottom: 14px;
  }

  .case-card__body,
  .expert-card__copy {
    max-width: calc(100% - 86px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-block,
  .reveal-stagger,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
