/* ===========================
   CSS Variables & Reset
   =========================== */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  /* Colors */
  --color-black: #050e1a;
  --color-white: #ffffff;
  --color-gray-100: #f8f8f8;
  --color-gray-200: #eeeeee;
  --color-gray-300: #d2d5d9;
  --color-gray-400: #9a9a9a;
  --color-gray-500: #6b6b6b;
  --color-gray-600: #454953;
  --color-pink-300: #ed3b8c;
  --color-pink-100: #fff0f6;
  --color-blue-300: #335bee;
  --color-blue-400: #297be7;

  /* Typography */
  --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1140px;
  --container-padding: 0 20px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: #050e1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Scroll Header (스크롤 시 표시) */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background-color: #ffffff;
  border-bottom: 1px solid #E6E8EB;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-header.visible {
  transform: translateY(0);
}

.mobile-header-logo {
  height: 20px;
  width: auto;
}

/* Floating Button (스크롤 시 표시) */
.mobile-floating-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: 160px;
  height: 48px;
  background-color: #ED3B8C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px 0px rgba(69, 73, 83, 0.25);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.mobile-floating-btn.visible {
  transform: translateX(-50%) translateY(0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===========================
   Layout
   =========================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  width: 100%;
}

/* ===========================
   Typography
   =========================== */
.text-center {
  text-align: center;
}

.highlight {
  color: #297be7;
}

.highlight-pink {
  color: #ed3b8c;
}

/* ===========================
   Section 1: Hero
   =========================== */
.section-hero {
  background-color: #050e1a;
  min-height: 624px;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-logo {
  text-align: center;
  margin-bottom: 60px;
}

.hero-logo img {
  height: 20px;
  margin: 0 auto;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.44;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-title strong {
  font-weight: 700;
  display: block;
}

.hero-description {
  font-size: 16px;
  line-height: 1.5;
  color: #d2d5d9;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 52px;
  background-color: #ed3b8c;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(69, 73, 83, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}


.hero-graphic {
  position: absolute;
  right: calc(50% - 600px);
  top: 72%;
  transform: translateY(-52%);
  width: 400px;
  height: 400px;
}

.hero-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===========================
   Section 2: Features
   =========================== */
.section-features {
  min-height: 604px;
  padding: 100px 0;
  background-color: #f9fafb;
}

.section-features .container {
  width: 100%;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 60px;
  color: #222222;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #525a61;
  text-align: left;
  margin-bottom: 0;
  margin-top: 16px;
}

.features-grid {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e6e8eb;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222222;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #40474d;
}

.feature-desc .highlight {
  color: #297be7;
}

/* ===========================
   Section 3: Growth
   =========================== */
.section-growth {
  height: 846px;
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.growth-content {
  display: flex;
  gap: 145px;
  align-items: flex-start;
}

.growth-left {
  flex: 1;
  max-width: 535px;
}

.growth-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 140px;
}

.growth-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 60px;
  color: #222222;
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid #d2d5d9;
  position: relative;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  cursor: pointer;
  transition: color 0.2s;
}


.accordion-header.active {
  color: #297be7;
}

.accordion-title {
  font-size: 16px;
  font-weight: 700;
  color: #d2d5d9;
  transition: color 0.3s;
}

.accordion-header.active .accordion-title {
  font-weight: 700;
  color: #297be7;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  color: #D2D5D9;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  color: #D2D5D9;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.active {
  max-height: 200px;
}

.accordion-body {
  padding-bottom: 23px;
}

.accordion-body-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222222;
}

.accordion-body-desc {
  font-size: 16px;
  color: #636c73;
  line-height: 1.5;
}

/* Progress Bar for Growth Section */
@keyframes progressFill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.accordion-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #297be7;
}

.growth-image {
  width: 460px;
  height: 478px;
}

.growth-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile Card Slider - hidden on desktop */
.growth-mobile {
  display: none;
}

/* ===========================
   Section 4: Comparison
   =========================== */
.section-comparison {
  min-height: 932px;
  padding: 100px 0;
  background-color: #F9FAFB;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.comparison-image {
  display: flex;
  justify-content: center;
}

.comparison-image img {
  width: 712px;
  height: 512px;
  object-fit: contain;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.comparison-badge-icon {
  width: 24px;
  height: 24px;
}

.comparison-badge-text {
  font-size: 18px;
  color: #297BE7;
  font-weight: 700;
}

.comparison-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
  text-align: center;
  margin-bottom: 40px;
}

.comparison-cards {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 710px;
  margin: 0 auto;
}

.comparison-card {
  flex: 1;
  max-width: 350px;
  border-radius: 30px;
  padding: 56px;
}

.comparison-card--other {
  background-color: #454953;
}

.comparison-card--instaget {
  background-color: #050e1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

.comparison-card-title img {
  height: 24px;
  margin: 0 auto;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #ffffff;
}

.comparison-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.comparison-item--negative .comparison-item-icon {
  color: #9a9a9a;
}

.comparison-item--positive .comparison-item-icon {
  color: #297be7;
}

/* ===========================
   Section 5: Reviews
   =========================== */
.section-reviews {
  min-height: 756px;
  padding: 100px 0;
  background-color: #ffffff;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.reviews-badge-icon {
  width: 24px;
  height: 24px;
}

.reviews-badge-text {
  font-size: 18px;
  color: #297BE7;
  font-weight: 700;
}

.reviews-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 60px;
}

.reviews-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  height: 332px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.review-stars {
  color: #ffc107;
  font-size: 14px;
}

.review-score {
  font-size: 16px;
  font-weight: 700;
}

.review-platform {
  font-size: 12px;
  color: #9a9a9a;
}

.review-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.review-content {
  font-size: 16px;
  color: #40474D;
  line-height: 24px;
}

.review-content .highlight {
  background-color: #FFF5D1;
  font-weight: 700;
  color: #40474D;
  padding: 2px 0px;
}

.review-label {
  display: inline-block;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  color: #297be7;
  background-color: #F0F6FE;
  padding: 4px 12px;
  border-radius: 6px;
  margin-top: 32px;
}

/* ===========================
   Section 6: Target
   =========================== */
.section-target {
  min-height: 796px;
  padding: 100px 0;
  background-color: #050e1a;
  display: flex;
  align-items: center;
}

.target-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.target-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1024px;
  margin: 0 auto;
}

.target-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
}

.target-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
}

.target-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #F7F7F7;
  padding: 14px 18px;
  border-radius: 12px;
}

.target-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.target-item strong {
  font-weight: 700;
  color: #050e1a;
}

/* ===========================
   Section 7: Stats
   =========================== */
.section-stats {
  min-height: 700px;
  padding: 100px 0;
  background-color: #F9FAFB;
}

.stats-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 60px;
  color: #222;
}

.stats-slider {
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.stats-slider-track {
  display: flex;
  gap: 8px;
  transition: transform 0.5s ease;
}

.stats-card {
  flex-shrink: 0;
  width: 200px;
  height: 320px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.stats-card-thumbnail {
  width: 100%;
  height: 200px;
  background-color: #FDEEF5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stats-card-thumbnail img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.stats-card-body {
  height: 120px;
  border: 1px solid #E6E8EB;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-sizing: border-box;
}

.stats-card-content {
  padding: 12px 15px;
}

.stats-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  line-height: 24px;
}

.stats-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 24px;
}

.stats-card-rating .stars {
  width: 16px;
  height: 16px;
}

.stats-card-rating .score {
  font-size: 14px;
  color: #222;
}

.stats-card-rating .review-count {
  font-size: 14px;
  color: #808991;
}

.stats-card-divider {
  height: 1px;
  background-color: #E6E8EB;
}

.stats-card-footer {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  cursor: pointer;
}


/* ===========================
   Section 8: FAQ
   =========================== */
.section-faq {
  min-height: 780px;
  padding: 100px 0;
  background-color: #ffffff;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 1140px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eeeeee;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.2s;
}



.faq-question-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
}

.faq-question-text::before {
  content: 'Q.';
  font-weight: 700;
}

.faq-icon {
  width: 16px;
  height: 16px;
  color: #B4B2BC;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-content {
  overflow: hidden;
  padding: 0 0 0 28px;
  font-size: 16px;
  line-height: 1.5;
  color: #69686F;
  transition: padding 0.4s ease;
}

.faq-item.active .faq-answer-content {
  padding: 0 0 24px 28px;
}

/* ===========================
   Footer
   =========================== */
.footer {
  min-height: 320px;
  padding: 60px 0;
  background-color: #f8f8f8;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-left {
  max-width: 400px;
}

.footer-label {
  font-size: 10px;
  font-weight: 700;
  color: #9a9a9a;
  padding: 8px 10px;
  background-color: #F2F4F5;
  display: inline-block;
  border-radius: 44px;
  margin-bottom: 8px;
}

.footer-phone {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-hours {
  display: flex;
  gap: 40px;
}

.footer-hours-item {
  font-size: 18px;
}

.footer-hours-label {
  color: #636C73;
  font-size: 12px;
  margin-bottom: 4px;
}

.footer-hours-value {
  font-weight: 700;
}

.footer-right {
  max-width: 500px;
}

.footer-company {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-info {
  font-size: 14px;
  color: #808991;
  line-height: 24px;
}

.footer-info a {
  font-size: 10px;
  font-weight: 700;
  color: #808991;
  background-color: #F2F4F5;
  padding: 4px;
  border-radius: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-weight: 700;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #222;
}

.footer-link:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 12px;
  background-color: #B8BFC4;
}


/* ===========================
   Utilities
   =========================== */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero-graphic {
    right: 50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
  }

  .growth-content {
    gap: 60px;
  }

}

@media (max-width: 768px) {
  /* ===========================
     Mobile Header (스크롤 시 표시)
     =========================== */
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: #ffffff;
    border-bottom: 1px solid #E6E8EB;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-header.visible {
    transform: translateY(0);
  }

  .mobile-header-logo {
    height: 16px;
    width: auto;
  }

  /* Mobile Floating Button */
  .mobile-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 160px;
    height: 48px;
    background-color: #ED3B8C;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px rgba(69, 73, 83, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease;
  }

  .mobile-floating-btn.visible {
    transform: translateX(-50%) translateY(0);
  }

  /* Container */
  .container {
    padding: 0 16px;
  }

  /* ===========================
     Section 1: Hero (Mobile)
     =========================== */
  .section-hero {
    min-height: 408px;
    height: 408px;
    /* padding: 40px 0 0; */
  }

  .hero-logo {
    margin-bottom: 40px;
  }

  .hero-logo img {
    width: 84px;
    height: auto;
  }

  .hero-content {
    margin-top: 0;
    text-align: center;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-title strong {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.6;
  }

  .btn-primary {
    margin-top: 40px;
    padding: 14px 32px;
    font-size: 14px;
  }

  .hero-graphic {
    position: absolute;
    right: -50px;
    left: auto;
    bottom: 0;
    top: auto;
    transform: none;
    width: 300px;
    height: auto;
    opacity: 0.6;
  }

  .hero-graphic img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ===========================
     Section 2: Features (Mobile)
     =========================== */
  .section-features {
    min-height: auto;
    padding: 40px 16px;
  }

  .section-features .container {
    padding: 0;
  }

  .section-title {
    font-size: 20px;
    line-height: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #525A61;
    margin-top: 40px;
    margin-bottom: 8px;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
  }

  .feature-card {
    width: 100%;
    padding: 24px 20px;
    background-color: #ffffff;
    border: 1px solid #E6E8EB;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    background: none;
  }

  .feature-icon img {
    width: 36px;
    height: 36px;
  }

  .feature-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #222;
    margin-top: 0;
    margin-bottom: 0;
  }

  .feature-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
    color: #40474D;
  }

  /* ===========================
     Section 3: Growth (Mobile)
     =========================== */
  .section-growth {
    min-height: auto;
    height: auto;
    padding: 40px 0;
  }

  /* Hide desktop content on mobile */
  .growth-content {
    display: none;
  }

  /* Show mobile card slider */
  .growth-mobile {
    display: block;
  }

  .growth-mobile-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #222222;
    margin-bottom: 40px;
  }

  .growth-mobile-title .highlight {
    color: #297be7;
  }

  .growth-slider {
    overflow: hidden;
  }

  .growth-slider-track {
    display: flex;
    gap: 9px;
    padding-left: 16px;
    transition: transform 0.5s ease;
  }

  .growth-card {
    flex-shrink: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid #E6E8EB;
    border-radius: 16px;
    padding: 20px 16px;
    padding-top: 38px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
  }

  .growth-card-progress {
    position: absolute;
    top: 20px;
    left: 16px;
    right: 16px;
    height: 2px;
    width: 0;
    max-width: calc(100% - 32px);
    background-color: #297be7;
    transition: width 0.05s linear;
  }

  .growth-card.active .growth-card-progress {
    background-color: #297be7;
  }

  .growth-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .growth-card-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    color: #297be7;
  }

  .growth-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #222222;
    margin: 0;
  }

  .growth-card-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #636c73;
    margin: 0;
  }

  .growth-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }

  .growth-card-image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
  }

  /* ===========================
     Section 4: Comparison (Mobile)
     =========================== */
  .section-comparison {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .comparison-badge {
    padding: 4px 10px;
    margin-bottom: 0;
  }

  .comparison-badge-icon {
    width: 20px;
    height: 20px;
  }

  .comparison-badge-text {
    font-size: 14px;
  }

  .comparison-title {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 16px;
  }

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

  .comparison-image img {
    height: auto;
    max-width: 100%;
  }

  /* ===========================
     Section 5: Reviews (Mobile)
     =========================== */
  .section-reviews {
    min-height: auto;
    padding: 40px 16px;
  }

  .section-reviews .container {
    padding: 0;
  }

  .reviews-badge {
    padding: 4px 10px;
    margin-bottom: 0;
  }

  .reviews-badge-icon {
    width: 20px;
    height: 20px;
  }

  .reviews-badge-text {
    font-size: 14px;
  }

  .reviews-title {
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 40px;
  }

  .reviews-grid {
    margin-top: 0;
    gap: 10px;
    height: 372px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 260px;
    width: 260px;
    height: 372px;
    padding: 28px 24px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .review-title {
    font-size: 16px;
  }

  .review-content {
    font-size: 14px;
    line-height: 1.6;
  }

  .review-label {
    font-size: 12px;
    margin-top: 24px;
  }

  /* ===========================
     Section 6: Target (Mobile)
     =========================== */
  .section-target {
    min-height: auto;
    padding: 40px 16px;
  }

  .section-target .container {
    padding: 0;
  }

  .target-title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 40px;
  }

  .target-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }

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

  .target-card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .target-list {
    gap: 10px;
  }

  .target-item {
    font-size: 14px;
    padding: 16px 18px;
    gap: 4px;
    border-radius: 12px;
  }

  .target-item-icon {
    width: 24px;
    height: 24px;
  }

  /* ===========================
     Section 7: Stats (Mobile)
     =========================== */
  .section-stats {
    min-height: auto;
    padding: 40px 16px;
  }

  .section-stats .container {
    padding: 0;
  }

  .stats-title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 40px;
  }

  .stats-slider {
    margin-top: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
  }

  .stats-card {
    width: 200px;
    height: 322px;
  }

  .stats-card-thumbnail {
    height: 200px;
  }

  .stats-card-thumbnail img {
    width: 200px;
    height: 200px;
  }

  .stats-card-body {
    height: auto;
  }

  .stats-card-content {
    padding: 12px 15px;
  }

  .stats-card-title {
    font-size: 16px;
  }

  .stats-card-rating .score {
    font-size: 14px;
  }

  .stats-card-rating .review-count {
    font-size: 14px;
  }

  .stats-card-footer {
    height: 44px;
  }

  .stats-card-link {
    font-size: 14px;
  }

  /* ===========================
     Section 8: FAQ (Mobile)
     =========================== */
  .section-faq {
    min-height: auto;
    padding: 40px 16px;
  }

  .section-faq .container {
    padding: 0;
  }

  .faq-title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 40px;
  }

  .faq-list {
    margin-top: 0;
    gap: 0;
  }

  .faq-question {
    padding: 24px 8px;
  }

  .faq-question-label {
    font-size: 18px;
    font-weight: 600;
  }

  .faq-question-text {
    font-size: 14px;
    font-weight: 500;
  }

  .faq-icon {
    /* width: 18px; */
    /* height: 18px; */
  }

  .faq-answer-content {
    padding: 0 34px 0;
    font-size: 14px;
    line-height: 24px;
  }

  .faq-item.active .faq-answer-content {
    padding: 0 34px 24px;
  }

  /* ===========================
     Footer (Mobile)
     =========================== */
  .footer {
    padding: 20px 16px;
    background-color: #F9FAFB;
  }

  .footer .container {
    padding: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
  }

  .footer-left {
    text-align: left;
  }

  .footer-label {
    font-size: 12px;
    background-color: #F2F4F5;
    color: #808991;
    padding: 5px 12px;
    border-radius: 56px;
    display: inline-block;
    margin-bottom: 8px;
  }

  .footer-phone {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .footer-hours {
    justify-content: flex-start;
    gap: 21px;
  }

  .footer-hours-item {
    display: flex;
    flex-direction: column;
  }

  .footer-hours-label {
    font-size: 12px;
    color: #636C73;
    line-height: 20px;
  }

  .footer-hours-value {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 24px;
  }

  .footer-divider {
    height: 1px;
    background-color: #D2D5D9;
    width: 100%;
  }

  .footer-right {
    text-align: left;
  }

  .footer-company {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .footer-info {
    font-size: 12px;
    line-height: 20px;
    color: #808991;
  }

  .footer-copyright {
    font-size: 12px;
    color: #808991;
    margin-top: 16px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 26px;
  }

  .footer-link {
    font-size: 12px;
    font-weight: 700;
    color: #222;
  }

  .footer-link-divider {
    width: 1px;
    height: 12px;
    background-color: #D2D5D9;
  }
}
