@import url("/css/main-doubt-premium.css");

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  padding: 0 20px;
}

.slide-text {
  flex: 1;
  max-width: 600px;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.slide-badge i {
  font-size: 1rem;
}

.slide-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.slide-title .highlight {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.slide-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--white);
  border-radius: 4px;
  opacity: 0.5;
}

.slide-description {
  font-size: var(--text-2xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.slide-buttons .btn {
  padding: 18px 36px;
  font-size: var(--text-lg);
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.slide-buttons .btn i {
  font-size: 1.3rem;
}

.slide-buttons .btn-primary {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
  color: var(--primary);
}

.slide-buttons .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: var(--white);
}

.slide-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.slide-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.slide-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1s ease-out;
}

.phone-mockup {
  width: 400px;
  height: 500px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

.phone-mockup i {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
  color: var(--white);
  font-weight: 900;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 40px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Categories Section */
.categories {
  padding: 80px 0;
  background: var(--gray-50);
}

.categories h2 {
  font-size: var(--text-3xl);
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
  color: var(--gray-900);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.category-card.active {
  border: 2px solid var(--primary);
}

.category-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.category-card:not(.disabled):hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.category-card p {
  font-size: var(--text-base);
  color: var(--gray-600);
}

.category-card .badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-200);
  border-radius: 12px;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* Reviews Section */
.reviews {
  padding: 60px 0;
}

.reviews h2 {
  font-size: var(--text-3xl);
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
  color: var(--gray-900);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-rating {
  font-size: var(--text-lg);
  margin-bottom: 12px;
}

.review-content {
  font-size: var(--text-base);
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-author {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
  .slide-title {
    font-size: 3.5rem;
  }

  .slide-description {
    font-size: var(--text-xl);
  }

  .phone-mockup {
    width: 350px;
    height: 450px;
  }

  .phone-mockup i {
    font-size: 10rem;
  }
}

@media (max-width: 1024px) {
  .hero-slider {
    min-height: 500px;
    max-height: 700px;
  }

  .slide-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .slide-text {
    max-width: 100%;
  }

  .slide-title {
    font-size: 3rem;
  }

  .slide-buttons {
    justify-content: center;
  }

  .phone-mockup {
    width: 300px;
    height: 400px;
  }

  .phone-mockup i {
    font-size: 8rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-slider {
    /* 모바일: 공지바(36px) + 헤더(48px) + 카테고리바(46px) + 하단네비(60px) = 190px */
    height: calc(100vh - 190px);
    min-height: calc(100vh - 190px);
    max-height: calc(100vh - 190px);
  }

  .slide-content {
    padding: 30px 16px;
    gap: 24px;
  }

  .slide-badge {
    padding: 8px 16px;
    font-size: 11px;
    margin-bottom: 16px;
  }

  .slide-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .slide-description {
    font-size: var(--text-base);
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .slide-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .slide-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: var(--text-base);
  }

  .slide-image {
    display: none;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }

  .swiper-pagination {
    bottom: 20px !important;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-pagination-bullet-active {
    width: 24px;
  }

  /* Categories */
  .categories {
    padding: 40px 0;
  }

  .categories h2 {
    font-size: var(--text-2xl);
    margin-bottom: 32px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    padding: 32px 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    /* 모바일: 공지바(36px) + 헤더(48px) + 카테고리바(46px) + 하단네비(60px) = 190px */
    height: calc(100vh - 190px);
    min-height: calc(100vh - 190px);
    max-height: calc(100vh - 190px);
  }

  .slide-content {
    padding: 24px 12px;
  }

  .slide-badge {
    padding: 6px 12px;
    font-size: 10px;
  }

  .slide-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .slide-description {
    font-size: var(--text-sm);
    margin-bottom: 20px;
  }

  .slide-buttons .btn {
    padding: 12px 24px;
    font-size: var(--text-sm);
  }

  .slide-buttons .btn i {
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }

  .swiper-pagination {
    bottom: 16px !important;
  }

  .categories {
    padding: 32px 0;
  }

  .categories h2 {
    font-size: var(--text-xl);
    margin-bottom: 24px;
  }

  .category-card {
    padding: 24px 16px;
  }
}

/* ========================================
   PAGE BANNER
   ======================================== */

.page-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 107, 240, 0.7) 0%, rgba(92, 102, 122, 0.7) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--white);
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-title i {
  font-size: 2.2rem;
}

.banner-subtitle {
  font-size: 1.2rem;
  margin-bottom: 28px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-item i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }

  .banner-title {
    font-size: 2rem;
    gap: 12px;
  }

  .banner-title i {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .banner-features {
    gap: 12px;
  }

  .feature-item {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .feature-item i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-banner {
    height: 250px;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .banner-title i {
    font-size: 1.3rem;
  }

  .banner-subtitle {
    font-size: 0.9rem;
  }

  .banner-features {
    flex-direction: column;
    gap: 8px;
  }

  .feature-item {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}

/* ========================================
   NEW SECTIONS - Services, Buyback, etc.
   ======================================== */

/* Common Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-600);
}

.section-header.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 60px;
}

.subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(65, 131, 237, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.2),
    inset 0 2px 8px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  border-radius: 18px 18px 0 0;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

/* Service Icon Image */
.service-icon-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: all 0.3s;
}

.service-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.service-card:hover .service-icon-img {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.service-card:hover .service-icon-img img {
  transform: scale(1.1) rotateY(5deg);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-card .arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--gray-400);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.service-card:hover .arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* Buyback Section */
.buyback-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.coin-animation {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(65, 131, 237, 0.4),
    inset 0 -4px 12px rgba(0, 0, 0, 0.25),
    inset 0 4px 12px rgba(255, 255, 255, 0.4);
  animation: bounce 2s infinite;
  position: relative;
  overflow: hidden;
}

.coin-animation::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.coin-animation i {
  font-size: 2.5rem;
  color: var(--white);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.comparison-wrapper {
  margin-top: 60px;
}

.comparison-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 40px;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.comparison-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s;
}

.comparison-card.other {
  border: 2px solid var(--gray-200);
}

.comparison-card.ours {
  border: 3px solid var(--primary);
  box-shadow: 0 12px 48px rgba(65, 131, 237, 0.25);
  transform: scale(1.05);
}

.badge-premium {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(65, 131, 237, 0.3);
}

.badge-premium i {
  margin-right: 6px;
}

.comparison-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-card.ours .card-icon {
  background: linear-gradient(135deg, var(--primary-lightest) 0%, var(--primary-lighter) 100%);
}

.comparison-card .card-icon i {
  font-size: 2.5rem;
  color: var(--gray-600);
}

.comparison-card.ours .card-icon i {
  color: var(--primary);
}

.comparison-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.comparison-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.comparison-card .price.highlight {
  color: var(--primary);
  font-size: 2.5rem;
}

.comparison-card .benefit {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

.cta-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(65, 131, 237, 0.3);
}

.btn-xl:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(65, 131, 237, 0.4);
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.process-box {
  background: var(--white);
  border-radius: 32px;
  padding: 60px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.process-box h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.highlight-blue {
  color: var(--primary);
}

.process-subtitle {
  text-align: center;
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 48px;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  max-width: 200px;
}

.step-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 32px rgba(65, 131, 237, 0.3);
}

.process-step.eliminated .step-icon {
  background: linear-gradient(135deg, #f56b6b 0%, #f56b6b 100%);
  box-shadow: 0 8px 32px rgba(245, 107, 107, 0.3);
  position: relative;
}

.process-step.eliminated .step-icon::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--white);
  transform: rotate(45deg);
}

.process-step.eliminated .step-icon::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--white);
  transform: rotate(-45deg);
}

.step-icon i {
  font-size: 3rem;
  color: var(--white);
}

/* Step Icon Image */
.step-icon-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
  transition: all 0.3s;
}

.step-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.process-step:hover .step-icon-img {
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}

.step-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

.process-arrow {
  font-size: 2rem;
  color: var(--gray-400);
}

.process-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

.quality-promise {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 12px 48px rgba(65, 131, 237, 0.3);
}

.quality-promise h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.promise-subtitle {
  font-size: var(--text-lg);
  margin-bottom: 32px;
  opacity: 0.95;
}

.quality-promise .btn {
  background: var(--white);
  color: var(--primary);
}

.quality-promise .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
}

/* Growth Section */
.growth-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.growth-content {
  margin-bottom: 60px;
}

.growth-chart h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 48px;
  line-height: 1.4;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  height: 300px;
  margin-bottom: 32px;
}

.chart-bar {
  flex: 1;
  max-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bar {
  background: var(--gray-300);
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 16px;
  position: relative;
  transition: all 0.5s;
}

.bar.active {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 -8px 32px rgba(65, 131, 237, 0.4);
}

.bar-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
}

.bar.active .bar-label {
  color: var(--white);
}

.bar-value {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(65, 131, 237, 0.3);
}

.growth-note {
  text-align: center;
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Reviews Slider */
.reviews-slider {
  margin-top: 30px;
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.review-stars {
  margin-bottom: 20px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.review-stars i {
  margin: 0 2px;
}

.review-text {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
  min-height: 80px;
}

.review-author {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: 600;
}

.review-author i {
  color: var(--gray-400);
  margin-right: 6px;
}

/* Service Method Section */
.service-method-section {
  padding: 100px 0;
  background: var(--white);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.method-step {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  border: 2px solid var(--gray-100);
}

.method-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(65, 131, 237, 0.3);
}

.method-step .step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.method-step .step-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.method-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.method-step p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Offline & Benefits Section */
.offline-benefits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.offline-store {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  color: var(--white);
}

.store-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 24px;
}

.offline-store h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.4;
}

.offline-store p {
  font-size: var(--text-lg);
  margin-bottom: 32px;
  opacity: 0.95;
}

.offline-store .btn {
  background: var(--white);
  color: var(--primary);
}

.offline-store .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
}

.life-benefits h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow:
    0 8px 24px rgba(65, 131, 237, 0.25),
    inset 0 -3px 10px rgba(0, 0, 0, 0.2),
    inset 0 3px 10px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.benefit-discount {
  font-size: var(--text-base);
  color: var(--primary);
  font-weight: 600;
}

/* Responsive for New Sections */
@media (max-width: 768px) {
  .services-section,
  .buyback-section,
  .process-section,
  .growth-section,
  .service-method-section,
  .offline-benefits-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2,
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .section-header p,
  .subtitle {
    font-size: var(--text-sm);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .coin-animation {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .coin-animation i {
    font-size: 2rem;
  }

  .comparison-wrapper {
    margin-top: 32px;
  }

  .comparison-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .comparison-card.ours {
    transform: scale(1);
  }

  .comparison-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 12px auto;
  }

  .comparison-card .card-icon i {
    font-size: 2rem;
  }

  .comparison-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .comparison-card .price {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .comparison-card .price.highlight {
    font-size: 2rem;
  }

  .cta-button-wrapper {
    margin-top: 24px;
  }

  .process-box {
    padding: 24px 16px;
    margin-bottom: 32px;
    border-radius: 20px;
  }

  .process-box h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .process-subtitle {
    font-size: var(--text-sm);
    margin-bottom: 24px;
  }

  .process-flow {
    flex-direction: column;
    gap: 12px;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }

  .step-icon i {
    font-size: 2rem;
  }

  .step-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .step-label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 12px;
  }

  .process-note {
    font-size: 12px;
  }

  .quality-promise {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .quality-promise h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .promise-subtitle {
    font-size: var(--text-base);
    margin-bottom: 24px;
  }

  .growth-chart h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .chart-bars {
    gap: 12px;
    height: 200px;
  }

  .chart-bar {
    max-width: 60px;
  }

  .bar {
    padding-top: 8px;
  }

  .bar-label {
    font-size: 11px;
  }

  .bar-value {
    font-size: 11px;
    padding: 6px 12px;
    top: -32px;
  }

  .growth-note {
    font-size: var(--text-sm);
  }

  .review-card {
    padding: 20px;
    border-radius: 16px;
  }

  .review-stars {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .review-text {
    font-size: var(--text-sm);
    min-height: 60px;
    margin-bottom: 12px;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .method-step {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .method-step .step-icon {
    width: 60px;
    height: 60px;
    margin: 16px auto 16px;
  }

  .method-step .step-icon i {
    font-size: 2rem;
  }

  .method-step h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .method-step p {
    font-size: var(--text-sm);
  }

  .offline-store {
    padding: 32px 20px;
    margin-bottom: 48px;
    border-radius: 20px;
  }

  .store-badge {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 16px;
  }

  .offline-store h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .offline-store p {
    font-size: var(--text-base);
    margin-bottom: 24px;
  }

  .life-benefits h2 {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefit-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .benefit-discount {
    font-size: var(--text-sm);
  }
}

@media (max-width: 480px) {
  .services-section,
  .buyback-section,
  .process-section,
  .growth-section,
  .service-method-section,
  .offline-benefits-section {
    padding: 32px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .btn-xl {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ========================================
   TELECOM & PLANS SECTIONS
   ======================================== */

/* Telecom Cards */
.telecom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.telecom-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  text-align: center;
}

.telecom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.telecom-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(65, 131, 237, 0.2);
}

.telecom-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 -3px 10px rgba(0, 0, 0, 0.2),
    inset 0 3px 10px rgba(255, 255, 255, 0.3);
}

.telecom-logo.skt {
  background: linear-gradient(135deg, #f5a8a8 0%, #f5a8a8 100%);
}

.telecom-logo.kt {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.telecom-logo.lgu {
  background: linear-gradient(135deg, #f5a8c0 0%, #f5a8c0 100%);
}

.telecom-logo i {
  font-size: 2.5rem;
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.telecom-logo h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.telecom-desc {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.telecom-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}

.telecom-features li {
  padding: 12px 0;
  color: var(--gray-700);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.telecom-features li:last-child {
  border-bottom: none;
}

.telecom-features i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.plan-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid var(--gray-100);
  position: relative;
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(65, 131, 237, 0.3);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.plan-price {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.price-original {
  font-size: 1.1rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.price-discount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.price-discount::after {
  content: '/월';
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  color: var(--gray-700);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features i {
  color: var(--success);
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .telecom-grid,
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .telecom-card,
  .plan-card {
    padding: 32px 24px;
  }

  .telecom-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .telecom-logo i {
    font-size: 2rem;
  }

  .telecom-logo h3 {
    font-size: 1rem;
  }

  .plan-name {
    font-size: 1.3rem;
  }

  .price-discount {
    font-size: 2rem;
  }
}

/* =============================================
   Home Benefit Section (3박스 Swiper)
   ============================================= */
.home-benefit-section {
  padding: 32px 0;
  background: #f8fafc;
  overflow: hidden;
}

.home-benefit-head {
  text-align: center;
  margin-bottom: 24px;
}

.home-benefit-eyebrow {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 500;
}

.home-benefit-title {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.3;
}

.home-benefit-swiper {
  overflow: visible;
  padding: 0 16px;
}

.home-benefit-card {
  min-height: 380px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-benefit-txt {
  margin-bottom: 20px;
}

.home-benefit-txt h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.5;
  margin-bottom: 12px;
}

.home-benefit-txt p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.home-benefit-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 16px;
}

.home-benefit-img img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.home-benefit-pagination {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.home-benefit-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #d1d5db;
  opacity: 1;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.home-benefit-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background: #4183ed;
}

/* PC: 3열 고정 레이아웃 */
@media (min-width: 1024px) {
  .home-benefit-section {
    padding: 48px 0;
  }

  .home-benefit-head {
    margin-bottom: 32px;
  }

  .home-benefit-title {
    font-size: 32px;
  }

  .home-benefit-swiper {
    padding: 0;
  }

  .home-benefit-swiper .swiper-wrapper {
    display: flex;
    gap: 16px;
  }

  .home-benefit-card {
    min-height: 420px;
    padding: 32px;
  }

  .home-benefit-txt h3 {
    font-size: 20px;
  }

  .home-benefit-txt p {
    font-size: 15px;
  }

  .home-benefit-pagination {
    display: none;
  }
}
