:root {
  --brand-primary: #203277;
  --brand-deep: #0f3a8a;
  --brand-light: #eef4ff;
  --brand-accent: #3b82f6;
  --success: #059669;
  --success-light: #ecfdf5;
  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-50: #f9fafb;
  --white: #ffffff;
  --hero-bg: #f0f5ff;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.section {
  padding: 96px 40px;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 16px;
  }
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(26, 86, 219, 0.08);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26, 86, 219, 0.15);
}

.hero-eyebrow {
  display: inline-block;
  color: var(--brand-primary); /* Warna merah pastel sesuai gambar */
  background: rgba(26, 86, 219, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}
.section-impact {
  text-align: left;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--neutral-500);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-sub-stat {
  font-size: 17px;
  color: var(--neutral-500);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HERO SECTION MOBILE FIX ── */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    overflow-x: hidden;
  }

  section {
    overflow-x: hidden;
  }

  .hero-payroll {
    overflow: visible;
  }

  .hero-payroll .col-span-12 {
    width: 100%;
    max-width: 100%;
  }

  .hero-payroll img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .heading h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
  }

  .heading p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ── PAIN POINTS SECTION ── */
.pain-points-section {
  background: var(--neutral-50);
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  grid-column: span 6;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Variasi lebar card */
.pain-card-wide {
  grid-column: span 7;
}

.pain-card:nth-child(2) {
  grid-column: span 5;
}

.pain-card:nth-child(3) {
  grid-column: span 5;
}

.pain-card:nth-child(4) {
  grid-column: span 7;
}
.pain-card:nth-child(5) {
  grid-column: span 7;
}

.pain-card:nth-child(6) {
  grid-column: span 5;
}

.pain-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26, 86, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand-primary);
}

.pain-card-icon-pink {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.pain-card-icon-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.pain-card-highlight-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.pain-card-icon-white {
  background: white;
  color: var(--brand-primary);
}

.pain-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pain-card-desc {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.pain-card-highlight {
  background: rgba(239, 68, 68, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: #dc2626;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pain-card-highlight-pink {
  background: rgba(236, 72, 153, 0.06);
  color: #db2777;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #dc2626;
  margin-top: 5px;
}
.highlight-dot-orange {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #f97316;
  margin-top: 5px;
}

.highlight-dot-pink {
  background: #db2777;
}

@media (max-width: 768px) {
  .pain-cards-grid {
    grid-template-columns: 1fr;
  }

  .pain-card,
  .pain-card-wide,
  .pain-card:nth-child(2),
  .pain-card:nth-child(3),
  .pain-card:nth-child(4) {
    grid-column: span 1;
  }
}

/* ── VALUE PROPS ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  height: fit-content;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.value-card > * {
  display: block;
  width: 100%;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
  z-index: 2;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgb(255, 165, 0, 0.2);
  display: flex;
  align-items: center;
  font-size: 22px;
  justify-content: center;
  color: orange;
  margin-bottom: 18px;
}
.value-icon svg {
  width: 22px;
  height: 22px;
  stroke: orange;
}

.value-card-attendance {
  background: var(--brand-light);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transform: skewX(-10deg);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  -webkit-transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  -moz-transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  -ms-transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  -o-transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.value-card-attendance > * {
  transform: skewX(10deg);
  display: block;
  width: 100%;
}

.value-card-attendance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--success);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
  z-index: 2;
}

.value-card-attendance:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: skewX(-10deg) translateY(-4px);
  -webkit-transform: skewX(-10deg) translateY(-4px);
  -moz-transform: skewX(-10deg) translateY(-4px);
  -ms-transform: skewX(-10deg) translateY(-4px);
  -o-transform: skewX(-10deg) translateY(-4px);
}

.value-card-attendance:hover::before {
  transform: scaleX(1);
}

.value-icon-attendance {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  font-size: 22px;
  justify-content: center;
  color: var(--success);
  margin-bottom: 18px;
}
.value-icon-attendance svg {
  width: 22px;
  height: 22px;
  stroke: var(--success);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.value-card p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.65;
}

.value-card-attendance h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.value-card-attendance p {
  font-size: 14px;
  padding-left: 10px;
  color: var(--neutral-500);
  line-height: 1.65;
}
/* ── STATS SECTION - KEY METRICS STYLE ── */
.stats-percent-section {
  background-color: var(--brand-light);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Decorative SVG Shapes Container */
.stats-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  max-width: 650px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Primary shape (behind) */

.stats-img img {
  position: absolute;
  top: 10%;
  right: 30%;
  width: 90%;
  height: auto;
  z-index: 5;
}
.stats-shape-primary {
  position: absolute;
  top: 5%;
  right: 40%;
  width: 70%;
  height: auto;
  z-index: 2;
}

.stats-shape-primary svg {
  width: 100%;
  height: auto;
}

.stats-shape-primary svg path {
  fill: var(--brand-accent);
  opacity: 1;
}

/* Light/Soft shape (front) */
.stats-shape-light {
  position: absolute;
  top: 15%;
  right: 30%;
  width: 70%;
  height: auto;
  z-index: 1;
}

.stats-shape-light svg {
  width: 100%;
  height: auto;
}

.stats-shape-light svg path {
  fill: var(--brand-primary);
  opacity: 0.12;
}

/* Small accent shape */
.stats-shape-accent {
  position: absolute;
  top: 5%;
  right: 25%;
  width: 120px;
  height: 40px;
  background: var(--brand-primary);
  opacity: 0.15;
  border-radius: 30px;
  z-index: 3;
}

/* Legacy support */
.stats-shape {
  position: absolute;
  top: 10px;
  right: 100px;
  width: 40%;
  max-width: 450px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.stats-shape img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.stats-wrapper {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-content {
  gap: 150px;
}

.stats-header {
  max-width: 370px;
}

.stats-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.stats-sub-head {
  font-size: 16px;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.stats-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 50, 119, 0.25);
}

.stats-cta-btn:hover {
  background: #1a2a6c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 50, 119, 0.35);
}

/* Stats Grid */
.stats-item-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  padding-top: 20px;
}

/* Individual Stat Item */
.stat-item {
  background: transparent;
  padding: 24px 0;
  text-align: left;
  transition: all 0.3s ease;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(32, 50, 119, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-primary);
  stroke-width: 1.5;
}

.stat-icon i {
  font-size: 20px;
  color: var(--brand-primary);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.stat-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-500);
  line-height: 1.55;
  margin-bottom: 16px;
}

.stat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-700);
  text-decoration: none;
  transition: all 0.2s ease;
}

.stat-link:hover {
  color: var(--brand-primary);
  gap: 10px;
}

.stat-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.stat-link:hover svg {
  transform: translateX(3px);
}

/* Responsive */
@media (min-width: 768px) {
  .stats-item-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .stat-item {
    border-right: 1px solid var(--neutral-200);
    padding-right: 40px;
  }

  .stat-item:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.valaue-card-1 {
  margin-top: 50px;
}
.value-card-4 {
  margin-top: -50px;
}

@media (max-width: 768px) {
  .stats-shapes {
    width: 80%;
    max-width: 400px;
    top: -10%;
    right: -15%;
    opacity: 0.7;
  }

  .stats-shape-accent {
    width: 80px;
    height: 28px;
    top: 3%;
    right: 15%;
  }

  .stats-shape {
    width: 80%;
    max-width: 350px;
    top: -10px;
    right: -30px;
    opacity: 0.6;
  }

  .stat-item {
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 32px;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .value-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .valaue-card-1 {
    margin-top: 0px;
  }
  .value-card-4 {
    margin-top: 0px;
  }
}

/* 3. PENGATURAN SECTION DI BAWAHNYA (TRUST INNER) */
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--neutral-900);
  border-radius: var(--radius-xl);
  padding: 44px 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 140px;
}

.trust-section {
  background: var(--brand-primary);
}

.trust-inner-wrapper {
  padding: 44px 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.trust-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-primary);
}
.trust-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.trust-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}
.trust-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  stroke: #93b8f8;
}

.client-headline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--brand-light);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-200);
  padding: 32px 48px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--neutral-800);
  line-height: 1.55;
  margin-bottom: 32px;
  letter-spacing: -0.2px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-900);
  text-align: left;
}
.author-title {
  font-size: 13px;
  color: var(--neutral-400);
  text-align: left;
}

/* ── TOUR SECTION ── */

.tour-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Text Centering */
.tour-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
}

.tour-eyebrow {
  display: inline-block;
  color: var(--brand-primary); /* Warna merah pastel sesuai gambar */
  background: rgba(26, 86, 219, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.tour-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.tour-sub {
  font-size: 15px;
  color: var(--neutral-500);
  line-height: 1.65;
}

/* ── LAPTOP FRAME MOCKUP (CSS ONLY) ── */
.laptop-container {
  width: 100%; /* Lebar ideal laptop di layar desktop */
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

/* Bingkai Layar Atas */
.laptop-screen {
  background: #000000;
  padding: 2% 2% 2% 2%; /* Ketebalan bezel hitam laptop */
  border-radius: 16px 16px 0 0;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Titik Kamera Kecil di Atas Bezel */
.laptop-webcam {
  width: 6px;
  height: 6px;
  background: #1e293b;
  border-radius: 50%;
  position: absolute;
  top: 1.5%;
  left: 50%;
  transform: translateX(-50%);
}

/* Tempat Menaruh Gambar Screenshot */
.laptop-display {
  background: #f8fafc;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 14 / 8; /* Mengikuti rasio standar layar laptop kerja */
  display: flex;
  align-items: flex-start;
}

.dashboard-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.3s ease; /* Transisi halus saat gambar diganti oleh JS */
}

/* Dudukan/Keyboard Base Bagian Bawah Laptop */
.laptop-base {
  background: #e2e8f0; /* Efek warna aluminium perak */
  height: 16px;
  width: 112%; /* Lebih lebar dari layar agar membentuk siluet asli laptop */
  margin-left: -6%; /* Menyeimbangkan posisi base ke tengah */
  border-radius: 0 0 12px 12px;
  border-bottom: 4px solid #cbd5e1;
  position: relative;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15); /* Bayangan laptop jatuh ke lantai */
}

/* Lekukan Pembuka Layar (Notch Tengah) */
.laptop-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12%;
  height: 4px;
  background: #cbd5e1;
  border-radius: 0 0 4px 4px;
}

/* Penyesuaian Responsif untuk Mobile */
@media (max-width: 768px) {
  .laptop-base {
    height: 10px;
    border-bottom-width: 2px;
  }
  .tour-section {
    padding: 48px 16px;
  }
  .trust-inner-wrapper {
    display: grid;
    padding: 0;
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
}

/* ── JOURNEY/FLOW SECTION ── */
.journey-section {
  background: var(--neutral-50);
  padding: 80px 0;
}

.journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.journey-eyebrow {
  display: inline-block;
  color: var(--brand-primary);
  background: rgba(26, 86, 219, 0.08);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.journey-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.journey-subtitle {
  font-size: 16px;
  color: var(--neutral-500);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Journey Steps Container */
.journey-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0 40px;
}

/* Individual Step Item */
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 180px;
  max-width: 200px;
  flex: 1;
}

/* Icon Container */
.journey-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.journey-step:hover .journey-step-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-primary);
}

.journey-step-icon i {
  font-size: 28px;
}

.journey-step-icon img {
  width: 32px;
  height: 32px;
}

/* Icon color variations */
.journey-step-icon.icon-blue {
  background: linear-gradient(135deg, #eef4ff 0%, #dbeafe 100%);
}
.journey-step-icon.icon-blue i {
  color: var(--brand-primary);
}

.journey-step-icon.icon-green {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}
.journey-step-icon.icon-green i {
  color: #059669;
}

.journey-step-icon.icon-orange {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}
.journey-step-icon.icon-orange i {
  color: #ea580c;
}

.journey-step-icon.icon-purple {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}
.journey-step-icon.icon-purple i {
  color: #7c3aed;
}

.journey-step-icon.icon-pink {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}
.journey-step-icon.icon-pink i {
  color: #db2777;
}

/* Step Title */
.journey-step-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Step Description */
.journey-step-desc {
  font-size: 13px;
  color: var(--neutral-500);
  line-height: 1.55;
  padding: 0 8px;
}

/* Arrow Connector Between Steps */
.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0px;
  z-index: 1;
}

.journey-arrow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--neutral-200) 0%,
    var(--brand-primary) 50%,
    var(--neutral-200) 100%
  );
  position: relative;
}

.journey-arrow-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
}

.journey-arrow-circle i {
  color: var(--white);
  font-size: 14px;
}

/* Alternative: Dashed line connector */
.journey-connector {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.journey-connector-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.journey-connector-line {
  width: 20px;
  height: 2px;
  background: var(--neutral-300);
}

.journey-connector-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-connector-dot i {
  color: white;
  font-size: 12px;
}

/* Journey Footer Text */
.journey-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--neutral-200);
}

.journey-footer-text {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.6;
}

.journey-footer-text strong {
  color: var(--neutral-900);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .journey-steps {
    gap: 0;
    padding: 20px 10px 40px;
  }

  .journey-step {
    min-width: 150px;
    max-width: 170px;
  }

  .journey-connector {
    flex: 0 0 40px;
  }

  .journey-connector-line {
    width: 12px;
  }
}

@media (max-width: 768px) {
  .journey-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .journey-step {
    min-width: auto;
    max-width: 300px;
    width: 100%;
  }

  .journey-connector {
    flex: 0 0 auto;
    margin-top: 0;
    transform: rotate(90deg);
    margin: 8px 0;
  }

  .journey-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
} /* ── JOURNEY/FLOW SECTION - HUB STYLE ── */
.journey-section {
  background: var(--white);
  padding: 80px 0;
}

.journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.journey-eyebrow {
  display: inline-block;
  color: var(--brand-primary);
  background: rgba(26, 86, 219, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.journey-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.journey-subtitle {
  font-size: 16px;
  color: var(--neutral-500);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Journey Grid Wrapper - Hub Layout */
.journey-grid-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--neutral-100);
}

/* Journey Hub Flow - 3 Column Layout */
.journey-hub-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

/* Input & Output Columns */
.journey-inputs,
.journey-outputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual Item Pill */
.journey-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--neutral-800);
  transition: all 0.2s ease;
}

.journey-item:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(32, 50, 119, 0.1);
  transform: translateX(4px);
}

.journey-outputs .journey-item:hover {
  transform: translateX(-4px);
}

.journey-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.journey-item-dot.dot-green {
  background: #10b981;
}

.journey-item-dot.dot-blue {
  background: #3b82f6;
}

.journey-item-dot.dot-purple {
  background: #8b5cf6;
}

.journey-item-dot.dot-orange {
  background: #f59e0b;
}

.journey-item-dot.dot-pink {
  background: #ec4899;
}

.journey-item-dot.dot-teal {
  background: #14b8a6;
}

/* Center Hub Section */
.journey-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Arrow Connectors */
.journey-arrow {
  display: flex;
  align-items: center;
  color: var(--neutral-300);
}

.journey-arrow svg {
  width: 40px;
  height: auto;
}

.journey-arrow-line {
  width: 40px;
  height: 2px;
  background: var(--neutral-300);
  position: relative;
}

.journey-arrow-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--neutral-300);
}

/* Central Hub Box */
.journey-hub {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.journey-hub-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-hub-icon i {
  font-size: 32px;
  color: white;
}

.journey-hub-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 1.5;
}

.journey-hub-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Journey Footer Text */
.journey-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 0;
  border-top: none;
}

.journey-footer-text {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.6;
}

.journey-footer-text strong {
  color: var(--neutral-900);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-grid-wrapper {
    padding: 32px 20px;
  }

  .journey-hub-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journey-center {
    flex-direction: column;
    gap: 16px;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }

  .journey-item:hover,
  .journey-outputs .journey-item:hover {
    transform: translateY(-2px);
  }

  .journey-hub {
    min-width: auto;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ── ALTERNATIVE HORIZONTAL TIMELINE STYLE ── */
.flow-section {
  background: var(--white);
  padding: 80px 0;
}

.flow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow-header {
  text-align: center;
  margin-bottom: 60px;
}

.flow-steps-wrapper {
  position: relative;
  padding: 40px 0;
}

/* Horizontal connecting line */
.flow-steps-wrapper::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--neutral-200) 5%,
    var(--neutral-200) 95%,
    transparent 100%
  );
  z-index: 0;
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
  position: relative;
}

.flow-step-icon-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.flow-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--white);
  border: 2px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.flow-step:hover .flow-step-icon {
  transform: scale(1.05);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.15);
}

.flow-step-icon i {
  font-size: 26px;
}

/* Arrow indicator after each step except last */
.flow-step:not(:last-child) .flow-step-icon-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
  width: calc(100% - 32px);
  display: flex;
  align-items: center;
}

.flow-arrow {
  position: absolute;
  top: 32px;
  right: -24px;
  width: 24px;
  height: 24px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
}

.flow-arrow i {
  color: white;
  font-size: 12px;
}

.flow-step:last-child .flow-arrow {
  display: none;
}

.flow-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.flow-step-desc {
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.5;
  padding: 0 4px;
}

.flow-footer {
  text-align: center;
  margin-top: 48px;
}

.flow-footer p {
  font-size: 15px;
  color: var(--neutral-600);
}

.flow-footer strong {
  color: var(--brand-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .flow-steps-wrapper::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent 0%,
      var(--neutral-200) 5%,
      var(--neutral-200) 95%,
      transparent 100%
    );
  }

  .flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 80px;
  }

  .flow-step {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
    gap: 20px;
  }

  .flow-step-icon-wrapper {
    margin-bottom: 0;
    position: absolute;
    left: -80px;
  }

  .flow-arrow {
    top: auto;
    bottom: -28px;
    right: auto;
    left: 20px;
    transform: rotate(90deg);
  }

  .flow-step-content {
    flex: 1;
  }
}

/* ── CTA GRADIENT SECTION ── */
.cta-gradient-section {
  padding: 80px 0;
  background: var(--neutral-50);
}

.cta-gradient-card {
  background-image: radial-gradient(
    175.07% 171.43% at 28.58% -31.46%,
    rgb(6, 14, 169) 0%,
    rgb(18, 33, 133) 38.14%,
    rgb(123, 152, 168) 58.6%,
    rgb(168, 180, 212) 74.47%,
    rgb(254, 221, 255) 100%
  );
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.cta-gradient-wrapper {
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-gradient-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.cta-gradient-divider {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  margin-bottom: 4px;
}

.cta-gradient-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin: 0;
}

.cta-gradient-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}

.cta-gradient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--brand-primary);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
}

.cta-gradient-btn:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Phone Image */
/* Pastikan kontainer utama memotong elemen yang keluar batas */
.cta-gradient-card {
  position: relative;
  overflow: hidden; /* Ini kunci untuk memotong gambar */
}

/* Atur ulang pembungkus agar sejajar di bawah */
.cta-gradient-phone {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 330px;
  align-self: flex-end; /* Memaksa kontainer rapat ke bawah */
}

/* Dorong gambar ke bawah sesuai kebutuhan potongan */
.cta-phone-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  transform: translateY(50%);
  margin-bottom: -50px;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-gradient-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 30px;
    text-align: center;
  }

  .cta-gradient-content {
    align-items: center;
  }

  .cta-gradient-subtitle {
    max-width: 100%;
  }

  .cta-gradient-phone {
    justify-content: center;
  }

  .cta-phone-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    transform: translateY(50%);
    margin-bottom: -50px;
  }
}

@media (max-width: 640px) {
  .cta-gradient-section {
    padding: 60px 0;
  }

  .cta-gradient-card {
    border-radius: var(--radius-lg);
    min-height: auto;
  }

  .cta-gradient-wrapper {
    padding: 40px 20px 0;
  }

  .cta-gradient-title {
    font-size: 22px;
  }

  .cta-gradient-subtitle {
    font-size: 14px;
  }

  .cta-phone-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    transform: translateY(50%);
    margin-bottom: -50px;
  }
}

/* ── ECOSYSTEM CONNECTION SECTION ── */
.ecosystem-section {
  background: white;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.ecosystem-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.ecosystem-content {
  color: white;
}

.ecosystem-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.ecosystem-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.ecosystem-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--brand-primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ecosystem-btn:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.ecosystem-btn i {
  font-size: 16px;
}

/* Module Cards Grid */
.ecosystem-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.ecosystem-module-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ecosystem-module-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: var(--neutral-300);
}

.ecosystem-module-card.active {
  border-color: #ea580c;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
}

.ecosystem-module-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-module-icon i {
  font-size: 32px;
  color: #ea580c;
}

.ecosystem-module-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-800);
  line-height: 1.4;
}

/* ── ECOSYSTEM FLOW (Horizontal Timeline Style) ── */
.ecosystem-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 80px;
  position: relative;
  padding: 0 10px;
}

/* Connecting line behind items */
.ecosystem-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--neutral-200) 0%, 
    var(--neutral-300) 50%, 
    var(--neutral-200) 100%
  );
  z-index: 0;
}

.ecosystem-flow-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 160px;
}

/* Arrow connector between items */
.ecosystem-flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -18px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--neutral-300);
  border-right: 2px solid var(--neutral-300);
  transform: rotate(45deg);
  z-index: 2;
}

.ecosystem-flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.ecosystem-flow-icon i {
  font-size: 26px;
}

/* Icon color variations */
.ecosystem-flow-icon.icon-blue {
  background: rgba(59, 130, 246, 0.12);
}
.ecosystem-flow-icon.icon-blue i {
  color: #3b82f6;
}

.ecosystem-flow-icon.icon-orange {
  background: rgba(234, 88, 12, 0.12);
}
.ecosystem-flow-icon.icon-orange i {
  color: #ea580c;
}

.ecosystem-flow-icon.icon-teal {
  background: rgba(20, 184, 166, 0.12);
}
.ecosystem-flow-icon.icon-teal i {
  color: #14b8a6;
}

.ecosystem-flow-icon.icon-yellow {
  background: rgba(234, 179, 8, 0.12);
}
.ecosystem-flow-icon.icon-yellow i {
  color: #eab308;
}

.ecosystem-flow-icon.icon-purple {
  background: rgba(139, 92, 246, 0.12);
}
.ecosystem-flow-icon.icon-purple i {
  color: #8b5cf6;
}

.ecosystem-flow-icon.icon-pink {
  background: rgba(236, 72, 153, 0.12);
}
.ecosystem-flow-icon.icon-pink i {
  color: #ec4899;
}

.ecosystem-flow-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.3;
  margin-bottom: 8px;
}

.ecosystem-flow-desc {
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.5;
}

/* Ecosystem Stats Below */
.ecosystem-stats-section {
  padding: 60px 0;
}

.ecosystem-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.ecosystem-stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.ecosystem-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--neutral-200);
}

.ecosystem-stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.ecosystem-stat-label {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .ecosystem-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ecosystem-content {
    order: 1;
  }

  .ecosystem-modules {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .ecosystem-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .ecosystem-btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ecosystem-section {
    padding: 60px 0;
  }

  .ecosystem-modules {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ecosystem-module-card {
    padding: 20px 16px;
  }

  .ecosystem-module-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .ecosystem-module-icon i {
    font-size: 24px;
  }

  .ecosystem-module-title {
    font-size: 12px;
  }

  /* Ecosystem Flow Responsive */
  .ecosystem-flow {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .ecosystem-flow::before {
    display: none;
  }

  .ecosystem-flow-item {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }

  .ecosystem-flow-item:not(:last-child)::after {
    display: none;
  }

  .ecosystem-flow-icon {
    width: 48px;
    height: 48px;
  }

  .ecosystem-flow-icon i {
    font-size: 22px;
  }

  .ecosystem-flow-title {
    font-size: 12px;
  }

  .ecosystem-flow-desc {
    font-size: 11px;
  }

  .ecosystem-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ecosystem-stat-item:not(:last-child)::after {
    display: none;
  }

  .ecosystem-stat-item {
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 32px;
  }

  .ecosystem-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .ecosystem-modules {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-flow-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
