:root {
  --navy-950: #061630;
  --navy-900: #0b2450;
  --navy-800: #123667;
  --blue-700: #18508b;
  --cyan-500: #1ab8d2;
  --cyan-100: #dff8fc;
  --green-600: #138a5b;
  --green-500: #18a66d;
  --green-100: #e4f7ee;
  --yellow-400: #f5c84c;
  --red-500: #d94949;
  --ink: #18324a;
  --muted: #61768a;
  --line: #d9e7ed;
  --surface: #ffffff;
  --surface-soft: #f4fafc;
  --surface-blue: #eaf6fb;
  --shadow-sm: 0 10px 30px rgba(9, 37, 74, 0.08);
  --shadow-md: 0 22px 60px rgba(9, 37, 74, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

section[id] {
  scroll-margin-top: 112px;
}

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--yellow-400);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 100px 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--blue {
  background:
    radial-gradient(circle at 15% 10%, rgba(26, 184, 210, 0.14), transparent 28%),
    linear-gradient(180deg, #f4fbfd 0%, #eaf6fb 100%);
}

.section--navy {
  color: #dce9f7;
  background:
    radial-gradient(circle at 88% 20%, rgba(26, 184, 210, 0.18), transparent 26%),
    var(--navy-950);
}

.section--navy h2,
.section--navy h3 {
  color: #ffffff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-head__copy {
  max-width: 720px;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-head p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section--navy .section-head p {
  color: #b8c9dd;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--cyan-500);
  border-radius: 99px;
}

.section--navy .eyebrow {
  color: #78e5f3;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--green-600);
  box-shadow: 0 12px 24px rgba(19, 138, 91, 0.22);
}

.button--primary:hover {
  background: #0d754d;
  box-shadow: 0 16px 32px rgba(19, 138, 91, 0.28);
}

.button--navy {
  color: #ffffff;
  background: var(--navy-900);
}

.button--navy:hover {
  background: var(--navy-800);
}

.button--secondary {
  color: var(--navy-900);
  background: #ffffff;
  border-color: var(--line);
}

.button--secondary:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: var(--navy-950);
  background: #ffffff;
}

.button--ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button--full {
  width: 100%;
}

.mt-24 {
  margin-top: 24px;
}

.mb-0 {
  margin-bottom: 0;
}

.text-on-dark-muted {
  color: #b8c9dd;
}

.media-placeholder--compact {
  min-height: 250px;
}

.topbar {
  color: #dbe9f5;
  background: var(--navy-950);
  font-size: 0.82rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__items {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a {
  color: #ffffff;
  font-weight: 750;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 231, 237, 0.82);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  background: #ffffff;
  border: 1px solid #e5dfbd;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(64, 48, 10, 0.12);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  display: block;
  color: var(--navy-950);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.1;
}

.brand__tagline {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.site-nav > a,
.nav-more > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  color: #38536d;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-more > summary:hover {
  color: var(--navy-950);
  background: var(--cyan-100);
}

.nav-more {
  position: relative;
}

.nav-more > summary::-webkit-details-marker {
  display: none;
}

.nav-more > summary::after {
  margin-left: 7px;
  content: "⌄";
  color: var(--cyan-500);
  font-size: 1rem;
}

.nav-more__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 210px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.nav-more__menu a {
  padding: 10px 12px;
  color: #38536d;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-more__menu a:hover {
  color: var(--navy-950);
  background: var(--surface-blue);
}

.header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.header__call {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface-blue);
  border-radius: 12px;
  font-weight: 900;
}

.header__actions .button {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 0.86rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--navy-900);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before {
  position: absolute;
  top: -6px;
}

.nav-toggle__bars::after {
  position: absolute;
  top: 6px;
}

.nav-open .nav-toggle__bars {
  background: transparent;
}

.nav-open .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-overlay {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 64px;
  background:
    radial-gradient(circle at 80% 5%, rgba(26, 184, 210, 0.22), transparent 25%),
    linear-gradient(135deg, #f7fcfe 0%, #eaf6fb 58%, #f4fbfd 100%);
}

.hero::before {
  position: absolute;
  top: -120px;
  left: -180px;
  width: 430px;
  height: 430px;
  content: "";
  border: 70px solid rgba(24, 80, 139, 0.045);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--blue-700);
}

.hero__copy .lead {
  max-width: 660px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  color: #47627b;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__trust li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #ffffff;
  content: "✓";
  background: var(--green-500);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  min-height: 540px;
}

.media-placeholder {
  position: relative;
  display: flex;
  min-height: 320px;
  overflow: hidden;
  align-items: flex-end;
  padding: 28px;
  margin: 0;
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(11, 36, 80, 0.78), rgba(24, 80, 139, 0.54)),
    radial-gradient(circle at 80% 18%, rgba(26, 184, 210, 0.62), transparent 26%),
    linear-gradient(135deg, #174a80, #0b2450);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.media-placeholder::before {
  top: -110px;
  right: -70px;
  width: 310px;
  height: 310px;
}

.media-placeholder::after {
  right: 80px;
  bottom: -130px;
  width: 260px;
  height: 260px;
}

.media-placeholder--hero {
  position: absolute;
  inset: 0 10px 40px 40px;
  min-height: 500px;
}

.media-placeholder--light {
  min-height: 270px;
  color: var(--navy-900);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.64), rgba(223, 248, 252, 0.9)),
    radial-gradient(circle at 82% 14%, rgba(26, 184, 210, 0.28), transparent 22%),
    #eaf6fb;
  border: 1px solid var(--line);
  box-shadow: none;
}

.media-placeholder__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.media-placeholder--light .media-placeholder__label {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 80, 139, 0.12);
}

.media-placeholder--photo {
  color: #ffffff;
  background: var(--navy-900);
}

.media-placeholder--photo img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder--photo::before {
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  background: linear-gradient(180deg, rgba(6, 22, 48, 0.02) 38%, rgba(6, 22, 48, 0.82) 100%);
  border: 0;
  border-radius: inherit;
}

.media-placeholder--photo::after {
  display: none;
}

.media-placeholder--photo.media-placeholder--light .media-placeholder__label {
  color: #ffffff;
  background: rgba(6, 22, 48, 0.58);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero__float-card {
  position: absolute;
  z-index: 3;
  right: 70px;
  bottom: 10px;
  width: min(310px, 74%);
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 231, 237, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.hero__float-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.25rem;
}

.hero__float-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-600);
  font-size: 0.8rem;
  font-weight: 850;
}

.availability::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--green-100);
}

.quick-info {
  position: relative;
  z-index: 4;
  margin-top: -26px;
}

.quick-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.quick-info__item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
}

.quick-info__item + .quick-info__item {
  border-left: 1px solid var(--line);
}

.quick-info__icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy-900);
  background: var(--cyan-100);
  border-radius: 13px;
  font-size: 0.84rem;
  font-weight: 900;
}

.quick-info__item span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-info__item strong,
.quick-info__item a {
  color: var(--navy-950);
  font-size: 0.98rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(44px, 7vw, 86px);
}

.split--top {
  align-items: start;
}

.split__copy h2 {
  margin-bottom: 20px;
}

.split__copy > p {
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stat {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stat strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.12rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.8rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: #b9dce5;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--navy-900);
  background: var(--cyan-100);
  border-radius: 15px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.card__icon--green {
  color: var(--green-600);
  background: var(--green-100);
}

.card__icon--yellow {
  color: #7b5c00;
  background: #fff7dc;
}

.card__meta {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__visual-note {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  margin-bottom: 12px;
  color: #ffffff;
  background: rgba(6, 22, 48, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.card--feature {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(6, 22, 48, 0.18) 10%, rgba(6, 22, 48, 0.94) 88%),
    url("../images/ilustrasi-ruang-pemeriksaan-v01.webp") center / cover;
  border: 0;
}

.card--feature h3,
.card--feature p {
  color: #ffffff;
}

.card--feature p {
  opacity: 0.75;
}

.card--feature .text-link {
  color: #7de5f1;
}

.service-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  color: #49637b;
}

.service-list li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--cyan-500);
  border-radius: 50%;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-grid li {
  min-height: 112px;
  padding: 20px;
  color: var(--navy-950);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 0.93rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.check-grid li::before {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-bottom: 14px;
  color: #ffffff;
  content: "✓";
  background: var(--green-500);
  border-radius: 50%;
  font-size: 0.78rem;
}

.promo-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(26, 184, 210, 0.35), transparent 28%),
    linear-gradient(145deg, #123667, #081c40);
  border-radius: var(--radius-md);
}

.promo-card::after {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  content: "";
  border: 32px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.promo-card h3 {
  max-width: 250px;
  margin: 44px 0 12px;
  color: #ffffff;
  font-size: 1.45rem;
}

.promo-card p {
  max-width: 280px;
  color: #b8c9dd;
}

.promo-card .badge {
  color: var(--navy-950);
  background: var(--yellow-400);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: var(--blue-700);
  background: var(--cyan-100);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
}

.article-card .card__footer {
  margin-top: auto;
}

.empty-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.empty-proof__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--yellow-400);
  background: var(--navy-950);
  border-radius: 17px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.empty-proof p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  padding: 22px;
  margin: 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, transparent 25%, rgba(6, 22, 48, 0.86) 100%),
    radial-gradient(circle at 80% 18%, rgba(26, 184, 210, 0.54), transparent 26%),
    linear-gradient(145deg, #18508b, #0b2450);
  border-radius: 18px;
}

.gallery-card:first-child {
  grid-row: span 2;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 22, 48, 0.02) 34%, rgba(6, 22, 48, 0.84) 100%);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  font-weight: 850;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.partner-type {
  padding: 22px;
  color: var(--navy-900);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 800;
  text-align: center;
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 64px);
  color: #dbe9f5;
  background:
    radial-gradient(circle at 92% 15%, rgba(26, 184, 210, 0.34), transparent 26%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-panel::before {
  position: absolute;
  top: -120px;
  right: 20%;
  width: 260px;
  height: 260px;
  content: "";
  border: 50px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-panel h2 {
  max-width: 690px;
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c1d2e4;
}

.cta-panel__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 80px;
  color: #d9e8f6;
  background:
    radial-gradient(circle at 82% 5%, rgba(26, 184, 210, 0.25), transparent 24%),
    linear-gradient(145deg, #123667 0%, #061630 78%);
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  content: "";
  border: 75px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.page-hero h1 {
  max-width: 840px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: #c1d2e4;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #8ee9f4;
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumbs span {
  color: #8ea8c4;
}

.page-hero__aside {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.page-hero__aside strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.1rem;
}

.page-hero__aside p {
  color: #b8c9dd;
  font-size: 0.9rem;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  list-style: none;
}

.step-list--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step {
  position: relative;
  min-height: 190px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 30px;
  color: #ffffff;
  content: counter(steps, decimal-leading-zero);
  background: var(--navy-900);
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 900;
}

.step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: -14px;
  width: 24px;
  height: 2px;
  content: "";
  background: var(--cyan-500);
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 46px;
  padding: clamp(30px, 5vw, 54px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.service-band h2 {
  margin-bottom: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  padding: 11px 15px;
  color: #36526c;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  color: #5d4a04;
  background: #fff9e7;
  border: 1px solid #f4dfa0;
  border-radius: 14px;
  font-size: 0.88rem;
}

.notice::before {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #ffffff;
  content: "!";
  background: #b98b00;
  border-radius: 50%;
  font-weight: 900;
}

.notice--danger {
  color: #7e2b2b;
  background: #fff1f1;
  border-color: #efcaca;
}

.notice--danger::before {
  background: var(--red-500);
}

.form-shell {
  padding: clamp(26px, 5vw, 48px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-shell__head {
  margin-bottom: 30px;
}

.form-shell__head h2,
.form-shell__head h3 {
  margin-bottom: 10px;
}

.form-shell__head p {
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field__label {
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 800;
}

.field label span {
  color: var(--red-500);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid #cbdde5;
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #ffffff;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(26, 184, 210, 0.12);
  outline: none;
}

.field input:disabled,
.field select:disabled {
  color: #6c8092;
  background: #edf3f6;
  cursor: not-allowed;
}

.field__help {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.form-actions p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.file-box {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px dashed #a9c8d4;
  border-radius: 16px;
  text-align: center;
}

.file-box input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.file-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
}

.file-preview {
  display: none;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px;
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.file-preview.is-visible {
  display: grid;
}

.file-preview img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  background: var(--surface-soft);
  border-radius: 10px;
}

.file-preview strong {
  display: block;
  color: var(--navy-950);
  overflow-wrap: anywhere;
}

.file-preview span {
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
}

.contact-stack {
  display: grid;
  align-content: start;
  gap: 16px;
}

.contact-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 800;
}

.map-wrap {
  min-height: 510px;
  overflow: hidden;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

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

.site-footer {
  color: #b8c9dd;
  background: var(--navy-950);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1.1fr;
  gap: 46px;
  padding: 72px 0 58px;
}

.site-footer .brand__name {
  color: #ffffff;
}

.site-footer .brand__tagline {
  color: #8ea8c4;
}

.site-footer .brand__mark {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.footer__intro p {
  max-width: 360px;
  margin: 24px 0 0;
  color: #9eb4ca;
  font-size: 0.9rem;
}

.footer__heading {
  margin: 2px 0 18px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.footer__links a {
  color: #a9bfd3;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: #7de5f1;
}

.footer__contact {
  display: grid;
  gap: 12px;
}

.footer__contact a,
.footer__contact span {
  color: #a9bfd3;
  font-size: 0.9rem;
}

.footer__contact strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.78rem;
}

.footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #829db6;
  font-size: 0.78rem;
}

.floating-wa {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  background: var(--green-600);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(19, 138, 91, 0.34);
  font-size: 0.88rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-wa::before {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  content: "WA";
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  font-size: 0.62rem;
}

.floating-wa span {
  display: none;
}

.floating-wa:hover {
  background: #0d754d;
  transform: translateY(-3px);
}

body[data-page="contact"] .floating-wa,
body[data-page="pharmacy"] .floating-wa {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav > a,
  .nav-more > summary {
    padding-inline: 9px;
    font-size: 0.82rem;
  }

  .header__actions .button {
    display: none;
  }

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

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

  .step-list--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .topbar__items span:nth-child(2) {
    display: none;
  }

  .header__inner {
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    z-index: 1010;
    top: calc(38px + var(--header-height));
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 130px);
    overflow: auto;
    align-content: start;
    justify-content: stretch;
    gap: 4px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-more > summary {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 11px 14px;
    font-size: 0.95rem;
  }

  .nav-more__menu {
    position: static;
    min-width: 0;
    padding: 4px 8px 8px 20px;
    background: var(--surface-soft);
    border: 0;
    border-radius: 12px;
    box-shadow: none;
  }

  .nav-more__menu a {
    display: block;
    min-height: 42px;
    padding: 10px 12px;
  }

  .header__actions {
    margin-left: auto;
  }

  .header__call {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-overlay {
    position: fixed;
    z-index: 990;
    inset: calc(38px + var(--header-height)) 0 0;
    display: block;
    background: rgba(6, 22, 48, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    backdrop-filter: blur(2px);
  }

  .nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 46px;
  }

  .hero__visual {
    min-height: 480px;
  }

  .media-placeholder--hero {
    inset: 0 40px 30px 0;
    min-height: 450px;
  }

  .quick-info__grid {
    grid-template-columns: 1fr;
  }

  .quick-info__item + .quick-info__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

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

  .gallery-card:first-child {
    grid-row: span 1;
  }

  .partner-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }

  .page-hero__aside {
    max-width: 520px;
  }

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

  .step:nth-child(2n)::after {
    display: none;
  }

  .service-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 98px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .topbar__inner {
    min-height: 32px;
  }

  .topbar__items {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .topbar__items span:first-child {
    font-size: 0.72rem;
  }

  .site-nav {
    top: calc(32px + var(--header-height));
  }

  .nav-overlay {
    inset: calc(32px + var(--header-height)) 0 0;
  }

  .brand__tagline {
    display: none;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 58px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
  }

  .hero__visual {
    min-height: 390px;
  }

  .media-placeholder--hero {
    inset: 0 18px 26px 0;
    min-height: 360px;
    padding: 20px;
  }

  .hero__float-card {
    right: 0;
    width: 79%;
    padding: 18px;
  }

  .quick-info {
    margin-top: -18px;
  }

  .quick-info__item {
    min-height: 96px;
    padding: 20px;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head .button,
  .section-head .text-link {
    margin-top: 18px;
  }

  .stat-row,
  .card-grid,
  .card-grid--2,
  .card-grid--4,
  .check-grid,
  .step-list,
  .step-list--5,
  .form-grid,
  .footer__main {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 44px;
    width: 2px;
    height: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }

  .partner-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    padding: 32px 24px;
  }

  .cta-panel__actions {
    display: grid;
  }

  .page-hero {
    padding: 58px 0 64px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .service-band {
    padding: 26px 20px;
  }

  .form-shell {
    padding: 26px 20px;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .button {
    width: 100%;
  }

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

  .footer__main {
    gap: 34px;
    padding: 58px 0 42px;
  }

  .footer__bottom {
    display: grid;
    padding: 20px 0;
  }

  .floating-wa {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
