:root {
  --ink: #102A2C;
  --forest: #007C89;
  --forest-2: #005F69;
  --sage: #E6F5F6;
  --paper: #F8FBFA;
  --brass: #D7263D;
  --copper: #A61B2E;
  --muted: #667A7D;
  --line: #D9E6E7;
  --white: #ffffff;
  --display: 'Plus Jakarta Sans', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; }
ul { margin: 0; padding-left: 1.2rem; }
li { margin: .5rem 0; color: var(--muted); }

.site-shell { max-width: 1440px; margin: 0 auto; overflow: hidden; }
.section-pad { padding: 92px clamp(20px, 5vw, 72px); }

.header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(1440px, 100%);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, .9);
  border-bottom: 1px solid rgba(216, 210, 196, .72);
  box-shadow: 0 12px 34px rgba(23, 32, 27, .08);
}
main { padding-top: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--forest); color: var(--paper); font-family: var(--mono); font-size: .82rem; }
.dot { color: var(--brass); }
.nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 700; font-size: .9rem; }
.nav a:hover { color: var(--forest); }
.nav-cta { padding: 11px 16px; border-radius: 999px; background: var(--brass); color: var(--white) !important; }

.hero { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; min-height: 660px; }
.hero-copy { max-width: 1040px; }
.eyebrow { margin: 0 0 16px; color: var(--brass); font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { color: var(--ink); margin: 0; line-height: 1.03; }
h1 { font-family: var(--display); font-size: clamp(3rem, 7vw, 6.8rem); letter-spacing: -.065em; max-width: 980px; }
h2 { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.5rem); letter-spacing: -.045em; }
h3 { font-size: 1.18rem; letter-spacing: -.02em; }
.hero-text { max-width: 720px; font-size: 1.08rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--brass); }
.button.ghost { color: var(--forest); border-color: var(--line); background: rgba(255,255,255,.42); }
.button.light { background: var(--white); color: var(--forest); }
.button.ghost.light { color: var(--paper); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.trust-strip span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.46); color: var(--forest); font-family: var(--mono); font-size: .72rem; }

.hero-panel { position: relative; padding: 24px; border-radius: 34px; background: linear-gradient(155deg, var(--forest), #091812); color: var(--paper); box-shadow: 0 30px 80px rgba(23, 32, 27, .28); }
.hero-panel::before { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 26px; pointer-events: none; }
.panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; color: rgba(247,243,234,.78); font-family: var(--mono); font-size: .8rem; }
.panel-top strong { color: var(--brass); }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.metric-grid article, .dash-grid article { padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(255,255,255,.07); }
.metric-grid span, .dash-grid small { color: var(--brass); font-family: var(--mono); font-size: .72rem; text-transform: uppercase; }
.metric-grid strong { display: block; margin: 12px 0 6px; font-size: 2.2rem; color: var(--paper); }
.metric-grid small { color: rgba(247,243,234,.68); }
.flow-card { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 18px; border-radius: 20px; background: rgba(184,137,53,.16); color: var(--paper); font-family: var(--mono); font-size: .72rem; }
.flow-card i { flex: 1; height: 1px; background: rgba(255,255,255,.24); }

.section-head { max-width: 920px; margin-bottom: 36px; }
.section-head.narrow { max-width: 740px; text-align: center; margin-inline: auto; }
.section-head.inverse h2, .section-head.inverse p { color: var(--paper); }
.compare-grid, .pillar-grid, .service-grid, .dash-grid { display: grid; gap: 18px; }
.compare-grid { grid-template-columns: repeat(2, 1fr); }
.compare-grid article, .pillar-grid article, .service-card, .profile-card { border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.58); padding: 28px; }
.highlight-card { background: var(--sage) !important; border-color: rgba(24,61,47,.18) !important; }

.pillar-grid { grid-template-columns: repeat(3, 1fr); }
.pillar-grid article { min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; }
.pillar-grid span { font-family: var(--mono); color: var(--brass); }
.pillar-grid h3 { font-family: var(--display); font-size: 2rem; }

.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.service-card { min-height: 620px; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(184,137,53,.55); }
.service-tag { display: inline-flex; width: fit-content; margin-bottom: 18px; padding: 7px 10px; border-radius: 999px; background: rgba(184,137,53,.14); color: var(--copper); font-family: var(--mono); font-size: .7rem; text-transform: uppercase; }
.role { color: var(--forest); font-weight: 800; }
.service-card ul { margin-top: auto; }
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
}
.service-link:hover { background: var(--forest-2); }
.service-image {
  width: calc(100% + 16px);
  height: 240px;
  margin: -8px -8px 24px;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(.86) contrast(1.02);
  border: 1px solid rgba(24,61,47,.08);
}

.dashboard-shell { padding: clamp(28px, 5vw, 56px); border-radius: 42px; background: linear-gradient(145deg, var(--forest-2), var(--forest)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.dash-grid { grid-template-columns: repeat(5, 1fr); }
.dash-grid article { min-height: 210px; }
.dash-grid h3 { margin: 28px 0 12px; color: var(--paper); font-family: var(--display); font-size: 1.7rem; }
.dash-grid p { color: rgba(247,243,234,.68); }

.profile-card { display: grid; grid-template-columns: 280px 1fr 1.1fr; gap: 28px; align-items: center; }
.profile-photo-wrap { margin: 0; width: 100%; }
.profile-photo {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  border-radius: 26px;
  background: #eef4f4;
  border: 1px solid var(--line);
}
.credential-list { display: flex; flex-wrap: wrap; gap: 10px; }
.credential-list span { padding: 10px 12px; border-radius: 999px; background: var(--sage); color: var(--forest); font-weight: 800; font-size: .85rem; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: rgba(255,255,255,.55); }
.timeline article { padding: 28px; border-right: 1px solid var(--line); }
.timeline article:last-child { border-right: 0; }
.timeline span { font-family: var(--mono); color: var(--brass); }
.timeline h3 { margin: 22px 0 12px; font-family: var(--display); font-size: 1.8rem; }

.contact-card { padding: clamp(34px, 6vw, 72px); border-radius: 42px; background: radial-gradient(circle at 82% 20%, rgba(184,137,53,.24), transparent 24rem), var(--forest); color: var(--paper); }
.contact-card h2, .contact-card p { color: var(--paper); }
.contact-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; color: rgba(247,243,234,.72); font-family: var(--mono); font-size: .78rem; }
.contact-meta span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; }
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #1f9d55;
  box-shadow: 0 18px 44px rgba(31, 157, 85, .34), 0 0 0 8px rgba(31, 157, 85, .12);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(31, 157, 85, .42), 0 0 0 8px rgba(31, 157, 85, .12); }
.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.whatsapp-float svg { width: 25px; height: 25px; fill: #ffffff; }
.whatsapp-float strong { font-size: .9rem; }
.footer { padding: 32px clamp(20px, 5vw, 72px) 48px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); }
.footer strong { font-family: var(--display); font-size: 1.6rem; }
.footer p { max-width: 680px; margin: 0; font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(22px); animation: reveal .8s cubic-bezier(.2,.7,.2,1) forwards; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .22s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) { *, html { scroll-behavior: auto !important; animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .service-grid, .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid article:last-child { grid-column: span 2; }
  .pillar-grid, .timeline { grid-template-columns: 1fr 1fr; }
  .profile-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section-pad { padding: 68px 20px; }
  .header { align-items: center; padding-block: 12px; }
  main { padding-top: 66px; }
  .brand span:last-child { display: none; }
  .nav { flex-wrap: wrap; justify-content: flex-end; gap: 10px; font-size: .78rem; }
  .nav a:not(.nav-cta) { display: none; }
  .whatsapp-float { right: 16px; bottom: 16px; padding-right: 10px; }
  .whatsapp-float strong { display: none; }
  h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-panel { padding: 18px; border-radius: 26px; }
  .metric-grid, .compare-grid, .pillar-grid, .service-grid, .dash-grid, .timeline { grid-template-columns: 1fr; }
  .dash-grid article:last-child { grid-column: auto; }
  .flow-card { flex-wrap: wrap; }
  .flow-card i { min-width: 28px; }
  .timeline article { border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline article:last-child { border-bottom: 0; }
  .footer { flex-direction: column; }
}
.detail-main { padding-top: 78px; }
.detail-hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(28px, 5vw, 72px); align-items: center; min-height: 720px; }
.back-link { display: inline-flex; margin-bottom: 22px; color: var(--forest); font-weight: 800; }
.detail-hero-image { width: 100%; height: min(62vh, 560px); object-fit: cover; border-radius: 38px; box-shadow: 0 30px 80px rgba(16,42,44,.16); }
.detail-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding-top: 24px; }
.detail-panel { padding: clamp(28px, 4vw, 46px); border-radius: 34px; background: var(--white); border: 1px solid var(--line); }
.detail-list { display: grid; gap: 12px; margin-top: 24px; }
.detail-list span { padding: 16px 18px; border-radius: 18px; background: var(--sage); color: var(--ink); font-weight: 800; }
.detail-cta { margin: 0 clamp(20px, 5vw, 72px) 72px; border-radius: 38px; background: var(--forest); color: var(--white); }
.detail-cta h2, .detail-cta p { color: var(--white); }
.detail-cta p { max-width: 760px; }
.detail-trade { --forest: #007C89; --forest-2: #005F69; --sage: #E6F5F6; --brass: #D7263D; }
.detail-market { --forest: #0E7490; --forest-2: #164E63; --sage: #E0F2FE; --brass: #D7263D; }
.detail-finance { --forest: #2563EB; --forest-2: #1E3A8A; --sage: #EAF1FF; --brass: #D7263D; }
.detail-training { --forest: #7C3AED; --forest-2: #4C1D95; --sage: #F1EAFE; --brass: #D7263D; }
.detail-umkm { --forest: #059669; --forest-2: #065F46; --sage: #E7F8EF; --brass: #D7263D; }
@media (max-width: 1100px) { .detail-hero, .detail-content { grid-template-columns: 1fr; } .detail-hero { min-height: auto; } }
@media (max-width: 760px) { .detail-main { padding-top: 66px; } .detail-hero-image { height: 340px; border-radius: 26px; } .detail-cta { margin-inline: 20px; } }
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--sage);
  box-shadow: 0 16px 38px rgba(16, 42, 44, .08);
}
.gallery-grid img:nth-child(1), .gallery-grid img:nth-child(5), .gallery-grid img:nth-child(10) { grid-row: span 2; height: 534px; }
.gallery-grid img:nth-child(2), .gallery-grid img:nth-child(7) { grid-column: span 2; }
@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid img:nth-child(n) { grid-column: auto; grid-row: auto; height: 300px; } }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-grid img:nth-child(n) { height: auto; max-height: none; object-fit: contain; } }
.gallery-grid img { cursor: zoom-in; transition: transform .2s ease, box-shadow .2s ease; }
.gallery-grid img:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(16, 42, 44, .14); }
.no-scroll { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 24, 26, .88);
  backdrop-filter: blur(10px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  background: #ffffff;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  border: 0;
  color: #ffffff;
  background: rgba(255,255,255,.14);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 72px;
  border-radius: 999px;
  font-size: 3rem;
  transform: translateY(-50%);
}
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(215, 38, 61, .9); }
@media (max-width: 760px) { .lightbox { padding: 16px; } .lightbox-nav { width: 42px; height: 58px; font-size: 2.4rem; } .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; } .lightbox-close { top: 12px; right: 12px; } }
.language-switch { display: inline-flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.language-switch button { border: 0; background: transparent; color: var(--muted); padding: 7px 10px; border-radius: 999px; font-weight: 800; cursor: pointer; }
.language-switch button.is-active { background: var(--forest); color: var(--white); }
@media (max-width: 760px) { .language-switch { order: 3; } .language-switch button { padding: 6px 9px; font-size: .76rem; } }
