/* ================================================
   PINTAR GTK — Professional Design System
   ================================================ */

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

:root {
  --blue:        #0369a1;
  --blue-mid:    #0284c7;
  --blue-light:  #38bdf8;
  --blue-pale:   #e0f2fe;
  --gold:        #f59e0b;
  --gold-dark:   #d97706;
  --gold-pale:   #fef3c7;
  --navy:        #0c1f4a;
  --navy-mid:    #1e3a6e;
  --slate:       #475569;
  --muted:       #94a3b8;
  --bg:          #f8fafd;
  --white:       #ffffff;
  --border:      #e2e8f0;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:   0 24px 80px rgba(0,0,0,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  overflow-x: hidden;
  color: var(--navy);
}

/* ================================================
   NAVBAR
   ================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s;
}

.nav-logo-pintar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-pintar img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s;
}

.nav-links-wrap {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav.scrolled .nav-links-wrap {
  background: #f1f5f9;
  border-color: var(--border);
}

.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.site-nav.scrolled .nav-link {
  color: var(--slate);
}

.nav-link:hover {
  background: rgba(255,255,255,0.18);
  color: white;
}

.site-nav.scrolled .nav-link:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(245,158,11,0.4);
}

.nav-cta:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,158,11,0.5);
}

/* Mobile menu */
.nav-toggler {
  display: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, #0a3580 40%, var(--blue) 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/gedung.png') center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(56,189,248,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(3,105,161,0.25) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding-top: 100px;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.15);
  border: 1px solid rgba(56,189,248,0.3);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 68px;
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.hero-title-sub {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(245,158,11,0.45);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,158,11,0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat {}

.hero-stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 560px;
}

.hero-person {
  position: absolute;
  bottom: -40px;
  width: auto;
  height: 110%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.35));
  z-index: 5;
}

.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 14px 20px;
  z-index: 10;
}

.hero-card-float.top-right {
  top: 60px; right: -20px;
}

.hero-card-float.bottom-left {
  bottom: 80px; left: -30px;
}

.hcf-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.hcf-val { font-size: 22px; font-weight: 800; color: white; }
.hcf-unit { font-size: 12px; color: rgba(255,255,255,0.7); }

/* Hero bottom wave */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 6;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 120px; }

/* ================================================
   KOMITMEN (Yellow bar)
   ================================================ */
.komitmen-section {
  background: var(--gold);
  padding: 40px ; /* reduced to make section shorter */
  position: relative;
  overflow: hidden;
}

.komitmen-pattern {
  position: absolute;
  inset: 0;
  background: url('../images/Pattern.png') repeat;
  opacity: 0.06;
}

.komitmen-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.komitmen-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* no offset so section doesn't move */
}

.komitmen-image img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 600px; /* limit height so it doesn't float too high */
  position: relative;
  top: 40px; /* push the image downward without affecting section layout */
}

.komitmen-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.komitmen-text {
  display: flex;
  flex-direction: column;
}

.komitmen-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(12,31,74,0.5);
  margin-bottom: 16px;
}

.komitmen-title {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.komitmen-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(12,31,74,0.72);
  margin-bottom: 28px;
}

.komitmen-btn {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: -12px;
}

.komitmen-btn:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.komitmen-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.2s;
  margin-top: 0px;
}

.metric-card:hover {
  background: rgba(255,255,255,0.75);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.metric-val {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 13px;
  color: rgba(12,31,74,0.6);
  font-weight: 500;
}

/* ================================================
   TENTANG
   ================================================ */
.tentang-section {
  padding: 100px 0;
  background: white;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  max-width: 520px;
}

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.feature-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}

.feature-list li::before {
  content: '';
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--blue-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230369a1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.tentang-img-wrap {
  position: relative;
}

.tentang-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.tentang-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
}

.tib-val {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.tib-label {
  font-size: 13px;
  color: rgba(12,31,74,0.65);
  font-weight: 500;
  margin-top: 4px;
}

/* ================================================
   PERAN
   ================================================ */
.peran-section {
  padding: 100px 0;
  background: var(--bg);
}

.peran-header {
  text-align: center;
  margin-bottom: 56px;
}

.peran-header .section-desc {
  margin: 0 auto;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.role-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.role-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(3,105,161,0.14);
}

.role-card:hover::before {
  opacity: 1;
}

.role-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}

.role-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.role-desc {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
}

.role-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  align-self: flex-start;
}

.role-btn:hover {
  background: var(--blue);
  color: white;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  height: 40px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.footer-col h6 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: -2px;
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 52px; }
  .komitmen-inner { grid-template-columns: 1fr; gap: 40px; }
  .tentang-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links-wrap { display: none; }
  .nav-toggler { display: block; }
  .nav-inner { padding: 0 20px; gap: 16px; }
  .nav-logo img { height: 36px; }
  .nav-logo-pintar img { height: 42px; width: 42px; }
  .hero-title { font-size: 40px; }
  .hero-title-sub { font-size: 17px; }
  .section-inner { padding: 0 20px; }
  .section-title { font-size: 30px; }
  .role-grid { grid-template-columns: 1fr; }
  .komitmen-metrics { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
