/* ============================
   CSS VARIABLES — COOL TONE
   ============================ */
:root {
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-400: #60A5FA;
  --blue-500: #4A90EA;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-700: #334155;
  --slate-900: #0F172A;
  --ice:       #E8F4FD;

  --primary:   var(--blue-500);
  --primary-d: var(--blue-600);
  --primary-l: var(--blue-50);
  --text:      var(--slate-700);
  --text-muted:var(--slate-400);
  --border:    var(--slate-200);
  --bg:        #FAFCFF;
  --white:     #ffffff;

  --radius:    16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(37, 99, 235, 0.06);
  --shadow:    0 4px 24px rgba(37, 99, 235, 0.10);
  --shadow-md: 0 8px 40px rgba(37, 99, 235, 0.15);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================
   CONTAINER
   ============================ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.12;
  color: var(--slate-900);
}

em { font-style: italic; color: var(--primary); }

/* ============================
   HERO LOAD ANIMATIONS
   ============================ */
.slide-up {
  opacity: 0;
  transform: translateY(28px);
  animation: slideUp 0.7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideRight 0.8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.animate-el {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.animate-el[data-dir="up"]    { transform: translateY(30px); }
.animate-el[data-dir="left"]  { transform: translateX(-36px); }
.animate-el[data-dir="right"] { transform: translateX(36px); }

.animate-el.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(74, 144, 234, 0.32);
}
.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 144, 234, 0.42);
}

.btn-ghost {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
}
.btn-ghost:hover {
  background: var(--slate-100);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.10);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--primary-l);
  color: var(--primary);
  font-size: 14px;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(74, 144, 234, 0.15);
}
.btn-nav:hover {
  background: var(--blue-100);
  box-shadow: 0 4px 14px rgba(74, 144, 234, 0.25);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--slate-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0 0 0;
  background: rgba(250, 252, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.scrolled {
  padding: 0px 0px 0 0;
  border-color: var(--border);
  background: rgba(250, 252, 255, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--slate-900);
}
.logo-text strong { font-weight: 700; color: var(--primary); }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open {
  max-height: 360px;
  border-top: 1px solid var(--border);
}
.mobile-menu-inner {
  padding: 12px 0px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 12px 12px 12px;
  border-bottom: 1px solid var(--slate-100);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--primary); }
.mobile-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

/* ============================
   SECTION UTILITIES
   ============================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-l);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  padding: 110px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(74,144,234,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(96,165,250,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-l);
  border: 1px solid var(--blue-200);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.tag-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.06;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--slate-900);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero Visual Card */
.hero-visual { position: relative; }

.hero-card-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.hcm-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hcm-icon { font-size: 28px; flex-shrink: 0; }
.hcm-info { flex: 1; }
.hcm-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-900);
}
.hcm-sub { font-size: 12px; color: var(--text-muted); }
.hcm-badge {
  width: 28px; height: 28px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.hcm-temp {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-100);
}
.temp-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  color: var(--primary);
  line-height: 1;
}
.temp-label { font-size: 13px; color: var(--text-muted); }

.hcm-bars { display: flex; flex-direction: column; gap: 12px; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bar-label {
  font-size: 12px;
  color: var(--text-muted);
  width: 72px;
  flex-shrink: 0;
}
.bar {
  flex: 1;
  height: 6px;
  background: var(--slate-100);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--blue-400), var(--primary));
  border-radius: 3px;
  animation: barGrow 1.2s var(--ease) 0.6s both;
}
@keyframes barGrow {
  from { width: 0; }
  to { width: var(--w); }
}
.bar-pct {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

.floating-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: chipFloat 4s ease-in-out infinite;
  z-index: 3;
}
.chip-1 { top: -20px; right: -10px; animation-delay: 0s; }
.chip-2 { bottom: -18px; left: -10px; animation-delay: 1.8s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================
   LAYANAN
   ============================ */
.layanan {
  padding: 96px 0;
  background: var(--white);
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.layanan-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  animation-delay: var(--card-delay, 0s);
  position: relative;
  overflow: hidden;
}
.layanan-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.layanan-card:hover {
  border-color: var(--blue-200);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.layanan-card:hover::after { transform: scaleX(1); }

.lcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.layanan-icon { font-size: 32px; }
.lcard-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--slate-200);
  line-height: 1;
  font-weight: 600;
}

.layanan-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.layanan-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 18px;
}
.lcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lcard-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-l);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================
   KENAPA KAMI
   ============================ */
.kenapa {
  padding: 96px 0;
  background: var(--ice);
}
.kenapa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.kenapa-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 32px;
}

.kenapa-list { display: flex; flex-direction: column; gap: 22px; }
.kenapa-item { display: flex; gap: 14px; }
.ki-icon {
  width: 26px; height: 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.kenapa-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 3px;
}
.kenapa-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Info Card */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.ic-section { padding: 4px 0; }
.ic-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ic-value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.ic-sub { font-size: 14px; color: var(--text-muted); }
.ic-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.ic-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-100);
  transition: color 0.2s;
}
.ic-contact:last-of-type { border-bottom: none; }
.ic-contact:hover { color: var(--primary); }
.ic-contact svg { color: var(--text-muted); flex-shrink: 0; }
.ic-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ============================
   AREA LAYANAN
   ============================ */
.area {
  padding: 96px 0;
  background: var(--white);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.25s var(--ease);
  cursor: default;
}
.area-icon { font-size: 28px; margin-bottom: 12px; }
.area-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.area-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.area-card:hover span { color: var(--white); }

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  padding: 80px 0;
  background: var(--ice);
}
.cta-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-text h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.78); font-size: 15px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.55);
  padding: 16px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
/* .footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.4);
} */
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  margin-bottom: 9px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ============================
   RESPONSIVE — TABLET
   ============================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-desc { max-width: 100%; }

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

  .kenapa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-info { grid-template-columns: repeat(3, 1fr); }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .navbar > .btn-nav { display: none; }
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .hero { padding: 90px 0 60px; }
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-stats { gap: 14px; flex-wrap: wrap; }

  .chip-1 { top: -12px; right: 0; }
  .chip-2 { bottom: -12px; left: 0; font-size: 12px; }

  .layanan { padding: 64px 0; }
  .kenapa { padding: 64px 0; }
  .area { padding: 64px 0; }

  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card:last-child { grid-column: span 2; }

  .cta-box {
    padding: 36px 24px;
    flex-direction: column;
    text-align: center;
  }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { justify-content: center; width: 100%; }

  .footer-info { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 4px; text-align: center; }

  .section-title { font-size: 28px; }

  .info-card { padding: 24px; }

  .floating-chip { display: none; }
  .hero-card-main { padding: 22px; }
  .temp-num { font-size: 40px; }
}