
/* ======================================================
   RESET & BASE — CEK OVERFLOW
   ====================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #171A21;
  background: #FAFAFB;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  color: #171A21;
}
p {
  margin: 0;
}
section {
  position: relative;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

:focus-visible {
  outline: 3px solid #6C5CE7;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ======================================================
   DESIGN TOKENS
   ====================================================== */
:root {
  --ink: #171A21;
  --ink-soft: #3A3F4C;
  --muted: #6B7080;
  --coral: #FF3B4E;
  --coral-dark: #E32B3D;
  --green: #00C48C;
  --violet: #6C5CE7;
  --bg: #FAFAFB;
  --bg-tint: #FFF4F4;
  --card: #FFFFFF;
  --border: #ECEEF3;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -24px rgba(23,26,33,0.22);
  --shadow-pop: 0 30px 60px -20px rgba(255,59,78,0.28);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--coral-dark);
  background: var(--bg-tint);
  border: 1px solid #FFD9DD;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px) scale(.99);
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(255, 59, 78, 0.55);
}
.btn-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 34px -10px rgba(255, 59, 78, 0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #E2E4EA;
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 30px -14px rgba(23, 26, 33, 0.35);
}
.btn-light:hover {
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ============ BRAND ============ */
.brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: #171A21;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.brand .accent {
  color: #FF3B4E;
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF3B4E;
  margin-left: 6px;
  flex-shrink: 0;
}
.brand.brand-nav {
  font-size: 26px;
}
.brand.brand-nav .brand-dot {
  width: 6px;
  height: 6px;
  margin-left: 4px;
}
.brand.brand-footer {
  font-size: 30px;
}
.brand.brand-footer,
.brand.brand-footer .accent {
  color: #fff;
}

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 251, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
  width: 100%;
}
.navbar.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(23, 26, 33, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
  width: 100%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width .25s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--coral);
}
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======================================================
   HERO ABOUT
   ====================================================== */
.hero-about {
  padding: 80px 0 100px;
  background:
    radial-gradient(600px 400px at 10% 30%, rgba(108, 92, 231, 0.10), transparent 60%),
    radial-gradient(500px 300px at 90% 10%, rgba(255, 59, 78, 0.10), transparent 55%);
  overflow: hidden;
  position: relative;
}
.hero-about::after {
  content: "🧪";
  position: absolute;
  right: -60px;
  bottom: -40px;
  font-size: 280px;
  opacity: 0.04;
  pointer-events: none;
}
.hero-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-about h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.08;
  margin: 18px 0 20px;
}
.hero-about h1 .hl {
  color: var(--coral);
}
.hero-about .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-about-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
}
.hero-about-stats .stat span {
  font-size: 14px;
  color: var(--muted);
}

.about-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-illustration .orb {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 59, 78, 0.15), rgba(108, 92, 231, 0.08));
  position: absolute;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.about-illustration svg {
  width: 70%;
  max-width: 300px;
  position: relative;
  z-index: 1;
}

/* ======================================================
   SECTION
   ====================================================== */
.section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 16.5px;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}

/* ======================================================
   JOURNEY / TIMELINE
   ====================================================== */
.journey {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding: 24px 0 24px 56px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--coral);
}
.timeline-item .year {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  min-width: 60px;
  flex-shrink: 0;
}
.timeline-item .content h3 {
  font-size: 17px;
  margin-bottom: 4px;
}
.timeline-item .content p {
  font-size: 14px;
  color: var(--muted);
}

/* ======================================================
   VALUES
   ====================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.value-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ======================================================
   TEAM
   ====================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
}
.team-card h4 {
  font-size: 16px;
}
.team-card .role {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.team-card .bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ======================================================
   TESTIMONIALS ABOUT
   ====================================================== */
.testi-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testi-about-card .stars {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-about-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.testi-about-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-about-person .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.testi-about-person b {
  display: block;
  font-size: 14px;
}
.testi-about-person span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ======================================================
   CTA
   ====================================================== */
.cta {
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--coral) 0%, #FF6B78 55%, var(--violet) 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}
.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   FOOTER
   ====================================================== */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.footer-tag {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 16px 0 22px;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13.5px;
  margin-bottom: 18px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-pay span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 2px;
}
.footer-pay img {
  height: 22px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  object-fit: contain;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 980px) {
  .hero-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-about .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-about-stats {
    justify-content: center;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-illustration .orb {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    background: #fff;
    z-index: 120;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    visibility: hidden;
    width: 100%;
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta .btn-ghost {
    display: none;
  }

  .hero-about {
    padding: 48px 0 60px;
  }
  .hero-about h1 {
    font-size: clamp(30px, 6vw, 36px);
  }
  .hero-about .lead {
    font-size: 16px;
  }
  .hero-about-stats .stat b {
    font-size: 22px;
  }
  .hero-about-stats {
    gap: 24px;
  }

  .section {
    padding: 56px 0;
  }
  .section-head {
    margin-bottom: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .testi-about-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item {
    padding: 20px 0 20px 48px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .timeline-item::before {
    left: 10px;
    top: 28px;
    width: 12px;
    height: 12px;
  }
  .timeline::before {
    left: 16px;
  }
  .timeline-item .year {
    min-width: 50px;
    font-size: 13px;
  }
  .timeline-item .content h3 {
    font-size: 15px;
  }
  .timeline-item .content p {
    font-size: 13px;
  }

  .cta {
    padding: 40px 20px;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .brand.brand-footer {
    font-size: 26px;
  }
  .about-illustration .orb {
    width: 160px;
    height: 160px;
  }
  .about-illustration svg {
    width: 80%;
  }

  .value-card {
    padding: 24px 20px;
  }
  .testi-about-card {
    padding: 20px;
  }
  .team-card {
    padding: 20px 16px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 12px;
  }
  .brand.brand-nav {
    font-size: 22px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 18px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
  }
  .hero-about-stats .stat b {
    font-size: 19px;
  }
}
