/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--color-blue-light) 0%, #FFFFFF 100%);
  padding-top: calc(var(--header-height-pc) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--color-white), transparent);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 2;
}

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

.hero-badges .badge {
  font-size: 0.85rem;
  padding: 6px 14px;
  box-shadow: var(--shadow-sm);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
}

.hero-content h1,
.hero-content .hero-h1-div {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  font-weight: 850;
  line-height: 1.25;
  color: var(--color-navy);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 400;
  word-break: keep-all;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-cta .btn {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-image-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-200);
  background-color: var(--color-navy-dark);
}

.hero-image-card svg,
.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Main Hero Section Slider & Overlay Override
   ========================================================================== */
.hero {
  position: relative;
  min-height: 760px;
  height: 85vh;
  max-height: 860px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: var(--header-height-pc);
  padding-bottom: 100px;
  background: none;
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero .hero-container {
  display: block;
  width: 100%;
  z-index: 5;
}

.hero .hero-content {
  max-width: 680px;
  text-align: left;
}

.hero .hero-content h1,
.hero .hero-content .hero-h1-div {
  color: var(--color-white);
  font-size: 3.25rem;
  line-height: 1.25;
  margin-bottom: 28px;
  text-shadow: 0 2px 4px rgba(5, 15, 35, 0.4);
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero .hero-content p {
  color: var(--color-gray-200);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 35px;
  text-shadow: 0 1px 2px rgba(5, 15, 35, 0.4);
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-helper-note {
  opacity: 0.8;
}

/* Global Responsive Helpers */
.pc-only {
  display: inline !important;
}
.mo-only {
  display: none !important;
}
.pc-only-block {
  display: block !important;
}
.mo-only-block {
  display: none !important;
}
.pc-only-flex {
  display: flex !important;
}
.mo-only-flex {
  display: none !important;
}
.hide-mobile {
  display: inline-flex !important;
}

@media (max-width: 900px) {
  .pc-only {
    display: none !important;
  }
  .mo-only {
    display: inline !important;
  }
  .pc-only-block {
    display: none !important;
  }
  .mo-only-block {
    display: block !important;
  }
  .pc-only-flex {
    display: none !important;
  }
  .mo-only-flex {
    display: flex !important;
  }
  .hide-mobile {
    display: none !important;
  }
}

.hero .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero .hero-slide.active {
  opacity: 1;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(5, 15, 35, 0.88) 0%,
    rgba(5, 15, 35, 0.62) 42%,
    rgba(5, 15, 35, 0.18) 100%
  ),
  linear-gradient(
    0deg,
    rgba(5, 15, 35, 0.72) 0%,
    rgba(5, 15, 35, 0.08) 55%
  );
  pointer-events: none;
}

.hero .hero-badges .badge {
  background-color: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero .hero-badges .badge-blue {
  background-color: rgba(30, 64, 175, 0.85);
  color: var(--color-white);
}

.hero .hero-badges .badge-green {
  background-color: rgba(6, 95, 70, 0.85);
  color: var(--color-white);
}

/* Outline-white Button */
.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--color-white);
  transition: all var(--transition-fast);
  font-weight: 600;
  border-radius: var(--radius-md);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

/* Mobile responsive adjustments specifically for section-hero */
@media (max-width: 1024px) {
  .hero {
    min-height: 680px;
    height: 75vh;
    max-height: 760px;
    padding-top: calc(var(--header-height-mo) + 40px);
    padding-bottom: 110px;
  }
  
  .hero .hero-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero .hero-badges {
    justify-content: flex-start;
  }

  .hero .hero-content h1,
  .hero .hero-content .hero-h1-div {
    font-size: 2.15rem;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .hero .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero .hero-cta {
    justify-content: flex-start;
  }
  
  .hero .hero-cta .btn {
    flex: 1;
    min-width: 140px;
    padding: 14px 15px;
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-bottom: 120px;
  }
  
  .hero .hero-content h1,
  .hero .hero-content .hero-h1-div {
    font-size: 1.85rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-height-mo) + 40px);
    padding-bottom: 60px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-content h1,
  .hero-content .hero-h1-div {
    font-size: 2.25rem;
  }
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   상담 대상 조건 섹션 (Target Conditions)
   ========================================================================== */
/* Hook Bridge Section */
.hook-section {
  position: relative;
  min-height: 650px;
  max-height: 850px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.hook-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hook-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hook-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hook-content h2 {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-navy);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  word-break: keep-all;
  text-align: center;
}

.hook-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-gray-800);
  margin-bottom: 20px;
  word-break: keep-all;
  text-align: center;
}

.hook-guide {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 30px;
  word-break: keep-all;
  text-align: center;
}

.hook-caution {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--color-gray-500);
  border-top: 1px solid var(--color-gray-300);
  padding-top: 16px;
  margin-top: 20px;
  display: inline-block;
  word-break: keep-all;
  text-align: center;
}

/* Mobile responsive version for hook bridge section */
@media (max-width: 768px) {
  .hook-section {
    min-height: 600px;
    max-height: 700px;
    padding: 75px 0;
  }
  .hook-content {
    max-width: 100%;
    padding: 0 15px;
  }
  .hook-content h2 {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .hook-desc {
    font-size: 1.025rem;
  }
  .hook-guide {
    font-size: 0.95rem;
  }
}/* Revenue Hook Section */
.section-revenue {
  background: radial-gradient(circle at center, #0F203D 0%, #0A0F1D 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section-revenue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.section-revenue .container {
  position: relative;
  z-index: 2;
}

.section-revenue .section-header h2 {
  color: var(--color-white);
  font-size: 2.65rem;
  font-weight: 850;
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.section-revenue .section-header p {
  color: var(--color-gray-300);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}

.revenue-number-panel {
  background-color: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: var(--shadow-xl), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.revenue-number-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.number-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.slots-container {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-family-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-green);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
  line-height: 1;
  overflow: hidden;
}

.slot-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  line-height: 1em;
}

.slot-strip {
  display: block;
  height: 10em;
}

.slot-strip span {
  display: block;
  height: 1em;
  line-height: 1em;
  text-align: center;
}

.slot-comma {
  display: inline-block;
  line-height: 1em;
  color: var(--color-green);
  margin: 0 2px;
}

.slot-unit {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-left: 6px;
  align-self: flex-end;
  padding-bottom: 8px;
}

.revenue-basis {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  margin-top: 18px;
  font-weight: 500;
}

.revenue-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.revenue-footer .btn {
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  background-color: var(--color-green);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.revenue-footer .btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-green-dark);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

.revenue-footer-guide {
  font-size: 0.925rem;
  color: var(--color-gray-300);
  margin: 15px 0 35px 0;
  font-weight: 500;
}

.revenue-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 820px;
  margin: 0 auto;
  word-break: keep-all;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .section-revenue {
    padding: 70px 0;
  }
  
  .section-revenue .section-header h2 {
    font-size: 1.85rem;
    line-height: 1.4;
  }
  
  .section-revenue .section-header p {
    font-size: 1rem;
  }
  
  .revenue-number-panel {
    border: none;
    background-color: rgba(30, 41, 59, 0.45);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(16, 185, 129, 0.05);
    padding: 40px 24px;
    margin: 25px auto;
    border-radius: 24px;
  }
  
  .slots-container {
    font-size: 2.35rem;
    letter-spacing: -0.02em;
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }
  
  .slot-unit {
    font-size: 1.25rem;
    padding-left: 4px;
  }
  
  .revenue-footer .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  }
  
  .revenue-footer .btn:hover {
    background-color: var(--color-green-dark);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
  }
  
  .revenue-footer-guide {
    font-size: 0.85rem;
    margin: 12px 0 25px 0;
  }
}

.section-types {
  background-color: var(--color-gray-50);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.space-card {
  position: relative;
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* 1. Text Card Style */
.space-card.text-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  text-align: left;
}

.text-card-content h3,
.text-card-content h2 {
  font-family: var(--font-family-heading);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-navy);
  margin: 0 0 18px 0;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.text-card-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-gray-600);
  margin: 0 0 24px 0;
  word-break: keep-all;
}

.text-card-accent {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.5;
  border-left: 2px solid var(--color-green);
  padding-left: 10px;
  word-break: keep-all;
}

/* 2. Image Card Style */
.space-card.image-card {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px;
  text-align: left;
  cursor: pointer;
}

.space-card.image-card:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-xl);
}

.image-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 15, 35, 0.15) 0%,
    rgba(5, 15, 35, 0.45) 55%,
    rgba(5, 15, 35, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.image-card-content {
  position: relative;
  z-index: 2;
}

.image-card-content h3 {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 750;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.image-card-content p {
  font-size: 0.95rem;
  color: var(--color-gray-200);
  line-height: 1.4;
  margin: 0;
  word-break: keep-all;
}

/* Mobile Intro Text Block Styles */
.space-mo-intro {
  margin-bottom: 32px;
  text-align: left;
  padding: 0 15px;
}

.space-mo-label {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-blue);
  background-color: var(--color-blue-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.space-mo-intro h2 {
  font-family: var(--font-family-heading);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-navy);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.space-mo-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0 0 16px 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.space-mo-accent {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-green);
  border-left: 2px solid var(--color-green);
  padding-left: 10px;
  margin-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* Mobile responsive settings for 2x2 grid */
@media (max-width: 900px) {
  .space-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .space-card {
    height: 280px;
    border-radius: 20px;
  }
  
  .space-card.text-card {
    padding: 30px;
  }
  
  .space-card.image-card {
    padding: 30px;
  }
  
  .text-card-content h3,
  .text-card-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .text-card-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .image-card-content h3 {
    font-size: 1.3rem;
  }
  
  .image-card-content p {
    font-size: 0.9rem;
  }
}


/* ==========================================================================
   설치 전 확인 조건 섹션 (Pre-check Conditions)
   ========================================================================== */
/* Precheck Section (Pentagon Layout on Desktop, stack on Mobile) */
.section-precheck {
  background: #F8FBFF radial-gradient(circle at center, rgba(2, 132, 199, 0.04) 0%, transparent 70%);
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

.section-precheck .mobile-header {
  display: none;
}

.pentagon-container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 750px;
  margin: 50px auto 0 auto;
}

.pentagon-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pentagon-polygon {
  fill: none;
  stroke: rgba(16, 185, 129, 0.22);
  stroke-width: 1px;
  stroke-dasharray: 2250;
  stroke-dashoffset: 2250;
}

.section-precheck.animate .pentagon-polygon {
  animation: drawPentagon 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes drawPentagon {
  to {
    stroke-dashoffset: 0;
  }
}

.pentagon-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 520px;
  text-align: center;
  z-index: 10;
}

.pentagon-center-text h2 {
  font-family: var(--font-family-heading);
  font-size: 2.25rem;
  font-weight: 850;
  line-height: 1.35;
  color: var(--color-navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pentagon-center-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  word-break: keep-all;
  overflow-wrap: normal;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Pentagon Cards */
.precheck-card {
  position: absolute;
  width: 260px;
  height: 160px;
  background-color: var(--color-white);
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: 24px;
  padding: 28px 24px 20px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 5;
  
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              background-color var(--transition-normal),
              border-color var(--transition-normal),
              box-shadow var(--transition-normal);
}

.section-precheck.animate .precheck-card {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.section-precheck.animate .pentagon-card-1 { transition-delay: 200ms; }
.section-precheck.animate .pentagon-card-2 { transition-delay: 350ms; }
.section-precheck.animate .pentagon-card-3 { transition-delay: 500ms; }
.section-precheck.animate .pentagon-card-4 { transition-delay: 650ms; }
.section-precheck.animate .pentagon-card-5 { transition-delay: 800ms; }

/* Positions */
.pentagon-card-1 {
  top: 5px;
  left: 50%;
  transform: translateX(-50%) scale(0.9) translateY(10px);
}
.section-precheck.animate .pentagon-card-1 {
  transform: translateX(-50%) scale(1) translateY(0);
}

.pentagon-card-2 {
  top: 205px;
  right: 23px;
}

.pentagon-card-3 {
  top: 530px;
  right: 190px;
}

.pentagon-card-4 {
  top: 530px;
  left: 190px;
}

.pentagon-card-5 {
  top: 205px;
  left: 23px;
}

/* Interactive Hover States */
.section-precheck.animate .precheck-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--color-blue);
  box-shadow: var(--shadow-lg);
}

.section-precheck.animate .pentagon-card-1:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.02);
}

.card-num-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background-color: var(--color-white);
  color: var(--color-blue);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2, 132, 199, 0.25);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  z-index: 10;
}

.precheck-check {
  color: var(--color-green);
  font-weight: 900;
  font-size: 1.15rem;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
  position: absolute;
  top: 20px;
  right: 24px;
  opacity: 0;
  transform: scale(0.6);
  display: inline-block;
}

.section-precheck.animate .precheck-check {
  animation: popCheck 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.section-precheck.animate .pentagon-card-1 .precheck-check { animation-delay: 700ms; }
.section-precheck.animate .pentagon-card-2 .precheck-check { animation-delay: 850ms; }
.section-precheck.animate .pentagon-card-3 .precheck-check { animation-delay: 1000ms; }
.section-precheck.animate .pentagon-card-4 .precheck-check { animation-delay: 1150ms; }
.section-precheck.animate .pentagon-card-5 .precheck-check { animation-delay: 1300ms; }

@keyframes popCheck {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.precheck-card h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin: 0 0 12px 0;
  font-weight: 800;
}

.precheck-card p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.55;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.precheck-footer {
  margin-top: 70px;
  text-align: center;
}

.precheck-footer-guide {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin: 0;
  word-break: keep-all;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .pentagon-polygon {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  .precheck-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pentagon-card-1 {
    transform: translateX(-50%) !important;
  }
  .precheck-check {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Mobile responsive styles */
@media (max-width: 900px) {
  .section-precheck {
    padding: 70px 0;
    background: #F8FBFF;
  }

  .section-precheck .mobile-header {
    display: block;
  }

  .pentagon-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 35px;
    padding: 0 5px;
  }

  .pentagon-lines,
  .pentagon-center-text {
    display: none;
  }
  
  .precheck-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    opacity: 1 !important;
    padding: 24px 24px 20px 24px;
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  }
  
  .pentagon-card-1,
  .section-precheck.animate .pentagon-card-1,
  .pentagon-card-2,
  .pentagon-card-3,
  .pentagon-card-4,
  .pentagon-card-5 {
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  
  .card-num-badge {
    position: static !important;
    display: inline-block;
    margin-bottom: 12px;
    border-color: rgba(2, 132, 199, 0.15);
  }
  
  .precheck-check {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  .section-precheck.animate .precheck-card:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03) !important;
    border-color: var(--color-gray-200) !important;
  }
}

/* ==========================================================================
   진행 절차 섹션 (Steps with Arrow Connectors)
   ========================================================================== */
/* ==========================================================================
   진행 절차 섹션 (4단계 카드 프로세스)
   ========================================================================== */
.section-steps {
  background-color: var(--color-white);
  padding: 120px 0;
}

.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* Thin Progress Connect Line for PC */
.steps-progress-line {
  position: absolute;
  top: 110px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-color: rgba(2, 132, 199, 0.06);
  z-index: 1;
  pointer-events: none;
}

.steps-progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--color-green);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-steps.animate .steps-progress-fill {
  width: 100%;
}

/* Step Cards */
.step-card {
  background-color: var(--color-white);
  border: 1px solid rgba(2, 132, 199, 0.1);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color var(--transition-normal),
              background-color var(--transition-normal),
              box-shadow var(--transition-normal);
}

.section-steps.animate .step-card {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay */
.section-steps.animate .step-card-1 { transition-delay: 100ms; }
.section-steps.animate .step-card-2 { transition-delay: 250ms; }
.section-steps.animate .step-card-3 { transition-delay: 400ms; }
.section-steps.animate .step-card-4 { transition-delay: 550ms; }

/* Interactive Hover States */
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.step-card-label {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--color-green);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.step-card-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  color: var(--color-blue);
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.step-card:hover .step-card-node {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 12px 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.55;
  margin: 0 0 20px 0;
  word-break: keep-all;
  overflow-wrap: normal;
  flex-grow: 1;
}

.step-card-tags {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-gray-400);
}

.steps-bottom-text {
  margin-top: 60px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gray-600);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: normal;
  padding: 0 20px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .steps-progress-fill {
    transition: none !important;
    width: 100% !important;
  }
  .step-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Mobile responsive styles */
@media (max-width: 900px) {
  .section-steps {
    padding: 70px 0;
  }

  .steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 28px;
    margin-top: 35px;
    max-width: 100%;
  }
  
  .steps-container::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 24px;
    left: 8px;
    width: 2px;
    background-color: var(--color-green);
    opacity: 0.35;
    z-index: 1;
  }

  .steps-progress-line {
    display: none;
  }
  
  .step-card {
    position: relative !important;
    width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  
  .step-card::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-green);
    border: 2px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-green);
    z-index: 2;
  }
  
  .step-card-node {
    display: none !important;
  }
  
  .step-card-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }
  
  .step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  
  .step-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-gray-600);
  }
  
  .steps-bottom-text {
    margin-top: 40px;
  }
  
  .step-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
  }
}

/* ==========================================================================
   마지막 안심/확신 섹션 (Trust / Transparency Reassurance)
   ========================================================================== */
/* ==========================================================================
   마지막 안심/확신 섹션 (Trust / Reassurance Full-Width Hero)
   ========================================================================== */
.section-trust {
  position: relative;
  background-image: linear-gradient(
    90deg,
    rgba(5, 15, 35, 0.9) 0%,
    rgba(5, 15, 35, 0.8) 45%,
    rgba(5, 15, 35, 0.45) 100%
  ), url('/assets/images/media_1786083623652.jpg');
  background-size: cover;
  background-position: center right;
  padding: 140px 0;
  color: var(--color-white);
  overflow: hidden;
}

.trust-hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-hero-label {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.trust-hero-left h2 {
  font-size: 2.35rem;
  font-weight: 850;
  line-height: 1.35;
  color: var(--color-white);
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.trust-hero-main-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0 0 12px 0;
  word-break: keep-all;
  overflow-wrap: normal;
  font-weight: 600;
}

.trust-hero-sub-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 36px 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.trust-hero-cta-wrapper {
  margin-bottom: 16px;
}

.trust-hero-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 14px;
  background-color: var(--color-green);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition: all var(--transition-normal);
  text-align: center;
}

.trust-hero-btn:hover {
  background-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.trust-hero-notice {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.trust-hero-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-hero-point-card {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition-normal);
}

.trust-hero-point-card:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-hero-point-check {
  color: var(--color-green);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.trust-hero-point-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 6px 0;
}

.trust-hero-point-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 900px) {
  .section-trust {
    padding: 80px 0;
    background-image: linear-gradient(
      180deg,
      rgba(5, 15, 35, 0.82) 0%,
      rgba(5, 15, 35, 0.68) 100%
    ), url('/assets/images/media_1786083623652.jpg');
    background-position: center center;
  }
  
  .trust-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .trust-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .trust-hero-left h2 {
    font-size: 1.75rem;
  }
  
  .trust-hero-btn {
    width: 100%;
    box-sizing: border-box;
  }
  
  .trust-hero-point-card {
    text-align: left;
    padding: 16px 20px !important;
    border-radius: 16px !important;
  }
}

/* ==========================================================================
   상담 신청폼 섹션 (#consult-form)
   ========================================================================== */
.section-form {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-100);
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.form-wrapper-header {
  text-align: center;
  margin-bottom: 35px;
}

.form-wrapper-header h2 {
  font-size: 1.85rem;
  color: var(--color-navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.form-wrapper-header p {
  color: var(--color-gray-500);
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-submit-container {
  margin-top: 35px;
  text-align: center;
}

.form-submit-container .btn {
  width: 100%;
  max-width: 350px;
  padding: 16px;
  font-size: 1.1rem;
}

.privacy-agreement-box {
  margin-top: 25px;
  border-top: 1px solid var(--color-gray-100);
  padding-top: 20px;
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 30px 20px;
  }
  .form-wrapper-header h2 {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Subpages Style (Guide & Sitemap skeletons)
   ========================================================================== */
.subpage-container {
  padding-top: calc(var(--header-height-pc) + 60px);
  padding-bottom: 80px;
  min-height: 70vh;
}

@media (max-width: 1024px) {
  .subpage-container {
    padding-top: calc(var(--header-height-mo) + 40px);
    padding-bottom: 60px;
  }
}

.subpage-header {
  border-bottom: 1px solid var(--color-gray-200);
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.subpage-header h1 {
  font-size: 2.25rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.subpage-header p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  word-break: keep-all;
}

.placeholder-section {
  background-color: var(--color-gray-50);
  border: 2px dashed var(--color-gray-300);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
  margin-bottom: 30px;
}

.placeholder-section h3 {
  font-size: 1.25rem;
  color: var(--color-gray-800);
  margin-bottom: 10px;
}

.placeholder-section p {
  color: var(--color-gray-500);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.sitemap-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all var(--transition-fast);
}

.sitemap-item:hover {
  border-color: var(--color-blue);
  background-color: var(--color-blue-light);
}

.sitemap-item a {
  display: block;
  font-weight: 550;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.sitemap-item span {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

@media (max-width: 768px) {
  .sitemap-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Mobile Form Bottom Spacing for Fixed CTA padding */
@media (max-width: 768px) {
  .section-form {
    padding-bottom: 95px !important;
  }
}

