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

:root {
  --green-dark:  #237120;
  --green-mid:   #4BAF47;
  --green-light: #6CC469;
  --green-pale:  #EDF7ED;
  --accent:      #FFB539;
  --accent2:     #FFC85A;
  --bg-light:    #F8F7F0;
  --white:       #ffffff;
  --text-dark:   #24231D;
  --text-mid:    #878680;
  --text-light:  #9fa2ad;
  --border:      #E3E3E3;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --radius:      10px;
}

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ── TOP BAR ── */
.topbar {
  background: var(--green-mid);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-contact {
  display: flex; align-items: center; gap: 6px; color: #fff;
}
.topbar-contact svg { opacity: .75; flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a {
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 2px 10px; border-radius: 3px;
  transition: background .18s, color .18s;
}
.topbar-right a:hover { background: rgba(255,255,255,.12); color: #fff; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--green-mid);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; min-width: 0; flex: 0 1 auto; }
.logo-img-clip { height: 70px; overflow: hidden; flex-shrink: 0; width: fit-content; }
.logo-img-clip img { height: 82px; object-fit: contain; object-position: top center; display: block; }
.logo-text { line-height: 1.3; min-width: 0; }
.site-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 800;
  color: var(--green-dark); letter-spacing: -.2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-sub {
  font-size: 11.5px; color: var(--text-mid);
  font-weight: 500; letter-spacing: .2px;
}

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 9px 15px;
  font-size: 13px; font-weight: 600;
  color: var(--text-dark); border-radius: 6px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-item > a:hover { background: var(--green-pale); color: var(--green-mid); }
.nav-item .nav-active { background: var(--green-mid) !important; color: var(--white) !important; }
.nav-item .nav-active:hover { background: var(--green-dark) !important; }

/* hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--green-mid); border-radius: 2px; }

/* ── HERO SLIDER ── */
.hero { position: relative; overflow: hidden; height: 520px; }
.slides { display: flex; width: 300%; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.slide {
  flex: 0 0 33.333%; height: 520px;
  position: relative; display: flex; align-items: center;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(19,27,35,.85) 0%,
    rgba(19,27,35,.55) 55%,
    rgba(19,27,35,.15) 100%
  );
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 560px; padding: 0 70px; color: var(--white);
}
.slide-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 30px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.slide-content h2 {
  font-family: var(--font-head);
  font-size: 34px; font-weight: 800;
  line-height: 1.2; margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.slide-content p {
  font-size: 15px; opacity: .88;
  margin-bottom: 28px; max-width: 430px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 28px;
  background: var(--green-mid); color: #fff;
  font-weight: 700; font-size: 13.5px;
  border-radius: 6px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(75,175,71,.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 28px;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--text-dark); font-weight: 700; font-size: 13.5px;
  border-radius: 6px;
  transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: var(--accent2); border-color: var(--accent2); }

.hero-controls {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .25s, transform .25s;
}
.hero-dot.active { background: var(--accent); transform: scale(1.25); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--green-mid); border-color: var(--green-mid); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ── SERVICES BAR ── */
.services-bar {
  background: var(--green-mid);
  padding: 0;
  position: relative;
  z-index: 10;
}
.services-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.svc-item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px; color: #fff;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s; cursor: pointer;
}
.svc-item:last-child { border-right: none; }
.svc-item:hover { background: var(--green-dark); }
.svc-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: background .2s;
}
.svc-item:hover .svc-icon { background: rgba(255,255,255,.2); }
.svc-label {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700; line-height: 1.2; margin-bottom: 3px;
}
.svc-sub { font-size: 11.5px; opacity: .65; }

/* ── SECTION COMMON ── */
.section-wrap { padding: 72px 0; position: relative; overflow: hidden; }
.section-wrap.bg-light { background: var(--bg-light); }
.section-wrap.bg-green { background: var(--green-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  color: var(--green-mid); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block; width: 24px; height: 2px;
  background: var(--green-mid); border-radius: 2px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 30px; font-weight: 800;
  color: var(--text-dark); line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--green-mid); }
.section-sub {
  font-size: 15px; color: var(--text-mid);
  max-width: 560px; line-height: 1.7;
}
.section-header.centered .section-sub { margin: 0 auto; }

/* ── ABOUT INTRO ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 420px; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--green-mid); color: #fff;
  border-radius: 12px; padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 800; line-height: 1;
}
.about-badge-text {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  opacity: .9; margin-top: 4px;
}
.about-text { padding-right: 20px; }
.about-list {
  list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px;
  counter-reset: about-num;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--text-dark);
  counter-increment: about-num;
}
.about-list li::before {
  content: counter(about-num);
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--green-mid); border-radius: 50%;
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0;
}
.about-list-red {
  list-style: decimal;
  padding-left: 20px;
}
.about-list-red li {
  color: #c0392b;
  font-weight: 600;
  text-decoration: underline;
  font-size: 14.5px;
}
.about-list-red li::before {
  display: none;
}
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--green-mid); color: #fff;
  font-weight: 700; font-size: 14px; border-radius: 6px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(75,175,71,.3);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── LAYANAN CARDS ── */
.layanan-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.layanan-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.layanan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.layanan-card:hover::before { transform: scaleX(1); }
.layanan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.layanan-icon {
  width: 68px; height: 68px; border-radius: 16px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
  transition: background .25s;
}
.layanan-card:hover .layanan-icon { background: var(--green-pale); }
.layanan-card-sub {
  font-size: 10.5px; font-weight: 700;
  color: var(--text-mid); text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 4px;
}
.layanan-card-title {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 800;
  color: #c0392b; margin-bottom: 10px;
  text-transform: uppercase; line-height: 1.35;
}
.layanan-card-desc {
  font-size: 13.5px; color: var(--text-mid);
  line-height: 1.65;
}
.layanan-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700;
  color: var(--green-mid); margin-top: 16px;
  transition: color .2s;
}
.layanan-card-link:hover { color: var(--accent); }
.layanan-card-link::after { content: '→'; transition: transform .2s; }
.layanan-card-link:hover::after { transform: translateX(3px); }

/* ── STATS ── */
.stats-section {
  background: var(--green-mid);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat-item { color: #fff; padding: 20px; }
.stat-icon { font-size: 32px; margin-bottom: 10px; opacity: .7; }
.stat-num {
  font-family: var(--font-head);
  font-size: 44px; font-weight: 800;
  color: #fff; line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px; opacity: .75;
  font-weight: 500; letter-spacing: .3px;
}

/* ── KLIEN SLIDER ── */
@keyframes klien-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.klien-section {
  padding: 56px 0 60px;
  background: #fff;
  overflow: hidden;
}
.klien-section .section-header { margin-bottom: 36px; }
.klien-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.klien-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: klien-scroll 40s linear infinite;
}
.klien-track:hover { animation-play-state: paused; }
.klien-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(60%) opacity(0.75);
  transition: filter .25s;
  flex-shrink: 0;
}
.klien-logo:hover { filter: grayscale(0%) opacity(1); }

/* ── BERITA ── */
.berita-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.berita-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.berita-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.berita-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .4s ease;
}
.berita-card:hover .berita-card-img { transform: scale(1.05); }
.berita-card-img-wrap { overflow: hidden; }
.berita-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.berita-cat {
  display: inline-block;
  background: var(--green-pale); color: var(--green-mid);
  font-size: 10.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 10px;
}
.berita-card-title {
  font-family: var(--font-head);
  font-size: 15.5px; font-weight: 700;
  color: var(--text-dark); line-height: 1.4;
  margin-bottom: 10px; flex: 1;
}
.berita-card-title a:hover { color: var(--green-mid); }
.berita-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-light);
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.berita-date { display: flex; align-items: center; gap: 5px; }
.berita-read {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700;
  color: var(--green-mid); margin-top: 12px;
  transition: color .2s;
}
.berita-read:hover { color: var(--accent); }

/* ── BERITA FEATURED (big + side) ── */
.berita-featured-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px;
}
.berita-main-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.berita-main-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.berita-main-card .berita-card-img { height: 280px; }
.berita-main-card .berita-card-body { padding: 26px; }
.berita-main-card .berita-card-title { font-size: 18px; }
.berita-main-card p { font-size: 14px; color: var(--text-mid); margin: 10px 0 14px; line-height: 1.7; }

.berita-side-list { display: flex; flex-direction: column; gap: 0; }
.berita-side-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.berita-side-item:first-child { padding-top: 0; }
.berita-side-item:last-child { border-bottom: none; padding-bottom: 0; }
.berita-side-img {
  width: 86px; height: 64px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
}
.berita-side-info {}
.berita-side-date { font-size: 11.5px; color: var(--green-mid); font-weight: 700; margin-bottom: 5px; }
.berita-side-title {
  font-size: 13.5px; font-weight: 600; color: var(--text-dark);
  line-height: 1.4;
}
.berita-side-title:hover { color: var(--green-mid); }
.berita-see-all { text-align: right; margin-top: 16px; }
.link-see-all {
  font-size: 13px; font-weight: 700; color: var(--green-mid);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.link-see-all:hover { color: var(--accent); }

/* ── AGENDA ── */
.agenda-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.agenda-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.agenda-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.agenda-card-top {
  background: #131B23; color: #fff;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
}
.agenda-date-box {
  text-align: center; flex-shrink: 0;
  background: rgba(255,255,255,.15); border-radius: 8px;
  padding: 8px 14px;
}
.agenda-date-box .month {
  font-size: 16px; font-weight: 800; line-height: 1;
  font-family: var(--font-head);
}
.agenda-date-box .year {
  font-size: 11px; opacity: .75; margin-top: 2px;
}
.agenda-top-title {
  font-size: 14px; font-weight: 600; line-height: 1.4;
}
.agenda-card-body { padding: 18px 22px; flex: 1; }
.agenda-type-badge {
  display: inline-block;
  background: var(--green-pale); color: var(--green-dark);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 10px;
}
.agenda-card-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }
.agenda-card-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
}
.agenda-card-footer a {
  font-size: 13px; font-weight: 700; color: var(--green-mid);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.agenda-card-footer a:hover { color: var(--accent); }

/* ── CTA BANNER ── */
.cta-section {
  background: linear-gradient(135deg, #131B23 0%, #1e2d1e 100%);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 460px; height: 460px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M10,190 Q30,130 70,80 Q110,30 190,10 Q160,80 120,120 Q80,160 10,190Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.05; pointer-events: none;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; z-index: 1;
}
.cta-text { color: #fff; }
.cta-text h2 {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800;
  margin-bottom: 10px;
}
.cta-text p { font-size: 15px; opacity: .8; max-width: 480px; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: #fff; color: var(--green-dark);
  font-weight: 700; font-size: 14px; border-radius: 6px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--green-mid); color: #fff;
  font-weight: 700; font-size: 14px; border-radius: 6px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(75,175,71,.4);
}
.btn-accent:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── SOSMED ── */
.sosmed-section { background: #1a1a2e; padding: 28px 0; }
.sosmed-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px;
}
.sosmed-inner p {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .3px;
}
.sosmed-links { display: flex; gap: 12px; align-items: center; }
.sosmed-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: #1a1a2e;
  transition: background .2s, color .2s, transform .18s;
}
.sosmed-icon svg { width: 20px; height: 20px; }
.sosmed-icon:hover { background: var(--green-mid); color: #fff; transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
  background: #131B23; color: #9fa2ad;
  padding: 60px 0 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand img { height: 54px; margin-bottom: 18px; object-fit: contain; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: #9fa2ad; }
.footer-brand-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-brand-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.footer-brand-contact a { color: #9fa2ad; transition: color .2s; }
.footer-brand-contact a:hover { color: var(--green-light); }

.footer-col h4 {
  font-size: 12px; font-weight: 700; color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-mid);
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13.5px; color: #9fa2ad;
  transition: color .2s, padding-left .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--green-mid); font-weight: 700; }
.footer-col ul li a:hover { color: var(--green-light); padding-left: 4px; }
.footer-stat-list { gap: 10px !important; }
.footer-stat-list li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px; font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-stat-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fstat-label { color: #8a9bb0; }
.fstat-val { color: var(--green-light); font-weight: 700; font-size: 14px; }
.footer-bottom {
  background: #0d1318; text-align: center;
  padding: 16px 24px; font-size: 12.5px; color: #6b6f78;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.footer-bottom a { color: var(--green-mid); }
.footer-bottom a:hover { color: var(--green-light); }
.footer-separator { opacity: .4; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { padding-right: 0; }
  .about-badge { right: 20px; }
  .layanan-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
}
@media (max-width: 900px) {
  .berita-featured-grid { grid-template-columns: 1fr; }
  .berita-grid-3 { grid-template-columns: 1fr 1fr; }
  .agenda-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .services-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section-title { font-size: 24px; }
  .topbar-left { display: none; }
}
@media (max-width: 640px) {
  .hero { height: 380px; }
  .slide { height: 380px; }
  .slide-content { padding: 0 28px; }
  .slide-content h2 { font-size: 22px; }
  .slide-content p { font-size: 13.5px; }
  .services-bar-inner { grid-template-columns: 1fr 1fr; }
  .layanan-grid { grid-template-columns: 1fr 1fr; }
  .berita-grid-3 { grid-template-columns: 1fr; }
  .agenda-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 16px; display: inline-flex; align-items: center; gap: 12px; border-radius: 8px; }
  .hero-btns { flex-direction: column; gap: 8px; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }

  .header-inner { padding: 8px 16px; gap: 10px; }
  .logo-img-clip { height: 46px; }
  .logo-img-clip img { height: 60px; }
  .site-name { font-size: 14px; }
  .site-sub { display: none; }
}

/* Mobile nav */
nav.open {
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-top: 2px solid var(--green-mid);
  box-shadow: var(--shadow-md); padding: 8px 0; z-index: 999;
}
nav.open .nav-item { width: 100%; }
nav.open .nav-item > a { padding: 12px 24px; border-radius: 0; }

/* ── DECORATIVE SECTION BACKGROUNDS ── */

/* Containers sit above decoration pseudo-layers */
.section-wrap .container { position: relative; z-index: 1; }

/* === BG-LIGHT SECTIONS: dotted radial grid === */
.section-wrap.bg-light::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(75,175,71,.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none; z-index: 0;
}

/* === BG-LIGHT SECTIONS: large leaf — bottom-right === */
.section-wrap.bg-light::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 380px; height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M10,190 Q30,130 70,80 Q110,30 190,10 Q160,80 120,120 Q80,160 10,190Z' fill='%234BAF47'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.09; pointer-events: none; z-index: 0;
}

/* === WHITE SECTIONS: leaf — top-right === */
.section-wrap:not(.bg-light)::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M10,190 Q30,130 70,80 Q110,30 190,10 Q160,80 120,120 Q80,160 10,190Z' fill='%234BAF47'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.055; pointer-events: none; z-index: 0;
}

/* === WHITE SECTIONS: mirrored leaf — bottom-left === */
.section-wrap:not(.bg-light)::after {
  content: '';
  position: absolute; bottom: -50px; left: -50px;
  width: 250px; height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M190,190 Q170,130 130,80 Q90,30 10,10 Q40,80 80,120 Q120,160 190,190Z' fill='%234BAF47'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.05; pointer-events: none; z-index: 0;
}

/* === STATS SECTION: second decorative circle === */
.stats-section::after {
  content: '';
  position: absolute; bottom: -90px; left: -90px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

/* === CTA SECTION: mirrored leaf — bottom-left === */
.cta-section::after {
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 300px; height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M190,190 Q170,130 130,80 Q90,30 10,10 Q40,80 80,120 Q120,160 190,190Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.04; pointer-events: none;
}

/* ── INNER PAGE HERO ── */
.inner-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 65%, #BDF9BD 100%);
  padding: 60px 0 48px;
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 340px; height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M10,190 Q30,130 70,80 Q110,30 190,10 Q160,80 120,120 Q80,160 10,190Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.07; pointer-events: none;
}
.inner-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.inner-hero-title {
  font-family: var(--font-head);
  font-size: 38px; font-weight: 800;
  color: #fff; margin-bottom: 12px; letter-spacing: -.5px;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,.7);
  list-style: none;
}
.page-breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.page-breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .5; }

/* ── FILOSOFI SECTION ── */
.filosofi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  margin-top: 36px;
}
.filosofi-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.filosofi-img-wrap img { width: 100%; height: 340px; object-fit: cover; display: block; }
.filosofi-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(35,113,32,.92) 0%, transparent 100%);
  padding: 32px 24px 24px;
  color: #fff; font-size: 14px; line-height: 1.7; font-style: italic;
}
.filosofi-text { font-size: 15.5px; line-height: 1.85; color: var(--text-mid); }
.filosofi-text p { margin-bottom: 14px; }
.filosofi-text strong { color: var(--green-dark); }
.filosofi-signature { margin-top: 24px; padding-top: 20px; border-top: 1px solid #ddd; font-size: 15px; line-height: 1.7; }
.filosofi-sig-name { margin-top: 16px; }

/* ── VISI MISI SECTION ── */
.vm-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start;
  margin-top: 36px;
}
.vm-left-card {
  background: var(--green-dark); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; color: #fff;
  box-shadow: var(--shadow-md);
}
.vm-bsi-badge-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  background: #fff; color: var(--green-dark);
  font-size: 22px; font-weight: 900; font-family: var(--font-head);
  margin-bottom: 6px;
}
.vm-rc-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,.7); margin-bottom: 20px;
}
.vm-cek-link {
  display: inline-block; background: var(--accent);
  color: var(--text-dark); font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: 6px; margin-bottom: 20px;
  transition: background .2s, transform .15s;
}
.vm-cek-link:hover { background: var(--accent2); transform: translateY(-2px); }
.vm-ims-note { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.8); text-align: left; }
.vm-sub-title {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.vm-sub-title::before {
  content: ''; display: block; width: 4px; height: 18px;
  background: var(--green-mid); border-radius: 2px; flex-shrink: 0;
}
.vm-visi {
  background: var(--green-pale); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 18px;
  border-left: 4px solid var(--green-mid);
  font-size: 15px; line-height: 1.7; color: var(--text-dark);
}
.vm-misi {
  background: #fff; border-radius: var(--radius);
  padding: 22px 24px; border: 1px solid var(--border);
  font-size: 15px; line-height: 1.7; color: var(--text-dark);
}
.vm-misi ol { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ── SERTIFIKAT GRID ── */
.sert-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 36px;
}
.sert-card {
  background: #fff; border-radius: var(--radius); padding: 22px 14px;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.sert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sert-icon { height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.sert-icon img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; }
.sert-name { font-size: 12.5px; font-weight: 700; color: var(--green-dark); margin-bottom: 5px; }
.sert-detail { font-size: 11.5px; color: var(--text-mid); line-height: 1.4; }

/* ── REKAM JEJAK TABS ── */
/* ── REKAM JEJAK — TICKER + BIDANG SLIDER ── */
.rekam-ticker-outer {
  overflow: hidden; margin-top: 32px; margin-bottom: 40px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; background: #fff;
}
.rekam-ticker-track {
  display: flex; align-items: center; gap: 40px; width: max-content;
  animation: rekamTicker 80s linear infinite;
}
.rekam-ticker-outer:hover .rekam-ticker-track { animation-play-state: paused; }
@keyframes rekamTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-logo-item { display: flex; align-items: center; flex-shrink: 0; padding: 0 8px; }
.ticker-logo-item img { max-height: 38px; max-width: 130px; object-fit: contain; }
.ticker-text-item {
  flex-shrink: 0; padding: 6px 16px;
  background: var(--green-pale); border-radius: 6px;
  font-size: 11.5px; font-weight: 700; color: var(--green-dark);
  white-space: nowrap; letter-spacing: .3px;
}
/* Category Nav */
.rekam-bidang-nav {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px;
}
.rekam-bidang-btn {
  padding: 8px 16px; border-radius: 30px; border: 2px solid var(--border);
  background: #fff; color: var(--text-mid); font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: all .2s; font-family: var(--font-body);
  display: flex; align-items: center; gap: 7px;
}
.rekam-bidang-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.rekam-bidang-btn.active { background: var(--green-dark); border-color: var(--green-dark); color: #fff; box-shadow: 0 4px 12px rgba(35,113,32,.25); }
.btn-num {
  width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale); color: var(--green-dark); flex-shrink: 0;
}
.rekam-bidang-btn.active .btn-num { background: rgba(255,255,255,.2); color: #fff; }
/* Slide Panels */
.rekam-slide-panel { display: none; }
.rekam-slide-panel.active { display: block; animation: rekamFadeIn .3s ease; }
@keyframes rekamFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.rekam-slide-title {
  font-size: 17px; font-weight: 800; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: .4px;
  border-left: 5px solid var(--green-mid); padding-left: 14px; margin-bottom: 20px;
}
.rekam-slide-title span {
  display: block; font-size: 11px; font-weight: 600; color: var(--text-mid);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}
/* Detailed project list (BIDANG 1 & 2) */
.rekam-project-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rekam-project-list > li {
  background: #fff; border-radius: 10px; padding: 13px 18px;
  font-size: 13.5px; line-height: 1.75; color: var(--text-dark);
  border-left: 4px solid var(--green-mid); box-shadow: var(--shadow-sm);
  display: flex; gap: 10px;
}
.li-label { font-weight: 800; color: var(--green-dark); flex-shrink: 0; min-width: 18px; }
.li-text { flex: 1; min-width: 0; }
/* Simple grid list (BIDANG 3–8) */
.rekam-simple-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.rekam-simple-list li {
  background: var(--green-pale); border-radius: 8px; padding: 13px 16px;
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  border-left: 4px solid var(--green-mid); display: flex; align-items: center; gap: 8px;
}
.rekam-simple-list li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
/* Arrows */
.rekam-arrows { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.rekam-arrow-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--green-mid); background: #fff; color: var(--green-mid);
  font-size: 22px; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.rekam-arrow-btn:hover { background: var(--green-mid); color: #fff; }
.rekam-counter { font-size: 14px; font-weight: 600; color: var(--text-mid); min-width: 56px; text-align: center; }
.rekam-kawasan-heading {
  font-size: 13px; font-weight: 800; color: var(--green-dark);
  background: var(--green-pale); border-radius: 6px;
  padding: 7px 14px; margin: 20px 0 10px;
  display: inline-block; letter-spacing: .3px;
}
.rekam-kawasan-heading:first-child { margin-top: 0; }

/* ── TIM KAMI ── */
.tim-domain-nav {
  display: flex; gap: 10px; margin-bottom: 24px; margin-top: 36px;
}
.tim-domain-btn {
  padding: 8px 24px; border-radius: 30px; border: 2px solid var(--border);
  background: #fff; color: var(--text-mid); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: var(--font-body);
}
.tim-domain-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.tim-domain-btn.active {
  background: var(--green-dark); border-color: var(--green-dark);
  color: #fff; box-shadow: 0 4px 12px rgba(35,113,32,.25);
}
.tim-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tim-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  text-align: center; padding-bottom: 20px;
  transition: transform .2s, box-shadow .2s;
}
.tim-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tim-photo-wrap {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  margin: 24px auto 4px;
  border: 3px solid var(--green-pale);
  box-shadow: 0 4px 20px rgba(35,113,32,.18);
  background: var(--green-pale); flex-shrink: 0;
}
.tim-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.tim-name {
  font-size: 13px; font-weight: 700; color: var(--text-dark);
  padding: 14px 14px 4px; line-height: 1.4;
}
.tim-role { font-size: 12px; color: var(--green-mid); font-weight: 600; padding: 0 14px 4px; }
.tim-univ { font-size: 11.5px; color: var(--text-light); padding: 0 14px; }

/* ── INNER PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .filosofi-grid { grid-template-columns: 1fr; gap: 28px; }
  .vm-grid { grid-template-columns: 1fr; gap: 24px; }
  .sert-grid { grid-template-columns: repeat(2, 1fr); }
  .tim-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero-title { font-size: 28px; }
  .rekam-simple-list { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .sert-grid { grid-template-columns: repeat(2, 1fr); }
  .tim-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero-title { font-size: 22px; }
  .inner-hero { padding: 40px 0 32px; }
}

/* ── LAYANAN PAGE ── */
.layanan-tab-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; margin-bottom: 36px;
}
.layanan-tab-btn {
  padding: 14px 16px; border-radius: var(--radius); border: 2px solid var(--border);
  background: #fff; color: var(--text-mid); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: var(--font-body);
  text-align: center; line-height: 1.4;
}
.layanan-tab-btn:hover { border-color: var(--green-mid); color: var(--green-mid); background: var(--green-pale); }
.layanan-tab-btn.active {
  background: var(--green-dark); border-color: var(--green-dark);
  color: #fff; box-shadow: 0 4px 14px rgba(35,113,32,.25);
}

.layanan-sub-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.layanan-sub-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.layanan-sub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.layanan-sub-card img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s;
}
.layanan-sub-card:hover img { transform: scale(1.06); }
.layanan-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,60,10,.92) 0%, rgba(12,60,10,.5) 55%, transparent 100%);
  padding: 28px 18px 20px; color: #fff;
}
.layanan-card-overlay .layanan-card-title { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
.layanan-card-overlay .layanan-card-desc { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.85); }

/* ── LAYANAN FORM LAYOUT ── */
.layanan-form-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
}
.layanan-pelatihan-list { display: flex; flex-direction: column; gap: 14px; }
.layanan-pelatihan-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--green-pale); border-radius: var(--radius);
  padding: 18px 20px; border-left: 4px solid var(--green-mid);
}
.layanan-pelatihan-num {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  color: var(--green-mid); line-height: 1; flex-shrink: 0; padding-top: 2px;
}
.layanan-pelatihan-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.layanan-pelatihan-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── LAYANAN FORM WRAP ── */
.layanan-form-wrap {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  border: 1px solid var(--border); overflow: hidden;
}
.layanan-form-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 28px 32px 24px; color: #fff;
}
.layanan-form-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.layanan-form-sub { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; }
.layanan-form { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 14px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: var(--font-body); color: var(--text-dark);
  background: var(--bg-body); transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(64,154,60,.12);
}
.form-group textarea { resize: vertical; }
.form-submit-btn {
  padding: 13px 28px; background: var(--green-dark); color: #fff;
  border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700;
  font-family: var(--font-body); cursor: pointer; transition: background .2s, transform .15s;
  margin-top: 4px;
}
.form-submit-btn:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ── LAYANAN RESPONSIVE ── */
@media (max-width: 960px) {
  .layanan-tab-grid { grid-template-columns: repeat(2, 1fr); }
  .layanan-sub-cards { grid-template-columns: repeat(2, 1fr); }
  .layanan-form-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .layanan-tab-grid { grid-template-columns: 1fr; }
  .layanan-sub-cards { grid-template-columns: repeat(2, 1fr); }
  .lf-row { grid-template-columns: 1fr; }
  .layanan-form { padding: 20px 20px 24px; }
  .layanan-form-header { padding: 22px 20px 18px; }
}

/* ── GALLERY PAGE ── */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 36px 0 32px;
}
.gallery-filter-btn {
  padding: 9px 22px; border-radius: 30px; border: 2px solid var(--border);
  background: #fff; color: var(--text-mid); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: var(--font-body);
}
.gallery-filter-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.gallery-filter-btn.active {
  background: var(--green-dark); border-color: var(--green-dark);
  color: #fff; box-shadow: 0 4px 12px rgba(35,113,32,.25);
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px; gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item.col-2 { grid-column: span 2; }
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,60,10,.85) 0%, rgba(12,60,10,.3) 50%, transparent 100%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 20px 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: #fff; font-size: 13px; font-weight: 500; line-height: 1.45;
}
.gallery-zoom-icon {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8); transition: opacity .25s, transform .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92); display: none;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  opacity: 0; transition: opacity .25s;
}
.lightbox.open { display: flex; opacity: 1; }
.lb-img-wrap {
  max-width: 90vw; max-height: 78vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 78vh;
  border-radius: 8px; object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
}
.lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  font-size: 22px; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; color: #fff;
  font-size: 30px; width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-caption {
  color: rgba(255,255,255,.85); font-size: 14px; text-align: center;
  max-width: 700px; padding: 0 20px; line-height: 1.5;
}
.lb-counter { color: rgba(255,255,255,.5); font-size: 13px; }

/* ── GALLERY RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.col-2 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.col-2 { grid-column: span 1; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ── PENGADUAN PAGE ── */
.pgd-layout {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start;
}

.pgd-info-desc {
  font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 32px;
}

.pgd-contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.pgd-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border-radius: var(--radius);
  padding: 16px 18px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.pgd-contact-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-pale); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.pgd-contact-label {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: var(--text-light); margin-bottom: 4px;
}
.pgd-contact-value {
  font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.5;
}

.pgd-note {
  display: flex; align-items: flex-start; gap: 8px;
  background: var(--green-pale); border-radius: 8px;
  padding: 13px 16px; font-size: 13px; color: var(--green-dark);
  font-weight: 500; line-height: 1.5; border-left: 3px solid var(--green-mid);
}

/* ── PENGADUAN CARD ── */
.pgd-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  overflow: hidden;
}
.pgd-card-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 28px 32px 24px; color: #fff;
}
.pgd-card-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 800; margin-bottom: 6px;
}
.pgd-card-sub { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; }

.pgd-form {
  padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 16px;
}
.pgd-req { color: #e05252; font-weight: 700; }
.pgd-optional { font-size: 12px; font-weight: 400; color: var(--text-light); }

.pgd-hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.pgd-captcha-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pgd-captcha-question {
  font-weight: 700; font-size: 15px; color: var(--text-dark); background: var(--bg-light, #f4f4f4);
  padding: 10px 14px; border-radius: 8px; white-space: nowrap;
}
.pgd-captcha-row input { flex: 1; min-width: 120px; }

.pgd-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; background: var(--green-dark); color: #fff;
  border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700;
  font-family: var(--font-body); cursor: pointer;
  transition: background .2s, transform .15s; margin-top: 4px;
}
.pgd-submit-btn:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ── SUCCESS STATE ── */
.pgd-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 32px;
  gap: 14px;
}
.pgd-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-pale); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(64,154,60,.12);
}
.pgd-success h4 {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--green-dark);
}
.pgd-success p {
  font-size: 14.5px; line-height: 1.75; color: var(--text-mid); max-width: 340px;
}

/* ── PENGADUAN RESPONSIVE ── */
@media (max-width: 900px) {
  .pgd-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .pgd-form { padding: 20px 20px 24px; }
  .pgd-card-header { padding: 22px 20px 18px; }
}

/* ══════════════════════════════════════════
   KONTAK
══════════════════════════════════════════ */

/* ── INFO CARDS ROW ── */
.kontak-cards-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.kontak-info-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 20px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.kontak-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.kic-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-pale); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kic-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--green-mid);
}
.kic-value { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.kic-value a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.kic-value a:hover { text-decoration: underline; }

/* ── MAP + PANEL ── */
.kontak-main {
  display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start;
}
.kontak-map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  height: 520px;
}
.kontak-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── PANEL ── */
.kontak-panel { display: flex; flex-direction: column; gap: 16px; }
.kontak-panel-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.kontak-panel-title {
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--green-dark); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--green-pale);
}

/* ── DETAIL ITEMS ── */
.kontak-detail-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 14px;
}
.kdi-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-pale); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.kdi-text { color: var(--text-mid); line-height: 1.6; }
.kdi-text a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.kdi-text a:hover { text-decoration: underline; }

/* ── WA BUTTON ── */
.kontak-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: var(--radius);
  background: #25d366; color: #fff;
  font-weight: 700; font-size: 15px; font-family: var(--font-body);
  text-decoration: none; box-shadow: var(--shadow-sm);
  transition: background .2s, transform .15s;
}
.kontak-wa-btn:hover { background: #1fba59; transform: translateY(-2px); }

/* ── JAM OPERASIONAL ── */
.kontak-jam-list { display: flex; flex-direction: column; gap: 10px; }
.kontak-jam-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}
.kontak-jam-item:last-child { border-bottom: none; padding-bottom: 0; }
.jam-hari { color: var(--text-mid); }
.jam-waktu { font-weight: 600; color: var(--green-dark); }
.jam-tutup { color: #e57373 !important; }

/* ── SOSMED BUTTONS ── */
.kontak-sosmed-row { display: flex; flex-direction: column; gap: 10px; }
.kontak-sosmed-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.kontak-sosmed-btn:hover { opacity: .88; transform: translateX(3px); }
.kontak-sosmed-btn.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.kontak-sosmed-btn.wa { background: #25d366; color: #fff; }
.kontak-sosmed-btn.yt { background: #ff0000; color: #fff; }

/* ── KONTAK RESPONSIVE ── */
@media (max-width: 1100px) {
  .kontak-main { grid-template-columns: 1fr 340px; }
}
@media (max-width: 900px) {
  .kontak-cards-row { grid-template-columns: repeat(2, 1fr); }
  .kontak-main { grid-template-columns: 1fr; }
  .kontak-map-wrap { height: 340px; }
}
@media (max-width: 540px) {
  .kontak-cards-row { grid-template-columns: 1fr; }
  .kontak-panel-card { padding: 18px 18px; }
}

/* ══════════════════════════════════════════
   NEW HOMEPAGE STYLE — environesia-inspired
══════════════════════════════════════════ */

/* ── NEW NAV ── */
.nav-main-links {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: visible;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 5px 7px 7px;
  border-radius: 4px;
  transition: color .18s;
  display: inline-block;
  line-height: 1.4;
  border-bottom: 2px solid transparent;
  overflow: visible;
}
.nav-link:hover { color: var(--green-mid); }
.nav-link.nav-active {
  font-weight: 700;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green-mid);
  border-radius: 0;
  background: none !important;
}
.nav-sep {
  color: var(--text-light);
  font-size: 13px;
  user-select: none;
  padding: 0 1px;
}
.nav-cta-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 7px 20px;
  border: 1.5px solid #a8c8e8;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3a72a8;
  background: rgba(168,200,232,.06);
  transition: background .18s, border-color .18s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(168,200,232,.22);
  border-color: #3a72a8;
}

/* ── HERO SLIDER SLIDES ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* ── SLIDE 2: FULL HTML BUILD ── */
.hero-slide-two {
  background-color: #eceff4 !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  overflow: hidden;
}
/* Nalika Institute logo — top right overlay */
.s2-nalika-logo {
  position: absolute;
  top: 18px;
  right: 24px;
  height: 64px;
  width: auto;
  z-index: 3;
  object-fit: contain;
}
/* KLH logo — bottom overlay */
.s2-klh-logo {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  height: 72px;
  width: auto;
  z-index: 3;
  object-fit: contain;
}
@media (max-width: 900px) {
  .s2-nalika-logo { height: 48px; top: 12px; right: 14px; }
  .s2-klh-logo { height: 54px; bottom: 84px; }
}
@media (max-width: 640px) {
  .s2-nalika-logo { height: 36px; }
  .s2-klh-logo { height: 42px; bottom: 80px; }
}

/* Dot navigation */
.hero-slide-nav {
  position: absolute;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 9px;
  align-items: center;
}
.hero-slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  cursor: pointer;
  transition: background .25s, transform .25s;
  display: block;
  border: 1.5px solid rgba(255,255,255,.55);
}
.hero-slide-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* ── HERO MAIN ── */
.hero-main {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
}
.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.28) 0%,
    rgba(0,0,0,.15) 50%,
    rgba(0,0,0,.58) 100%
  );
  z-index: 1;
  transition: background .8s ease;
}
/* Slide 2: overlay nol agar gradient & elemen HTML terbaca */
.hero-main.on-slide-2 .hero-main-overlay {
  background: rgba(0,0,0,0);
}

/* ── SLIDE 2 CONTENT ── */
.hero-slide2-content {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.hero-main.on-slide-2 .hero-slide2-content {
  opacity: 1;
  pointer-events: auto;
}
.hs2-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: #1c3a6e;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: .5px;
  text-shadow: none;
  max-width: 860px;
}
.btn-hs2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 52px;
  background: rgba(180,220,170,.5);
  color: #1c3a6e;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 3px;
  border: 1px solid rgba(120,180,110,.4);
  transition: background .2s, transform .15s;
}
.btn-hs2:hover {
  background: rgba(150,200,140,.7);
  transform: translateY(-2px);
}
.hero-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px 56px;
  transition: opacity .6s ease;
}
/* Slide 2: sembunyikan teks hero */
.hero-main.on-slide-2 .hero-main-content {
  opacity: 0;
  pointer-events: none;
}
.hero-main-title {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  letter-spacing: 2px;
  margin-bottom: 8px;
  width: 100%; max-width: 100%; overflow-wrap: break-word;
}
.hero-main-sub {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  letter-spacing: 2px;
  margin-bottom: 40px;
  width: 100%; max-width: 100%; overflow-wrap: break-word;
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  background: rgba(180,220,180,.2);
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  letter-spacing: .3px;
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-hero-cta:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-2px);
}

/* ── HERO STATS BAR ── */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 18px 52px;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(12px);
  gap: 56px;
}
.hs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.hs-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  color: #fff;
}
.hs-green-bg {
  background: #4BAF47;
  border: 2px solid rgba(255,255,255,.45);
}
.hs-red-bg {
  background: #e04444;
  border: 2px solid rgba(255,255,255,.25);
}
.hs-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 1px;
}
.hs-label {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.hs-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-head);
}
.hs-val-green { color: #7dd87a; }
.hs-val-teal  { color: #5fd6d0; }

/* ── RESPONSIVE HERO MAIN ── */
@media (max-width: 900px) {
  .hero-main { height: 500px; }
  .hero-main-title { font-size: 38px; }
  .hero-main-sub   { font-size: 32px; }
  .hero-stats-bar  { padding: 16px 28px; gap: 28px; }
  .nav-main-links  { display: none; }
  .nav-cta-btns    { display: none; }
  .hs2-title       { font-size: 28px; margin-bottom: 20px; }
  .hero-slide2-content { padding: 0 28px 24px; }
}
nav.open .nav-main-links {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
nav.open .nav-sep { display: none; }
nav.open .nav-link {
  padding: 12px 24px;
  border-radius: 0;
  font-size: 14px;
}
nav.open .nav-cta-btns {
  display: flex !important;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  margin-left: 0;
}
@media (max-width: 640px) {
  .hero-main { height: 480px; }
  .hero-main-content { padding: 32px 24px 24px; }
  .hero-main-title { font-size: 26px; letter-spacing: 1px; }
  .hero-main-sub   { font-size: 22px; letter-spacing: 1px; margin-bottom: 24px; }
  .hero-stats-bar  { flex-direction: column; gap: 14px; align-items: flex-start; padding: 16px 24px; }
  .btn-hero-cta    { padding: 12px 32px; font-size: 14px; }
  /* stats bar stacks to 3 rows here, so the dots need to clear it instead of the fixed desktop offset */
  .hero-slide-nav  { bottom: 200px; }
  .hs2-title       { font-size: 19px; letter-spacing: 0; margin-bottom: 14px; }
  .hero-slide2-content { padding: 0 24px 16px; bottom: 200px; }
  .btn-hs2         { padding: 9px 26px; font-size: 13px; }
}
