
:root {
  --navy: #131e3d;
  --navy-2: #1b2c58;
  --green: #357c04;
  --green-light: #bede9b;
  --green-soft: #eff8e7;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line: #e6eaf0;
  --surface: #f7f9fc;
  --shadow: 0 22px 60px rgba(19, 30, 61, .12);
  --shadow-sm: 0 12px 30px rgba(19, 30, 61, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.surface { background: var(--surface); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-light);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.65rem, 5.8vw, 5.2rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 720px; }
.text-muted { color: var(--muted); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(53, 124, 4, .18);
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(53, 124, 4, .12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(230, 234, 240, .78);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 220px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #3d475d;
  font-size: .94rem;
  font-weight: 700;
}
.nav-links a {
  position: relative;
  padding: 28px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--navy);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: .25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(19, 30, 61, .2);
}
.btn-primary:hover { background: var(--navy-2); }
.btn-green {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(53, 124, 4, .2);
}
.btn-outline {
  border-color: #cad1dd;
  color: var(--navy);
  background: white;
}
.btn-sm { min-height: 44px; padding-inline: 17px; font-size: .9rem; }
.btn svg, .link-arrow svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 86px;
  background:
    radial-gradient(circle at 12% 10%, rgba(190, 222, 155, .35), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -210px;
  border: 70px solid rgba(190, 222, 155, .23);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 64px;
}
.hero-copy p { max-width: 680px; }
.hero-copy h1 span { color: var(--green); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 36px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: #49536a;
  font-size: .9rem;
  font-weight: 700;
}
.proof-item { display: flex; align-items: center; gap: 8px; }
.check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--green);
  border-radius: 50%;
  background: var(--green-soft);
  font-size: .75rem;
}
.hero-visual { position: relative; min-height: 590px; }
.hero-photo {
  position: absolute;
  inset: 0 0 0 44px;
  border-radius: 42px 42px 130px 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(19,30,61,.22));
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 54%; }
.floating-card {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: min(290px, 78%);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.floating-card strong { display: block; color: var(--navy); font-size: 1.05rem; }
.floating-card p { margin: 5px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.floating-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: var(--green);
  background: var(--green-light);
}
.floating-icon svg { width: 24px; height: 24px; }
.hero-badge {
  position: absolute;
  top: 34px;
  right: -18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  padding: 18px;
  text-align: center;
  color: white;
  border: 8px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--shadow-sm);
  font-size: .77rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust-bar {
  position: relative;
  z-index: 4;
  margin-top: -22px;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center;
  gap: 12px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.trust-intro strong { display: block; color: var(--navy); }
.trust-intro span { color: var(--muted); font-size: .88rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  color: #445069;
  font-size: .88rem;
  font-weight: 800;
}
.trust-item-icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: var(--green);
  border-radius: 12px;
  background: var(--green-soft);
}
.trust-item-icon svg { width: 20px; height: 20px; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 76px;
}
.image-composition { position: relative; min-height: 610px; }
.image-main {
  position: absolute;
  inset: 0 80px 70px 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.image-main .image-frame,
.image-small .image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.image-main .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 10px solid white;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.image-small .image-frame {
  border-radius: 18px;
}
.image-small .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f7f9fc;
}
.stat-card {
  position: absolute;
  left: 24px;
  bottom: 26px;
  z-index: 3;
  padding: 16px 20px;
  color: white;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}
.stat-card strong { display: block; font-size: 1.5rem; line-height: 1; }
.stat-card span { font-size: .78rem; opacity: .78; }
.copy-stack p { color: var(--muted); }
.copy-stack .btn { margin-top: 10px; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0;
}
.feature-row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.feature-row-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--green);
  border-radius: 10px;
  background: var(--green-soft);
}
.feature-row-icon svg { width: 17px; height: 17px; }
.feature-row strong { display: block; color: var(--navy); font-size: .92rem; }
.feature-row span { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; line-height: 1.45; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}
.section-head > div { max-width: 760px; }
.section-head p { margin-bottom: 0; color: var(--muted); }

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

/* Styles for layanan detail blocks */
.detail-stack { display: grid; gap: 36px; }
.detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; padding: 42px; border-radius: 22px; }
.detail-image { width: 100%; max-width: 640px; }
.detail-image .image-frame { width: 100%; height: 100%; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-sm); }
.detail-image .image-frame img { display: block; width: 100%; height: auto; object-fit: cover; }

@media (max-width: 900px) {
  .detail-block { grid-template-columns: 1fr; }
  .detail-image { max-width: 100%; }
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 8px 22px rgba(19,30,61,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53,124,4,.28);
  box-shadow: var(--shadow-sm);
}
.service-card.featured {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .link-arrow { color: white; }
.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 54px;
  color: var(--green);
  border-radius: 17px;
  background: var(--green-soft);
}
.featured .card-icon { color: var(--navy); background: var(--green-light); }
.card-icon svg { width: 28px; height: 28px; }
.service-card p { color: var(--muted); font-size: .92rem; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--green);
  font-size: .88rem;
  font-weight: 800;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(190,222,155,.17);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
}
.why-panel {
  padding: 38px;
  border-radius: 28px;
  background: var(--navy);
  color: white;
}
.why-panel h2 { color: white; }
.why-panel p { color: rgba(255,255,255,.72); }
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.why-item {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.why-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: var(--green);
  border-radius: 12px;
  background: var(--green-soft);
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: process;
}
.process-item {
  position: relative;
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.process-item::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 36px;
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.process-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  border: 7px solid var(--surface);
  border-radius: 50%;
  background: var(--green-light);
  transform: translateY(-50%);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition: transform .2s ease, border-color .2s ease;
}
.industry-card:hover { transform: translateY(-4px); border-color: rgba(53,124,4,.35); }
.industry-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.industry-card h3 { font-size: 1.08rem; }
.industry-card::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  right: -24px;
  bottom: -30px;
  border-radius: 50%;
  background: var(--green-soft);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.client-logo {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 18px;
  color: #8a93a5;
  border: 1px dashed #cfd5df;
  border-radius: 16px;
  background: white;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 28px rgba(19, 30, 61, .04);
}
.team-photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(190, 222, 155, .5), rgba(255,255,255,.92) 52%, rgba(19,30,61,.08)),
    linear-gradient(160deg, #edf3ef 0%, #dfe9ea 100%);
  border-bottom: 1px solid var(--line);
}
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
}
.team-photo span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--navy);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.team-meta {
  padding: 18px 16px 20px;
}
.team-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}
.team-meta small {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .04em;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}
.quote-mark {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: .8;
}
.quote p { color: #4c566d; }
.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  border-radius: 50%;
  background: var(--green-light);
  font-weight: 900;
}
.quote footer strong { display: block; color: var(--navy); font-size: .9rem; }
.quote footer span { display: block; color: var(--muted); font-size: .76rem; }

.cta-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 34px;
  padding: 54px;
  border-radius: 34px;
  background: var(--navy);
}
.cta-wrap::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -120px;
  border: 58px solid rgba(190,222,155,.14);
  border-radius: 50%;
}
.cta-wrap h2 { color: white; }
.cta-wrap p { max-width: 650px; color: rgba(255,255,255,.72); }
.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.cta-actions .btn { min-height: 56px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.contact-card small {
  display: block;
  color: var(--green);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-card strong { display: block; margin-top: 8px; color: var(--navy); }

.page-hero {
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 85% 18%, rgba(190,222,155,.35), transparent 28%),
    linear-gradient(180deg, white, var(--surface));
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-hero-image {
  overflow: hidden;
  min-height: 320px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.page-hero-image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.page-hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.page-hero-card strong { display: block; color: var(--navy); font-size: 1.15rem; }
.page-hero-card p { margin: 8px 0 0; color: var(--muted); }

.detail-stack { display: grid; gap: 24px; }
.detail-block {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
}
.detail-block:nth-child(even) { grid-template-columns: 1.12fr .88fr; }
.detail-block:nth-child(even) .detail-image { order: 2; }
.detail-image {
  width: 100%;
  max-width: 520px;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.detail-image img.image-contain {
  object-fit: contain;
  object-position: center;
  background: #f7f9fc;
}
.detail-content { padding: 46px; }
.detail-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.detail-list li {
  display: flex;
  gap: 9px;
  color: #48536a;
  font-size: .9rem;
}
.detail-list li::before { content: "✓"; color: var(--green); font-weight: 900; }

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.industry-detail {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: 150px 1fr;
  gap: 22px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}
.industry-detail::before {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  min-height: 150px;
  padding: 16px;
  border: 1px dashed #cfd5df;
  border-radius: 16px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(190, 222, 155, .42), rgba(255,255,255,.9) 52%, rgba(19,30,61,.08)),
    linear-gradient(160deg, #edf3ef 0%, #dfe9ea 100%);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.industry-detail:nth-child(1)::before { content: "commercialbuilding.png"; }
.industry-detail:nth-child(1)::before { content: ""; background: url("commercialbuilding.png") center / cover no-repeat; }
.industry-detail:nth-child(2)::before { content: ""; background: url("OfficeCorporate.png") center / cover no-repeat; }
.industry-detail:nth-child(3)::before { content: ""; background: url("ManufacturingWarehouse.png") center / cover no-repeat; }
.industry-detail:nth-child(4)::before { content: ""; background: url("MallRetail.png") center / cover no-repeat; }
.industry-detail:nth-child(5)::before { content: ""; background: url("HospitalHealthcare.png") center / cover no-repeat; }
.industry-detail:nth-child(6)::before { content: ""; background: url("HotelApartment.png") center / cover no-repeat; }
.industry-detail:nth-child(7)::before { content: ""; background: url("MiningIndustrialCamp.png") center / cover no-repeat; }
.industry-detail:nth-child(8)::before { content: ""; background: url("SchoolUniversity.png") center / cover no-repeat; }
.industry-detail-index {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  color: var(--navy);
  border-radius: 16px;
  background: var(--green-light);
  font-weight: 900;
}
.industry-detail p { color: var(--muted); font-size: .92rem; }

.site-footer {
  padding: 72px 0 26px;
  color: rgba(255,255,255,.76);
  background: #0d1630;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr 1fr;
  gap: 46px;
  padding-bottom: 48px;
}
.footer-brand img { width: 205px; opacity: .94; }
.footer-brand p { max-width: 390px; margin: 20px 0 0; }
.footer-col h3 { color: white; font-size: .95rem; letter-spacing: 0; }
.footer-col a { display: block; margin: 10px 0; font-size: .88rem; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}
.back-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .25s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: none; }

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: grid;
  align-items: center;
  padding: 88px 0;
  margin: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.8) 45%, transparent 100%);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('banneratastentangkami.svg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: .95;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.4) 100%);
  z-index: 0;
  pointer-events: none;
}
.about-hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.about-hero-image {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(19, 30, 61, .12);
}
.about-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 28px;
  color: var(--navy);
}
.about-hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4c566d;
  margin-bottom: 20px;
}
.about-hero-content p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .about-hero {
    min-height: 520px;
    padding: 72px 0;
  }
  .about-hero::before {
    background-position: center;
    opacity: .85;
  }
  .about-hero > .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-hero-image {
    min-height: 400px;
  }
}

@media (max-width: 720px) {
  .about-hero {
    min-height: 420px;
    padding: 54px 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.9) 60%, transparent 100%);
  }
  .about-hero::before {
    opacity: .75;
  }
  .about-hero > .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 20px;
  }
  .about-hero-content p {
    font-size: 1rem;
  }
  .about-hero-image {
    min-height: 300px;
  }
}



.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-links {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .menu-open .nav-links { transform: none; }
  .nav-links a { padding: 14px 8px; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .hero-grid, .split, .why-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .hero-photo { inset: 0 40px 0 80px; }
  .split { gap: 54px; }
  .image-composition { min-height: 560px; max-width: 760px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .team-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .client-strip { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-item:nth-child(2)::after { display: none; }
  .cta-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-block, .detail-block:nth-child(even) { grid-template-columns: 1fr; }
  .detail-block:nth-child(even) .detail-image { order: 0; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .section-sm { padding: 56px 0; }
  .brand img { width: 184px; }
  .nav-wrap { min-height: 74px; }
  .nav-links { inset: 74px 0 auto; }
  h1 { font-size: clamp(2.45rem, 12.5vw, 3.65rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero { padding: 54px 0 68px; }
  .hero-grid { gap: 44px; }
  .hero-visual { min-height: 440px; }
  .hero-photo { inset: 0 0 0 26px; border-radius: 28px 28px 88px 28px; }
  .hero-badge { width: 94px; height: 94px; top: 18px; right: -6px; border-width: 6px; font-size: .66rem; }
  .floating-card { left: 0; bottom: 24px; padding: 17px; }
  .trust-inner { grid-template-columns: 1fr; padding: 22px; }
  .trust-item { padding: 14px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .section-head { display: block; }
  .section-head .btn { margin-top: 20px; }
  .cards, .why-features, .industry-grid, .testimonials, .process, .industry-detail-grid { grid-template-columns: 1fr; }
  .team-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .team-card { min-width: 0; }
  .feature-list, .detail-list { grid-template-columns: 1fr; }
  .process-item::after { display: none !important; }
  .image-composition { min-height: 460px; }
  .image-main { inset: 0 42px 58px 0; }
  .image-small { width: 51%; border-width: 7px; }
  .why-panel, .cta-wrap, .detail-content { padding: 30px 24px; }
  .client-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}


.media-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(190, 222, 155, .38), rgba(255,255,255,.96) 46%, rgba(19,30,61,.08)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(19,30,61,.025) 18px 19px);
}
.media-placeholder::before,
.media-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.media-placeholder::before {
  width: 260px;
  height: 260px;
  right: -120px;
  top: -120px;
  border: 42px solid rgba(53,124,4,.12);
}
.media-placeholder::after {
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: -80px;
  border: 32px solid rgba(19,30,61,.08);
}
.media-placeholder-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  max-width: 250px;
  padding: 24px;
  text-align: center;
}
.media-placeholder-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(19,30,61,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(19,30,61,.08);
}
.media-placeholder-icon svg { width: 30px; height: 30px; }
.media-placeholder strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}
.media-placeholder span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}
.media-placeholder.dark {
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(190,222,155,.24), transparent 28%),
    linear-gradient(145deg, #131e3d, #1d2f5d);
}
.media-placeholder.dark strong { color: white; }
.media-placeholder.dark span { color: rgba(255,255,255,.68); }
.media-placeholder.dark .media-placeholder-icon {
  color: var(--navy);
  background: var(--green-light);
  border-color: rgba(255,255,255,.12);
}

.vision-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eff8e7 100%);
}
.vision-section::before {
  content: "VISION";
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(19, 30, 61, .08);
  line-height: 1;
  z-index: 1;
  letter-spacing: -0.05em;
}
.vision-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.vision-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.vision-target {
  position: relative;
  width: 300px;
  height: 300px;
  display: grid;
  place-items: center;
}
.vision-target svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 30px rgba(53, 124, 4, 0.15));
}
.vision-content {
  display: grid;
  gap: 24px;
}
.vision-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
}
.vision-content .eyebrow {
  margin-bottom: 12px;
}
.vision-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #4c566d;
  max-width: 550px;
}

@media (max-width: 1040px) {
  .vision-inner { grid-template-columns: 1fr; gap: 48px; }
  .vision-section::before { font-size: clamp(4rem, 12vw, 8rem); left: 0; opacity: .05; }
}

@media (max-width: 720px) {
  .vision-section { padding: 72px 0; }
  .vision-target { min-height: 280px; }
  .vision-target svg { width: 200px; height: 200px; }
  .vision-content h2 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
}

.mission-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: linear-gradient(135deg, #eff8e7 0%, #f7f9fc 100%);
}
.mission-section::before {
  content: "MISSION";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(19, 30, 61, .08);
  line-height: 1;
  z-index: 1;
  letter-spacing: -0.05em;
}
.mission-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.mission-inner > div:first-child {
  order: 2;
}
.mission-inner > div:last-child {
  order: 1;
}
.mission-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.mission-target {
  position: relative;
  width: 300px;
  height: 300px;
  display: grid;
  place-items: center;
}
.mission-target svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 30px rgba(53, 124, 4, 0.15));
}
.mission-content {
  display: grid;
  gap: 24px;
}
.mission-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
  color: var(--navy);
}
.mission-content .eyebrow {
  margin-bottom: 12px;
}
.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.mission-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(53, 124, 4, .15);
  color: #4c566d;
  font-size: .95rem;
  line-height: 1.65;
  transition: all .3s ease;
}
.mission-list li:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(53, 124, 4, .35);
  transform: translateX(6px);
}
.mission-list li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(53, 124, 4, .12);
}

@media (max-width: 1040px) {
  .mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .mission-inner > div:first-child { order: unset; }
  .mission-inner > div:last-child { order: unset; }
  .mission-section::before { font-size: clamp(4rem, 12vw, 8rem); right: 0; opacity: .05; }
}

@media (max-width: 720px) {
  .mission-section { padding: 72px 0; }
  .mission-visual { min-height: 280px; }
  .mission-target svg { width: 200px; height: 200px; }
  .mission-content h2 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .mission-list li { padding: 12px 14px; font-size: .9rem; }
}
