:root {
  --teal-900: #075052;
  --teal-800: #0b6968;
  --teal-700: #0f7d7b;
  --teal-600: #13918c;
  --teal-50: #e9f7f5;
  --mint-100: #dff5f1;
  --mint-50: #f0fbf8;
  --sky-50: #eef8fb;
  --amber-500: #f7b731;
  --amber-400: #ffc84d;
  --amber-100: #fff3ce;
  --coral-500: #ef6f5e;
  --ink: #142929;
  --muted: #5e7472;
  --line: #d8ebe7;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(10, 80, 82, 0.13);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--mint-50);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--mint-50);
}

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

a:focus-visible {
  outline: 3px solid rgba(247, 183, 49, 0.75);
  outline-offset: 4px;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 125, 123, 0.13);
  backdrop-filter: blur(16px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--teal-800);
  font-size: 13px;
  font-weight: 700;
}

.top-strip span {
  position: relative;
}

.top-strip span + span::before {
  position: absolute;
  left: -13px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 16px;
  color: var(--teal-900);
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-links a {
  min-width: 76px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.nav-links a:hover {
  color: var(--teal-900);
  background: var(--mint-100);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav-cta {
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(180deg, var(--teal-700), var(--teal-800));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(10, 80, 82, 0.2);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover {
  background: linear-gradient(180deg, var(--teal-600), var(--teal-800));
  box-shadow: 0 18px 38px rgba(10, 80, 82, 0.25);
}

.nav-cta:active,
.button:active {
  transform: translateY(0);
}

.nav-cta svg,
.button svg,
.icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 2.5;
}

.icon {
  display: inline-block;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(6, 64, 66, 0.93), rgba(9, 101, 99, 0.78)),
    url("/assets/hari-kesehatan.webp");
  background-size: cover;
  background-position: center;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(240, 251, 248, 0), var(--mint-50));
  content: "";
}

.hero-bg {
  position: absolute;
  right: -10vw;
  bottom: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(247, 183, 49, 0.22);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  min-height: 690px;
  gap: 54px;
  padding: 72px 0 112px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber-500);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.bpjs-copy h2,
.quality-copy h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6.2vw, 74px);
  line-height: 0.98;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 154px;
  padding: 0 22px;
}

.button.primary {
  color: var(--teal-900);
  background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
  border-color: rgba(255, 229, 156, 0.9);
  box-shadow:
    0 16px 34px rgba(247, 183, 49, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.button.primary:hover {
  background: linear-gradient(180deg, #ffd15f, #f4ad21);
  box-shadow:
    0 20px 40px rgba(247, 183, 49, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button.secondary:hover {
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-meta svg {
  width: 17px;
  height: 17px;
  color: var(--amber-500);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.hero-logo {
  width: min(390px, 82vw);
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel span,
.bpjs-code span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong,
.bpjs-code strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  letter-spacing: 0;
}

.hero-panel svg {
  width: 32px;
  height: 32px;
  color: var(--teal-700);
}

.quick-services {
  position: absolute;
  left: 0;
  top: 70px;
  display: flex;
  flex-wrap: wrap;
  width: 260px;
  gap: 8px;
}

.quick-services span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 950;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.bpjs-copy h2,
.quality-copy h2,
.contact-copy h2 {
  color: var(--teal-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.section-heading p:not(.eyebrow),
.bpjs-copy p,
.quality-copy p,
.contact-copy p,
.program-card p,
.service-card p,
.process-item p,
.footer p {
  color: var(--muted);
  line-height: 1.72;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(10, 80, 82, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(15, 125, 123, 0.08), transparent 42%);
  opacity: 0;
  content: "";
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 125, 123, 0.24);
  box-shadow: 0 18px 46px rgba(10, 80, 82, 0.11);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--teal-800);
  background: linear-gradient(180deg, #e7faf6, var(--mint-100));
  box-shadow: inset 0 0 0 1px rgba(15, 125, 123, 0.08);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.3;
}

.service-card h3,
.process-item h3,
.program-card h3 {
  margin: 18px 0 8px;
  color: var(--teal-900);
  font-size: 18px;
  line-height: 1.18;
}

.service-card p,
.program-card p,
.process-item p {
  margin: 0;
  font-size: 14px;
}

.bpjs-section {
  background: var(--white);
}

.bpjs-grid,
.quality-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 54px;
}

.bpjs-copy p,
.quality-copy p,
.contact-copy p {
  margin: 22px 0 0;
  font-size: 17px;
}

.bpjs-code {
  display: inline-block;
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--amber-100);
  border: 1px solid rgba(247, 183, 49, 0.45);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint-50);
}

.process-item > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-700);
  font-weight: 950;
}

.process-item h3 {
  margin-top: 0;
}

.quality-section {
  background: linear-gradient(180deg, var(--mint-50), var(--sky-50));
}

.quality-grid {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.quality-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quality-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--teal-900);
  font-weight: 850;
}

.proof-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal-700);
  flex: 0 0 auto;
}

.programs-section {
  background: var(--white);
}

.local-section {
  background:
    linear-gradient(135deg, rgba(13, 126, 123, 0.08), rgba(247, 183, 49, 0.12)),
    var(--mint-50);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.local-card,
.intent-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(10, 80, 82, 0.07);
}

.local-card {
  padding: 24px;
}

.local-card svg {
  width: 30px;
  height: 30px;
  color: var(--teal-700);
}

.local-card h3,
.intent-grid h3 {
  margin: 14px 0;
  color: var(--teal-900);
  font-size: 20px;
  line-height: 1.2;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seo-link-grid a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--mint-50);
  font-size: 14px;
  font-weight: 900;
}

.seo-link-grid a:hover {
  border-color: rgba(15, 125, 123, 0.35);
  background: var(--mint-100);
  box-shadow: 0 10px 22px rgba(10, 80, 82, 0.08);
}

.programs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
  align-items: stretch;
  gap: 18px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint-50);
}

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.program-card div {
  padding: 22px;
}

.program-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal-700);
}

.program-card h3 {
  margin-top: 12px;
}

.contact-section {
  background: var(--teal-900);
}

.contact-section .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.contact-section .button.secondary:hover {
  color: var(--teal-900);
  background: var(--white);
}

.intent-section {
  background: var(--mint-50);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.intent-grid article {
  padding: 24px;
}

.intent-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.contact-copy .eyebrow {
  color: var(--amber-500);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.contact-list svg {
  width: 21px;
  height: 21px;
  color: var(--amber-500);
  flex: 0 0 auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-wrap {
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
}

.footer {
  padding: 46px 0;
  background: #062f31;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 34px;
}

.footer img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 16px;
}

.footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .bpjs-grid,
  .quality-grid,
  .contact-grid,
  .local-grid,
  .intent-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs-grid {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .top-strip {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
  }

  .top-strip span + span::before {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .nav-cta {
    padding: 0 13px;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 8px;
  }

  .nav-links a {
    min-width: 88px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-cta {
    width: 100%;
    white-space: normal;
  }

  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
