  /* =================================================
     Hyundai Carmaster — Kim Do-Yoon
     Brand tokens
     ================================================= */
  :root {
    --hyundai-blue: #002C5F;         /* Hyundai official navy */
    --hyundai-blue-deep: #001F45;
    --hyundai-blue-soft: #E6EDF5;
    --hyundai-sky: #00AAD2;          /* Accent — highlights */
    --ink: #0B1420;
    --ink-soft: #4A5566;
    --ink-mute: #8A94A3;
    --line: #E5E8EC;
    --line-soft: #F1F3F6;
    --paper: #FFFFFF;
    --paper-tint: #F7F8FA;
    --kakao: #FEE500;
    --kakao-ink: #191600;

    --font-kr: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-num: 'Barlow', 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --shadow-card: 0 1px 2px rgba(0,44,95,0.04), 0 12px 32px -18px rgba(0,44,95,0.18);
    --shadow-float: 0 8px 24px -6px rgba(0,44,95,0.22), 0 20px 48px -20px rgba(0,44,95,0.28);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-kr);
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: keep-all;
    line-height: 1.55;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  .en { font-family: var(--font-en); letter-spacing: 0.02em; }
  .num { font-family: var(--font-num); font-variant-numeric: tabular-nums; }

  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ==================== NAV ==================== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    padding: 0 32px;
    max-width: 1400px; margin: 0 auto;
  }
  .brand {
    display: flex; align-items: center; gap: 18px;
  }
  .brand-mark {
    display: flex; align-items: center;
  }
  .brand-mark .brand-logo {
    height: 32px; width: auto;
    display: block;
  }
  .brand-divider {
    width: 1px; height: 28px; background: var(--line);
  }
  .brand-name {
    display: flex; flex-direction: column; line-height: 1.15;
  }
  .brand-name .role {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    text-transform: uppercase;
    font-family: var(--font-en);
    font-weight: 500;
  }
  .brand-name .who {
    font-size: 18px; font-weight: 700; color: var(--ink);
    letter-spacing: -0.01em;
    margin-top: 2px;
  }
  .nav-links {
    display: flex; gap: 34px;
    font-size: 14px; font-weight: 500;
    color: var(--ink-soft);
  }
  .nav-links a:hover { color: var(--hyundai-blue); }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--kakao);
    color: var(--kakao-ink);
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    transition: transform .15s ease;
  }
  .nav-cta:hover { transform: translateY(-1px); }
  .nav-cta svg { width: 14px; height: 14px; }

  @media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-inner { padding: 0 20px; height: 60px; }
  }

  /* ==================== HERO ==================== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding-top: 68px;
    background: var(--hyundai-blue);
    color: white;
    overflow: hidden;
  }
  .hero-media {
    position: absolute; inset: 0;
    background-image: url('/static/images/g80.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.55;
  }
  .hero-media::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,31,69,0.65) 0%, rgba(0,31,69,0.35) 40%, rgba(0,31,69,0.92) 100%),
      linear-gradient(90deg, rgba(0,31,69,0.85) 0%, rgba(0,31,69,0.15) 60%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 88px 32px 120px;
    min-height: calc(100vh - 68px);
    display: flex; flex-direction: column;
    justify-content: space-between;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-en);
    font-size: 11px; letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--hyundai-sky);
  }
  .hero-title {
    font-size: clamp(44px, 6.5vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 700;
    max-width: 900px;
  }
  .hero-title .light { font-weight: 300; opacity: 0.72; }
  .hero-title .accent { color: var(--hyundai-sky); }
  .hero-sub {
    margin-top: 28px;
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
  }
  .hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: 40px;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    letter-spacing: -0.005em;
    transition: transform .18s ease, background .18s ease;
  }
  .btn-primary {
    background: white; color: var(--hyundai-blue);
  }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: white;
    border: 1px solid rgba(255,255,255,0.35);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.08); }
  .btn svg { width: 16px; height: 16px; }

  .hero-footline {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .hero-stats {
    display: flex; gap: 48px;
  }
  .hero-stat .n {
    font-family: var(--font-num);
    font-size: 40px; font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .hero-stat .n .suffix { font-size: 22px; opacity: 0.72; margin-left: 2px; }
  .hero-stat .l {
    margin-top: 8px;
    font-size: 12px; letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
  }
  .hero-scroll {
    font-family: var(--font-en);
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 12px;
  }
  .hero-scroll::after {
    content: ''; width: 1px; height: 32px; background: rgba(255,255,255,0.35);
    animation: pulse-line 2s ease-in-out infinite;
  }
  @keyframes pulse-line {
    0%,100% { transform: scaleY(1); opacity: 0.5; transform-origin: top; }
    50% { transform: scaleY(1.4); opacity: 1; }
  }

  @media (max-width: 700px) {
    .hero-stats { gap: 28px; }
    .hero-stat .n { font-size: 30px; }
    .hero-scroll { display: none; }
    .hero-inner { padding: 60px 20px 80px; }
  }

  /* ==================== SECTION SHELL ==================== */
  section { position: relative; }
  .section-pad { padding: 120px 0; }
  .section-pad-sm { padding: 88px 0; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-en);
    font-size: 11px; letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--hyundai-blue);
    margin-bottom: 20px;
  }
  .eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--hyundai-blue);
  }
  .section-title {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--ink);
    max-width: 780px;
  }
  .section-title .mute { color: var(--ink-mute); font-weight: 300; }
  .section-lead {
    margin-top: 20px;
    font-size: 17px; line-height: 1.7;
    color: var(--ink-soft);
    max-width: 620px;
  }

  /* ==================== PROFILE ==================== */
  .profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
    margin-top: 64px;
  }
  .profile-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--hyundai-blue-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-image:
      linear-gradient(135deg, rgba(0,44,95,0.75), rgba(0,44,95,0.45)),
      url('/static/images/showroom.jpg');
    background-size: cover;
    background-position: center;
    display: flex; align-items: flex-end;
    padding: 32px;
  }
  .profile-portrait-inner {
    color: white;
  }
  .profile-portrait-inner .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: var(--font-en);
    margin-bottom: 14px;
  }
  .profile-portrait-inner .badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--hyundai-sky);
  }
  .profile-portrait-inner .n {
    font-size: 32px; font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .profile-portrait-inner .r {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-top: 4px;
    letter-spacing: -0.005em;
  }
  .profile-portrait-note {
    position: absolute; top: 24px; right: 24px;
    background: white;
    color: var(--hyundai-blue);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 12px; line-height: 1.4;
    font-weight: 600;
    box-shadow: var(--shadow-float);
    max-width: 180px;
  }
  .profile-portrait-note .num {
    display: block;
    font-size: 20px; font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 2px;
  }

  .profile-copy .quote {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.45;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink);
    padding-left: 20px;
    border-left: 3px solid var(--hyundai-blue);
    margin: 20px 0 40px;
  }
  .profile-facts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .profile-fact .k {
    font-family: var(--font-en);
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  .profile-fact .v {
    margin-top: 6px;
    font-size: 15px; font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

  @media (max-width: 900px) {
    .profile-grid { grid-template-columns: 1fr; gap: 40px; }
    .profile-portrait { aspect-ratio: 3 / 4; max-width: 480px; }
  }

  /* ==================== CATALOG ==================== */
  .catalog {
    background: var(--paper-tint);
  }
  .catalog-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .catalog-tabs {
    display: flex; gap: 4px;
    padding: 4px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .catalog-tab {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    color: var(--ink-mute);
    letter-spacing: -0.005em;
    transition: all .18s ease;
  }
  .catalog-tab.is-active {
    background: var(--hyundai-blue);
    color: white;
  }
  .catalog-tab:not(.is-active):hover { color: var(--hyundai-blue); }

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .car-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
    display: flex; flex-direction: column;
  }
  .car-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
  }
  .car-card-image {
    aspect-ratio: 16 / 10;
    background: var(--hyundai-blue-soft);
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .car-card-tag {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.94);
    color: var(--hyundai-blue);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-en);
  }
  .car-card-tag.ev { background: var(--hyundai-blue); color: white; }
  .car-card-tag.premium { background: #111; color: white; }
  .car-card-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex; flex-direction: column;
  }
  .car-card-brand {
    font-family: var(--font-en);
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 6px;
  }
  .car-card-name {
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .car-card-desc {
    font-size: 13px; color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
  }
  .car-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
  }
  .car-card-price {
    font-family: var(--font-num);
    font-size: 16px; font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .car-card-price .from { font-size: 11px; font-weight: 400; color: var(--ink-mute); margin-right: 4px; letter-spacing: 0.05em; }
  .car-card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600;
    color: var(--hyundai-blue);
  }
  .car-card-cta svg { width: 12px; height: 12px; transition: transform .2s ease; }
  .car-card:hover .car-card-cta svg { transform: translateX(3px); }

  @media (max-width: 960px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .catalog-grid { grid-template-columns: 1fr; }
  }

  /* ==================== NUMBERS ==================== */
  .numbers {
    background: var(--hyundai-blue);
    color: white;
    padding: 100px 0;
  }
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .num-cell {
    padding: 32px 4px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .num-cell .k {
    font-family: var(--font-en);
    font-size: 10px; letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
  }
  .num-cell .v {
    font-family: var(--font-num);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .num-cell .v .u {
    font-size: 0.4em; font-weight: 500;
    opacity: 0.72; margin-left: 4px;
  }
  .num-cell .d {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    line-height: 1.55;
  }
  .numbers .eyebrow { color: var(--hyundai-sky); }
  .numbers .eyebrow::before { background: var(--hyundai-sky); }
  .numbers .section-title { color: white; }
  .numbers .section-title .mute { color: rgba(255,255,255,0.4); }
  .numbers .section-lead { color: rgba(255,255,255,0.7); }

  @media (max-width: 780px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ==================== REVIEWS ==================== */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .review {
    padding: 32px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column;
  }
  .review-stars {
    display: flex; gap: 2px;
    margin-bottom: 20px;
    color: var(--hyundai-blue);
  }
  .review-stars svg { width: 14px; height: 14px; }
  .review-quote {
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 24px;
    flex: 1;
  }
  .review-meta {
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
    display: flex; align-items: center; gap: 12px;
  }
  .review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hyundai-blue), var(--hyundai-sky));
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
  }
  .review-who {
    line-height: 1.35;
  }
  .review-who .n { font-size: 14px; font-weight: 600; color: var(--ink); }
  .review-who .c { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }

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

  /* ==================== INSTAGRAM / DELIVERY ==================== */
  .feed {
    background: var(--paper-tint);
  }
  .feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 12px;
    margin-top: 56px;
  }
  .feed-item {
    aspect-ratio: 1;
    background: var(--hyundai-blue-soft);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .feed-item.wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: unset;
  }
  .feed-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,31,69,0.75));
    opacity: 0;
    transition: opacity .3s ease;
  }
  .feed-item:hover::after { opacity: 1; }
  .feed-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 18px 20px;
    color: white;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all .3s ease;
  }
  .feed-item:hover .feed-caption {
    transform: translateY(0);
    opacity: 1;
  }
  .feed-caption .h {
    font-size: 14px; font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.35;
  }
  .feed-caption .d {
    font-family: var(--font-en);
    font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 4px;
  }
  .feed-item .heart {
    position: absolute; top: 14px; right: 14px;
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.95);
    color: var(--hyundai-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    opacity: 0; transform: scale(0.9);
    transition: all .3s ease;
  }
  .feed-item:hover .heart { opacity: 1; transform: scale(1); }

  @media (max-width: 780px) {
    .feed-grid { grid-template-columns: repeat(2, 1fr); }
    .feed-item.wide { grid-column: span 2; grid-row: span 1; aspect-ratio: 1; }
  }

  /* ==================== BOOKING FORM ==================== */
  .booking {
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(0,170,210,0.14), transparent 55%),
      radial-gradient(ellipse at 10% 90%, rgba(0,44,95,0.55), transparent 45%);
    pointer-events: none;
  }
  .booking-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: flex-start;
  }
  .booking .eyebrow { color: var(--hyundai-sky); }
  .booking .eyebrow::before { background: var(--hyundai-sky); }
  .booking .section-title { color: white; }
  .booking .section-title .mute { color: rgba(255,255,255,0.35); }
  .booking .section-lead { color: rgba(255,255,255,0.7); }
  .booking-contacts {
    margin-top: 40px;
    display: flex; flex-direction: column;
    gap: 4px;
  }
  .booking-contact {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .booking-contact:last-child { border-bottom: none; }
  .booking-contact-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .booking-contact-icon svg { width: 18px; height: 18px; }
  .booking-contact .k {
    font-family: var(--font-en);
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .booking-contact .v {
    font-size: 16px; font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
    margin-top: 2px;
  }

  .booking-form {
    background: white;
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 40px;
  }
  .form-head { margin-bottom: 24px; }
  .form-head .t {
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em;
  }
  .form-head .s {
    margin-top: 6px;
    font-size: 13px; color: var(--ink-soft);
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 14px;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: var(--font-en);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font: inherit;
    font-family: var(--font-kr);
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--ink);
    background: var(--paper-tint);
    transition: border-color .18s ease, background .18s ease;
    outline: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--hyundai-blue);
    background: white;
  }
  .form-field textarea { resize: none; min-height: 88px; }
  .form-submit {
    display: flex; align-items: center; gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 18px;
    background: var(--kakao);
    color: var(--kakao-ink);
    border-radius: var(--radius-md);
    font-size: 15px; font-weight: 700;
    margin-top: 12px;
    transition: transform .18s ease;
  }
  .form-submit:hover { transform: translateY(-1px); }
  .form-submit svg { width: 16px; height: 16px; }
  .form-note {
    margin-top: 14px;
    font-size: 11px; color: var(--ink-mute);
    line-height: 1.55;
    text-align: center;
  }

  @media (max-width: 900px) {
    .booking-inner { grid-template-columns: 1fr; gap: 48px; }
    .booking-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ==================== FAQ ==================== */
  .faq-list {
    margin-top: 56px;
    max-width: 900px;
  }
  .faq-item {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--line); }
  .faq-q {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 24px;
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .faq-q .num {
    font-family: var(--font-num);
    font-size: 13px; color: var(--hyundai-blue);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-right: 20px;
    flex-shrink: 0;
    padding-top: 4px;
  }
  .faq-q .toggle {
    width: 24px; height: 24px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-mute);
    transition: transform .3s ease;
  }
  .faq-item.is-open .toggle { transform: rotate(45deg); color: var(--hyundai-blue); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, margin-top .35s ease;
    font-size: 15px; line-height: 1.7;
    color: var(--ink-soft);
    padding-left: 44px; padding-right: 44px;
  }
  .faq-item.is-open .faq-a {
    max-height: 240px;
    margin-top: 14px;
  }

  /* ==================== FOOTER ==================== */
  .footer {
    background: var(--hyundai-blue-deep);
    color: rgba(255,255,255,0.72);
    padding: 80px 0 40px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand .mark {
    color: white;
    font-size: 20px; font-weight: 700;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
  }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 320px;
  }
  .footer-col h5 {
    font-family: var(--font-en);
    font-size: 10px; letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    font-size: 13px; margin-bottom: 10px;
    line-height: 1.5;
  }
  .footer-col li strong {
    color: white; font-weight: 600;
    display: block;
    letter-spacing: -0.005em;
  }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.01em;
  }

  @media (max-width: 860px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ==================== FLOATING CTA ==================== */
  .float-cta {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 90;
    display: flex; flex-direction: column;
    gap: 10px;
  }
  .float-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-float);
    transition: transform .2s ease;
    position: relative;
  }
  .float-btn:hover { transform: translateY(-2px) scale(1.04); }
  .float-btn.kakao { background: var(--kakao); color: var(--kakao-ink); }
  .float-btn.phone { background: var(--hyundai-blue); color: white; }
  .float-btn svg { width: 26px; height: 26px; }
  .float-btn .lbl {
    position: absolute; right: calc(100% + 12px);
    top: 50%; transform: translateY(-50%);
    background: var(--ink);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 12px; font-weight: 600;
    white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
  }
  .float-btn:hover .lbl { opacity: 1; }
  .float-btn.kakao::before {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: var(--kakao);
    opacity: 0.35;
    animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
    z-index: -1;
  }
  @keyframes ping {
    75%, 100% { transform: scale(1.6); opacity: 0; }
  }

  @media (max-width: 600px) {
    /* Mobile: transform floating buttons into a full-width bottom action bar */
    body { padding-bottom: 68px; }

    .float-cta {
      right: 0; left: 0; bottom: 0;
      flex-direction: row;
      gap: 0;
      background: var(--paper);
      border-top: 1px solid var(--line);
      box-shadow: 0 -4px 16px rgba(0,44,95,0.08);
      padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    }
    .float-btn {
      flex: 1;
      width: auto; height: 52px;
      border-radius: var(--radius-md);
      flex-direction: column;
      gap: 3px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: -0.01em;
      box-shadow: none;
    }
    .float-btn:hover { transform: none; }
    .float-btn svg { width: 18px; height: 18px; }
    /* Show inline labels instead of the desktop tooltip */
    .float-btn .lbl {
      position: static;
      transform: none;
      opacity: 1;
      background: transparent;
      color: inherit;
      padding: 0;
      font-size: 11px;
      font-weight: 600;
      border-radius: 0;
    }
    /* Kill the pulsing ring on mobile — too busy in a bar layout */
    .float-btn.kakao::before { display: none; }
    /* Booking CTA — the third, most prominent action */
    .float-btn.booking {
      background: var(--hyundai-blue);
      color: white;
    }
  }

  /* ==================== SCROLL REVEAL ==================== */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal.is-in { opacity: 1; transform: none; }
