/* ============================================
   SUTEKI REDESIGN — SIAKAD 4.0 UI Patterns
   ============================================ */

:root {
  --navy: #1e3a8a;
  --sky: #0ea5e9;
  --accent: #f59e0b;
  --ink: #0f172a;
  --surface: #f8fafc;
}

*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--surface); }

/* ── Scroll-triggered Animations ── */
.scroll-animate {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: none;
}
.scroll-fade-up { transform: translateY(40px); }
.scroll-fade-down { transform: translateY(-40px); }
.scroll-fade-left { transform: translateX(40px); }
.scroll-fade-right { transform: translateX(-40px); }
.scroll-scale { transform: scale(0.9); }

/* ── Stagger Delays ── */
.scroll-animate.stagger-1 { transition-delay: 0.1s; }
.scroll-animate.stagger-2 { transition-delay: 0.2s; }
.scroll-animate.stagger-3 { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .scroll-animate {
    transition-duration: 0.52s;
  }
  .scroll-fade-up { transform: translateY(24px); }
  .scroll-fade-down { transform: translateY(-24px); }
  .scroll-fade-left { transform: translateX(24px); }
  .scroll-fade-right { transform: translateX(-24px); }
}

/* ── Eyebrow / Section Title / Section Copy ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow span {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background: var(--navy);
}
.section-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--ink);
}
.section-copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 640px;
}
.section-heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.section-heading > .eyebrow { margin: 0; }
.section-heading > :is(.section-title, .hero-title) { margin: 14px 0 0; }
.section-heading > :is(.section-copy, .hero-copy) { margin: 16px 0 0; }
.section-heading--center {
  max-width: 48rem;
  margin-inline: auto;
  align-items: center;
  text-align: center;
}
.section-heading--center > .eyebrow { justify-content: center; }
.section-heading--center > .section-copy {
  margin-inline: auto;
  text-align: center;
}
.section-heading--dark > .section-title { color: #fff; }
.section-heading--dark > .section-copy { color: #94a3b8; }
.hero-title { letter-spacing: 0; }

/* ── Text Link ── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition: gap 0.2s, color 0.2s;
}
.text-link:hover { gap: 10px; color: #16327A; }
.text-link span { transition: transform 0.2s; }
.text-link:hover span { transform: translateX(3px); }

/* ── Buttons ── */
.btn-primary,
.btn-secondary,
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 0.8rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary,
.btn-primary:visited {
  background: var(--navy);
  color: #fff;
  padding: 0.82rem 1.1rem;
  box-shadow: 0 10px 24px rgba(30, 58, 138, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #16327A;
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.24);
}
.btn-primary svg { width: 15px; height: 15px; flex: 0 0 auto; stroke-width: 2.5; }
.btn-secondary {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  padding: 0.82rem 1.1rem;
}
.btn-secondary:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}
.btn-light {
  background: #fff;
  color: var(--navy);
  padding: 0.8rem 1.1rem;
}
.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 0.8rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  padding: 0.82rem 1.1rem;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn-outline-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}
.header-discussion-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--navy);
  border-radius: 0.8rem;
  background: #fff;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.header-discussion-cta:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(30, 58, 138, 0.18);
}

/* ── Nav Link ── */
.nav-link {
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--navy); }

/* ── Navbar ── */
#navbar {
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s;
}
#navbar .nav-link {
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 600;
}

/* ── Nav Mega Menu ── */
.nav-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(720px, calc(100vw - 40px));
  transform: translate(-50%, -8px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 70;
}
.nav-menu-wrap:hover .nav-mega,
.nav-menu-wrap:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-menu-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}
.nav-menu-trigger svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-menu-wrap:hover .nav-menu-trigger svg,
.nav-menu-wrap:focus-within .nav-menu-trigger svg { transform: rotate(180deg); }
.nav-mega a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 10px;
  color: #334155;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-mega a:hover { background: #f8fafc; color: var(--navy); }
.nav-mega img { width: 31px; height: 31px; object-fit: contain; }
.nav-mega strong, .nav-mega small { display: block; }
.nav-mega small { margin-top: 2px; color: #94a3b8; font-size: 11px; }
.nav-mega-aside {
  padding: 18px;
  border-radius: 12px;
  background: #eff6ff;
}
.nav-mega-aside p { margin: 8px 0 14px; color: #475569; font-size: 13px; line-height: 1.5; }

.nav-mega-wide {
  width: min(860px, calc(100vw - 40px));
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .85fr);
  gap: 18px;
  padding: 16px;
}
.nav-mega-main { min-width: 0; }
.nav-mega-heading { display: flex; flex-direction: column; gap: 2px; padding: 4px 10px 10px; }
.nav-mega-heading span,
.nav-mega-kicker { color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-mega-heading small { color: #64748b; font-size: 11px; }
.nav-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px; }
.nav-product-grid > a { min-width: 0; }
.nav-item-icon,
.nav-mega-links > a > i {
  display: grid;
  flex: 0 0 31px;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: #eff6ff;
  color: var(--navy);
}
.nav-item-icon svg,
.nav-mega-links > a > i { width: 17px; height: 17px; }
.nav-mega-aside { display: flex; flex-direction: column; gap: 2px; padding: 16px; }
.nav-mega-aside > strong { margin-bottom: 4px; color: #0f172a; font-size: 13px; }
.nav-mega-aside > a { gap: 8px; padding: 7px 0; border-radius: 0; font-size: 12px; }
.nav-mega-aside > a i { width: 15px; height: 15px; color: var(--navy); }
.nav-mega-aside > a:hover { background: transparent; color: var(--navy); }
.nav-mega-aside .nav-mega-cta,
.nav-mega-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(30, 58, 138, 0.18);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-mega-aside .nav-mega-cta:hover,
.nav-mega-cta:hover {
  background: #16327A;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.24);
}
.nav-mega-cta svg { width: 14px; height: 14px; }
.nav-mega .nav-mega-cta {
  color: #fff !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.nav-mega .nav-mega-cta:hover {
  background: #16327A;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.24);
}
.nav-mega-editorial {
  width: min(790px, calc(100vw - 40px));
  grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 16px;
}
.nav-mega-feature { display: flex; flex-direction: column; align-items: flex-start; padding: 16px; border-radius: 12px; background: linear-gradient(145deg, #eff6ff, #f8fafc); }
.nav-mega-feature strong { margin-top: 8px; color: #0b1736; font-size: 18px; line-height: 1.15; }
.nav-mega-feature p { margin: 10px 0 16px; color: #52627c; font-size: 12px; line-height: 1.55; }
.nav-mega-stat { display: flex; align-items: baseline; gap: 6px; margin-top: auto; color: #52627c; font-size: 11px; }
.nav-mega-stat b { color: var(--navy); font-size: 24px; }
.nav-mega-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px; }
.nav-mega-links > a { min-width: 0; }
.nav-mega-links > a > i { flex: 0 0 31px; }
.nav-mega-links strong { font-size: 12px; }
.nav-mega-links small { margin-top: 2px; color: #94a3b8; font-size: 10px; line-height: 1.25; }
.nav-mega-subgroups { grid-column: 2; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 6px 10px 0; border-top: 1px solid #e2e8f0; color: #64748b; font-size: 11px; }
.nav-mega-subgroups span { color: #0f172a; font-weight: 700; }
.nav-mega-subgroups a { padding: 0; color: var(--navy); font-size: 11px; }
.nav-mega-subgroups a:hover { background: transparent; text-decoration: underline; }
.nav-mega-compact { width: min(700px, calc(100vw - 40px)); grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr); }
.nav-mega-links-four { grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: center; }
.nav-mega-about { width: min(650px, calc(100vw - 40px)); }
.nav-menu-wrap > .nav-mega { left: 0; transform: translate(0, -8px); }
.nav-menu-wrap > .nav-mega-about { left: auto; right: 0; }
.nav-menu-wrap:hover > .nav-mega,
.nav-menu-wrap:focus-within > .nav-mega { transform: translate(0, 0); }

/* ── Hamburger Animation ── */
.mobile-menu-button {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
}
.mobile-menu-button .menu-icon { width: 26px; height: 26px; stroke-width: 1.8; color: #374151; }
.mobile-menu-button .menu-icon-close { display: none; }
.mobile-menu-button.active .menu-icon-menu { display: none; }
.mobile-menu-button.active .menu-icon-close { display: block; }
@media (min-width: 1024px) {
  .mobile-menu-button { display: none; }
}

/* ── Mobile Menu ── */
.mobile-menu {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
#mobile-menu:not(.open) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top-color: transparent;
}
.mobile-menu.open {
  opacity: 1;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu .mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: .7rem 1rem;
  border: 1px solid var(--navy);
  border-radius: .8rem;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.mobile-menu .mobile-menu-cta:hover,
.mobile-menu .mobile-menu-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(30, 58, 138, .18);
}
.mobile-menu .btn-primary {
  display: flex;
  width: 100%;
  min-height: 44px;
  padding-inline: 1rem;
  color: #fff;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  border-bottom: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.mobile-menu .btn-primary svg { width: 15px; height: 15px; stroke-width: 2.5; }
.mobile-menu .btn-primary:hover,
.mobile-menu .btn-primary:focus-visible {
  background: #16327A;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 58, 138, .24);
}
.mobile-menu-group { border-bottom: 1px solid #f1f5f9; }
.mobile-menu-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: .75rem 0;
  border: 0;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.mobile-menu-parent svg { width: 16px; height: 16px; transition: transform .2s ease; }
.mobile-menu-group.open .mobile-menu-parent { color: var(--navy); }
.mobile-menu-group.open .mobile-menu-parent svg { transform: rotate(180deg); }
.mobile-submenu {
  max-height: 0;
  padding-left: 12px;
  opacity: 0;
  overflow: hidden;
  transition: max-height .25s ease, opacity .2s ease, padding-bottom .25s ease;
}
.mobile-submenu-label {
  display: block;
  margin: 12px 0 2px;
  padding: 10px 0 6px;
  border-top: 1px solid #e2e8f0;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.mobile-submenu-label:first-child { margin-top: 0; border-top: 0; }
.mobile-menu-group.open .mobile-submenu {
  max-height: 760px;
  padding-bottom: 8px;
  opacity: 1;
}
.mobile-submenu a {
  min-height: 44px;
  padding: .7rem 0;
  border-bottom: 0;
  color: #64748b;
  font-size: .88rem;
}
.mobile-submenu a:hover { color: var(--navy); }
.navbar-brand {
  min-height: 44px;
}

/* ── Hero ── */
.hero-grid {
  background-color: #f8fafc;
}

/* ── Hero Dashboard Mockup ── */
.hero-showcase {
  display: none;
}
.hero-responsive-visual { display: none; }
@media (min-width: 1180px) {
  .hero-grid .hero-copy { max-width: 32rem; }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr) !important;
  }
  .hero-inner > * { min-width: 0; }
  .hero-responsive-visual {
    position: relative;
    z-index: 0;
    display: flex;
    width: min(940px, 66vw);
    min-width: 0;
    max-width: none;
    align-items: center;
    margin-left: -8rem;
    pointer-events: none;
  }
  .hero-responsive-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
@media (min-width: 1180px) and (max-height: 850px) {
  .hero-grid .hero-inner {
    padding-top: 1rem !important;
    padding-bottom: 2rem !important;
  }
  .hero-grid .hero-responsive-visual {
    width: min(870px, 62vw);
    margin-left: -7rem;
  }
  .hero-grid .hero-actions { margin-top: 1.5rem; }
  .hero-grid .hero-stats { margin-top: 1.75rem; }
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbFloat 6s ease-in-out infinite;
}
.orb-one {
  width: 220px;
  height: 220px;
  background: var(--sky);
  top: -30px;
  right: -20px;
  animation-delay: 0s;
}
.orb-two {
  width: 180px;
  height: 180px;
  background: var(--accent);
  bottom: 20px;
  left: 10%;
  animation-delay: 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

.dashboard-window {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 4%;
  width: min(100%, 530px);
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(30, 58, 138, 0.14);
  transform: rotateY(-4deg) rotateX(2deg);
}
.dashboard-window aside span {
  display: block;
  margin: 0.2rem 0;
  padding: 0.45rem 0.5rem;
  border-radius: 0.35rem;
  font-size: 10px;
  color: #64748b;
  cursor: default;
}
.dashboard-window .side-active {
  background: #e8f0ff !important;
  color: var(--navy) !important;
  font-weight: 700;
}
.metric-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  padding: 0.65rem;
}
.metric-card small, .metric-card span {
  display: block;
  font-size: 9px;
  color: #94a3b8;
}
.metric-card b {
  display: block;
  margin: 4px 0 2px;
  font-size: 1.05rem;
  color: var(--ink);
}

/* ── Chart (mini bar chart) ── */
.chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
}
.chart i {
  display: block;
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: #dbeafe;
  transition: height 0.4s ease;
}
.chart i:nth-child(1) { height: 35%; }
.chart i:nth-child(2) { height: 55%; }
.chart i:nth-child(3) { height: 45%; }
.chart i:nth-child(4) { height: 70%; }
.chart i:nth-child(5) { height: 60%; }
.chart i:nth-child(6) { height: 85%; background: var(--navy); }

/* ── Floating Cards ── */
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  font-size: 12px;
  animation: floatBounce 3s ease-in-out infinite;
}
.float-card b { font-size: 14px; color: var(--ink); }
.float-card small { color: #94a3b8; }
.float-card span { font-weight: 700; color: #16a34a; }
.card-revenue {
  bottom: 60px;
  left: 0;
  animation-delay: 0.5s;
}
.card-report {
  top: 30px;
  left: 10%;
  animation-delay: 1.5s;
}
.card-report .check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Role Tabs — Pill Navigation with Sliding Slider ── */
.role-pill-nav {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.role-pill-slider {
  position: absolute;
  top: 6px;
  bottom: 6px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.25);
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}
.role-pill-slider.initializing {
  transition: none;
}
.role-pill {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.role-pill:hover {
  color: #334155;
}
.role-pill.active {
  color: #fff;
}

/* ── Role Comparison — Row-Based Layout ── */
.role-comparison-headlines {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 20px;
}
.role-comparison-headline-side {
  padding: 0 4px;
}
.role-comparison-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.eyebrow-kendala { color: #f97316; }
.eyebrow-solusi { color: var(--navy); }
.role-comparison-headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}
.role-comparison-headline-spacer {
  width: 48px;
}
.role-comparison-rows {
  display: grid;
  gap: 10px;
}
.role-comparison-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  cursor: pointer;
}
.role-comparison-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s ease;
  min-height: 68px;
}
/* Row hover — both cards respond */
.role-comparison-row:hover .role-comparison-card {
  border-color: #93c5fd;
  background: #f8fafc;
}
.role-comparison-row:hover .role-comparison-arrow {
  color: #94a3b8;
}
/* Row active — both cards respond */
.role-comparison-row.active .card-kendala {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  border-color: #fb923c;
}
.role-comparison-row.active .card-solusi {
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
  border-color: #60a5fa;
}
.role-comparison-row.active .role-comparison-arrow {
  color: #64748b;
}
.role-comparison-row.active:hover .card-kendala {
  background: linear-gradient(135deg, #fff7ed, #fdba74);
  border-color: #f97316;
}
.role-comparison-row.active:hover .card-solusi {
  background: linear-gradient(135deg, #eff6ff, #93c5fd);
  border-color: #3b82f6;
}
.role-comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #cbd5e1;
  transition: color 0.3s ease;
}
.role-comparison-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}
.icon-kendala {
  background: #fee2e2;
  color: #ef4444;
}
.icon-solusi {
  background: #dbeafe;
  color: var(--navy);
}
.role-comparison-row.active .icon-kendala {
  background: #f97316;
  color: #fff;
}
.role-comparison-row.active .icon-solusi {
  background: var(--navy);
  color: #fff;
}
.role-comparison-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  flex: 1;
  min-width: 0;
  transition: color 0.3s ease;
}
.role-comparison-row.active .role-comparison-text {
  font-weight: 600;
  color: var(--ink);
}

/* ── Responsive: Role Tabs ── */
@media (max-width: 767px) {
  .role-pill-scroll {
    justify-content: flex-start !important;
    margin-right: -24px;
    padding-right: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .role-pill-scroll::-webkit-scrollbar { display: none; }
  .role-pill-nav {
    flex: 0 0 auto;
    gap: 4px;
    padding: 4px;
  }
  .role-pill-slider {
    top: 4px;
    bottom: 4px;
  }
  .role-pill { min-height: 44px; padding: 8px 14px; font-size: 0.8rem; }
  .role-comparison-headlines { grid-template-columns: 1fr; gap: 16px; }
  .role-comparison-headline-spacer { display: none; }
  .role-comparison-row { grid-template-columns: 1fr; gap: 8px; }
  .role-comparison-arrow {
    width: auto;
    height: 36px;
    font-size: 1rem;
    transform: rotate(90deg);
  }
  .role-comparison-card { padding: 16px; min-height: auto; }
  .role-comparison-headline { font-size: 1.25rem; }
}

/* ── Video Section ── */
.video-section .eyebrow {
  justify-content: center;
}
.video-section .section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.video-section .section-copy {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.video-wrapper {
  width: 100%;
  margin-top: 3rem;
  position: relative;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}
.video-wrapper:not(.is-player-ready):hover .video-thumbnail {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.18);
}
.viewport-video-player,
.video-thumbnail iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.viewport-video-player { z-index: 1; }
.viewport-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  appearance: none;
}
.viewport-video-fallback[hidden] { display: none; }
.viewport-video-fallback > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.video-wrapper:not(.is-player-ready):hover .viewport-video-fallback > img {
  transform: scale(1.03);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.35) 100%);
  transition: opacity 0.4s ease;
}
.video-wrapper:not(.is-player-ready):hover .video-overlay {
  opacity: 0.6;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.play-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, box-shadow 0.3s ease;
}
.play-icon svg {
  fill: var(--navy);
  margin-left: 3px;
}
.video-wrapper:not(.is-player-ready):hover .play-icon {
  transform: scale(1.12);
  background: #f8fafc;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.academic-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  text-align: left;
}
.academic-journey-card {
  min-width: 0;
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.academic-journey-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 38px rgba(30, 58, 138, .11);
}
.academic-journey-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  color: #2563eb;
}
.academic-journey-icon svg { width: 34px; height: 34px; stroke-width: 2; }
.academic-journey-card h3 {
  margin-top: 20px;
  color: #0b1736;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}
.academic-journey-card p {
  margin-top: 10px;
  color: #52627c;
  font-size: .9rem;
  line-height: 1.6;
}
.academic-journey-actions {
  display: flex;
  margin-top: 32px;
  justify-content: center;
}
.academic-journey-actions .btn-primary {
  justify-content: center;
  min-height: 48px;
  padding-inline: 1.4rem;
}
.play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: pulse-ring 2.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}
.play-pulse-delay {
  animation-delay: 0.8s;
}
@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-modal-content {
  position: relative;
  width: min(94vw, 1360px, calc(177.78vh - 171px));
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 96px);
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.video-modal.active .video-modal-content {
  transform: scale(1);
}
#videoModalEmbed,
.video-modal-content iframe {
  width: 100%;
  height: 100%;
}
#videoModalEmbed {
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.video-modal-content iframe {
  display: block;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Product Cards ── */
#produk { background: var(--ink); color: #fff; }
#produk .eyebrow { color: #93c5fd; }
#produk .eyebrow span { background: #93c5fd; }
#produk .text-slate-400 { color: #94a3b8; }
.ecosystem-title {
  max-width: 760px;
  line-height: 1.12;
  letter-spacing: 0;
}
.ecosystem-experience {
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, .26);
  border-radius: 8px;
  background: #0c172b;
  box-shadow: 0 28px 70px rgba(2, 8, 23, .46);
}
.ecosystem-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 720px;
}
.ecosystem-selector {
  min-width: 0;
  padding: 30px 24px 22px;
  border-right: 1px solid rgba(148, 163, 184, .18);
  background: #0a1529;
}
.ecosystem-selector-heading {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  color: #fff;
  text-align: left;
}
.ecosystem-selector-heading > svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #60a5fa;
}
.ecosystem-selector-heading h3 {
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
}
.ecosystem-selector-heading p {
  margin-top: 4px;
  color: #94a3b8;
  font-size: .73rem;
}
.ecosystem-diagram {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin: 18px auto 0;
  isolation: isolate;
}
.ecosystem-diagram::before {
  content: "";
  position: absolute;
  z-index: -3;
  top: 51%;
  left: 50%;
  width: 102%;
  aspect-ratio: 1;
  border: 1px solid rgba(148, 163, 184, .09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ecosystem-orbit {
  position: absolute;
  z-index: -2;
  top: 51%;
  left: 50%;
  border: 1px solid rgba(103, 232, 249, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-one { width: 74%; height: 74%; }
.orbit-two {
  width: 94%;
  height: 94%;
  border-color: rgba(45, 212, 191, .1);
}
.ecosystem-center-glow {
  position: absolute;
  z-index: -1;
  top: 51%;
  left: 50%;
  width: 39%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(34, 211, 238, .14);
  box-shadow:
    0 0 56px rgba(34, 211, 238, .28),
    0 0 92px rgba(45, 212, 191, .16);
  filter: blur(22px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ecosystem-center-halo 4.8s ease-in-out infinite;
}
@keyframes ecosystem-center-halo {
  0%, 100% {
    opacity: .78;
    transform: translate(-50%, -50%) scale(.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}
.ecosystem-connections {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.ecosystem-line {
  stroke: rgba(125, 148, 178, .24);
  stroke-width: .7;
  stroke-linecap: round;
  opacity: .62;
  vector-effect: non-scaling-stroke;
  transition: stroke .45s ease, stroke-width .45s ease, filter .45s ease, opacity .45s ease;
}
.ecosystem-line.active {
  stroke: url(#ecosystem-line-gradient);
  stroke-width: 1.35;
  opacity: 1;
  filter:
    drop-shadow(0 0 3px rgba(34, 211, 238, .95))
    drop-shadow(0 0 7px rgba(45, 212, 191, .62));
  animation: ecosystem-line-aura 4s ease-in-out infinite;
}
@keyframes ecosystem-line-aura {
  0%, 100% {
    filter:
      drop-shadow(0 0 3px rgba(34, 211, 238, .82))
      drop-shadow(0 0 6px rgba(45, 212, 191, .52));
  }
  50% {
    filter:
      drop-shadow(0 0 4px rgba(34, 211, 238, 1))
      drop-shadow(0 0 9px rgba(45, 212, 191, .68));
  }
}
.ecosystem-point {
  fill: #64748b;
  opacity: .3;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill .45s ease, filter .45s ease, opacity .45s ease;
}
.ecosystem-point.active {
  fill: #67e8f9;
  opacity: 1;
  filter: drop-shadow(0 0 4px #22d3ee) drop-shadow(0 0 7px #2dd4bf);
  animation: ecosystem-pulse 3.2s ease-in-out infinite;
}
@keyframes ecosystem-pulse {
  0%, 100% { transform: scale(.88); }
  50% { transform: scale(1.32); }
}
.ecosystem-node {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 148px;
  height: 118px;
  min-height: 118px;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 160, 201, .44);
  border-radius: 8px;
  background: #111f37;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease, transform .3s ease, opacity .4s ease;
}
.ecosystem-node:hover {
  background: #132743;
  transform: translate(-50%, -53%);
}
.ecosystem-node:focus-visible {
  outline: 3px solid rgba(147, 197, 253, .55);
  outline-offset: 3px;
}
.ecosystem-node.active:not(.node-center),
.ecosystem-node.is-preview:not(.node-center) {
  border-color: rgba(103, 232, 249, .92);
  background: #14304a;
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, .22),
    0 0 16px rgba(34, 211, 238, .36),
    0 0 30px rgba(45, 212, 191, .2);
  animation: ecosystem-card-aura 4.2s ease-in-out infinite;
}
.ecosystem-diagram.has-preview .ecosystem-node.active:not(.node-center):not(.is-preview) {
  border-color: rgba(125, 160, 201, .44);
  background: #111f37;
  box-shadow: none;
  animation: none;
}
@keyframes ecosystem-card-aura {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(45, 212, 191, .18),
      0 0 14px rgba(34, 211, 238, .3),
      0 0 26px rgba(45, 212, 191, .16);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(45, 212, 191, .3),
      0 0 19px rgba(34, 211, 238, .42),
      0 0 34px rgba(45, 212, 191, .24);
  }
}
.ecosystem-node img {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  object-fit: contain;
}
.ecosystem-node strong {
  display: block;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.2;
}
.ecosystem-node small {
  display: block;
  margin-top: 4px;
  color: #aebbd0;
  font-size: .64rem;
  line-height: 1.3;
}
.node-center {
  top: 51%;
  left: 50%;
  width: 176px;
  height: 176px;
  min-height: 176px;
  border-color: rgba(103, 232, 249, .92);
  border-radius: 50%;
  background: #122846;
  box-shadow:
    0 0 0 2px rgba(45, 212, 191, .22),
    0 0 18px rgba(34, 211, 238, .64),
    0 0 42px rgba(45, 212, 191, .36);
  animation: ecosystem-core-aura 4.8s ease-in-out infinite;
}
.node-center:hover {
  background: #15304f;
  transform: translate(-50%, -50%) scale(1.015);
}
@keyframes ecosystem-core-aura {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(45, 212, 191, .2),
      0 0 17px rgba(34, 211, 238, .58),
      0 0 38px rgba(45, 212, 191, .3);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(103, 232, 249, .32),
      0 0 23px rgba(34, 211, 238, .76),
      0 0 52px rgba(45, 212, 191, .42);
  }
}
.node-center img { width: 50px; height: 50px; }
.node-center strong { font-size: 1rem; }
.node-lms { top: 14%; left: 50%; }
.node-library { top: 42%; left: 16%; }
.node-eoffice { top: 42%; left: 84%; }
.node-pmb { top: 80%; left: 27%; }
.node-feeder { top: 80%; left: 73%; }
.ecosystem-detail {
  min-width: 0;
  padding: 28px 30px 24px;
  background: #111f38;
}
.ecosystem-detail-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ecosystem-detail-heading > img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.ecosystem-detail-heading h3 {
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}
.ecosystem-detail-heading p {
  margin-top: 4px;
  color: #d4dbea;
  font-size: .9rem;
}
.ecosystem-detail-description {
  max-width: 680px;
  margin-top: 18px;
  color: #aebbd0;
  font-size: .86rem;
  line-height: 1.65;
}
.ecosystem-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(148, 163, 184, .16);
  border-bottom: 1px solid rgba(148, 163, 184, .16);
}
.ecosystem-benefits > div {
  display: flex;
  min-width: 0;
  gap: 10px;
  padding: 0 14px;
  align-items: flex-start;
  border-left: 1px solid rgba(148, 163, 184, .15);
}
.ecosystem-benefits > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.ecosystem-benefits > div > svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .17);
  color: #60a5fa;
}
.ecosystem-benefits span,
.ecosystem-benefits strong,
.ecosystem-benefits small { display: block; }
.ecosystem-benefits strong {
  color: #f8fafc;
  font-size: .74rem;
  line-height: 1.3;
}
.ecosystem-benefits small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: .62rem;
  line-height: 1.45;
}
.ecosystem-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 6px;
  background: #1d4ed8;
  color: #fff;
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.ecosystem-detail-link svg { width: 16px; height: 16px; }
.ecosystem-detail-link:hover {
  background: #2563eb;
  transform: translateY(-2px);
}
.ecosystem-ui-placeholder {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  height: 310px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, .34);
  border-radius: 8px;
  background: #0d172b;
}
.placeholder-sidebar {
  padding: 16px 12px;
  border-right: 1px solid rgba(148, 163, 184, .15);
  background: #0b1528;
}
.placeholder-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin-bottom: 22px;
  color: #fff;
  font-size: .62rem;
  font-weight: 750;
}
.placeholder-brand img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.placeholder-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.placeholder-nav {
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 13px;
  border-radius: 3px;
  background: rgba(148, 163, 184, .13);
}
.placeholder-nav.active { background: rgba(37, 99, 235, .45); }
.placeholder-nav.short { width: 68%; }
.placeholder-main {
  min-width: 0;
  padding: 16px;
}
.placeholder-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #94a3b8;
  font-size: .68rem;
  font-weight: 600;
}
.placeholder-toolbar svg { width: 15px; height: 15px; }
.placeholder-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 15px;
}
.placeholder-stats span {
  height: 55px;
  border: 1px solid rgba(148, 163, 184, .08);
  border-radius: 6px;
  background: #14223a;
}
.placeholder-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(110px, .65fr);
  gap: 9px;
  margin-top: 9px;
}
.placeholder-chart,
.placeholder-donut {
  height: 165px;
  border: 1px solid rgba(148, 163, 184, .08);
  border-radius: 6px;
  background: #14223a;
}
.placeholder-chart {
  display: flex;
  padding: 20px 15px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.placeholder-chart i {
  display: block;
  width: 12%;
  border-radius: 3px 3px 0 0;
  background: #326ee8;
}
.placeholder-chart i:nth-child(1) { height: 28%; }
.placeholder-chart i:nth-child(2) { height: 52%; }
.placeholder-chart i:nth-child(3) { height: 43%; }
.placeholder-chart i:nth-child(4) { height: 72%; }
.placeholder-chart i:nth-child(5) { height: 58%; }
.placeholder-chart i:nth-child(6) { height: 86%; }
.placeholder-donut {
  position: relative;
  display: grid;
  place-items: center;
}
.placeholder-donut::before {
  content: "";
  width: 82px;
  height: 82px;
  border: 16px solid #2353b9;
  border-right-color: #2dd4bf;
  border-bottom-color: #f59e0b;
  border-radius: 50%;
  transform: rotate(-22deg);
}
.ecosystem-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin: 0 16px 14px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, .15);
  border-radius: 8px;
  color: #b8c4d8;
  font-size: .76rem;
}
.ecosystem-proof svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: #93c5fd;
}
.ecosystem-detail.is-switching > * {
  animation: ecosystem-detail-in .34s ease both;
}
@keyframes ecosystem-detail-in {
  from { opacity: .35; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product Cards */
#produk .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  display: flex;
  min-height: 215px;
  padding: 24px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #1a2744;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.product-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.product-card img {
  width: auto;
  max-width: 160px;
  height: 28px;
  object-fit: contain;
  object-position: left;
}
.product-card.featured {
  border-color: rgba(96, 165, 250, 0.3);
  background: linear-gradient(70deg, #1F2B3D 0%, #1F2B3D 60%, #C9DAFF 100%);
}
.product-card.featured h3 { color: #ffffff; }
.product-card.featured p { color: rgba(255, 255, 255, 0.7); }
.product-card h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}
.product-card p {
  flex: 1;
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
}
.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-top: 14px;
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.product-card a:hover {
  gap: 10px;
  color: #bfdbfe;
}
.product-card a span {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.product-card a:hover span { transform: translateX(3px); }
.product-card-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: not-allowed;
}
.product-card-unavailable svg { width: 1rem; height: 1rem; }
.product-logo {
  max-width: 145px;
  height: 32px;
  margin-bottom: 4px;
  object-fit: contain;
  object-position: left;
}

/* ── Impact Cards ── */
/* User Friendly */
.user-friendly-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--surface);
}
.user-friendly-inner {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
  grid-template-columns: minmax(390px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 44px;
}
.user-friendly-content {
  position: relative;
  z-index: 3;
  min-width: 0;
}
#dampak .section-title {
  max-width: 520px;
  font-size: 3.25rem;
  line-height: 1.08;
  letter-spacing: 0;
}
#dampak .section-copy {
  max-width: 590px;
  font-size: 1rem;
  line-height: 1.75;
}
.user-friendly-benefits {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}
.user-friendly-benefits li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: flex-start;
  gap: 16px;
}
.user-friendly-check {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dbeafe;
  border-radius: 50%;
  background: #eaf2ff;
  color: #2563eb;
}
.user-friendly-check svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}
.user-friendly-benefits h3 {
  margin-top: 1px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
}
.user-friendly-benefits p {
  margin-top: 5px;
  color: #64748b;
  font-size: .9rem;
  line-height: 1.55;
}
.user-friendly-cta {
  margin-top: 36px;
  padding: 1rem 1.5rem;
}
.user-friendly-visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 620px;
  place-items: center;
  isolation: isolate;
}
.user-friendly-shape {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -8%;
  width: min(94%, 680px);
  height: auto;
  color: #dde8fa;
  transform: translateY(-50%);
}
.user-friendly-shape rect { fill: currentColor; }
.user-friendly-visual > img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(116%, 880px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(15, 23, 42, .1));
}

@media (max-width: 1179px) {
  .user-friendly-inner {
    grid-template-columns: minmax(350px, .9fr) minmax(0, 1.1fr);
    gap: 30px;
  }
  .user-friendly-visual { min-height: 540px; }
  .user-friendly-shape { right: 0; }
  .user-friendly-visual > img { width: min(104%, 720px); }
}

@media (max-width: 900px) {
  .user-friendly-section { padding: 80px 0 64px; }
  .user-friendly-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .user-friendly-content { max-width: 680px; }
  .user-friendly-visual {
    min-height: 500px;
    margin-top: 10px;
  }
  .user-friendly-shape {
    right: 3%;
    width: min(78%, 560px);
  }
  .user-friendly-visual > img { width: min(100%, 780px); }
}

@media (max-width: 640px) {
  .user-friendly-section { padding: 64px 0 48px; }
  .user-friendly-inner { width: min(calc(100% - 32px), 560px); }
  #dampak .section-title {
    font-size: 2.25rem;
  }
  #dampak .section-copy {
    font-size: .95rem;
  }
  .user-friendly-benefits {
    gap: 20px;
    margin-top: 36px;
  }
  .user-friendly-benefits li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
  }
  .user-friendly-check {
    width: 34px;
    height: 34px;
  }
  .user-friendly-cta {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  .user-friendly-visual {
    min-height: 330px;
    margin-top: 12px;
  }
  .user-friendly-shape {
    right: 5%;
    width: 80%;
  }
  .user-friendly-visual > img {
    width: 100%;
    max-width: 100%;
  }
}

.impact-card {
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.impact-card b {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.impact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.impact-card p { color: #64748b; font-size: 0.85rem; line-height: 1.6; }
.impact-card.sky-card {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-color: #bae6fd;
}
.impact-card.navy-card {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: #93c5fd;
}

/* ── Testimonial Cards ── */
.testimonial-section {
  overflow: hidden;
  background: #f8fafc;
}
.testimonial-section .section-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.testimonial-filter-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.testimonial-tabs {
  position: relative;
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.testimonial-tab-slider {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  z-index: 0;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.25);
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-tab-slider.initializing { transition: none; }
.testimonial-tab {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
}
.testimonial-tab:hover { color: #334155; }
.testimonial-tab.active { color: #fff; }
.testimonial-tab:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 2px;
}
.testimonial-video-section[hidden] {
  display: none;
}
.testimonial-video-section {
  padding: 28px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}
.testimonial-video-section.is-changing {
  opacity: 0;
  transform: translateY(10px);
}
.testimonial-video-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 22px;
}
.testimonial-video-label {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.testimonial-video-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.testimonial-video-heading > p {
  max-width: 610px;
  margin: 0;
  color: #64748b;
  font-size: 0.93rem;
  line-height: 1.65;
}
.testimonial-video-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.testimonial-video-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-video-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 34px rgba(30, 58, 138, 0.12);
}
.testimonial-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  background: #0f172a;
  cursor: pointer;
}
.testimonial-video-trigger > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-video-card:hover .testimonial-video-trigger > img {
  transform: scale(1.025);
}
.testimonial-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 35%, rgba(15, 23, 42, 0.56) 100%);
}
.testimonial-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.24);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.testimonial-video-play svg {
  width: 23px;
  height: 23px;
  margin-left: 3px;
}
.testimonial-video-trigger:hover .testimonial-video-play,
.testimonial-video-trigger:focus-visible .testimonial-video-play {
  background: var(--navy);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}
.testimonial-video-trigger:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.45);
  outline-offset: -3px;
}
.testimonial-video-product {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(8px);
}
.testimonial-video-body {
  padding: 20px;
}
.testimonial-video-campus {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-video-body h4 {
  min-height: 48px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}
.testimonial-video-person {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}
.testimonial-video-person b,
.testimonial-video-person small {
  display: block;
}
.testimonial-video-person b {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.4;
}
.testimonial-video-person small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.4;
}
.testimonial-video-note {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: right;
}
.testimonial-carousel-wrap { position: relative; }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}
.testimonial-track.is-changing {
  opacity: 0;
  transform: translateY(8px);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 24px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: #dbeafe;
  box-shadow: 0 14px 30px rgba(30, 58, 138, 0.1);
}
.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.testimonial-quote-icon {
  width: 32px;
  height: 32px;
  color: var(--navy);
  opacity: 0.15;
}
.testimonial-product {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.testimonial-product::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.testimonial-product[data-product="lms"] {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}
.testimonial-product[data-product="feeder"] {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}
.testimonial-product[data-product="mobile"] {
  border-color: #ddd6fe;
  background: #f5f3ff;
  color: #6d28d9;
}
.testimonial-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}
.testimonial-card > p {
  flex: 1;
  margin: 0 0 24px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}
.testimonial-person {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.testimonial-person b {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.35;
}
.testimonial-person > span:last-child > span,
.testimonial-person > span:last-child > small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.35;
}
.testimonial-person small {
  color: var(--navy);
  font-weight: 600;
}
.testimonial-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dbeafe;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
}
.testimonial-control svg { width: 20px; height: 20px; }
.testimonial-control:disabled { opacity: 0.35; cursor: default; }
.testimonial-prev { left: -21px; }
.testimonial-next { right: -21px; }
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 1px;
  margin-top: 20px;
}
.testimonial-dot {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
}
.testimonial-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: width 0.25s ease, background 0.25s ease;
}
.testimonial-dot.active::before {
  width: 20px;
  background: var(--navy);
}
.testimonial-empty {
  margin-top: 36px;
  color: #64748b;
  text-align: center;
}

/* ── Trust Strip / Logo Grid ── */
.trust-strip { background: #f8fafc; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.partner-logo img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s;
}
.partner-logo:hover img { filter: grayscale(0); }

/* ── Article Cards ── */
.articles-section {
  padding: 76px 0;
  background: #f8fafc;
}
.articles-container {
  width: min(1248px, calc(100% - 48px));
  margin-inline: auto;
}
.articles-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}
.articles-heading > div { max-width: 750px; }
.articles-heading .section-title {
  margin: 6px 0 0;
  text-align: left;
}
.articles-heading .section-copy {
  max-width: 720px;
  margin: 14px 0 0;
  text-align: left;
}
.articles-all-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.articles-all-link svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}
.articles-all-link:hover svg { transform: translate(3px, -3px); }
.articles-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(420px, .88fr);
  gap: 22px;
  align-items: stretch;
}
.articles-supporting {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .045);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.article-card:hover {
  border-color: #a9c8f5;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(30, 58, 138, .11);
}
.article-card-link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.article-card-link:focus-visible,
.articles-all-link:focus-visible,
.articles-mobile-cta a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 3px;
}
.article-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, #eaf4ff, #f8fbff);
}
.article-media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #7ca5d8;
}
.article-media-fallback svg {
  width: 42px;
  height: 42px;
}
.article-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
  font-size: 0;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.23, 1, .32, 1);
}
.article-media img[hidden] { display: none; }
.article-card:hover .article-media img { transform: scale(1.025); }
.featured-article .article-card-link {
  grid-template-rows: auto 1fr;
}
.featured-article .article-media { aspect-ratio: 16 / 6.4; }
.article-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
}
.article-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
}
.article-tags {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  white-space: nowrap;
}
.article-category {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  overflow: hidden;
  border-radius: 5px;
  background: #eaf3ff;
  color: #1e4d98;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-tag-more {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 26px;
  min-height: 24px;
  padding: 4px 7px;
  place-items: center;
  border: 1px solid #dbeafe;
  border-radius: 5px;
  background: #f8fbff;
  color: #315b96;
  cursor: help;
  font-size: .68rem;
  font-weight: 750;
  line-height: 1;
}
.article-meta time {
  flex: 0 0 auto;
  color: #64748b;
  font-size: .74rem;
  font-weight: 500;
  white-space: nowrap;
}
.article-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.4;
}
.featured-article h3 {
  max-width: 620px;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.32;
}
.article-content > p {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  color: #64748b;
  font-size: .88rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.featured-article .article-content > p {
  max-width: 650px;
  -webkit-line-clamp: 3;
}
.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
}
.article-author {
  color: #64748b;
  font-size: .75rem;
  font-weight: 500;
}
.article-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 750;
}
.article-read svg {
  width: 17px;
  height: 17px;
  transition: transform .25s ease;
}
.article-card:hover .article-read svg { transform: translateX(4px); }
.compact-article .article-card-link {
  grid-template-columns: minmax(155px, .82fr) minmax(0, 1.18fr);
}
.compact-article .article-media { min-height: 100%; }
.compact-article .article-content { padding: 18px; }
.compact-article h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 1rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.compact-article .article-content > p { display: none; }
.compact-article .article-footer { padding-top: 14px; }
.compact-article .article-read {
  width: 32px;
  height: 32px;
  justify-content: center;
  border-radius: 50%;
  background: #eff6ff;
}
.articles-mobile-cta { display: none; }

@media (prefers-reduced-motion: reduce) {
  .testimonial-video-section,
  .testimonial-track {
    transition: none;
  }
  .testimonial-video-section.is-changing,
  .testimonial-track.is-changing {
    transform: none;
  }
  .article-card,
  .article-media img,
  .article-read svg,
  .articles-all-link svg {
    transition: none;
  }
  .article-card:hover,
  .article-card:hover .article-media img,
  .article-card:hover .article-read svg,
  .articles-all-link:hover svg {
    transform: none;
  }
}

/* ── Footer ── */
#penawaran {
  border-color: #e2e8f0 !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr 1.15fr;
  gap: 40px;
}
.footer-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-menu h4, .footer-contact h4 {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--ink);
}
.footer-menu ul, .footer-contact ul {
  display: grid;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu a, .footer-contact a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-contact a:hover { color: var(--navy); }
.footer-contact a { display: block; }

.social-dot {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-dot:hover {
  background: var(--navy);
  color: #fff;
}

/* ── Newsletter ── */
.footer-social-icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-social-icon:hover {
  background: #e2e8f0;
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-social-icon:focus-visible,
.footer-navigation a:focus-visible,
.footer-contact-reference a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .28);
  outline-offset: 3px;
}
.footer-navigation a,
.footer-contact-reference a {
  color: #64748b;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-navigation a:hover,
.footer-contact-reference a:hover { color: var(--navy); }
.footer-contact-reference ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact-reference li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-contact-reference li svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #94a3b8;
}
.footer-contact-reference li,
.footer-contact-reference a {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) and (max-width: 1179px) {
  .footer-main-grid {
    grid-template-columns: minmax(180px, .72fr) minmax(0, 2.28fr) !important;
    column-gap: 40px;
    row-gap: 40px;
  }
  .footer-main-grid > div:first-child {
    grid-column: 1 !important;
  }
  .footer-main-grid > div:first-child .flex {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-main-grid .footer-navigation {
    grid-column: 2 !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .footer-main-grid .footer-contact-reference {
    grid-column: 1 / -1 !important;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
  }
  .footer-main-grid .footer-contact-reference ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 32px;
  }
}
.footer-newsletter {
  margin-bottom: 48px;
  padding: 28px 30px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}
.newsletter-panel {
  margin-top: 46px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 0;
}
.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #fff;
  font-size: 0.875rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, .1);
}
.newsletter-form input[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .09);
}
.newsletter-form button {
  min-width: 126px;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #16327A; }
.newsletter-form button:disabled {
  cursor: wait;
  opacity: .7;
}
.newsletter-message {
  margin: -10px 0 0;
  font-size: .82rem;
  font-weight: 600;
}
.newsletter-message[data-state="success"] { color: #059669; }
.newsletter-message[data-state="error"] { color: #dc2626; }
.newsletter-message[hidden] { display: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
  font-size: 12px;
}

/* ── Scroll-to-Top Button ── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover {
  background: #16327A;
  transform: translateY(-2px);
}

/* Fix iPad Safari viewport shift */
@supports (bottom: env(safe-area-inset-bottom)) {
  #scroll-top { bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); }
}

/* ── Responsive ── */
@media (max-width: 1179px) {
  html { scroll-padding-top: 104px; }
  .hero-grid {
    background-color: #f8fafc;
    background-image: none;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .academic-journey-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-responsive-visual {
    display: flex;
    width: calc(100% + 3rem);
    max-width: none;
    margin: 4px auto 0;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    justify-content: center;
  }
  .hero-responsive-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .desktop-nav,
  .desktop-actions {
    display: none !important;
  }
  #menu-button {
    display: grid !important;
  }
  #mobile-menu {
    display: block !important;
  }
  .ecosystem-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .ecosystem-selector {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
  }
  .ecosystem-diagram { width: min(100%, 560px); }
  .ecosystem-detail { padding: 30px; }
  .articles-editorial { grid-template-columns: 1fr; }
  .articles-supporting {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .compact-article .article-card-link {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .compact-article .article-media {
    min-height: 0;
    aspect-ratio: 16 / 8.7;
  }
}

@media (max-width: 1023px) {
  .nav-mega { display: none; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-menu { grid-column: span 2; }
  .section-title { font-size: 2rem; }
  .testimonial-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .articles-section { padding: 72px 0; }
  .articles-editorial { grid-template-columns: 1fr; }
  .articles-supporting {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .compact-article .article-card-link {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .compact-article .article-media {
    min-height: 0;
    aspect-ratio: 16 / 8.7;
  }
}

@media (max-width: 900px) {
  .role-pill-scroll {
    justify-content: flex-start !important;
    margin-right: -24px;
    padding-right: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .role-pill-scroll::-webkit-scrollbar { display: none; }
  .role-pill-nav {
    flex: 0 0 auto;
  }
  .testimonial-video-heading {
    display: block;
  }
  .testimonial-video-heading > p {
    margin-top: 10px;
  }
  .testimonial-video-track {
    display: flex;
    gap: 16px;
    padding-right: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .testimonial-video-track::-webkit-scrollbar { display: none; }
  .testimonial-video-card {
    flex: 0 0 min(72vw, 520px);
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .academic-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .academic-journey-card {
    min-height: 0;
    padding: 22px 20px;
  }
  .academic-journey-icon { width: 58px; height: 58px; }
  .academic-journey-icon svg { width: 30px; height: 30px; }
  .academic-journey-actions { margin-top: 26px; }
  .academic-journey-actions .btn-primary { width: 100%; }
  .hero-grid .grid { text-align: center; }
  .hero-grid .eyebrow { justify-content: center; }
  .hero-grid .hero-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    min-width: 0;
    gap: 28px;
    padding-top: 24px;
    padding-bottom: 56px;
  }
  .hero-grid .hero-inner > * { min-width: 0; }
  .hero-grid .hero-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.5vw, 2.5rem) !important;
    line-height: 1.1;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero-grid .hero-break { display: none; }
  .hero-grid .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }
  .hero-grid .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 28px;
  }
  .hero-grid .hero-actions a {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 0.75rem !important;
    font-size: 0.8rem;
  }
  .hero-grid .hero-stats {
    display: flex !important;
    max-width: 100%;
    justify-content: center !important;
    gap: 24px;
    margin-top: 28px;
  }
  .hero-stats .text-4xl { font-size: 2rem; }
  .hero-showcase { min-height: 260px; margin-top: 8px; }
  .hero-responsive-visual {
    width: calc(100% + 3rem);
    max-width: none;
    margin-top: 0;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .dashboard-window { position: relative; top: auto; right: auto; width: 100%; transform: none; }
  .float-card { display: none; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid, .footer-menu { grid-template-columns: 1fr; }
  .footer-menu { grid-column: auto; }
  .testimonial-filter-wrap {
    justify-content: flex-start;
    margin-right: -24px;
    padding-right: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .testimonial-filter-wrap::-webkit-scrollbar { display: none; }
  .testimonial-tabs { flex: 0 0 auto; }
  .testimonial-tab { min-height: 44px; padding: 9px 15px; font-size: 0.8rem; }
  .testimonial-video-section {
    margin-right: -24px;
    padding: 22px 24px 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .testimonial-video-heading {
    display: block;
    padding-right: 24px;
    margin-bottom: 18px;
  }
  .testimonial-video-heading > p {
    margin-top: 10px;
    font-size: 0.86rem;
  }
  .testimonial-video-track {
    display: flex;
    gap: 14px;
    padding-right: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .testimonial-video-track::-webkit-scrollbar { display: none; }
  .testimonial-video-card {
    flex: 0 0 clamp(270px, 78vw, 340px);
    scroll-snap-align: start;
  }
  .testimonial-video-body { padding: 17px; }
  .testimonial-video-body h4 { min-height: 0; }
  .testimonial-video-person {
    display: block;
  }
  .testimonial-video-note {
    display: block;
    margin-top: 8px;
    text-align: left;
  }
  .testimonial-carousel-wrap { margin-right: -24px; }
  .testimonial-track {
    display: flex;
    gap: 16px;
    padding-right: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 min(84vw, 360px);
    min-height: 370px;
    scroll-snap-align: start;
  }
  .testimonial-control { display: none !important; }
  .testimonial-dots { display: flex; }
  .articles-container { width: min(100% - 40px, 720px); }
  .articles-heading {
    display: block;
    margin-bottom: 28px;
  }
  .articles-heading .section-copy { margin-top: 12px; }
  .articles-all-link { display: none; }
  .articles-supporting {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compact-article .article-card-link {
    grid-template-columns: minmax(145px, .72fr) minmax(0, 1.28fr);
    grid-template-rows: none;
  }
  .compact-article .article-media {
    min-height: 100%;
    aspect-ratio: auto;
  }
  .articles-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }
  .articles-mobile-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .articles-mobile-cta svg {
    width: 17px;
    height: 17px;
  }
  .ecosystem-experience { overflow: hidden; }
  .ecosystem-selector { padding: 22px 18px 14px; }
  .ecosystem-selector-heading {
    justify-content: flex-start;
    min-height: 0;
  }
  .ecosystem-diagram {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    gap: 10px;
    margin-top: 20px;
    padding: 2px 2px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(96, 165, 250, .45) transparent;
  }
  .ecosystem-diagram::-webkit-scrollbar { height: 4px; }
  .ecosystem-diagram::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(96, 165, 250, .45);
  }
  .ecosystem-orbit,
  .ecosystem-center-glow,
  .ecosystem-connections { display: none; }
  .ecosystem-diagram::before { display: none; }
  .ecosystem-node,
  .node-center {
    position: static;
    flex: 0 0 148px;
    width: 148px;
    height: 118px;
    min-height: 118px;
    border-radius: 8px;
    transform: none;
    scroll-snap-align: start;
  }
  .ecosystem-node:hover { transform: translateY(-2px); }
  .node-center img { width: 38px; height: 38px; }
  .node-center strong { font-size: .78rem; }
  .ecosystem-detail { padding: 24px 20px 20px; }
  .ecosystem-benefits {
    grid-template-columns: 1fr;
    padding: 4px 0;
  }
  .ecosystem-benefits > div,
  .ecosystem-benefits > div:first-child {
    padding: 12px 0;
    border-top: 1px solid rgba(148, 163, 184, .15);
    border-left: 0;
  }
  .ecosystem-benefits > div:first-child { border-top: 0; }
  .ecosystem-benefits small { font-size: .68rem; }
  .ecosystem-ui-placeholder {
    grid-template-columns: 96px minmax(0, 1fr);
    height: 275px;
  }
  .placeholder-sidebar { padding: 14px 10px; }
  .placeholder-main { padding: 13px; }
  .placeholder-stats { gap: 7px; }
  .placeholder-stats span { height: 46px; }
  .placeholder-panels {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .placeholder-chart { height: 145px; }
  .placeholder-donut { display: none; }
  .ecosystem-proof {
    align-items: flex-start;
    margin: 0 12px 12px;
  }
}

@media (max-width: 640px) {
  .newsletter-form,
  .footer-bottom,
  .educast-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-bottom { gap: 10px; }
  .footer-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .footer-navigation > div:last-child { grid-column: 1 / -1; }
  .footer-newsletter {
    margin-bottom: 36px;
    padding: 22px 18px;
  }
  .newsletter-form button { width: 100%; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.75rem; }
  .articles-section { padding: 56px 0; }
  .articles-container { width: min(100% - 32px, 520px); }
  .articles-editorial { gap: 16px; }
  .featured-article .article-media,
  .compact-article .article-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .compact-article .article-card-link {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .article-content,
  .compact-article .article-content { padding: 18px; }
  .featured-article h3 { font-size: 1.25rem; }
  .compact-article h3 { font-size: 1rem; }
  .compact-article .article-content > p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
  .article-meta time {
    margin: 0;
  }
  .article-footer { padding-top: 16px; }
  .articles-mobile-cta .btn-secondary { width: 100%; }
}

@media (max-width: 480px) {
  .ecosystem-detail-heading { gap: 12px; }
  .ecosystem-detail-heading > img {
    width: 44px;
    height: 44px;
  }
  .ecosystem-detail-heading h3 { font-size: 1.45rem; }
  .ecosystem-detail-heading p { font-size: .8rem; }
  .ecosystem-ui-placeholder {
    grid-template-columns: 1fr;
    height: 250px;
  }
  .placeholder-sidebar { display: none; }
  .placeholder-main { padding: 14px; }
  .placeholder-chart { height: 142px; }
  .ecosystem-detail-link {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-point,
  .ecosystem-line,
  .ecosystem-center-glow,
  .ecosystem-node,
  .ecosystem-node.active,
  .ecosystem-node.is-preview { animation: none; }
  .ecosystem-node,
  .ecosystem-line,
  .ecosystem-detail-link { transition: none; }
  .ecosystem-detail.is-switching > * { animation: none; }
}

/* ── Why Suteki: immersive campus proof section ── */
html { scroll-padding-top: 88px; overflow-x: clip; }
body { overflow-x: clip; }
.why-suteki {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 88px;
  min-height: 940px;
  padding: 54px 0 32px;
  background-color: #eef7ff;
  background-image: url('https://suteki.co.id/wp-content/uploads/2026/07/BG-university.webp');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.why-suteki-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(246,251,255,.89) 30%, rgba(218,239,255,.3) 58%, rgba(8,55,104,.08) 100%);
  pointer-events: none;
}
.why-suteki-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.why-suteki-heading {
  width: min(740px, 100%);
  margin: 0 auto;
  text-align: center;
}
.why-suteki-heading .eyebrow { letter-spacing: 0; }
.why-suteki-heading h2 {
  margin-top: 13px;
  color: #0b1736;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.03;
}
.why-suteki-heading > p:last-child {
  width: min(680px, 100%);
  margin: 16px auto 0;
  color: #52627c;
  font-size: 1rem;
  line-height: 1.6;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(930px, 100%);
  margin: 32px auto 0;
  overflow: hidden;
  border: 1px solid rgba(191,219,254,.82);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(30,58,138,.11);
  backdrop-filter: blur(14px);
}
.why-stat {
  display: grid;
  grid-template-columns: 48px max-content;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: 20px 18px;
}
.why-stat + .why-stat { border-left: 1px solid #dbeafe; }
.why-stat-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #bae6fd;
  border-radius: 50%;
  background: #e0f2fe;
  color: #1683e6;
}
.why-stat-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 23px;
  height: 23px;
  transform: translate(-50%, -50%);
}
.why-stat p, .why-stat strong, .why-stat span { display: block; }
.why-stat p { margin: 0; }
.why-stat strong {
  color: #0b1736;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}
.why-stat:last-child strong { font-size: 1.08rem; line-height: 1.08; }
.why-stat:last-child p { min-width: 104px; }
.why-stat span {
  margin-top: 5px;
  color: #42526c;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
}
.why-stat-mobile-break { display: none; }
.why-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.why-feature {
  position: relative;
  min-height: 226px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(147,197,253,.72);
  border-top: 3px solid #1397ff;
  border-radius: 18px;
  background: rgba(255,255,255,.91);
  box-shadow: 0 16px 36px rgba(30,64,175,.12);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.why-feature:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 22px 44px rgba(30,64,175,.18);
}
.why-feature-number {
  display: inline-grid;
  min-width: 42px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #d9efff;
  color: #0759b8;
  font-size: .8rem;
  font-weight: 800;
}
.why-feature-art {
  position: absolute;
  top: 16px;
  right: 19px;
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(30,64,175,.15));
}
.why-feature h3 {
  max-width: calc(100% - 70px);
  margin-top: 15px;
  color: #0b1736;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}
.why-feature > p {
  margin-top: 10px;
  color: #53627a;
  font-size: .79rem;
  line-height: 1.55;
}
.why-feature ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.why-feature li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f5ff;
  color: #0759b8;
  font-size: .7rem;
  font-weight: 700;
}
.why-feature li svg { width: 13px; height: 13px; stroke-width: 3; }
.why-stories-shell {
  position: relative;
  width: min(1280px, 100%);
  margin: 76px auto 0;
}
.why-stories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding: 8px 0 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.why-stories::-webkit-scrollbar { display: none; }
.why-stories article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(191,219,254,.8);
  border-radius: 12px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 10px 24px rgba(30,58,138,.13);
  scroll-snap-align: center;
}
.why-stories article > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.why-stories article > span img {
  display: block;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}
.why-stories p, .why-stories strong, .why-stories small { display: block; }
.why-stories p { min-width: 0; }
.why-stories strong {
  color: #143876;
  font-size: .73rem;
  line-height: 1.2;
}
.why-stories small { margin-top: 3px; color: #64748b; font-size: .63rem; }
.why-trust-strip {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(191,219,254,.8);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
  backdrop-filter: blur(14px);
}
.why-trust-strip > p {
  color: #0b1736;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}
.why-trust-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}
.why-trust-logos span {
  display: grid;
  grid-template-rows: 34px auto;
  justify-items: center;
  align-items: center;
  gap: 7px;
  min-height: 64px;
  padding: 0 10px;
  border-left: 1px solid #dbe3ed;
  color: #536075;
  text-align: center;
  font-size: .61rem;
  line-height: 1.15;
}
.why-trust-logos span:first-child { border-left: 0; }
.why-trust-logos img {
  display: block;
  max-width: 82px;
  max-height: 32px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .82;
}
.why-trust-logos b {
  color: #334155;
  font-size: .61rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .why-suteki { min-height: 0; padding-bottom: 36px; background-position: center bottom; }
  .why-suteki-inner { width: min(900px, calc(100% - 36px)); }
  .why-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-stat:nth-child(3) { border-left: 0; border-top: 1px solid #dbeafe; }
  .why-stat:nth-child(4) { border-top: 1px solid #dbeafe; }
  .why-features { grid-template-columns: 1fr; width: min(680px, 100%); margin-inline: auto; }
  .why-feature { min-height: 0; }
  .why-stories-shell { margin-top: 40px; }
  .why-stories {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 4px 14px;
  }
  .why-stories article {
    flex: 0 0 250px;
  }
  .why-trust-strip { grid-template-columns: 1fr; }
  .why-trust-strip > p { text-align: center; }
  .why-trust-logos { grid-template-columns: repeat(3, 1fr); }
  .why-trust-logos span:nth-child(3n + 1) { border-left: 0; }
}
@media (max-width: 640px) {
  .why-suteki { padding-top: 42px; background-size: auto 55%; }
  .why-suteki-inner { width: min(100% - 28px, 520px); }
  .why-suteki-heading h2 { font-size: 2rem; line-height: 1.08; }
  .why-suteki-heading > p:last-child { font-size: .9rem; }
  .why-stats { grid-template-columns: 1fr 1fr; margin-top: 26px; }
  .why-stat { grid-template-columns: 38px max-content; align-items: center; justify-content: center; gap: 10px; padding: 16px 12px; }
  .why-stat:last-child {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 8px;
  }
  .why-stat-icon { width: 38px; height: 38px; }
  .why-stat-icon svg { width: 19px; height: 19px; }
  .why-stat strong { font-size: 1.3rem; }
  .why-stat:last-child .why-stat-icon { width: 34px; height: 34px; }
  .why-stat:last-child strong { font-size: .78rem; line-height: 1.05; }
  .why-stat:last-child p { min-width: 0; }
  .why-stat span { max-width: 94px; font-size: .62rem; }
  .why-stat:last-child span { max-width: 100%; font-size: .58rem; }
  .why-stat-mobile-break { display: inline; }
  .why-feature { padding: 21px 18px 18px; }
  .why-feature-art { width: 57px; height: 57px; right: 15px; }
  .why-feature h3 { max-width: calc(100% - 55px); font-size: 1.05rem; }
  .why-feature ul { align-items: flex-start; flex-direction: column; }
  .why-stories-shell { width: 100%; }
  .why-stories article { flex-basis: 235px; }
  .why-trust-strip { padding: 18px 14px; }
  .why-trust-logos { grid-template-columns: repeat(2, 1fr); }
  .why-trust-logos span { border-top: 1px solid #e2e8f0; border-left: 0; padding: 10px 8px; }
  .why-trust-logos span:nth-child(-n + 2) { border-top: 0; }
}

@media (max-width: 900px) {
  #scroll-top { display: none !important; }
}
