/* ============================================
   SINWAZ — Company Profile Website
   PT Kreasinya Lewati Zaman
   Primary: #056cf2 | Accent: #069dfa
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --blue:       #056cf2;
  --blue-light: #069dfa;
  --blue-dark:  #0450c0;
  --black:      #0d0d0d;
  --grey-900:   #1a1a1a;
  --grey-700:   #3a3a3a;
  --grey-500:   #6b6b6b;
  --grey-300:   #b0b0b0;
  --grey-100:   #f4f4f5;
  --grey-50:    #fafafa;
  --white:      #ffffff;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.12);
  --font:       'Plus Jakarta Sans', sans-serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ---- Typography ---- */
.display-xl { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
.display-sm { font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 700; line-height: 1.35; }
.body-lg    { font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 400; line-height: 1.7; }
.body-md    { font-size: 1rem; line-height: 1.65; }
.body-sm    { font-size: 0.875rem; line-height: 1.6; }
.label      { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.text-blue  { color: var(--blue); }
.text-grey  { color: var(--grey-500); }
.text-white { color: var(--white); }

/* ---- Layout ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section.section--sm { padding: 64px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(5,108,242,.3); }
.btn-secondary {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }
.btn-white {
  background: var(--white); color: var(--blue);
}
.btn-white:hover { background: var(--grey-100); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--grey-700);
  border: 2px solid var(--grey-300);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---- Chip / Tag ---- */
.chip {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}
.chip-blue { background: rgba(5,108,242,.1); color: var(--blue); }
.chip-grey { background: var(--grey-100); color: var(--grey-700); }
.chip-dark { background: var(--black); color: var(--white); }

/* ---- Cards ---- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.06); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 28px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar__logo { display: flex; align-items: center; }
.navbar__logo img { height: 32px; width: auto; }
.navbar__nav { display: flex; align-items: center; gap: 8px; }
.navbar__link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--grey-700);
  transition: all var(--transition);
}
.navbar__link:hover, .navbar__link.active { color: var(--blue); background: rgba(5,108,242,.06); }
.navbar__cta { margin-left: 12px; }
.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.navbar__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all var(--transition);
}
.navbar__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 24px; border-top: 1px solid var(--grey-100);
  background: var(--white);
}
.navbar__mobile .navbar__link { width: 100%; }
.navbar__mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }
@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile.open { display: flex; }
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: 160px 0 96px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border-bottom: 1px solid rgba(5,108,242,.08);
}
.page-hero--dark {
  background: var(--grey-900); color: var(--white);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 32px; height: 3px;
  background: var(--blue); border-radius: 2px;
}
.section-eyebrow { margin-bottom: 48px; }

/* ---- dividers ---- */
.section--bg-light { background: var(--grey-50); }
.section--bg-blue  { background: var(--blue); color: var(--white); }
.section--bg-dark  { background: var(--grey-900); color: var(--white); }

/* ---- grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- Stat Block ---- */
.stat-block { text-align: center; padding: 24px; }
.stat-block__number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--blue); }
.stat-block__label  { font-size: 0.875rem; color: var(--grey-500); margin-top: 4px; }

/* ---- Quote Block ---- */
.quote-block {
  border-left: 4px solid var(--blue);
  padding: 20px 28px; background: var(--grey-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-block p { font-size: 1.1rem; font-style: italic; color: var(--grey-700); }
.quote-block cite { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; color: var(--grey-500); font-style: normal; }

/* ---- Badge Row ---- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---- Pill List ---- */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 6px 16px; background: var(--grey-100); color: var(--grey-700);
  border-radius: 100px; font-size: 0.875rem; font-weight: 500;
}

/* ---- Icon Box ---- */
.icon-box {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(5,108,242,.1); display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.25rem; flex-shrink: 0;
}

/* ---- Timeline ---- */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__item { display: flex; gap: 24px; padding-bottom: 40px; position: relative; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__line {
  display: flex; flex-direction: column; align-items: center;
}
.timeline__dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 5px;
}
.timeline__connector {
  width: 2px; flex: 1; background: var(--grey-100); margin-top: 6px;
}
.timeline__item:last-child .timeline__connector { display: none; }
.timeline__content { flex: 1; }

/* ---- Footer ---- */
footer {
  background: var(--grey-900); color: var(--grey-300);
  padding: 72px 0 40px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.9rem; color: var(--grey-300); transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--blue-light); }
.footer__bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.85rem; color: var(--grey-500); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  color: var(--grey-300); font-size: 0.9rem; transition: all var(--transition);
}
.footer__social a:hover { background: var(--blue); color: var(--white); }
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---- Utility ---- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.page-top { padding-top: 68px; } /* offset fixed nav */
