/* =============================================================
   SUPERCON  ·  style.css
   레이아웃 원칙
   - 좌우 여백 → .inner 컨테이너 한 곳에서만 관리
   - section 은 상하 padding 만 담당
   - max-width: 1280px, 양쪽 padding: 0 6vw (min 20px)
============================================================= */

/* ─────────────────────────────────────────────
   0. TOKENS (Design Variables)
───────────────────────────────────────────── */
:root {
  --navy: #001949;
  --navy-mid: #1a3068;
  --blue: #1883ff;
  --blue-light: #5b9bff;
  --pastel-sky: #d1e6ff;
  --pastel-blue: #d4edfb;
  --pastel-soft: #eaf5fd;
  --pastel-mint: #e0f4f8;
  --white: #ffffff;
  --gray-100: #f4f7fc;
  --gray-200: #cdd5e5;
  --gray-500: #8a9bbf;
  --text: #1a2340;
  --text-light: #5a6880;

  --inner-max: 1920px;
  --inner-gutter: clamp(20px, 6vw, 80px);

  --section-py: 100px;
}

/* ─────────────────────────────────────────────
   1. BASE
───────────────────────────────────────────── */
body {
  font-family: "Pretendard", sans-serif;
  color: var(--text);
  margin-top: 70px;
}

/* ─────────────────────────────────────────────
   2. LAYOUT — .inner (유일한 좌우 여백 컨테이너)
───────────────────────────────────────────── */
.inner {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
  padding-inline: var(--inner-gutter);
  box-sizing: border-box;
}

/* ─────────────────────────────────────────────
   3. SECTION COMMONS
   section 은 상하 padding 만 선언
   좌우 여백은 내부 .inner 가 담당
───────────────────────────────────────────── */
section {
  padding-block: var(--section-py);
}

.mb {
  display: none;
}
/* 섹션 헤더 공통 */
.section-head {
  margin-bottom: 4rem;
}
.section-head--center {
  text-align: center;
}
.section-head--center .s-desc {
  margin-inline: auto;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pastel-soft);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s both;
  letter-spacing: 0.3px;
}
.s-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  text-align: center;
}
.s-desc {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.82;
  max-width: 500px;
  text-align: center;
}

/* ─────────────────────────────────────────────
   4. BUTTONS
───────────────────────────────────────────── */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.2s;
  padding: 1.8rem 4.1rem;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 6px 24px rgba(13, 31, 78, 0.18);
}
.btn-primary:hover {
  background: var(--navy-mid);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}
.btn-outline:hover {
  border-color: var(--pastel-sky);
  background: var(--pastel-soft);
  color: var(--blue);
}

/* ─────────────────────────────────────────────
   5. HEADER
───────────────────────────────────────────── */
/* ───────── HEADER ───────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(184, 221, 245, 0.4);
}
.header:hover {
  background: #fff;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  margin: 0 auto;
  padding: 0 40px;
}
.header .logo {
  max-width: 150px;
  display: flex;
  align-items: center;
}
.header .logo img {
  display: block;
  width: 100%;
}

/* ───────── NAV CTA ───────── */
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

/* ───────── GNB ───────── */
.gnb > ul {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gnb > ul > li {
  padding: 0;
  height: 70px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

/* 1depth a 태그가 클릭·hover 영역 전체 담당 */
.gnb > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.gnb > ul > li:hover > a {
  color: var(--blue);
}

/* 하단 활성 바 */
.gnb > ul > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 28px; /* a 태그 padding-left 와 일치 */
  right: 28px; /* a 태그 padding-right 와 일치 */
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.gnb > ul > li:hover::after {
  transform: scaleX(1);
}

/* ───────── SUB WRAP ───────── */
.sub-wrap {
  position: fixed;
  top: 71px;
  left: 0;
  width: 100vw;
  /* 헤더 배경색과 동일하게 이어지도록 */
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  z-index: 999;

  /* hover 끊김 방지: li → sub-wrap 사이 gap 없애기 */
  margin-top: 0;
}
.gnb > ul > li:hover .sub-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* sub-inner: 헤더 .inner 와 동일한 기준으로 정렬 */
.sub-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px; /* .inner 와 동일 */
}

.sub {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  gap: 0;
  justify-content: center;
}

.sub li {
  display: flex;
  align-items: center;
}

/* 구분선은 li 사이에만 */
.sub li + li {
  border-left: 1px solid #e0e0e0;
}

.sub li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 5px 22px;
  white-space: nowrap;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
  line-height: 1;
}
.sub li:first-child a {
  padding-left: 0;
}
.sub li:last-child a {
  padding-right: 0;
}
.sub li a:hover {
  color: var(--blue);
}

/* ───────── HAMBURGER ───────── */
.hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* ─────────────────────────────────────────────
   6. HERO SECTION
───────────────────────────────────────────── */
.hero-section {
  padding-block: 100px 60px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(
      ellipse 65% 55% at 85% 35%,
      var(--pastel-blue) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 50% at 5% 85%,
      var(--pastel-mint) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 30% at 50% 0%,
      var(--pastel-soft) 0%,
      transparent 50%
    ),
    var(--white);
  position: relative;
  overflow: hidden;
}

.hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-left {
  flex: 0 0 48%;
  max-width: 560px;
}
.hero-right {
  flex: 0 0 52%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-title .hl {
  color: var(--blue);
}
.hero-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-desc strong {
  color: var(--text);
  font-weight: 700;
}

/* btn-primary 위에 있는 단독 버튼 */
.hero-left > .btn-primary {
  margin-bottom: 20px;
  padding: 0 50px;
}

.hero-btns {
  display: flex;
  gap: 12px;
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-500);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--gray-500);
  border-radius: 2px;
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ─────────────────────────────────────────────
   7. COUPON STACK
───────────────────────────────────────────── */
.coupon-stack {
  position: relative;
  width: 360px;
  height: 460px;
}

.coupon {
  position: absolute;
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
  cursor: pointer;
  left: 50%;
}
.coupon:nth-child(1) {
  z-index: 3;
  transform: translateX(-50%) translateY(0) rotate(-1deg);
}
.coupon:nth-child(2) {
  z-index: 2;
  transform: translateX(-44%) translateY(20px) rotate(3deg);
  opacity: 0.85;
}
.coupon:nth-child(3) {
  z-index: 1;
  transform: translateX(-56%) translateY(36px) rotate(-5deg);
  opacity: 0.65;
}

.coupon.slide-out {
  transform: translateX(-50%) translateY(-120%) rotate(-8deg) !important;
  opacity: 0 !important;
  z-index: 10 !important;
}

/* coupon color themes */
.coupon--blue .coupon-header,
.coupon--blue .coupon-discount {
  background: var(--blue);
  border-bottom: 1px var(--blue);
}
.coupon--navy .coupon-header,
.coupon--navy .coupon-discount {
  background: linear-gradient(135deg, #0d1b3e 0%, #1e3a8a 100%);
}
.coupon--dark .coupon-header,
.coupon--dark .coupon-discount {
  background: linear-gradient(135deg, #1a1f2e 0%, #374151 100%);
}

.coupon-header {
  padding: 20px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.coupon-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.coupon-brand-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.coupon-brand-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}
.coupon-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  opacity: 0.9;
}
.coupon-type-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.coupon-discount {
  padding: 4px 24px 20px;
}
.coupon-amount {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
}
.coupon-amount sup {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  margin-right: 10px;
}
.coupon-amount-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* Tear line */
.coupon-tear {
  display: flex;
  align-items: center;
  background: white;
}
.tear-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  flex-shrink: 0;
  margin: -11px;
  position: relative;
  z-index: 2;
}
.tear-dashes {
  flex: 1;
  border-top: 2px dashed #e0e0e0;
  margin: 0 10px;
}

/* Coupon body */
.coupon-body {
  background: white;
  padding: 18px 24px 22px;
}
.coupon-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.coupon-subtitle {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.barcode-wrap {
  margin-bottom: 12px;
}
.barcode-svg {
  width: 100%;
  height: 56px;
  display: block;
}
.barcode-number {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 3px;
  text-align: center;
  margin-top: 4px;
  font-family: "Courier New", monospace;
}
.coupon-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.coupon-expire {
  font-size: 11px;
  color: var(--gray-500);
}
.coupon-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
}
.coupon-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

/* Coupon dots */
.coupon-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.coupon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.coupon-dot.is-active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* Mini cards */
.mini-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: floatCard 3s ease-in-out infinite;
  z-index: 20;
}
.mini-card--tl {
  left: -110px;
  top: 80px;
  animation-delay: 0.5s;
}
.mini-card--br {
  right: -90px;
  bottom: 120px;
  animation-delay: 1.5s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.mini-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mini-card-dot--green {
  background: #22c55e;
}
.mini-card-dot--blue {
  background: var(--navy-mid);
}
.mini-card p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.mini-card small {
  font-size: 10px;
  color: var(--gray-500);
  display: block;
}

/* ─────────────────────────────────────────────
   8. SERVE SECTION  (핵심 가치)
───────────────────────────────────────────── */
.serve-section {
  background: var(--pastel-soft);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.serve-card {
  background: var(--white);
  border-radius: 22px;
  border: 1.5px solid var(--gray-200);
  padding: 2.2rem 2rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.serve-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.25s;
}
.serve-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(13, 31, 78, 0.1);
  border-color: var(--pastel-sky);
}
.serve-card:hover::after {
  opacity: 1;
}

.serve-num {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--pastel-soft);
  border: 1.5px solid var(--pastel-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 1.3rem;
}
.serve-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.serve-card p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.78;
}

/* ─────────────────────────────────────────────
   9. SOLUTIONS SECTION
───────────────────────────────────────────── */
.solutions-section {
  background: var(--white);
}

.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 3rem;
}
.sol-card {
  border-radius: 26px;
  padding: 2.4rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.sol-card:hover {
  transform: translateY(-5px);
}

.sol-card--navy {
  background: var(--navy);
  box-shadow: 0 14px 50px rgba(13, 31, 78, 0.18);
}
.sol-card--sky {
  background: linear-gradient(
    140deg,
    var(--pastel-blue) 0%,
    var(--pastel-soft) 100%
  );
  border: 1.5px solid var(--pastel-sky);
}
.sol-card--white {
  background: var(--gray-200);
  border: 1.5px solid var(--gray-200);
}
.sol-card--blue {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-light) 100%);
  box-shadow: 0 14px 44px rgba(30, 111, 241, 0.22);
}

.sol-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.sol-card--navy .sol-tag,
.sol-card--blue .sol-tag {
  color: var(--pastel-sky);
  opacity: 0.7;
}
.sol-card--sky .sol-tag,
.sol-card--white .sol-tag {
  color: var(--blue);
  opacity: 0.8;
}

.sol-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 0.55rem;
}
.sol-card--navy h3,
.sol-card--blue h3 {
  color: #fff;
}
.sol-card--sky h3,
.sol-card--white h3 {
  color: var(--navy);
}

.sol-card > p {
  font-size: 0.86rem;
  line-height: 1.78;
}
.sol-card--navy > p,
.sol-card--blue > p {
  color: rgba(255, 255, 255, 0.65);
}
.sol-card--sky > p,
.sol-card--white > p {
  color: var(--text-light);
}

.sol-list {
  list-style: none;
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sol-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
}
.sol-card--navy .sol-list li,
.sol-card--blue .sol-list li {
  color: rgba(255, 255, 255, 0.75);
}
.sol-card--sky .sol-list li,
.sol-card--white .sol-list li {
  color: var(--text-light);
}

.sol-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    center/11px no-repeat;
}
.sol-card--sky .sol-list li::before,
.sol-card--white .sol-list li::before {
  background-color: var(--pastel-sky);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231e6ff1' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─────────────────────────────────────────────
   10. PARTNERS & STATS SECTION
───────────────────────────────────────────── */
.partners-section {
  background: var(--white);
}

.stats-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin-bottom: 70px;
  list-style: none;
}
.stats-item {
  position: relative;
  min-width: 180px;
  text-align: center;
  transition: transform 0.3s ease;
}
.stats-item:hover {
  transform: translateY(-8px);
}
.stats-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: #e5e5e5;
}
.stats-item:last-child::after {
  display: none;
}

.stats-number {
  display: block;
  margin-bottom: 10px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy-mid);
  letter-spacing: -0.03em;
}
.stats-item p {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  letter-spacing: -0.02em;
}

/* Logo slider */
.logo-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
}
.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoSlide 28s linear infinite;
}
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
}
.logo-group img {
  width: 160px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.3s ease;
}
.logo-group img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
}

/* 1번 슬라이더: 왼쪽으로 (기존 유지) */
.logo-slider:nth-child(3) .logo-track {
  animation: logoSlideLeft 28s linear infinite;
}

/* 2번 슬라이더: 오른쪽으로 */
.logo-slider:nth-child(4) .logo-track {
  animation: logoSlideRight 28s linear infinite;
}

/* 3번 슬라이더: 왼쪽으로 */
.logo-slider:nth-child(5) .logo-track {
  animation: logoSlideLeft 32s linear infinite; /* 속도 살짝 다르게 */
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoSlideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes logoSlideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ─────────────────────────────────────────────
   11. CTA SECTION
───────────────────────────────────────────── */

.cta-wrap {
  background: var(--pastel-soft);
  border-radius: 40px;
  padding: 80px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--blue-light), transparent 70%);
  opacity: 0.15;
}
.cta-text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  color: var(--navy-mid);
}
.cta-text p {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   12. FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: #aaa;
  padding-block: 60px;
  font-size: 14px;
}
.footer .footer-wrap {
  display: flex;
  justify-content: space-between;
}
.footer .ft-logo {
  max-width: 250px;
  margin-bottom: 20px;
}
.footer .footer-info p {
  line-height: 1.6;
}
.footer .footer-cs {
  color: #fff;
}
.footer .footer-cs p {
  margin-bottom: 10px;
}
.footer .footer-cs strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}
.footer .footer-cs .tel {
  color: var(--blue-light);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer a {
  color: #fff;
  margin-left: 10px;
}
.footer .copy {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}
.ft_logo {
  max-width: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer_box {
  display: flex;
  justify-content: space-between;
}
