:root {
  --blue-900: #15346b;
  --blue-700: #1f4fbf;
  --blue-600: #2a62de;
  --text-900: #1f2937;
  --text-700: #4b5563;
  --bg-50: #f8fafc;
  --bg-100: #f1f5f9;
  --white: #ffffff;
  --border: #dbe3ef;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-900);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-700);
  color: var(--white);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--blue-900);
}

.section p {
  margin: 0;
}

.section-narrow {
  max-width: 760px;
}

.muted {
  background: var(--bg-50);
}

.lead {
  color: var(--text-700);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  margin-bottom: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--blue-900);
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
  cursor: pointer;
}

.menu-toggle-line {
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-link {
  text-decoration: none;
  color: var(--text-700);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--blue-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 20px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--blue-600);
  box-shadow: var(--shadow-md);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  color: var(--blue-700);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.hero {
  background: var(--white);
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.hero-content {
  display: grid;
  gap: 18px;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-image-frame {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: var(--white);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid #c9d8f5;
  border-radius: 999px;
  color: var(--blue-900);
  background: #eef4ff;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(31, 79, 191, 0.08);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-700);
  flex: 0 0 auto;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
  color: var(--blue-900);
}

.hero .lead {
  margin-bottom: 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

.hero-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text-700);
}

.hero-trust-list li::before {
  content: "\2713\0020";
  color: var(--blue-700);
  font-weight: 700;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.hero-card h2 {
  margin: 0 0 10px;
}

.hero-card p {
  color: var(--text-700);
  margin-bottom: 18px;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.06rem;
  color: var(--blue-900);
}

.info-card p {
  color: var(--text-700);
}

.service-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.service-card h3,
.service-card p {
  margin: 0;
}

.service-media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.service-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.problem-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.problem-card h3 {
  margin: 0;
}

.problem-card p {
  margin: 0;
}

.problem-icon {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-inline: auto;
}

#solusi {
  padding-top: 82px;
  padding-bottom: 82px;
}

.solusi-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.solusi-content .lead {
  margin-bottom: 20px;
}

.solusi-image-frame {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.solusi-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.avatar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  text-align: center;
}

.avatar-circle {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 3px solid var(--blue-700);
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: var(--blue-700);
  background: var(--bg-50);
  overflow: hidden;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
}

.avatar-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-700);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 14px;
}

.stat-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  color: var(--blue-700);
}

.stat-item span {
  color: var(--text-700);
  font-size: 0.92rem;
}

.why-wrap {
  display: grid;
  gap: 22px;
  background: #f4f8ff;
  border: 1px solid #d9e5fb;
  border-radius: 30px;
  padding: 24px;
}

.why-intro .lead {
  margin-bottom: 0;
  max-width: 780px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  position: relative;
  border: 1px solid #d4e2fc;
  background: var(--white);
  border-radius: 26px;
  padding: 18px 16px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  align-content: start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #edf4ff;
  top: -36px;
  right: -24px;
  z-index: 0;
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: #c8d9fb;
  box-shadow: 0 14px 28px rgba(21, 52, 107, 0.12);
}

.why-icon {
  width: 56px;
  height: 56px;
  color: inherit;
  display: grid;
  place-items: center;
}

.why-icon-image {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.why-kpi {
  margin: 0 0 2px;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-900);
  background: #eef4ff;
  border: 1px solid #d4e2fc;
  border-radius: 999px;
  padding: 4px 10px;
}

.why-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  color: var(--blue-900);
  max-width: 20ch;
}

.why-card p {
  margin: 0;
  color: var(--text-700);
  max-width: 28ch;
}

.steps {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.steps li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.steps li::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(100% - 2px);
  width: 14px;
  height: 2px;
  background: #c8d8f5;
}

.steps li:last-child::after {
  display: none;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue-700);
}

.steps h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--blue-900);
}

.steps p {
  margin: 0;
  color: var(--text-700);
}

.testimoni-subtitle {
  margin: 6px 0 0;
  color: var(--text-700);
}

.testimonial-carousel {
  margin-top: 18px;
  padding: 0;
}

.testimonial-viewport {
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  touch-action: pan-y;
  user-select: none;
}

.testimonial-track {
  display: flex;
  transform: translateX(0);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-slide {
  min-width: 100%;
  margin: 0;
  padding: 0 52px;
  display: grid;
  place-items: center;
}

.testimonial-slide img {
  display: block;
  max-width: 100%;
  width: auto;
  height: clamp(360px, 62vh, 640px);
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(21, 52, 107, 0.12);
}

.testimonial-controls {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(21, 52, 107, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-700);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(3px);
}

.testimonial-nav:hover {
  border-color: rgba(21, 52, 107, 0.36);
  background: rgba(255, 255, 255, 0.98);
}

.testimonial-nav.prev {
  left: 8px;
}

.testimonial-nav.next {
  right: 8px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #c8d7f4;
  cursor: pointer;
  padding: 0;
}

.testimonial-dot.is-active {
  width: 20px;
  border-radius: 999px;
  background: var(--blue-700);
}

.faq {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: clip;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #c9daf8;
}

.faq-item h3 {
  margin: 0;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 18px 18px 16px;
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--bg-50);
  flex: 0 0 auto;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}

.faq-toggle:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: -2px;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  color: var(--text-700);
  padding: 0 18px 18px;
  line-height: 1.65;
}

.closing {
  text-align: center;
}

.closing-card {
  border: 1px solid #d0def7;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(21, 52, 107, 0.1);
  padding: 34px 28px;
}

.closing-card h2 {
  margin-bottom: 12px;
}

.closing-card .lead {
  margin: 0 auto 20px;
  max-width: 58ch;
}

.site-footer {
  background: var(--blue-900);
  color: #dbe6ff;
  padding: 40px 0 112px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 28px;
}

.footer-brand-block {
  display: grid;
  gap: 6px;
}

.footer-logo {
  width: min(210px, 100%);
  height: auto;
  display: block;
}

.footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  color: var(--white);
  margin: 0;
}

.footer-subtitle {
  margin: 0;
  color: #bcd0fb;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-self: end;
  width: min(360px, 100%);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  padding: 10px 12px;
  color: #e7eeff;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.footer-contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.sticky-cta {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  box-shadow: 0 -8px 16px rgba(15, 23, 42, 0.08);
}

.floating-cta {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 78px;
  z-index: 61;
  text-decoration: none;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 11px 14px;
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header .btn-sm {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    z-index: 65;
  }

  .main-nav.is-open {
    max-height: 240px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav .nav-link {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .nav-link:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .solusi-wrap,
  .about-grid,
  .cards-3,
  .cards-4,
  .stats-row {
    grid-template-columns: 1fr;
  }

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

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

  .steps li::after {
    display: none;
  }

  .why-wrap {
    border-radius: 24px;
    padding: 18px;
  }

  .why-card {
    border-radius: 22px;
    padding: 16px 14px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-side {
    gap: 14px;
  }

  .section {
    padding: 72px 0;
  }

  #solusi {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .solusi-wrap {
    gap: 16px;
    padding: 22px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-brand-block {
    justify-items: center;
  }

  .footer-contact {
    justify-self: center;
    width: min(420px, 100%);
    justify-items: center;
  }

  .footer-contact-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 38px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .hero-content {
    gap: 14px;
  }

  .hero-cta-row {
    margin-top: 0;
  }

  .hero-side {
    gap: 12px;
  }

  .hero-card {
    padding: 22px;
  }

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

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

  .why-wrap {
    border-radius: 18px;
    padding: 14px;
  }

  .why-card {
    border-radius: 18px;
  }

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

  .closing-card .btn {
    width: 100%;
  }

  .solusi-wrap {
    padding: 18px;
  }

  .solusi-image {
    aspect-ratio: 16 / 10;
  }

  .testimonial-carousel {
    padding: 0;
  }

  .testimonial-slide {
    padding: 0 40px;
  }

  .testimonial-slide img {
    height: clamp(300px, 56vh, 500px);
    border-radius: 14px;
  }

  .testimonial-nav {
    width: 34px;
    height: 34px;
  }

  .testimonial-nav.prev {
    left: 4px;
  }

  .testimonial-nav.next {
    right: 4px;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }

  .floating-cta {
    display: inline-flex;
    right: 24px;
    bottom: 88px;
  }
}
