/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2332;
  --navy-light: #2a3f5f;
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --teal: #00a8a8;
  --teal-dark: #008888;
  --white: #ffffff;
  --gray-light: #eef0f2;
  --gray: #6b7280;
  --gray-dark: #374151;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  word-break: keep-all; /* 모바일에서 단어가 부자연스럽게 잘리는 현상 방지 */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px; /* 데스크톱 내비게이션 바 높이 축소 */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInDown 0.8s ease-out 0.2s;
  animation-fill-mode: backwards;
}

.nav-logo img {
  height: 40px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon span {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon-footer {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.logo-icon-footer span {
  color: var(--white);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--navy);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta {
  background: var(--teal);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
}

.btn-white:hover {
  background: var(--gray-light);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
}

/* Icons */
.icon {
  width: 32px;
  height: 32px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 1rem 5rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./luxury-premium-car-showroom-interior-modern.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  animation: slowPan 30s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(26, 35, 50, 0.7); /* 어두운 오버레이 */
  z-index: 0;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blur-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: var(--gold);
}

.hero-blur-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--teal);
}

.hero-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  overflow: hidden; /* 자식 요소 애니메이션을 위해 추가 */
}

.hero-title-accent {
  display: inline-block;
  color: var(--gold);
  font-size: 8rem; /* 데스크톱 hero-title 3rem의 3배 */
  animation: flyInFromBottom 1s ease-out 0.5s;
  animation-fill-mode: backwards; /* 애니메이션 시작 전 'from' 상태 유지 */
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem; /* 특징들 사이의 간격 축소 */
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature .icon {
  color: var(--teal);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  /* 페이지 로드 시 이미지가 아래에서 위로 올라오는 애니메이션 */
  animation: heroImageSlideUp 1s ease-out 0.7s;
  animation-fill-mode: backwards;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.5), transparent);
}

/* Sections */
.section {
  padding: 6rem 1rem;
}

.section-gray {
  background: var(--gray-light);
}

.section-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.section-cta {
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
}

.text-white {
  color: var(--white);
}

.text-light {
  color: rgba(255, 255, 255, 0.8);
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-align: center;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.card-icon-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.card-icon-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.card-icon-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.card-icon-navy svg {
  stroke: var(--gold);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--gray);
  line-height: 1.6;
}

/* Vehicle Cards */
.vehicle-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.vehicle-card:hover {
  box-shadow: var(--shadow-xl);
}

.vehicle-image-wrapper {
  position: relative;
  overflow: hidden;
}

.vehicle-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.1);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.vehicle-content {
  padding: 1.5rem;
}

.vehicle-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.vehicle-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vehicle-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
}

.vehicle-price-label {
  color: var(--gray);
}

.vehicle-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* Process Timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Stats */
.stats-grid {
  margin-bottom: 4rem;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.testimonial-vehicle {
  font-size: 0.875rem;
  color: var(--gray);
}

.testimonial-header .testimonial-info {
  align-self: center;
}

.testimonial-text {
  color: var(--gray-dark);
  line-height: 1.6;
}

/* CTA Section */
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}
.footer-logo .footer-logo-text {
  color: var(--white);
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-heading {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
   
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* 기본적으로 메뉴를 숨김 */
    position: fixed;
    top: 44px; /* 네비게이션 바 높이만큼 아래로 */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    /* flex-direction: column; */ /* JS에서 flex로 변경될 때 적용되도록 주석 처리 */
    align-items: stretch;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .nav-content {
    height: 40px; /* 모바일 네비게이션 높이 추가 축소 */
  }

  .nav-logo img {
    height: 20px; /* 모바일에서 로고 높이 축소 */
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 4.5rem 1rem 3rem; /* 모바일에서 히어로 섹션 상단 여백 축소 */
  }

  .hero-title {
    /* text-align: center; */ /* 이전에 추가되었으나, hero-content에 적용하면 중복 */
    font-size: 2rem;
  }

  .hero-grid {
    gap: 0rem; /* 모바일에서 히어로 콘텐츠와 이미지 사이 간격 추가 축소 */
  }

  .hero-title-accent {
    font-size: 4rem; /* 모바일 hero-title 2rem의 3배 */
  }

  .hero-content {
    text-align: center; /* 뱃지, 제목 등 인라인/인라인-블록 요소들을 중앙 정렬 */
  }

  .hero-description {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 1rem; /* 모바일에서 섹션 상하 여백 축소 */
  }

  .hero-features {
    justify-content: center;
  }

  .hero-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.9);
    backdrop-filter: blur(5px);
    padding: 0.25rem 0.5rem; /* 플로팅 바의 상하 여백 추가 축소 */
    z-index: 100;
    justify-content: stretch; /* 버튼이 가로로 꽉 차도록 변경 */
    flex-wrap: nowrap; /* 버튼이 한 줄에 표시되도록 설정 */
  }

  .hero-buttons .btn {
    flex-grow: 1; /* 버튼이 공간을 채우도록 설정 */
    padding: 0.6rem 1rem; /* 버튼의 상하 여백 추가 축소 */
    font-size: 0.875rem; /* 버튼의 글자 크기 추가 축소 */
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch; /* 카드의 높이를 맞춥니다 */
  }

  .company-price {
    font-size: 1.1rem; /* 모바일에서 가격 폰트 크기 추가 축소 */
  }

  .cardeal-highlight .company-price {
    font-size: 1.25rem; /* 모바일에서 강조된 가격 폰트 크기 추가 축소 */
  }
}

/* Consultation Form Section */
.section-form {
  /* padding: 5rem 1rem; */ /* .section 클래스에서 일괄 적용되므로 제거 */
  background-color: var(--white); /* 변경: white */
}

.consultation-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--navy);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(0, 168, 168, 0.2);
}

.privacy-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.privacy-group div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.privacy-link {
  background: none;
  border: none;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.modal-close-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
}

.modal-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.icon-success {
  width: 64px;
  height: 64px;
  color: var(--teal);
  margin: 0 auto 0.5rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes flyInFromBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 히어로 이미지 애니메이션 */
@keyframes heroImageSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowPan {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Comparison Section */
.comparison-container {
  /* margin-top: 4rem; */ /* 불필요한 상단 여백 제거 */
  text-align: center;
}

.comparison-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.comparison-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.comparison-main-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.comparison-card {
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 2px solid #e5e7eb;
}

.comparison-info {
  padding: 1.5rem;
}

.company-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.company-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
}

.cardeal-highlight {
  border-color: var(--teal);
  box-shadow: var(--shadow-xl);
}

.cardeal-highlight .company-price {
  color: var(--teal);
  font-size: 1rem;
}

/* Utility classes */
.font-weight-600 {
  font-weight: 600;
}

/* Consulting Section - New Structure */
.consulting-section-bg {
  background: var(--white); /* 변경: white */
  /* padding: 5rem 1rem; */ /* .section 클래스에서 일괄 적용되므로 제거 */
}

.consulting-header {
  text-align: center;
  margin-bottom: 4rem; /* section-header와 통일 */
}

.consulting-header-badge {
  display: inline-block;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.875rem; /* 14px */
  color: #333;
  margin-bottom: 0.75rem; /* 12px */
  font-weight: 500;
}

/* Featured Car (Central Image Area) */
.consulting-featured-car-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem; /* 40px */
}

.consulting-featured-car-card {
  width: 450px;
  height: 250px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08); /* Custom shadow */
  position: relative;
  overflow: hidden;
}

.consulting-featured-car-image {
  max-width: 400px;
  max-height: 220px;
  object-fit: contain;
}

.consulting-featured-car-badge {
  position: absolute;
  top: 0.75rem; /* 12px */
  right: 0.75rem; /* 12px */
  background: #16a34a; /* Specific green */
  color: var(--white);
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
}

/* Consulting Cases List */
.consulting-cases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid; /* Use grid for overall layout */
  grid-template-columns: 1fr; /* Default: single column for mobile */
  gap: 1.25rem; /* 20px */
}

.consulting-case-item {  
  /* These styles were moved out of media query in previous diff */
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.consulting-case-profile {
  text-align: center;
  margin-bottom: 1rem; /* Add spacing below profile */
}

.consulting-case-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%; /* 원형 유지 */
  display: inline-flex; /* 아이콘 중앙 정렬을 위해 flex로 변경 */
  align-items: center;
  justify-content: center;
}

.consulting-case-avatar svg {
  width: 24px; /* 아이콘 크기 */
  height: 24px;
  color: var(--navy-light); /* 아이콘 색상 */
}

.consulting-case-avatar-blue { background: #cfe8ff; }
.consulting-case-avatar-pink { background: #ffd6e0; }
.consulting-case-avatar-green { background: #dff7e6; }

.consulting-case-profile-text {
  font-size: 1rem; /* 12px */
  color: var(--gray-dark); /* #334155 */
  margin-top: 0.375rem; /* 6px */
}

.consulting-case-content {
  width: 100%; /* Ensure content takes full width within the card */
}

.consulting-case-quote {
  margin: 0 0 1rem; /* Increased spacing below quote */
  font-size: 0.9375rem; /* 15px */
  color: var(--navy); /* #0f172a */
}

.consulting-case-car-image {
  width: 100%; /* Make image wider for mobile */
  height: 16rem; /* Match vehicle-card image height */
  object-fit: cover; /* Change to cover to fill the space */
  border-radius: 8px; /* Slightly larger radius */
  margin-bottom: 1rem;
}

.consulting-case-car-name {
  font-size: 1.25rem; /* 20px, increased size */
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.consulting-case-car-price {
  font-size: 1.5rem; /* 24px, increased size */
  font-weight: 700;
  color: var(--teal);
}

/* New rule for the text block below the image */
.consulting-case-recommendation-details {
  width: 100%;
  text-align: left;
  padding: 0 0.5rem; /* Add some horizontal padding */
  margin-top: 1rem;
}

.consulting-footer-note {
  margin-top: 3rem; /* section-footer-note와 통일 */
  font-size: 0.75rem; /* 12px */
  color: var(--gray); /* #475569 */
  text-align: center;
}

.consulting-footer-note p {
  margin: 0;
}

.consulting-footer-note p + p {
  margin-top: 0.375rem; /* 6px */
}

/* Responsive adjustments for consulting cases list */
@media (min-width: 768px) {
  .consulting-cases-list {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for larger screens */
    gap: 2rem; /* Adjust gap for larger screens */
  }

  .consulting-case-car-image {
    width: 100%; /* Make image wider */
    height: 16rem; /* Match mobile and other cards */
  }
}

/* Strengths Section */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.strength-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.strength-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strength-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.strength-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.strength-text {
  color: var(--gray-dark);
  line-height: 1.7;
}

@media (max-width: 560px) {
  .strength-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .strength-card {
    padding: 1.5rem 1rem;
  }
}

/* Promotion Section */
.promotion-section {
  background-color: var(--white);
}

.promotion-badge {
  display: inline-block;
  background: #ffcc00;
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.promotion-card {
  background: #fefefe;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.promotion-card-tag {
  background: #ffcc00;
  color: var(--navy);
  font-weight: 700;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
}

.promotion-card-stock {
  margin: 0.75rem 0 0.5rem;
  color: var(--gray);
  font-size: 0.875rem;
}

.promotion-card-image {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
}

.promotion-card-price {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.promotion-footer-note {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}
