:root {
  --tosca: #49c6b1;
  --tosca-dark: #159783;
  --tosca-soft: #d9f4ef;
  --yellow: #ffe100;
  --navy: #102333;
  --navy-2: #1b3449;
  --gray: #667481;
  --muted: #eff5f7;
  --white: #ffffff;
  --line: rgba(16, 35, 51, .12);
  --shadow: 0 24px 70px rgba(16, 35, 51, .14);
  --shadow-soft: 0 16px 40px rgba(16, 35, 51, .10);
  --radius: 28px;
  --radius-sm: 18px;
  --header-height: 86px;
}

[v-cloak] { display: none !important; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--navy);
  background: #fbfefd;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

button, input, textarea { font: inherit; }

::selection { background: var(--yellow); color: var(--navy); }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 70% 20%, var(--tosca-soft), #fff 38%, #f7fbfb 100%);
  display: grid;
  place-items: center;
}

.loader-card {
  width: min(360px, calc(100vw - 48px));
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  border-radius: 30px;
  padding: 38px;
  text-align: center;
  backdrop-filter: blur(16px);
}

.loader-card img { margin: 0 auto; }

.loader-line {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tosca), var(--yellow), var(--tosca));
  background-size: 220% 100%;
  animation: loadMove 1.3s linear infinite;
}

@keyframes loadMove { to { background-position: 220% 0; } }

.topbar {
  position: relative;
  z-index: 20;
  background: var(--navy);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  padding: 9px 0;
}

.topbar-pill {
  color: var(--navy);
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .03em;
}

.topbar-link {
  transition: color .25s ease, transform .25s ease;
}

.topbar-link:hover { color: var(--yellow); transform: translateY(-1px); }

.icon-phone {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 5px 5px 5px 0;
  transform: rotate(-35deg);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 35, 51, .06);
  transition: box-shadow .3s ease, transform .3s ease, background .3s ease;
}

.main-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 35px rgba(16, 35, 51, .08);
}

.brand-logo { width: 250px; height: auto; }

.navbar-nav .nav-link {
  position: relative;
  color: var(--navy);
  font-weight: 750;
  padding: 10px 13px !important;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--tosca);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--tosca-dark);
  background: rgba(73, 198, 177, .09);
  transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.btn-iksn,
.btn-outline-iksn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 12px 22px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn-iksn {
  color: var(--navy);
  border: 0;
  background: linear-gradient(135deg, var(--yellow), #fff06a 48%, var(--tosca) 100%);
  box-shadow: 0 16px 28px rgba(73,198,177,.22);
}

.btn-iksn:hover {
  transform: translateY(-3px);
  color: var(--navy);
  box-shadow: 0 22px 40px rgba(73,198,177,.30);
}

.btn-outline-iksn {
  border: 1px solid rgba(16, 35, 51, .18);
  color: var(--navy);
  background: rgba(255,255,255,.72);
}

.btn-outline-iksn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(16, 35, 51, .07);
  border: 1px solid rgba(16, 35, 51, .10);
}

.lang-switch button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--navy);
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  line-height: 1;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.lang-switch button.active {
  background: var(--navy);
  color: var(--white);
}

.lang-switch button:hover { transform: translateY(-1px); }
.lang-switch.compact button { padding: 8px 9px; }

.menu-trigger {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: var(--navy);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-trigger span {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.mobile-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(390px, 86vw);
  z-index: 101;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.show { transform: translateX(0); }

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.sidebar-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: white;
  font-size: 28px;
  line-height: 1;
}

.sidebar-body { padding: 18px; flex: 1; overflow: auto; }

.sidebar-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  margin-bottom: 8px;
  border-radius: 18px;
  color: var(--navy);
  font-weight: 800;
  background: #f4f8f9;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}

.sidebar-body a:hover,
.sidebar-body a.active {
  background: var(--tosca);
  color: white;
  transform: translateX(4px);
}

.sidebar-footer { padding: 24px; border-top: 1px solid var(--line); }

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16,35,51,.52);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  border: 0;
  transition: opacity .25s ease;
}

.sidebar-backdrop.show { opacity: 1; pointer-events: auto; }

.section-panel { position: relative; overflow: hidden; }

.hero-section {
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 20% 20%, rgba(73,198,177,.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6fbfa 58%, #eaf7f5 100%);
}

.min-vh-custom { min-height: calc(100vh - 130px); padding: 70px 0 80px; }

.geometric-shape {
  position: absolute;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .95;
}

.shape-one {
  top: 108px;
  right: -160px;
  width: 470px;
  height: 470px;
  background: var(--tosca);
  transform: rotate(90deg);
}

.shape-two {
  bottom: -100px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(73,198,177,.34);
  transform: rotate(180deg);
}

.shape-three {
  top: 160px;
  left: 6%;
  width: 118px;
  height: 118px;
  background: var(--yellow);
  opacity: .86;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--tosca-dark);
  background: rgba(73,198,177,.12);
  border: 1px solid rgba(73,198,177,.22);
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--tosca);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid var(--tosca);
  animation: pulse 1.4s linear infinite;
}

@keyframes pulse { to { opacity: 0; transform: scale(1.8); } }

.hero-title {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 950;
  color: var(--navy);
}

.hero-subtitle,
.lead-text,
.section-desc {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.85;
}

.hero-subtitle { max-width: 620px; font-size: 19px; }

.hero-visual { position: relative; padding: clamp(16px, 2vw, 26px); }

.hero-img,
.image-cut,
.service-ship-card img,
.problem-image img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-img {
  min-height: 440px;
  border-radius: 36px;
  clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 8% 100%, 0 90%);
}

.hero-profile-visual { max-width: 680px; margin-left: auto; }

.profile-cover-card {
  position: relative;
  z-index: 1;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 36px;
  background: #fff;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 8% 100%, 0 90%);
}

.profile-cover-title {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px) clamp(24px, 4.2vw, 54px) clamp(18px, 2.4vw, 30px);
  background: #fff;
}

.profile-cover-title span {
  display: block;
  width: 100%;
  color: var(--navy);
  font-size: clamp(48px, 4.7vw, 78px);
  line-height: .94;
  font-weight: 950;
  letter-spacing: .035em;
  white-space: nowrap;
}

.profile-cover-image {
  position: relative;
  flex: 1 1 auto;
  min-height: 250px;
  background-image: url('../img/01-hero-kapal-container-laut.png');
  background-size: cover;
  background-position: center bottom;
}

.profile-cover-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(32%, 185px);
  aspect-ratio: 1 / 1;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.visual-accent {
  position: absolute;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.accent-left {
  width: 110px;
  height: 110px;
  background: var(--yellow);
  left: 0;
  top: 0;
}

.accent-right {
  width: 160px;
  height: 160px;
  background: var(--tosca);
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.hero-floating-card {
  position: absolute;
  left: 0;
  bottom: 54px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(310px, 78%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transform: translateX(-8px);
}

.hero-floating-card b,
.hero-floating-card small { display: block; }
.hero-floating-card small { color: var(--gray); }

.mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 14px;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 640px;
}

.stat-card {
  padding: 18px 14px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(16,35,51,.08);
  box-shadow: 0 12px 32px rgba(16,35,51,.07);
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.stat-card strong { display: block; font-size: 26px; line-height: 1; color: var(--tosca-dark); }
.stat-card span { display: block; margin-top: 8px; color: var(--gray); font-size: 12px; font-weight: 800; }

.feature-strip { position: relative; z-index: 3; margin-top: -52px; padding-bottom: 52px; }

.strip-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(16,35,51,.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.strip-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 120px;
  height: 120px;
  background: var(--tosca-soft);
  border-radius: 50%;
  transition: transform .28s ease;
}

.strip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.strip-card:hover::after { transform: scale(1.4); }

.strip-card-dark { background: var(--navy); color: white; }
.strip-card-dark p { color: rgba(255,255,255,.74); }
.strip-card h3 { position: relative; z-index: 1; font-size: 21px; font-weight: 900; margin: 20px 0 14px; }
.strip-card p { position: relative; z-index: 1; color: var(--gray); line-height: 1.7; margin: 0; }
.strip-number { position: relative; z-index: 1; display: inline-flex; color: var(--navy); background: var(--yellow); border-radius: 14px; padding: 7px 10px; font-weight: 950; }

.section-padding { padding: 105px 0; position: relative; }

.section-title {
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.045em;
  color: var(--navy);
  margin: 12px 0 24px;
}

.section-heading { max-width: 840px; margin: 0 auto; }

.section-desc { max-width: 770px; }

.about-section { overflow: hidden; }

.image-cut-wrap { position: relative; padding: 30px; }
.image-cut { border-radius: 36px; min-height: 410px; clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%); }
.corner-block { position: absolute; width: 125px; height: 125px; clip-path: polygon(0 0, 100% 0, 0 100%); z-index: 2; }
.corner-tosca { background: var(--tosca); top: 0; right: 0; transform: rotate(90deg); }
.corner-yellow { background: var(--yellow); left: 0; bottom: 0; }

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-checks div {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16,35,51,.06);
  font-weight: 800;
}

.about-checks span { color: var(--tosca-dark); margin-right: 8px; }

.values-section {
  background: linear-gradient(180deg, #f6fbfb 0%, #ffffff 100%);
}

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

.value-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(16,35,51,.08);
  min-height: 245px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--tosca), var(--yellow));
}

.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(73,198,177,.32); }
.value-no { color: rgba(16,35,51,.10); font-size: 50px; line-height: 1; font-weight: 950; }
.value-card h3 { margin: 14px 0 12px; font-size: 24px; font-weight: 950; }
.value-card p { color: var(--gray); line-height: 1.75; margin: 0; }

.problem-section { background: #fff; }
.problem-image img { border-radius: 28px; min-height: 240px; }
.problem-list { display: grid; gap: 18px; }
.problem-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: #f8fbfc;
  border: 1px solid rgba(16,35,51,.08);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.problem-card:hover { transform: translateX(8px); background: #fff; box-shadow: var(--shadow-soft); }
.problem-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 950;
  font-size: 20px;
}
.problem-card h3 { font-weight: 950; margin-bottom: 10px; }
.problem-card p { color: var(--gray); line-height: 1.75; margin: 0; }

.services-section {
  background:
    linear-gradient(90deg, rgba(73,198,177,.11), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f6fbfb 100%);
}
.service-ship-card {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: var(--navy);
}
.service-ship-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -18px;
  left: -18px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.service-ship-card img { position: relative; border-radius: 24px; height: 230px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(16,35,51,.07);
  border: 1px solid rgba(16,35,51,.07);
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--tosca-soft), #fff7a6);
  margin-bottom: 22px;
}
.service-icon svg { width: 31px; height: 31px; }
.service-card h3 { font-size: 22px; font-weight: 950; line-height: 1.18; margin-bottom: 14px; }
.service-card p { color: var(--gray); line-height: 1.72; margin-bottom: 20px; }
.service-card button {
  margin-top: auto;
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--tosca-dark);
  font-weight: 950;
  padding: 0;
}
.service-card button span { transition: transform .25s ease; display: inline-block; }
.service-card:hover button span { transform: translateX(5px); }

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
}

.service-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 138px;
  height: 138px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,225,0,.95), rgba(73,198,177,.72));
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: .9;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card-top .service-icon { margin-bottom: 0; }

.service-category-badge,
.service-popup-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #fff6a0 48%, var(--tosca));
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(73,198,177,.18);
}

.service-summary-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.service-summary-list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  font-weight: 780;
  line-height: 1.55;
}

.service-summary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 950;
}

.service-detail-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px !important;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--yellow), #fff06a 48%, var(--tosca)) !important;
  box-shadow: 0 16px 30px rgba(73,198,177,.20);
  padding: 12px 18px !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.service-detail-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(73,198,177,.30);
}

.service-popup {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 12, 18, .72);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.service-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.service-popup-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(73,198,177,.24), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
  padding: clamp(24px, 4vw, 42px);
}

.service-popup-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 170px;
  background: var(--yellow);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: .72;
  pointer-events: none;
}

.service-popup-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 30px;
  line-height: 1;
  transition: transform .25s ease, background .25s ease;
}

.service-popup-close:hover {
  transform: rotate(90deg);
  background: var(--tosca-dark);
}

.service-popup-card h3 {
  clear: both;
  max-width: 720px;
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -.04em;
}

.service-popup-intro {
  max-width: 780px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-popup-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-popup-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,35,51,.08);
  box-shadow: 0 10px 26px rgba(16,35,51,.06);
}

.service-popup-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.service-popup-item b {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.service-popup-item small {
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--tosca-dark);
  background: rgba(73,198,177,.12);
  padding: 5px 8px;
  font-weight: 950;
  white-space: nowrap;
}

.service-popup-item p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
}

.why-section { background: var(--navy); overflow: hidden; }
.why-section .section-title,
.why-section .section-desc { color: #fff; }
.why-section .section-desc { color: rgba(255,255,255,.72); }
.why-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.09);
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.why-item:hover { transform: translateY(-5px); background: rgba(73,198,177,.22); }
.why-item span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
}
.why-item p { margin: 0; font-weight: 750; line-height: 1.42; }

.cooperation-section { background: #fff; }
.scope-list {
  padding-left: 22px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.8;
}
.partner-card {
  position: relative;
  min-height: 430px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(73,198,177,.12), transparent 44%),
    #f7fbfb;
  border: 1px solid rgba(16,35,51,.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}
.partner-card::before,
.partner-card::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.partner-card::before { top: 0; left: 0; width: 130px; height: 130px; background: var(--yellow); }
.partner-card::after { bottom: 0; right: 0; width: 180px; height: 180px; background: var(--tosca); transform: rotate(180deg); }
.partner-logo { position: relative; z-index: 1; max-height: 120px; margin: 0 auto; }
.partner-logo.wide { max-height: 95px; width: 86%; }
.partner-separator { position: relative; z-index: 1; width: 74%; height: 1px; background: rgba(16,35,51,.16); display: block; }
.partner-caption {
  position: relative;
  z-index: 1;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  font-size: 13px;
}

.structure-section {
  background: linear-gradient(180deg, #f6fbfb 0%, #fff 100%);
}

.structure-image-card {
  position: relative;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(16,35,51,.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.structure-image-card::before,
.structure-image-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
.structure-image-card::before {
  width: 130px;
  height: 130px;
  top: 0;
  left: 0;
  background: rgba(255,225,0,.28);
}
.structure-image-card::after {
  width: 170px;
  height: 170px;
  right: 0;
  bottom: 0;
  background: rgba(73,198,177,.24);
  transform: rotate(180deg);
}
.structure-image-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16,35,51,.08);
}

.org-chart {
  padding: 32px 20px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid rgba(16,35,51,.08);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}
.org-chart-pdf {
  scrollbar-width: thin;
}
.org-chart-exact {
  --org-line: #0f1720;
  --org-border: #0f1720;
  --org-bg: #ffffff;
  --org-text: #102333;
}
.org-canvas {
  position: relative;
  width: 1000px;
  height: 380px;
  margin: 0 auto;
}
.org-lines-svg {
  position: absolute;
  inset: 0;
  width: 1000px;
  height: 380px;
  z-index: 0;
  pointer-events: none;
}
.org-lines-svg line {
  stroke: var(--org-line);
  stroke-width: 4;
  stroke-linecap: square;
}
.org-node {
  position: absolute;
  z-index: 2;
  width: 150px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2.5px solid var(--org-border);
  border-radius: 14px;
  padding: 8px 10px;
  background: var(--org-bg) !important;
  color: var(--org-text) !important;
  font-weight: 950;
  font-size: 13px;
  line-height: 1.16;
  letter-spacing: -.02em;
  box-shadow: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.org-node:hover {
  transform: translateY(-4px);
  border-color: var(--tosca-dark);
  box-shadow: 0 14px 26px rgba(16,35,51,.10);
}
.org-director {
  left: 390px;
  top: 24px;
  width: 150px;
  min-height: 64px;
  font-size: 13px;
}
.org-finance {
  left: 50px;
  top: 168px;
  width: 140px;
}
.org-ops {
  left: 220px;
  top: 168px;
  width: 135px;
}
.org-docs {
  left: 390px;
  top: 168px;
  width: 150px;
}
.org-maintenance {
  left: 560px;
  top: 168px;
  width: 150px;
}
.org-dpa {
  left: 790px;
  top: 105px;
  width: 140px;
  min-height: 64px;
}
.org-port {
  left: 790px;
  top: 190px;
  width: 140px;
  min-height: 64px;
}
.org-ship {
  width: 150px;
  min-height: 64px;
  font-size: 12.5px;
}
.org-ship-lancar { left: 210px; top: 292px; }
.org-ship-segara { left: 390px; top: 292px; }
.org-ship-duta { left: 560px; top: 292px; }
.org-ship-radhika { left: 785px; top: 292px; }

.scope-section { background: #fff; }
.scope-tabs { display: grid; gap: 10px; }
.scope-tabs button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(16,35,51,.1);
  border-radius: 18px;
  background: #f7fbfb;
  color: var(--navy);
  padding: 16px;
  font-weight: 900;
  text-align: left;
  transition: background .25s ease, color .25s ease, transform .25s ease, border .25s ease;
}
.scope-tabs button span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--yellow);
  color: var(--navy);
  flex: 0 0 38px;
}
.scope-tabs button:hover,
.scope-tabs button.active { background: var(--navy); color: #fff; transform: translateX(5px); border-color: var(--navy); }
.scope-detail {
  min-height: 550px;
  padding: 42px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(73,198,177,.12), transparent 46%),
    #f7fbfb;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16,35,51,.08);
}
.scope-detail-top {
  display: flex;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.scope-detail h3 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 950; letter-spacing: -.04em; }
.scope-detail p { color: var(--gray); line-height: 1.85; font-size: 17px; }
.detail-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.detail-list li {
  position: relative;
  padding: 15px 16px 15px 48px;
  border-radius: 18px;
  background: #fff;
  color: var(--navy);
  font-weight: 750;
  box-shadow: 0 8px 16px rgba(16,35,51,.05);
}
.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 950;
}

.gallery-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(73,198,177,.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6fbfb 100%);
}

.gallery-subhead {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
}

.gallery-subhead > span {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #fff06a 56%, var(--tosca));
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(73,198,177,.18);
}

.gallery-subhead h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 950;
  letter-spacing: -.035em;
}

.gallery-subhead p {
  margin: 0;
  color: var(--gray);
  line-height: 1.7;
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-card,
.doc-card {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-card::before,
.doc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 44%, rgba(16,35,51,.88) 100%);
  pointer-events: none;
}

.gallery-card::after,
.doc-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 76px;
  z-index: 2;
  background: rgba(73,198,177,.88);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: .95;
  pointer-events: none;
}

.gallery-professional .gallery-card.is-featured { grid-column: span 2; }
.gallery-card img { width: 100%; height: 285px; object-fit: cover; opacity: .95; transition: transform .4s ease, opacity .35s ease; }
.gallery-professional .gallery-card.is-featured img { height: 365px; }
.gallery-card span,
.doc-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  color: #fff;
  background: rgba(16,35,51,.78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  text-align: left;
  backdrop-filter: blur(10px);
}

.gallery-card span small {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-card:hover img,
.doc-card:hover img { transform: scale(1.07); opacity: 1; }
.document-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.doc-card img { width: 100%; height: 300px; object-fit: cover; object-position: center; opacity: .96; transition: transform .4s ease, opacity .35s ease; }

.contact-section {
  background: #f6fbfb;
  padding-bottom: 80px;
}
.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 16% 18%, rgba(73,198,177,.30), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, #102333 56%, #0b1824 100%);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.contact-panel::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: 0;
  top: 0;
  background: var(--tosca);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: .86;
}
.contact-panel .eyebrow { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.18); }
.contact-list { display: grid; gap: 12px; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  min-width: 280px;
  color: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, transform .25s ease;
}
.contact-list a:hover { background: rgba(255,255,255,.16); transform: translateX(5px); }
.contact-list small { display: block; opacity: .74; }

.contact-symbol {
  width: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  line-height: 1;
}
.contact-form {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.contact-form label { display: block; font-weight: 900; color: var(--navy); margin-bottom: 7px; }
.contact-form .form-control {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(16,35,51,.13);
  background: #f7fbfb;
  color: var(--navy);
  padding: 13px 15px;
}
.contact-form textarea.form-control { min-height: 140px; }
.contact-form .form-control:focus {
  border-color: var(--tosca);
  box-shadow: 0 0 0 .25rem rgba(73,198,177,.16);
}
.form-status { font-weight: 800; }
.form-status.success { color: var(--tosca-dark); }
.form-status.error { color: #c73232; }

.site-footer {
  padding: 38px 0;
  color: rgba(255,255,255,.72);
  background: var(--navy);
}
.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px auto;
  align-items: center;
  gap: 28px;
}
.footer-brand-group {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
  min-width: 0;
}
.footer-brand-box {
  flex: 0 0 auto;
  min-width: 0;
}
.footer-brand-box p {
  font-size: 14px;
  line-height: 1.55;
}
.footer-logo { width: 260px; background: white; border-radius: 20px; padding: 10px; }

.footer-contact {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.55;
  min-width: 0;
}

.footer-contact-link,
.footer-contact a {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  transition: color .25s ease, transform .25s ease;
}

.footer-contact-link:hover,
.footer-contact a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.footer-contact span { font-weight: 900; color: var(--white); }
.footer-contact small { color: rgba(255,255,255,.62); }
.footer-map {
  position: relative;
  display: block;
  justify-self: center;
  width: 178px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}
.footer-action {
  justify-self: end;
  text-align: right;
}
.back-top {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.06);
  padding: 11px 18px;
  font-weight: 900;
  transition: background .25s ease, transform .25s ease;
  white-space: nowrap;
}
.back-top:hover { transform: translateY(-3px); background: var(--tosca); }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 140px;
  height: 140px;
  z-index: 60;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  font-weight: 950;
  isolation: isolate;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 38px rgba(21,151,131,.28);
  z-index: -1;
}

.wa-logo-core {
  position: relative;
  z-index: 2;
  width: 93px;
  height: 93px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(21,151,131,.36);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wa-logo-core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-ring-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: waTextRotate 11s linear infinite;
  transform-origin: 50% 50%;
}

.wa-ring-text text {
  fill: var(--yellow);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.floating-whatsapp:hover { color: var(--navy); transform: translateY(-4px); }
.floating-whatsapp:hover .wa-logo-core { transform: scale(1.04); box-shadow: 0 24px 46px rgba(21,151,131,.42); }
.floating-whatsapp:hover .wa-ring-text { animation-duration: 7s; }

@keyframes waTextRotate { to { transform: rotate(360deg); } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(5, 12, 18, .86);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox figure { margin: 0; width: min(980px, 100%); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 26px; box-shadow: var(--shadow); background: white; }
.lightbox figcaption { color: white; text-align: center; margin-top: 14px; font-weight: 900; }
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: white;
  font-size: 32px;
  line-height: 1;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (min-width: 1500px) {
  .container-xl { max-width: min(1540px, calc(100vw - 96px)); }
  .min-vh-custom { min-height: min(820px, calc(100vh - 130px)); padding: clamp(58px, 4vw, 84px) 0; }
  .hero-title { font-size: clamp(72px, 5.2vw, 96px); max-width: 820px; }
  .hero-subtitle { max-width: 720px; font-size: 21px; }
  .hero-profile-visual { max-width: 720px; }
  .profile-cover-card { min-height: 500px; }
  .profile-cover-title { min-height: 215px; }
  .profile-cover-title span { font-size: clamp(70px, 4.3vw, 92px); }
  .profile-cover-image { min-height: 285px; }
}

@media (min-width: 1900px) {
  .container-xl { max-width: min(1740px, calc(100vw - 128px)); }
  .min-vh-custom { min-height: min(880px, calc(100vh - 130px)); }
  .hero-title { font-size: clamp(82px, 4.9vw, 108px); max-width: 930px; }
  .hero-subtitle { max-width: 800px; }
  .hero-profile-visual { max-width: 800px; }
  .profile-cover-card { min-height: 540px; }
  .profile-cover-title { min-height: 235px; }
  .profile-cover-title span { font-size: clamp(82px, 4.2vw, 104px); }
  .profile-cover-image { min-height: 305px; }
  .shape-one { right: -80px; width: 540px; height: 540px; }
}

@media (max-width: 1199px) {
  .brand-logo { width: 220px; }
  .footer-content { grid-template-columns: minmax(0, 1fr) 170px auto; gap: 22px; }
  .footer-brand-group { grid-template-columns: 220px minmax(220px, 1fr); gap: 22px; }
  .footer-logo { width: 220px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-grid, .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid, .document-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-professional .gallery-card.is-featured { grid-column: span 2; }
}

@media (max-width: 991px) {
  .footer-content { grid-template-columns: minmax(0, 1fr) 200px; align-items: start; gap: 24px; }
  .footer-brand-group { grid-template-columns: minmax(0, 1fr); align-items: flex-start; gap: 18px; }
  .footer-logo { width: 240px; }
  .footer-map { width: 200px; }
  .footer-action { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .min-vh-custom { min-height: auto; padding: 50px 0 90px; }
  .hero-img { min-height: 350px; }
  .hero-profile-visual { max-width: 680px; margin: 0 auto; }
  .profile-cover-card { min-height: 390px; }
  .profile-cover-title { min-height: 170px; }
  .profile-cover-title span { font-size: clamp(48px, 8vw, 70px); }
  .profile-cover-image { min-height: 220px; }
  .feature-strip { margin-top: -36px; }
  .section-padding { padding: 78px 0; }
  .why-list { grid-template-columns: 1fr; }
  .scope-detail-top { flex-direction: column; }
}

@media (max-width: 767px) {
  .brand-logo { width: 190px; }
  .hero-title { font-size: 42px; }
  .hero-subtitle { font-size: 16px; }
  .hero-visual { padding: 14px; }
  .hero-img { min-height: 290px; border-radius: 26px; }
  .profile-cover-card { min-height: 340px; border-radius: 26px; }
  .profile-cover-title { min-height: 140px; padding: 26px 24px 18px; }
  .profile-cover-title span { font-size: clamp(38px, 9vw, 56px); letter-spacing: .025em; }
  .profile-cover-image { min-height: 200px; }
  .hero-floating-card { position: relative; bottom: auto; width: 100%; margin-top: -22px; transform: none; }
  .stats-grid, .about-checks, .service-grid, .service-category-grid, .value-grid, .gallery-grid, .document-grid { grid-template-columns: 1fr; }
  .gallery-professional .gallery-card.is-featured { grid-column: auto; }
  .gallery-card img, .gallery-professional .gallery-card.is-featured img, .doc-card img { height: 260px; }
  .gallery-subhead { align-items: flex-start; }
  .problem-card { grid-template-columns: 1fr; }
  .contact-list a { min-width: 100%; }
  .contact-form { padding: 22px; }
  .scope-detail { padding: 28px; min-height: auto; }
  .site-footer { padding: 32px 0; }
  .footer-content { grid-template-columns: 1fr; justify-items: start; gap: 22px; }
  .footer-brand-group { grid-template-columns: 1fr; gap: 18px; width: 100%; }
  .footer-contact { width: 100%; }
  .footer-contact-link, .footer-contact a { width: 100%; }
  .footer-logo { width: 220px; }
  .footer-map { width: min(100%, 280px); justify-self: start; }
  .footer-action { grid-column: auto; justify-self: start; }
}

@media (max-width: 575px) {
  .container-xl { padding-left: 22px; padding-right: 22px; }
  .main-header .navbar { padding-top: 12px !important; padding-bottom: 12px !important; }
  .brand-logo { width: min(176px, 58vw); }
  .menu-trigger { width: 46px; height: 46px; border-radius: 14px; }
  .hero-title { font-size: clamp(34px, 10.8vw, 42px); letter-spacing: -.05em; }
  .hero-actions .btn { width: 100%; display: inline-flex; justify-content: center; }
  .stats-grid { gap: 10px; }
  .stat-card { padding: 15px 13px; }
  .section-padding { padding: 64px 0; }
  .section-title { font-size: clamp(30px, 9vw, 38px); }
  .profile-cover-card { min-height: 315px; }
  .profile-cover-title { min-height: 122px; padding: 23px 21px 16px; }
  .profile-cover-title span { font-size: clamp(30px, 9.8vw, 46px); line-height: .98; letter-spacing: .018em; }
  .profile-cover-image { min-height: 193px; }
  .accent-left { width: 82px; height: 82px; }
  .accent-right { width: 118px; height: 118px; }
  .strip-card, .value-card, .service-card, .problem-card { padding: 24px; }
  .contact-panel { border-radius: 30px; }
  .service-popup { padding: 16px; }
  .service-popup-card { border-radius: 28px; }
  .service-popup-item-head { flex-direction: column; align-items: flex-start; }
  .floating-whatsapp { width: 126px; height: 126px; right: 8px; bottom: 8px; }
  .floating-whatsapp::before { inset: 20px; }
  .wa-logo-core { width: 81px; height: 81px; }
  .wa-ring-text text { font-size: 10px; letter-spacing: .15em; }
}

@media (max-width: 380px) {
  .container-xl { padding-left: 18px; padding-right: 18px; }
  .hero-badge, .eyebrow { font-size: 10px; letter-spacing: .08em; padding: 7px 11px; }
  .hero-title { font-size: clamp(31px, 11vw, 38px); }
  .hero-subtitle, .lead-text, .section-desc { font-size: 15px; line-height: 1.75; }
  .profile-cover-card { min-height: 286px; }
  .profile-cover-title { min-height: 108px; padding: 20px 18px 13px; }
  .profile-cover-title span { font-size: clamp(27px, 9.2vw, 34px); }
  .profile-cover-image { min-height: 178px; }
  .hero-floating-card { padding: 15px; gap: 11px; }
  .mini-icon { width: 38px; height: 38px; flex: 0 0 38px; }
  .scope-detail { padding: 23px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* Fitur Unduh PDF: tombol memakai print browser dan template PDF yang disembunyikan di layar. */
.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-download-pdf::before,
.footer-download::before {
  content: "↓";
  font-weight: 950;
  line-height: 1;
}

.print-profile { display: none; }

.footer-download {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #fff06a 48%, var(--tosca) 100%);
  padding: 12px 18px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(73,198,177,.20);
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  html,
  body {
    width: 210mm;
    min-height: 297mm;
    background: #ffffff !important;
    color: #102333 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    font-size: 10.2pt;
    line-height: 1.45;
    overflow: visible !important;
  }

  a[href]::after { content: "" !important; }

  .site-loader,
  .topbar,
  .main-header,
  .mobile-sidebar,
  .sidebar-backdrop,
  .site-footer,
  .floating-whatsapp,
  .service-popup,
  .lightbox,
  main > section:not(.print-profile) {
    display: none !important;
  }

  [v-cloak],
  .print-profile,
  .print-profile [v-cloak] {
    display: block !important;
  }

  .print-profile {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #102333;
  }

  .print-profile * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .print-sheet {
    position: relative;
    min-height: 260mm;
    break-after: page;
    page-break-after: always;
    overflow: visible;
    border-radius: 18px;
    padding: 13mm;
    background:
      radial-gradient(circle at 90% 8%, rgba(73,198,177,.20), transparent 32%),
      linear-gradient(180deg, #fbfefd 0%, #ffffff 52%, #f4fbf9 100%);
    border: 1px solid rgba(16,35,51,.10);
  }

  .print-sheet:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .print-cover {
    display: flex !important;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    background:
      radial-gradient(circle at 82% 16%, rgba(255,225,0,.56), transparent 28%),
      radial-gradient(circle at 18% 83%, rgba(73,198,177,.52), transparent 31%),
      linear-gradient(135deg, #102333 0%, #1b3449 50%, #159783 100%);
    color: #ffffff;
    border: 0;
  }

  .print-cover::before,
  .print-cover::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }

  .print-cover::before {
    width: 86mm;
    height: 86mm;
    right: -26mm;
    top: -24mm;
    border: 1px solid rgba(255,255,255,.22);
  }

  .print-cover::after {
    width: 58mm;
    height: 58mm;
    left: -18mm;
    bottom: -16mm;
    background: rgba(255,225,0,.20);
  }

  .print-cover-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,.82);
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: 8.5pt;
  }

  .print-logo {
    width: 60mm;
    height: auto;
    padding: 7mm;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
  }

  .print-cover-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 12mm;
  }

  .print-kicker {
    width: fit-content;
    margin: 0 0 7mm;
    padding: 3mm 5mm;
    border-radius: 999px;
    color: #102333;
    background: #ffe100;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 8pt;
  }

  .print-cover h1 {
    margin: 0;
    font-size: 30pt;
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 950;
  }

  .print-cover-main p:not(.print-kicker) {
    margin: 7mm 0 0;
    color: rgba(255,255,255,.78);
    font-size: 12pt;
  }

  .print-cover-image {
    margin: 0;
    padding: 4mm;
    border-radius: 26px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
  }

  .print-cover-image img {
    width: 100%;
    height: 104mm;
    object-fit: cover;
    border-radius: 20px;
  }

  .print-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4mm;
  }

  .print-stats div {
    padding: 5mm 4mm;
    border-radius: 15px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
  }

  .print-stats strong {
    display: block;
    font-size: 17pt;
    color: #ffe100;
    font-weight: 950;
  }

  .print-stats span {
    color: rgba(255,255,255,.76);
    font-size: 8pt;
  }

  .print-section-head {
    display: flex;
    align-items: flex-start;
    gap: 6mm;
    margin-bottom: 9mm;
  }

  .print-section-head > span {
    flex: 0 0 auto;
    min-width: 14mm;
    height: 14mm;
    padding: 0 3mm;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #102333;
    background: linear-gradient(135deg, #ffe100, #49c6b1);
    font-weight: 950;
    font-size: 8.4pt;
  }

  .print-section-head p {
    margin: 0 0 2mm;
    color: #159783;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-weight: 950;
    font-size: 8pt;
  }

  .print-section-head h2 {
    margin: 0;
    color: #102333;
    font-size: 21pt;
    line-height: 1.06;
    letter-spacing: -.04em;
    font-weight: 950;
  }

  .print-lead {
    margin: 0 0 7mm;
    color: #4f6272;
    font-size: 10.5pt;
    line-height: 1.7;
  }

  .print-two-col {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 8mm;
    align-items: start;
  }

  .print-two-col-balanced { grid-template-columns: 1fr 1fr; }

  .print-photo-card,
  .print-gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(16,35,51,.10);
    background: #ffffff;
  }

  .print-photo-card img {
    width: 100%;
    height: 105mm;
    object-fit: cover;
  }

  .print-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4mm;
  }

  .print-check-grid span {
    padding: 4mm;
    border-radius: 13px;
    background: #ffffff;
    border: 1px solid rgba(16,35,51,.10);
    font-weight: 850;
  }

  .print-check-grid span::before {
    content: "✓";
    color: #159783;
    margin-right: 2mm;
    font-weight: 950;
  }

  .print-card-grid {
    display: grid;
    gap: 4mm;
  }

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

  .print-card,
  .print-item,
  .print-scope-card,
  .print-structure-image,
  .print-contact-grid div {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .print-card {
    min-height: 43mm;
    padding: 5mm;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(16,35,51,.10);
  }

  .print-card small,
  .print-service-head span,
  .print-scope-card small,
  .print-item small,
  .print-contact-grid small {
    display: block;
    color: #159783;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 7.4pt;
  }

  .print-card h3,
  .print-service h3,
  .print-scope-card h3 {
    margin: 2mm 0;
    color: #102333;
    font-weight: 950;
    font-size: 12.5pt;
    line-height: 1.12;
  }

  .print-card p,
  .print-service p,
  .print-item p,
  .print-scope-card p {
    margin: 0;
    color: #5c6c78;
    line-height: 1.55;
    font-size: 8.7pt;
  }

  .print-card-dark {
    color: #ffffff;
    background: linear-gradient(135deg, #102333, #1b3449);
    border: 0;
  }

  .print-card-dark h3,
  .print-card-dark p { color: #ffffff; }
  .print-card-dark small { color: #ffe100; }

  .print-divider {
    height: 1px;
    margin: 7mm 0;
    background: rgba(16,35,51,.12);
  }

  .print-service {
    margin-bottom: 6mm;
    padding: 6mm;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(16,35,51,.10);
  }

  .print-service-head {
    padding-bottom: 4mm;
    border-bottom: 1px solid rgba(16,35,51,.10);
  }

  .print-summary-list,
  .print-ordered-list,
  .print-scope-card ul {
    margin: 4mm 0;
    padding-left: 5mm;
    color: #4f6272;
  }

  .print-summary-list li,
  .print-ordered-list li,
  .print-scope-card li {
    margin-bottom: 1.8mm;
  }

  .print-service-sheet .print-summary-list {
    margin-bottom: 6mm;
  }

  .print-detail-title {
    width: fit-content;
    margin: 4mm 0;
    padding: 2.5mm 4mm;
    border-radius: 999px;
    color: #102333;
    background: linear-gradient(135deg, #ffe100, #49c6b1);
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 7.8pt;
  }

  .print-item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3mm;
  }

  .print-item-list-detailed {
    grid-template-columns: 1fr;
    gap: 4mm;
  }

  .print-item {
    padding: 4mm;
    border-radius: 14px;
    background: #f4fbf9;
    border: 1px solid rgba(73,198,177,.18);
  }

  .print-item b {
    display: block;
    margin-bottom: 1mm;
    color: #102333;
    font-size: 9.4pt;
    line-height: 1.2;
  }

  .print-number-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3mm;
  }

  .print-number-list div {
    display: grid;
    grid-template-columns: 12mm 1fr;
    gap: 3mm;
    align-items: center;
    padding: 3.5mm;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(16,35,51,.10);
  }

  .print-number-list span {
    width: 10mm;
    height: 10mm;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #102333;
    background: #ffe100;
    font-weight: 950;
    font-size: 7.8pt;
  }

  .print-number-list p {
    margin: 0;
    color: #4f6272;
    font-weight: 750;
    font-size: 9pt;
  }

  .print-partner-card {
    min-height: 78mm;
    padding: 8mm;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(16,35,51,.10);
    display: grid;
    place-items: center;
    text-align: center;
  }

  .print-partner-card img {
    max-width: 58mm;
    max-height: 25mm;
    object-fit: contain;
  }

  .print-partner-card span {
    width: 24mm;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #49c6b1, #ffe100);
  }

  .print-partner-card p {
    margin: 0;
    color: #5c6c78;
    font-size: 8pt;
    font-weight: 800;
    letter-spacing: .04em;
  }

  .print-structure-image {
    position: relative;
    margin: 0;
    padding: 5mm;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(16,35,51,.10);
    overflow: hidden;
  }

  .print-structure-image img {
    display: block;
    width: 100%;
    max-height: 215mm;
    object-fit: contain;
    border-radius: 14px;
    background: #ffffff;
  }

  .print-scope-card {
    margin-bottom: 4mm;
    padding: 5mm;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid rgba(16,35,51,.10);
  }

  .print-scope-card-full {
    margin-bottom: 0;
  }

  .print-scope-card-full .print-lead {
    margin-bottom: 6mm;
  }

  .print-scope-ordered {
    margin: 0;
    padding-left: 6mm;
    color: #4f6272;
  }

  .print-scope-ordered li {
    margin-bottom: 2.8mm;
    padding-left: 1.5mm;
    line-height: 1.55;
    font-size: 9.3pt;
  }

  .print-person {
    margin-bottom: 3mm !important;
    color: #159783 !important;
    font-weight: 850;
  }

  .print-scope-pair-sheet {
    padding: 10mm;
  }

  .print-scope-pair-sheet .print-section-head {
    margin-bottom: 5mm;
  }

  .print-scope-pair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5mm;
    align-items: stretch;
  }

  .print-scope-pair-grid .print-scope-card {
    margin-bottom: 0;
    padding: 4.2mm;
  }

  .print-scope-card-head {
    display: flex;
    align-items: flex-start;
    gap: 3mm;
    margin-bottom: 4mm;
    padding-bottom: 3mm;
    border-bottom: 1px solid rgba(16,35,51,.10);
  }

  .print-scope-card-head span {
    flex: 0 0 auto;
    min-width: 11mm;
    height: 11mm;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #102333;
    background: linear-gradient(135deg, #ffe100, #49c6b1);
    font-weight: 950;
    font-size: 7.6pt;
  }

  .print-scope-card-head h3 {
    margin: 0;
    color: #102333;
    font-size: 12pt;
    line-height: 1.12;
    letter-spacing: -.03em;
    font-weight: 950;
  }

  .print-scope-pair-grid .print-lead {
    margin-bottom: 4mm;
    font-size: 8.2pt;
    line-height: 1.45;
  }

  .print-scope-pair-grid .print-detail-title {
    margin: 3mm 0;
    padding: 2mm 3mm;
    font-size: 6.8pt;
  }

  .print-scope-pair-grid .print-scope-ordered {
    padding-left: 5mm;
  }

  .print-scope-pair-grid .print-scope-ordered li {
    margin-bottom: 1.5mm;
    font-size: 7.8pt;
    line-height: 1.34;
  }

  .print-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5mm;
  }

  .print-gallery-grid img {
    width: 100%;
    height: 72mm;
    object-fit: cover;
  }

  .print-gallery-grid figcaption {
    padding: 3mm 4mm;
    color: #102333;
    font-weight: 900;
    font-size: 9pt;
    background: #ffffff;
  }

  .print-contact-sheet {
    min-height: 260mm;
    color: #ffffff;
    background:
      radial-gradient(circle at 83% 12%, rgba(255,225,0,.42), transparent 30%),
      linear-gradient(135deg, #102333 0%, #1b3449 52%, #159783 100%);
    border: 0;
  }

  .print-contact-sheet .print-section-head h2,
  .print-contact-sheet .print-section-head p {
    color: #ffffff;
  }

  .print-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4mm;
    margin-top: 10mm;
  }

  .print-contact-grid div {
    padding: 6mm;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
  }

  .print-contact-grid small {
    color: #ffe100;
    margin-bottom: 2mm;
  }

  .print-contact-grid b {
    color: #ffffff;
    font-size: 11pt;
    line-height: 1.45;
  }

  .print-contact-wide { grid-column: 1 / -1; }

  .print-footer-note {
    position: absolute;
    left: 13mm;
    right: 13mm;
    bottom: 13mm;
    margin: 0;
    color: rgba(255,255,255,.70);
    font-weight: 800;
  }

  .mt-print-lg { margin-top: 9mm; }

  .print-cover-note {
    margin-top: 5mm !important;
    padding: 4mm 5mm;
    border-radius: 16px;
    color: rgba(255,255,255,.88) !important;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 9.4pt !important;
    font-weight: 750;
  }

  .print-section-head-compact {
    margin-bottom: 5mm;
  }

  .print-section-head-compact h2 {
    font-size: 18pt;
  }

  .print-card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .print-feature-grid .print-card,
  .print-scope-tab-grid .print-card {
    min-height: 0;
    padding: 4mm;
  }

  .print-feature-grid .print-card h3,
  .print-scope-tab-grid .print-card h3 {
    font-size: 10.5pt;
  }

  .print-feature-grid .print-card p,
  .print-scope-tab-grid .print-card p {
    font-size: 8pt;
    line-height: 1.45;
  }

  .print-problem-card {
    min-height: 0;
    padding: 4.2mm;
    margin-bottom: 3mm;
  }

  .print-problem-image img,
  .print-service-image img {
    height: 170mm;
    object-fit: cover;
  }

  .print-service-overview-grid {
    gap: 4mm;
  }

  .print-service-overview-card {
    min-height: 0;
  }

  .print-service-overview-card .print-summary-list {
    margin-bottom: 0;
    font-size: 8.3pt;
  }

  .print-gallery-section-title {
    display: flex;
    align-items: center;
    gap: 3mm;
    margin: 1mm 0 5mm;
    color: #102333;
  }

  .print-gallery-section-title span {
    width: 10mm;
    height: 10mm;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #102333;
    background: #ffe100;
    font-size: 7.5pt;
    font-weight: 950;
  }

  .print-gallery-section-title h3 {
    margin: 0;
    font-size: 13pt;
    line-height: 1.1;
    font-weight: 950;
  }

  .print-gallery-grid-professional img {
    height: 84mm;
  }

  .print-gallery-grid-field {
    gap: 4mm;
  }

  .print-gallery-grid-field img {
    height: 52mm;
  }

  .print-gallery-grid-field figcaption {
    padding: 2.4mm 3.2mm;
    font-size: 8.2pt;
  }

}
