/* ============================================================
   Design B — 핀테크 친근형 (그린 계열)
   automach.co.kr 리뉴얼 디자인 시스템
   ============================================================ */

/* ── Pretendard 로컬 폰트 ── */
@font-face {
  font-family: 'Pretendard';
  src: url('/font/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('/font/Pretendard-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('/font/Pretendard-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('/font/Pretendard-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── 디자인 토큰 ── */
:root {
  --b-green:        #059669;
  --b-green-hover:  #047857;
  --b-green-light:  #10B981;
  --b-green-pale:   #D1FAE5;
  --b-green-bg:     #F0FDF4;

  --b-navy:         #0F172A;
  --b-slate:        #475569;
  --b-muted:        #94A3B8;
  --b-border:       #E2E8F0;
  --b-surface:      #F8FAFC;
  --b-white:        #ffffff;

  --b-font:         "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --b-font-num:     "Space Grotesk", "Pretendard", system-ui, sans-serif;

  --b-radius-sm:    8px;
  --b-radius:       16px;
  --b-radius-lg:    24px;
  --b-radius-pill:  50px;

  --b-shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --b-shadow:       0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --b-shadow-lg:    0 16px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --b-shadow-green: 0 4px 20px rgba(5,150,105,0.30);
  --b-shadow-green-lg: 0 8px 32px rgba(5,150,105,0.40);

  --b-container:    min(1160px, calc(100% - 48px));
}

/* ── 전역 리셋 ── */
.b-page *, .b-page *::before, .b-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.b-page { font-family: var(--b-font); color: var(--b-navy); background: var(--b-white); word-break: keep-all; line-height: 1.6; }
.b-page a { text-decoration: none; color: inherit; }
.b-page button, .b-page input, .b-page select, .b-page textarea { font: inherit; }
.b-page img { display: block; max-width: 100%; }

/* ── 컨테이너 ── */
.b-container { width: var(--b-container); margin: 0 auto; }

/* ── 공통 섹션 ── */
.b-section { padding: 100px 0; }
.b-section--soft { background: var(--b-surface); }
.b-section--dark { background: var(--b-navy); color: var(--b-white); }
.b-section--green { background: var(--b-green-bg); }

.b-section-tag {
  display: inline-block;
  background: var(--b-green-pale);
  color: var(--b-green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--b-radius-pill);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.b-section--dark .b-section-tag { background: rgba(5,150,105,0.15); color: #34D399; }

.b-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.b-section-sub {
  font-size: 17px;
  color: var(--b-slate);
  margin-bottom: 56px;
  line-height: 1.7;
}
.b-section--dark .b-section-sub { color: rgba(255,255,255,0.5); }

/* ── 버튼 ── */
.b-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--b-green);
  color: var(--b-white);
  padding: 16px 36px;
  border-radius: var(--b-radius-pill);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--b-shadow-green);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  cursor: pointer;
}
.b-btn-primary:hover { background: var(--b-green-hover); transform: translateY(-2px); box-shadow: var(--b-shadow-green-lg); }

.b-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--b-white);
  color: var(--b-navy);
  padding: 16px 28px;
  border-radius: var(--b-radius-pill);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--b-border);
  transition: border-color 0.15s, color 0.15s;
  cursor: pointer;
}
.b-btn-secondary:hover { border-color: var(--b-green); color: var(--b-green); }

/* ── HEADER ── */
.b-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--b-border);
  height: 68px;
  display: flex;
  align-items: center;
}
.b-header__inner {
  width: var(--b-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.b-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--b-navy);
}
.b-logo em { font-style: normal; color: var(--b-green); }
.b-logo img { display: block; height: 48px; width: auto; }
.b-header__nav { display: flex; gap: 2px; }
.b-header__nav a {
  padding: 8px 16px;
  color: var(--b-slate);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--b-radius-pill);
  transition: background 0.15s, color 0.15s;
}
.b-header__nav a:hover { background: var(--b-green-pale); color: var(--b-green); }
.b-header__cta {
  background: var(--b-green);
  color: var(--b-white);
  padding: 10px 22px;
  border-radius: var(--b-radius-pill);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
  white-space: nowrap;
}
.b-header__cta:hover { background: var(--b-green-hover); }

/* ── HERO ── */
.b-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--b-white);
}

/* Blob 배경 */
.b-hero__blob-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.b-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.b-hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #A7F3D0 0%, #6EE7B7 50%, transparent 70%);
  top: -200px; right: -80px;
  animation: bBlob1 14s ease-in-out infinite;
}
.b-hero__blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #D1FAE5 0%, #A7F3D0 60%, transparent 80%);
  bottom: -80px; left: 180px;
  animation: bBlob2 17s ease-in-out infinite;
}
.b-hero__blob--3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #ECFDF5 0%, #D1FAE5 60%, transparent 80%);
  top: 40%; right: 38%;
  animation: bBlob3 20s ease-in-out infinite;
}
@keyframes bBlob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-40px,30px) scale(1.05); }
  66%      { transform: translate(25px,-20px) scale(0.95); }
}
@keyframes bBlob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px,-30px) scale(1.08); }
}
@keyframes bBlob3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-18px,16px) scale(1.1); }
}

/* 도트 그리드 */
.b-hero__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(5,150,105,0.1) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.b-hero__inner {
  position: relative;
  z-index: 5;
  width: var(--b-container);
  margin: 0 auto;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 텍스트 영역 */
.b-hero__text { animation: bFadeUp 0.7s ease both; }

.b-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--b-green-pale);
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 6px 14px;
  border-radius: var(--b-radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.b-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--b-green);
  animation: bPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.b-hero__h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--b-navy);
  margin-bottom: 20px;
}
.b-hero__h1 .b-accent {
  color: var(--b-green);
  position: relative;
  display: inline-block;
}
.b-hero__h1 .b-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 10px;
  background: var(--b-green-pale);
  z-index: -1;
  border-radius: 4px;
}

.b-hero__sub {
  font-size: 18px;
  color: var(--b-slate);
  line-height: 1.7;
  margin-bottom: 32px;
}

.b-hero__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.b-hero__feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: #374151; font-weight: 500;
  animation: bFadeUp 0.7s ease both;
}
.b-hero__feature:nth-child(1) { animation-delay: 0.1s; }
.b-hero__feature:nth-child(2) { animation-delay: 0.2s; }
.b-hero__feature:nth-child(3) { animation-delay: 0.3s; }
.b-hero__check {
  width: 22px; height: 22px;
  background: var(--b-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 11px; font-weight: 700;
}

.b-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* 비주얼 영역 */
.b-hero__visual {
  position: relative;
  height: 520px;
  animation: bFadeUp 0.7s 0.2s ease both;
}

/* 장식 링 */
.b-hero__ring {
  position: absolute;
  top: 10px; right: -30px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(5,150,105,0.22);
  animation: bSpinSlow 30s linear infinite;
  pointer-events: none;
}
.b-hero__ring::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(5,150,105,0.12);
}

/* 속도선 */
.b-hero__speedlines {
  position: absolute; top: 148px; left: -16px;
  pointer-events: none; z-index: 2;
}
.b-hero__speedline {
  display: block; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--b-green), transparent);
  margin-bottom: 8px;
  transform-origin: left center;
  animation: bSpeedLine 2.8s ease-in-out infinite;
  opacity: 0;
}
.b-hero__speedline:nth-child(1) { width: 50px; animation-delay: 0s; }
.b-hero__speedline:nth-child(2) { width: 34px; animation-delay: 0.35s; }
.b-hero__speedline:nth-child(3) { width: 60px; animation-delay: 0.65s; }
.b-hero__speedline:nth-child(4) { width: 38px; animation-delay: 0.2s; }

/* 자동차 사진 프레임 */
.b-hero__car-frame {
  position: absolute;
  top: 40px; left: 20px; right: 0;
  height: 380px;
  border-radius: var(--b-radius-lg);
  overflow: hidden;
  transform: rotate(-2.5deg);
  box-shadow: 0 30px 80px rgba(5,150,105,0.16), 0 8px 24px rgba(0,0,0,0.10);
  animation: bFrameFloat 6s ease-in-out infinite;
}
.b-hero__car-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  transition: transform 0.6s ease;
}
.b-hero__car-frame:hover img { transform: scale(1.04); }
.b-hero__car-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,150,105,0.06) 0%, transparent 50%, rgba(5,150,105,0.10) 100%);
  pointer-events: none;
}

/* 휠 SVG 장식 */
.b-hero__wheel { position: absolute; bottom: 28px; right: 28px; z-index: 2; pointer-events: none; }
.b-hero__wheel svg { animation: bSpinSlow 4s linear infinite; }

/* 플로팅 카드 공통 */
.b-float-card {
  position: absolute;
  background: var(--b-white);
  border-radius: var(--b-radius);
  box-shadow: var(--b-shadow-lg);
  padding: 14px 18px;
  pointer-events: none;
  z-index: 10;
}

.b-fc-rate { top: 18px; right: -8px; animation: bFloatA 4s ease-in-out infinite; }
.b-fc-rate__label { font-size: 11px; color: var(--b-muted); font-weight: 500; margin-bottom: 4px; }
.b-fc-rate__value {
  font-family: var(--b-font-num);
  font-size: 26px; font-weight: 700;
  color: var(--b-green); letter-spacing: -0.02em; line-height: 1;
}
.b-fc-rate__unit { font-size: 13px; font-weight: 500; color: var(--b-muted); }
.b-fc-rate__sub { font-size: 11px; color: var(--b-muted); margin-top: 4px; }

.b-fc-limit {
  bottom: 82px; left: -8px;
  animation: bFloatB 5s ease-in-out infinite;
  display: flex; align-items: center; gap: 12px;
}
.b-fc-limit__icon {
  width: 40px; height: 40px;
  background: var(--b-green-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.b-fc-limit__label { font-size: 11px; color: var(--b-muted); font-weight: 500; }
.b-fc-limit__value { font-family: var(--b-font-num); font-size: 18px; font-weight: 700; color: var(--b-navy); margin-top: 2px; }

.b-fc-badge {
  bottom: 132px; right: 18px;
  padding: 10px 16px;
  animation: bFloatC 4.5s ease-in-out infinite;
  display: flex; align-items: center; gap: 8px;
}
.b-fc-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--b-green); animation: bPulse 2s infinite; flex-shrink: 0; }
.b-fc-badge__text { font-size: 13px; font-weight: 600; color: var(--b-navy); }

.b-fc-period {
  top: 175px; left: -2px;
  padding: 12px 16px;
  animation: bFloatD 6s ease-in-out infinite;
  display: flex; align-items: center; gap: 10px;
  border-left: 3px solid var(--b-green);
}
.b-fc-period__icon { font-size: 18px; }
.b-fc-period__label { font-size: 11px; color: var(--b-muted); font-weight: 500; }
.b-fc-period__value { font-size: 14px; font-weight: 700; color: var(--b-navy); margin-top: 1px; }

/* ── TRUST BAR ── */
.b-trust-bar {
  background: var(--b-navy);
  padding: 14px 0;
}
.b-trust-bar__inner {
  width: var(--b-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.b-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px; font-weight: 500;
}
.b-trust-icon { color: var(--b-green-light); font-size: 14px; }

/* ── PRODUCT CARDS ── */
.b-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.b-product-card {
  background: var(--b-white);
  border-radius: var(--b-radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--b-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.b-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--b-green), var(--b-green-light));
  opacity: 0;
  transition: opacity 0.2s;
}
.b-product-card:hover { border-color: var(--b-green); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(5,150,105,0.12); }
.b-product-card:hover::before { opacity: 1; }
.b-product-card--featured { border-color: var(--b-green); background: linear-gradient(160deg, var(--b-green-bg), var(--b-white)); }
.b-product-card--featured::before { opacity: 1; }

.b-product-card__icon {
  width: 52px; height: 52px;
  background: var(--b-green-pale);
  border-radius: var(--b-radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.b-product-card__tag {
  display: inline-block;
  background: var(--b-green-pale);
  color: var(--b-green);
  font-size: 12px; font-weight: 600;
  padding: 3px 12px; border-radius: var(--b-radius-pill);
  margin-bottom: 14px;
}
.b-product-card__title { font-size: 18px; font-weight: 700; color: var(--b-navy); margin-bottom: 8px; }
.b-product-card__desc { font-size: 14px; color: var(--b-slate); line-height: 1.65; margin-bottom: 24px; }
.b-product-card__rate-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.b-product-card__rate {
  font-family: var(--b-font-num);
  font-size: 32px; font-weight: 700;
  color: var(--b-green); letter-spacing: -0.02em;
}
.b-product-card__rate-unit { font-size: 14px; color: var(--b-muted); font-weight: 500; }
.b-product-card__limit { font-size: 14px; color: var(--b-slate); margin-bottom: 24px; }
.b-product-card__cta {
  display: block; width: 100%;
  padding: 13px;
  background: var(--b-navy); color: var(--b-white);
  border: none; border-radius: var(--b-radius-pill);
  font-size: 14px; font-weight: 600;
  text-align: center; cursor: pointer;
  transition: background 0.15s;
}
.b-product-card__cta:hover { background: var(--b-green); }

/* ── PROCESS STEPS ── */
.b-process__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
.b-process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.b-step { text-align: center; position: relative; z-index: 1; }
.b-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--b-font-num);
  font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,0.35);
  transition: all 0.3s;
}
.b-step__num--done {
  background: var(--b-green);
  border-color: var(--b-green);
  color: #fff;
  box-shadow: 0 0 20px rgba(5,150,105,0.5);
}
.b-step__label { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; }
.b-step__label--done { color: rgba(255,255,255,0.9); }

/* ── FORM ── */
.b-form-section { background: var(--b-green-bg); }
.b-form-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.b-form-intro__eyebrow {
  font-size: 12px; font-weight: 700; color: var(--b-green);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.b-form-intro__title { font-size: 34px; font-weight: 800; letter-spacing: -0.025em; color: var(--b-navy); margin-bottom: 16px; line-height: 1.2; }
.b-form-intro__desc { font-size: 16px; color: var(--b-slate); line-height: 1.7; margin-bottom: 28px; }
.b-form-intro__proof {
  display: flex; flex-direction: column; gap: 10px;
}
.b-form-intro__proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--b-slate); font-weight: 500;
}
.b-form-intro__proof-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--b-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}

.b-form-card {
  background: var(--b-white);
  border-radius: var(--b-radius-lg);
  padding: 40px;
  box-shadow: var(--b-shadow-lg);
  border: 1px solid var(--b-border);
}
.b-form-card .am-lead-form { display: flex; flex-direction: column; gap: 18px; }
.b-form-card label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--b-navy); }
.b-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.b-form-card input, .b-form-card select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--b-border);
  border-radius: var(--b-radius-sm);
  font-size: 15px; color: var(--b-navy);
  background: var(--b-white);
  transition: border-color 0.15s;
  outline: none;
}
.b-form-card input:focus, .b-form-card select:focus { border-color: var(--b-green); }
.b-form-card input::placeholder { color: var(--b-muted); }
.b-form-card .consent-check {
  display: flex; flex-direction: row; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--b-slate);
  cursor: pointer;
}
.b-form-card .consent-check input { width: auto; accent-color: var(--b-green); }
.b-form-card button[type="submit"] {
  width: 100%;
  padding: 17px;
  background: var(--b-green);
  color: var(--b-white);
  border: none; border-radius: var(--b-radius-pill);
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--b-shadow-green);
}
.b-form-card button[type="submit"]:hover { background: var(--b-green-hover); transform: translateY(-1px); box-shadow: var(--b-shadow-green-lg); }
.b-form-card button[type="submit"]:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }
.b-form-card .form-status { font-size: 14px; color: var(--b-green); font-weight: 500; min-height: 20px; }
.b-form-card .form-note { font-size: 12px; color: var(--b-muted); line-height: 1.6; }
.b-form-card .cf-turnstile { margin: 0 auto; }

/* ── FOOTER ── */
.b-footer { background: #0A0F1E; color: rgba(255,255,255,0.5); padding: 60px 0 40px; }
.b-footer__inner { width: var(--b-container); margin: 0 auto; }
.b-footer__top {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 60px; margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.b-footer__brand .b-logo { color: #fff; font-size: 20px; }
.b-footer__brand p { font-size: 13px; margin-top: 14px; line-height: 1.9; }
.b-footer__links {
  display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}
.b-footer__links a {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.15s;
}
.b-footer__links a:hover { color: rgba(255,255,255,0.6); }
.b-footer__info { font-size: 12px; line-height: 2.0; }
.b-footer__legal { font-size: 11px; line-height: 1.9; color: rgba(255,255,255,0.3); }
.b-footer__legal strong { color: rgba(255,255,255,0.5); }
.b-footer__warning {
  margin-top: 20px;
  padding: 16px;
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.14);
  border-radius: var(--b-radius-sm);
  font-size: 11px; color: rgba(239,68,68,0.65);
  line-height: 1.8;
}
.b-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── 애니메이션 ── */
@keyframes bFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
@keyframes bSpinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bFrameFloat {
  0%,100% { transform: rotate(-2.5deg) translateY(0); }
  50%      { transform: rotate(-2.5deg) translateY(-10px); }
}
@keyframes bFloatA {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
@keyframes bFloatB {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes bFloatC {
  0%,100% { transform: translateY(-4px); }
  50%      { transform: translateY(5px); }
}
@keyframes bFloatD {
  0%,100% { transform: translateY(0); }
  33%      { transform: translateY(-6px); }
  66%      { transform: translateY(3px); }
}
@keyframes bSpeedLine {
  0%   { opacity: 0; transform: scaleX(0); }
  30%  { opacity: 0.8; transform: scaleX(1); }
  70%  { opacity: 0.5; transform: scaleX(1.2); }
  100% { opacity: 0; transform: translateX(60px) scaleX(0.5); }
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
  .b-hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .b-hero__visual { height: 340px; }
  .b-hero { min-height: auto; padding: 60px 0; }
  .b-products__grid { grid-template-columns: 1fr; gap: 16px; }
  .b-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .b-footer__top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --b-container: min(1160px, calc(100% - 32px)); }
  .b-header__nav { display: none; }
  .b-hero__h1 { font-size: 38px; }
  .b-hero__visual { height: 280px; }
  .b-hero__car-frame { top: 20px; }
  .b-process__steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .b-process__steps::before { display: none; }
  .b-form-card .form-row { grid-template-columns: 1fr; }
}

/* ── Story Section ── */
.b-story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.b-story-card {
  background: var(--b-white);
  border: 1px solid var(--b-border);
  border-radius: var(--b-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.b-story-card:hover { box-shadow: var(--b-shadow-lg); transform: translateY(-3px); }
.b-story-card__icon { font-size: 36px; line-height: 1; }
.b-story-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--b-navy);
  line-height: 1.3;
}
.b-story-card__desc {
  font-size: 15px;
  color: var(--b-slate);
  line-height: 1.7;
  flex: 1;
}
.b-story-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--b-green);
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
  transition: gap 0.15s;
}
.b-story-card__link:hover { gap: 10px; }

/* ── General FAQ Section ── */
.b-gfaq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.b-gfaq__item {
  border-bottom: 1px solid var(--b-border);
}
.b-gfaq__item:first-child { border-top: 1px solid var(--b-border); }
.b-gfaq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--b-navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.b-gfaq__question::-webkit-details-marker { display: none; }
.b-gfaq__icon { flex-shrink: 0; color: var(--b-green); transition: transform 0.2s; }
details[open] .b-gfaq__icon { transform: rotate(180deg); }
.b-gfaq__answer {
  padding: 0 4px 20px;
  font-size: 15px;
  color: var(--b-slate);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .b-story__grid { grid-template-columns: 1fr; gap: 16px; }
  .b-story-card { padding: 24px 20px; }
  .b-gfaq__question { font-size: 15px; }
}

/* ── Info Hub Section ── */
.b-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.b-hub-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--b-radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, transform 0.2s;
}
.b-hub-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }
.b-hub-card__icon { font-size: 36px; line-height: 1; }
.b-hub-card__title { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.3; }
.b-hub-card__desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; flex: 1; }
.b-hub-card__link { color: var(--b-green-light); font-weight: 600; font-size: 14px; margin-top: 4px; }

@media (max-width: 768px) {
  .b-hub__grid { grid-template-columns: 1fr; }
  .b-hub-card { padding: 28px 24px; }
}

/* ── 모바일 공통 보완 (768px) ── */
@media (max-width: 768px) {
  /* 섹션 패딩 축소 */
  .b-section { padding: 60px 0; }

  /* 히어로 버튼 → 전체 너비 세로 배열 */
  .b-hero__btns { flex-direction: column; gap: 10px; }
  .b-btn-primary, .b-btn-secondary { width: 100%; justify-content: center; }

  /* 히어로 내부 패딩 */
  .b-hero__inner { padding: 36px 0 40px; }

  /* 플로팅 카드: 겹치는 badge·period 숨김 */
  .b-fc-badge { display: none; }
  .b-fc-period { display: none; }

  /* 남은 2개 카드 위치·크기 조정 (280px 비주얼 기준) */
  .b-fc-rate { top: 10px; right: 6px; padding: 10px 14px; }
  .b-fc-rate__value { font-size: 22px; }
  .b-fc-limit { bottom: 14px; left: 6px; padding: 10px 12px; }
  .b-fc-limit__value { font-size: 16px; }
  .b-fc-limit__icon { width: 32px; height: 32px; font-size: 16px; }

  /* 데코 요소 숨김 (작은 화면에서 불필요) */
  .b-hero__ring { display: none; }
  .b-hero__speedlines { display: none; }

  /* 히어로 서브텍스트 여백 */
  .b-hero__sub { font-size: 16px; margin-bottom: 24px; }
  .b-hero__features { margin-bottom: 28px; }

  /* Trust Bar: 2열 그리드 */
  .b-trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    justify-items: start;
    padding: 4px 0;
  }
  .b-trust-item { font-size: 12px; }

  /* 폼 인트로 */
  .b-form-intro__title { font-size: 28px; }

  /* 섹션 제목·서브 */
  .b-section-title { font-size: clamp(22px, 5vw, 32px); }
  .b-section-sub { font-size: 15px; margin-bottom: 36px; }

  /* 푸터 패딩 */
  .b-footer { padding: 48px 0 32px; }
}

/* ── 소형 폰 (480px 이하) ── */
@media (max-width: 480px) {
  .b-hero__h1 { font-size: 30px; }
  .b-hero__badge { font-size: 12px; padding: 5px 12px; }
  .b-hero__visual { height: 220px; }
  .b-hero__car-frame { top: 10px; }

  .b-section { padding: 48px 0; }
  .b-section-title { font-size: 22px; }
  .b-section-sub { font-size: 14px; margin-bottom: 28px; }

  .b-hub-card { padding: 20px 18px; }
  .b-hub-card__title { font-size: 17px; }
  .b-story-card { padding: 20px 16px; }
  .b-story-card__title { font-size: 17px; }

  .b-form-intro__title { font-size: 24px; }
  .b-footer { padding: 36px 0 24px; }

  /* 플로팅 카드 추가 축소 */
  .b-fc-rate { padding: 8px 12px; }
  .b-fc-rate__value { font-size: 18px; }
  .b-fc-rate__sub { display: none; }
  .b-fc-limit { padding: 8px 10px; gap: 8px; }
  .b-fc-limit__value { font-size: 14px; }
}
