:root {
  --navy: #0f1729;
  --navy-soft: #1a2744;
  --navy-mid: #243656;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #a8863a;
  --cream: #f4efe4;
  --cream-dark: #ebe3d4;
  --sky: #e7f1fa;
  --sky-deep: #d7e8f6;
  --sand: #f7f1e6;
  --mist: #eef6f3;
  --text: #1c2434;
  --muted: #5b6b7c;
  --line: #d5deea;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --success: #2e7d32;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 34px rgba(15, 42, 68, 0.1);
  --header-h: 76px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "DM Sans", "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: #e8f0f7;
  background-image:
    radial-gradient(ellipse 90% 55% at 0% -8%, rgba(74, 163, 224, 0.2), transparent 52%),
    radial-gradient(ellipse 70% 48% at 100% 0%, rgba(201, 169, 98, 0.16), transparent 48%),
    radial-gradient(ellipse 55% 40% at 80% 100%, rgba(46, 109, 164, 0.1), transparent 52%),
    radial-gradient(ellipse 45% 35% at 10% 90%, rgba(232, 213, 163, 0.14), transparent 50%),
    linear-gradient(180deg, #e4eef8 0%, #f3efe6 42%, #eaf3f8 100%);
  background-attachment: fixed;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section--alt {
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(201, 169, 98, 0.12), transparent 52%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(74, 163, 224, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.94) 0%, rgba(244, 238, 228, 0.96) 100%);
}

.about-home {
  max-width: 720px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head__rule {
  width: 72px;
  height: 3px;
  margin: 1.35rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-soft);
}

.btn--ghost {
  background: var(--cream-dark);
  color: var(--navy);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line);
}

.btn--ghost-dark:hover {
  border-color: var(--navy);
  background: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(15, 23, 41, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner,
.site-header__inner.container {
  width: min(1760px, calc(100% - 2rem));
  max-width: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  min-width: 0;
}

.brand__logo-frame {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0.28rem 0.38rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ec 100%);
  border: 1.5px solid rgba(201, 169, 98, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 3px rgba(201, 169, 98, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.brand__logo {
  width: auto;
  height: 48px;
  max-width: 128px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: none;
}

.brand__logo-fallback {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--navy);
  flex-shrink: 0;
}

.site-footer .brand__logo-frame {
  padding: 0.22rem 0.3rem;
  border-radius: 10px;
}

.site-footer .brand__logo {
  height: 40px;
  max-width: 100px;
}

.brand__text {
  min-width: 0;
}

.brand__text strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.55),
    0 0 12px rgba(232, 213, 163, 0.45);
  animation: brandNameGlow 2.2s ease-in-out infinite;
}

@keyframes brandNameGlow {
  0%,
  100% {
    color: #ffffff;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.35),
      0 0 8px rgba(201, 169, 98, 0.2);
    opacity: 0.88;
  }
  50% {
    color: #fff6d8;
    text-shadow:
      0 0 6px rgba(255, 255, 255, 0.95),
      0 0 14px rgba(232, 213, 163, 0.85),
      0 0 24px rgba(201, 169, 98, 0.55);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand__text strong {
    animation: none;
    opacity: 1;
  }
}

.brand__text-line {
  display: block;
  font-size: 0.68rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.03em;
  text-transform: none;
}

.brand__text-line--tag {
  margin-top: 0.08rem;
  font-size: 0.62rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(232, 213, 163, 0.92);
}

@media (max-width: 1250px) {
  .brand__logo-frame {
    padding: 0.22rem 0.3rem;
    border-radius: 10px;
  }

  .brand__logo {
    height: 40px;
    max-width: 104px;
  }

  .brand__text strong {
    font-size: 0.82rem;
  }

  .brand__text-line {
    font-size: 0.6rem;
  }

  .brand__text-line--tag {
    font-size: 0.55rem;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 1;
  min-width: 0;
  margin-left: clamp(0.6rem, 1.4vw, 1rem);
  padding-left: clamp(0.6rem, 1.2vw, 0.9rem);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav > a:not(.site-nav__cta),
.site-nav__dropbtn:not(.site-nav__dropbtn--lang) {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.site-nav > a:not(.site-nav__cta)::after,
.site-nav__dropbtn:not(.site-nav__dropbtn--lang)::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav > a:not(.site-nav__cta):hover,
.site-nav > a:not(.site-nav__cta):focus-visible,
.site-nav > a:not(.site-nav__cta)[aria-current="page"],
.site-nav__dropbtn:not(.site-nav__dropbtn--lang):hover,
.site-nav__dropbtn:not(.site-nav__dropbtn--lang):focus-visible,
.site-nav__dropbtn--active:not(.site-nav__dropbtn--lang),
.site-nav__dropdown:not(.site-nav__dropdown--lang).is-open .site-nav__dropbtn {
  color: var(--gold-light);
  background: rgba(201, 169, 98, 0.14);
  box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.18);
}

.site-nav > a:not(.site-nav__cta):hover::after,
.site-nav > a:not(.site-nav__cta):focus-visible::after,
.site-nav > a:not(.site-nav__cta)[aria-current="page"]::after,
.site-nav__dropbtn:not(.site-nav__dropbtn--lang):hover::after,
.site-nav__dropbtn:not(.site-nav__dropbtn--lang):focus-visible::after,
.site-nav__dropbtn--active:not(.site-nav__dropbtn--lang)::after,
.site-nav__dropdown:not(.site-nav__dropdown--lang).is-open .site-nav__dropbtn::after {
  transform: scaleX(1);
}

.site-nav > a:not(.site-nav__cta):active,
.site-nav__dropbtn:not(.site-nav__dropbtn--lang):active {
  transform: scale(0.95);
  color: #fff;
  background: rgba(201, 169, 98, 0.28);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.35),
    0 0 16px rgba(201, 169, 98, 0.25);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.site-nav__cta {
  padding: 0.55rem 0.9rem;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(201, 169, 98, 0.28);
}

.site-nav__cta:active {
  transform: scale(0.96);
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropbtn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__caret {
  font-size: 0.75rem;
  line-height: 1;
}

.site-nav__dropmenu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  background: rgba(15, 23, 41, 0.98);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.site-nav__dropdown:hover .site-nav__dropmenu,
.site-nav__dropdown:focus-within .site-nav__dropmenu,
.site-nav__dropdown.is-open .site-nav__dropmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropmenu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav__dropmenu a {
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.site-nav__dropmenu a:hover,
.site-nav__dropmenu a[aria-current="page"] {
  background: rgba(201, 169, 98, 0.16);
  color: var(--gold-light);
}

.site-nav__dropmenu a:active {
  transform: scale(0.98);
  background: rgba(201, 169, 98, 0.26);
  color: #fff;
}

.site-nav__dropdown--lang .site-nav__dropbtn--lang {
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.5);
  background: linear-gradient(135deg, rgba(255, 248, 232, 0.16), rgba(201, 169, 98, 0.18));
  color: #fff8e8;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.site-nav__dropdown--lang .site-nav__dropbtn--lang:hover,
.site-nav__dropdown--lang .site-nav__dropbtn--lang:focus-visible,
.site-nav__dropdown--lang.is-open .site-nav__dropbtn--lang {
  color: #0f1729;
  background: linear-gradient(135deg, #fff8e8, #e8d5a3);
  border-color: rgba(232, 213, 163, 0.85);
  box-shadow: 0 8px 18px rgba(201, 169, 98, 0.22);
}

.site-nav__dropdown--lang .site-nav__dropbtn--lang .site-nav__caret {
  color: inherit;
}

.site-nav__lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  padding: 0.12rem 0.28rem;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0f1729;
  background: linear-gradient(135deg, #fff8e8, #e8d5a3);
  border: 1px solid rgba(255, 248, 220, 0.45);
}

.site-nav__dropdown--lang .site-nav__dropbtn--lang:hover .site-nav__lang-flag,
.site-nav__dropdown--lang .site-nav__dropbtn--lang:focus-visible .site-nav__lang-flag,
.site-nav__dropdown--lang.is-open .site-nav__dropbtn--lang .site-nav__lang-flag {
  background: #0f1729;
  color: #fff8e8;
  border-color: rgba(15, 23, 41, 0.35);
}

.site-nav__lang-text {
  max-width: 7.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
  font-weight: 700;
}

.site-nav__dropmenu--lang {
  min-width: 176px;
  max-height: min(70vh, 22rem);
  overflow-y: auto;
  right: 0;
  left: auto;
  overscroll-behavior: contain;
}

.site-nav__dropmenu--lang a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__dropmenu--lang a[aria-current="true"] {
  background: rgba(201, 169, 98, 0.14);
  color: var(--gold);
}

/* Collapse the header nav into a hamburger panel below 1250px so all items
   stay proportional and nothing overflows off the right edge on tablets. */
@media (max-width: 1250px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    z-index: 150;
    margin-left: 0;
    padding: 0.85rem 1.15rem 1.15rem;
    border-left: 0;
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.95rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav > a:not(.site-nav__cta),
  .site-nav__dropbtn:not(.site-nav__dropbtn--lang) {
    width: 100%;
    padding: 0.95rem 0;
    font-size: 1.0625rem;
    border-radius: 0;
  }

  .site-nav > a:not(.site-nav__cta)::after,
  .site-nav__dropbtn:not(.site-nav__dropbtn--lang)::after {
    display: none;
  }

  .site-nav__dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__dropbtn {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 0;
    font-size: 1.0625rem;
    text-align: left;
  }

  .site-nav__dropmenu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
  }

  .site-nav__dropdown.is-open .site-nav__dropmenu {
    display: block;
  }

  .site-nav__dropmenu a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-transform: none;
    font-size: 0.975rem;
    letter-spacing: 0;
  }

  .site-nav__cta {
    margin-top: 0.65rem;
    padding: 0.85rem 1.15rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    border-radius: 999px;
  }

  .site-nav__dropdown--lang {
    width: 100%;
  }

  .site-nav__dropmenu--lang {
    right: auto;
    left: 0;
    min-width: 0;
  }

  .site-nav__lang-text {
    display: inline;
    max-width: none;
  }
}

.profile-section__lang-note {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

/* Hero â€” luxury landing */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero--lux {
  isolation: isolate;
}

.hero--videos {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  padding-top: 0;
  background: #0a0f1c;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__slides--video {
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide--video {
  display: block;
  overflow: hidden;
  background: #060a14;
}

.hero__slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__slide--video.is-active .hero__slide-video {
  transform: scale(1.02);
}

.hero__overlay--videos {
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.2) 0%, rgba(8, 12, 24, 0.08) 38%, rgba(8, 12, 24, 0.62) 72%, rgba(8, 12, 24, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 12, 24, 0.35) 0%, transparent 22%, transparent 78%, rgba(8, 12, 24, 0.35) 100%);
}

.hero__video-caption {
  margin: 0.55rem auto 1rem;
  max-width: 28rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.9);
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero__video-caption.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.hero__video-sound {
  position: absolute;
  right: 1.25rem;
  bottom: clamp(5rem, 12vh, 7rem);
  z-index: 4;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 12, 24, 0.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero__video-sound:hover {
  background: rgba(201, 169, 98, 0.28);
  border-color: rgba(232, 213, 163, 0.45);
  transform: scale(1.06);
}

.hero__video-sound-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.hero__video-sound-icon--on {
  display: none;
}

.hero__video-sound.is-unmuted .hero__video-sound-icon--off {
  display: none;
}

.hero__video-sound.is-unmuted .hero__video-sound-icon--on {
  display: block;
}

.hero--videos .hero__scroll {
  display: none;
}

.hero--lux::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 9s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.hero__slide.is-active .hero__slide-bg {
  transform: scale(1.12);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 12, 24, 0.93) 0%, rgba(15, 23, 41, 0.78) 36%, rgba(15, 23, 41, 0.18) 54%, rgba(15, 23, 41, 0.08) 68%, rgba(15, 23, 41, 0.22) 100%),
    linear-gradient(180deg, rgba(15, 23, 41, 0.42) 0%, transparent 24%, transparent 76%, rgba(8, 12, 24, 0.72) 100%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 48% 38% at 82% 38%, rgba(232, 213, 163, 0.14), transparent 58%),
    radial-gradient(ellipse 36% 28% at 10% 90%, rgba(184, 148, 74, 0.07), transparent 52%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 1rem) 0 clamp(5.5rem, 14vh, 8rem);
}

.hero__content--simple {
  justify-content: flex-end;
  align-items: center;
  padding: calc(var(--header-h) + 1rem) 1rem clamp(1.5rem, 5vh, 2.75rem);
}

.hero__copy--simple {
  width: 100%;
  max-width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

.hero__name {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4.8vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__tagline {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(0.62rem, 1.15vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(105deg, #fff4d4 0%, #f0d78a 28%, #c9a962 58%, #e8d5a3 82%, #fff0c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 10px rgba(201, 169, 98, 0.35));
}

.hero__content--simple .hero__actions {
  margin-top: 0.55rem;
}

.hero__content--simple .hero__video-nav {
  margin-top: 0.65rem;
}

.hero__video-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero__video-nav-btn {
  appearance: none;
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hero__video-nav-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero__video-nav-btn.is-active {
  width: 1.55rem;
  background: linear-gradient(90deg, #e8d5a3, #c9a962);
  box-shadow: 0 0 10px rgba(201, 169, 98, 0.45);
}

.hero__company-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: clamp(1.25rem, 3vh, 2rem) 0 clamp(1rem, 2.5vh, 1.75rem);
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 24, 0.72) 35%, rgba(8, 12, 24, 0.94) 100%);
  pointer-events: none;
}

.hero__company-bar .container {
  pointer-events: auto;
}

.hero__company-wrap {
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.hero__copy {
  width: 100%;
  max-width: min(980px, 100%);
}

.hero__text-panel {
  width: 100%;
  max-width: 100%;
}

.hero__company {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 5.6vw, 5.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: clamp(0.01em, 0.06vw, 0.035em);
  text-transform: uppercase;
  white-space: nowrap;
  text-wrap: nowrap;
  color: var(--gold-light);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.42);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero__eyebrow-line {
  flex: 0 0 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__eyebrow-text {
  color: var(--gold-light);
  margin-bottom: 0;
  letter-spacing: 0.18em;
}

.hero__content h1,
.hero__title {
  color: var(--white);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: none;
  margin: 0 auto;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero__title-prefix {
  display: block;
  max-width: min(920px, 96%);
  font-family: var(--font);
  font-size: clamp(0.6875rem, 1.05vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.88);
  line-height: 1.45;
  text-wrap: balance;
}

.hero__title-main {
  display: block;
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, #ffffff 0%, #f5f0e6 55%, #e8d5a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.22));
}

.hero__title-suffix {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  max-width: 20ch;
}

.hero__rule {
  width: 4.5rem;
  height: 2px;
  margin: clamp(0.85rem, 2vw, 1.15rem) auto clamp(0.95rem, 2vw, 1.2rem);
  border-radius: 999px;
  background: linear-gradient(90deg, #e8d5a3, #c9a962, #a8863a, transparent);
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.35);
}

.hero__lead {
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
}

.hero__content .lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
  margin-inline: auto;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(0.6875rem, 1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.88);
}

.hero__trust li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8d5a3, #a8863a);
  box-shadow: 0 0 6px rgba(201, 169, 98, 0.45);
}

.hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
}

.hero .btn--lux {
  position: relative;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transform: translateY(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.hero .btn--lux::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 46%;
  border-radius: 999px 999px 40% 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero .btn--lux:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.hero .btn--lux:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

.hero .btn--lux-gold {
  color: var(--navy);
  background: linear-gradient(180deg, #f3e6c0 0%, #e8d5a3 22%, #c9a962 58%, #9a7a32 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 -2px 0 rgba(120, 90, 30, 0.35) inset,
    0 8px 0 #7a5f24,
    0 14px 28px rgba(0, 0, 0, 0.28);
}

.hero .btn--lux-gold:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -2px 0 rgba(120, 90, 30, 0.35) inset,
    0 10px 0 #7a5f24,
    0 18px 32px rgba(0, 0, 0, 0.32);
}

.hero .btn--lux-gold:active {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 3px 0 #7a5f24,
    0 8px 16px rgba(0, 0, 0, 0.24);
}

.hero .btn--lux-blue {
  color: #fff;
  background: linear-gradient(180deg, #7eb8ef 0%, #4a90d9 22%, #2e6da4 58%, #1d4f7a 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -2px 0 rgba(15, 50, 90, 0.35) inset,
    0 8px 0 #163a5c,
    0 14px 28px rgba(0, 0, 0, 0.28);
}

.hero .btn--lux-blue:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -2px 0 rgba(15, 50, 90, 0.35) inset,
    0 10px 0 #163a5c,
    0 18px 32px rgba(0, 0, 0, 0.32);
}

.hero .btn--lux-blue:active {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 3px 0 #163a5c,
    0 8px 16px rgba(0, 0, 0, 0.24);
}

.hero .btn--lux-teal {
  color: #fff;
  background: linear-gradient(180deg, #5fd0b5 0%, #2fa88a 22%, #1d7f68 58%, #145a4a 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -2px 0 rgba(10, 60, 48, 0.35) inset,
    0 8px 0 #0f4034,
    0 14px 28px rgba(0, 0, 0, 0.28);
}

.hero .btn--lux-teal:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -2px 0 rgba(10, 60, 48, 0.35) inset,
    0 10px 0 #0f4034,
    0 18px 32px rgba(0, 0, 0, 0.32);
}

.hero .btn--lux-teal:active {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 3px 0 #0f4034,
    0 8px 16px rgba(0, 0, 0, 0.24);
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero__dot {
  width: 2.25rem;
  height: 3px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero__dot.is-active {
  width: 3.25rem;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.hero__aside {
  align-self: center;
  width: 100%;
  max-width: min(540px, 100%);
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}

.hero__stats-panel {
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(232, 213, 163, 0.16);
  backdrop-filter: blur(14px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__stats-label {
  margin: 0 0 0.85rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.78);
}

.hero__stats {
  display: grid;
  gap: 0.55rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.stat-card--lux {
  position: relative;
  padding: 0.75rem 0.85rem 0.75rem 0.95rem;
  background: rgba(8, 12, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-card--lux::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 2px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #f0e2b8, #c9a962, #a8863a);
  box-shadow: 0 0 8px rgba(201, 169, 98, 0.35);
}

.stat-card--lux:hover {
  transform: translateX(4px);
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-card--lux strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 700;
  background: linear-gradient(135deg, #f7edd0 0%, #e8d5a3 35%, #c9a962 70%, #b8944a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 8px rgba(201, 169, 98, 0.18));
}

.stat-card--lux span {
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.58);
}

.stat-card span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.hero__scroll:hover {
  color: var(--gold-light);
}

.hero__scroll-icon {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 999px;
  background: var(--gold);
  animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero--lux .hero__company-bar { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s backwards; }
.hero--lux .hero__company { animation: none; }
.hero--lux .hero__eyebrow { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards; }
.hero--lux .hero__title { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards; }
.hero--lux .hero__rule { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s backwards; }
.hero--lux .hero__lead { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.38s backwards; }
.hero--lux .hero__trust { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.44s backwards; }
.hero--lux .hero__actions { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s backwards; }

.hero__title,
.hero__lead {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero__title.is-changing,
.hero__lead.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide-bg,
  .hero__title,
  .hero__lead {
    transition: none;
  }

  .hero--lux .hero__company-bar,
  .hero--lux .hero__eyebrow,
  .hero--lux .hero__title,
  .hero--lux .hero__rule,
  .hero--lux .hero__lead,
  .hero--lux .hero__trust,
  .hero--lux .hero__actions {
    animation: none;
  }

  .hero__backdrop-mesh,
  .hero__slide-video {
    animation: none;
    transition: none;
  }

  .hero__scroll-icon::after {
    animation: none;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 41, 0.92) 0%, rgba(26, 39, 68, 0.78) 45%, rgba(15, 23, 41, 0.88) 100%),
    url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--gold);
}

.trust-bar--lux {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0a0f1c 0%, var(--navy) 100%);
  border-bottom: 0;
  box-shadow: inset 0 1px 0 rgba(201, 169, 98, 0.2);
}

.trust-bar--lux::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-bar__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Global reach â€” destination flags */
.global-reach {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--navy) 0%, #121c32 100%);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  padding: 1.1rem 0;
}

.global-reach--cards {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background:
    radial-gradient(ellipse 70% 55% at 10% 0%, rgba(201, 169, 98, 0.14), transparent 52%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(74, 163, 224, 0.1), transparent 50%),
    linear-gradient(180deg, #0c1426 0%, #121c32 55%, #0f1729 100%);
}

.global-reach__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.5rem;
}

.global-reach__label {
  margin: 0 0 1.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.95);
  text-align: center;
}

.global-reach__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 920px;
  margin-inline: auto;
}

.global-reach__item {
  list-style: none;
}

.global-reach__card {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 0.75rem;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(160deg, #243656 0%, #1a2744 48%, #0f1729 100%);
  border: 1px solid rgba(201, 169, 98, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.global-reach__card:hover,
.global-reach__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(232, 213, 163, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 16px 34px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(201, 169, 98, 0.12);
  outline: none;
  color: #fff;
}

.global-reach__flag-wrap {
  position: relative;
  display: block;
  width: 4.1rem;
  height: 2.85rem;
  perspective: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 16px rgba(0, 0, 0, 0.28);
  transform-origin: left center;
}

.global-reach__flag-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 66%
  );
  background-size: 200% 100%;
  animation: flagShine 2.8s ease-in-out infinite;
  animation-delay: var(--flag-delay, 0s);
  pointer-events: none;
}

.global-reach__flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: left center;
  animation: flagWave 2.6s ease-in-out infinite;
  animation-delay: var(--flag-delay, 0s);
}

@keyframes flagWave {
  0%,
  100% {
    transform: perspective(320px) rotateY(0deg) skewY(0deg) scaleX(1);
  }
  25% {
    transform: perspective(320px) rotateY(-12deg) skewY(1.5deg) scaleX(0.98);
  }
  50% {
    transform: perspective(320px) rotateY(0deg) skewY(0deg) scaleX(1);
  }
  75% {
    transform: perspective(320px) rotateY(10deg) skewY(-1.2deg) scaleX(0.985);
  }
}

@keyframes flagShine {
  0%,
  100% {
    background-position: 120% 0;
    opacity: 0.2;
  }
  50% {
    background-position: -20% 0;
    opacity: 0.55;
  }
}

.global-reach__name {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff;
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .global-reach__flag,
  .global-reach__flag-wrap::after {
    animation: none;
  }
}

/* Job sectors section â€” luxury 3D cards */
.sectors-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(74, 163, 224, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 100%, rgba(201, 169, 98, 0.14), transparent 50%),
    linear-gradient(165deg, #eaf3fa 0%, #f4efe6 48%, #e8f0f6 100%);
}

.sectors-section--cards {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(46, 109, 164, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(201, 169, 98, 0.14), transparent 52%),
    linear-gradient(180deg, #eaf3fa 0%, #f5f0e7 100%);
}

.sectors-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin-inline: auto;
}

.sector-tile {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 1.15rem 1.05rem;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 12px 28px rgba(15, 23, 41, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sector-tile__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.sector-tile__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
}

.sector-tile__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.18) 0%, rgba(8, 12, 24, 0.28) 42%, rgba(8, 12, 24, 0.82) 100%),
    linear-gradient(135deg, rgba(15, 23, 41, 0.2), transparent 55%);
}

.sector-tile--video .sector-tile__icon,
.sector-tile--video .sector-tile__title,
.sector-tile--video .sector-tile__desc {
  position: relative;
  z-index: 1;
}

.sector-tile.sector-card--fishery .sector-tile__shade {
  background:
    linear-gradient(180deg, rgba(15, 50, 90, 0.2) 0%, rgba(15, 40, 70, 0.35) 40%, rgba(10, 28, 50, 0.88) 100%),
    linear-gradient(135deg, rgba(46, 109, 164, 0.28), transparent 60%);
}

.sector-tile.sector-card--aquaculture .sector-tile__shade {
  background:
    linear-gradient(180deg, rgba(10, 70, 65, 0.2) 0%, rgba(8, 60, 58, 0.35) 40%, rgba(6, 40, 40, 0.88) 100%),
    linear-gradient(135deg, rgba(47, 174, 155, 0.28), transparent 60%);
}

.sector-tile.sector-card--domestic .sector-tile__shade {
  background:
    linear-gradient(180deg, rgba(80, 30, 60, 0.22) 0%, rgba(70, 25, 55, 0.38) 40%, rgba(45, 14, 36, 0.88) 100%),
    linear-gradient(135deg, rgba(197, 106, 160, 0.28), transparent 60%);
}

.sector-tile.sector-card--hospitality .sector-tile__shade {
  background:
    linear-gradient(180deg, rgba(45, 35, 85, 0.22) 0%, rgba(38, 28, 75, 0.4) 40%, rgba(24, 18, 52, 0.9) 100%),
    linear-gradient(135deg, rgba(138, 122, 214, 0.28), transparent 60%);
}

.sector-tile.sector-card--manufacturing .sector-tile__shade {
  background:
    linear-gradient(180deg, rgba(90, 70, 20, 0.22) 0%, rgba(80, 55, 15, 0.38) 40%, rgba(50, 35, 10, 0.88) 100%),
    linear-gradient(135deg, rgba(201, 169, 98, 0.28), transparent 60%);
}

.sector-tile.sector-card--care .sector-tile__shade {
  background:
    linear-gradient(180deg, rgba(90, 25, 40, 0.22) 0%, rgba(80, 20, 35, 0.38) 40%, rgba(55, 12, 24, 0.88) 100%),
    linear-gradient(135deg, rgba(196, 77, 98, 0.28), transparent 60%);
}

.sector-tile.sector-card--construction .sector-tile__shade {
  background:
    linear-gradient(180deg, rgba(40, 50, 65, 0.22) 0%, rgba(30, 40, 55, 0.4) 40%, rgba(18, 24, 34, 0.9) 100%),
    linear-gradient(135deg, rgba(92, 107, 127, 0.28), transparent 60%);
}

@media (prefers-reduced-motion: reduce) {
  .sector-tile__video {
    display: none;
  }
}

.sector-tile:hover,
.sector-tile:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 16px 32px rgba(15, 23, 41, 0.18);
  outline: none;
  color: #fff;
}

.sector-tile__icon {
  margin-bottom: auto;
  display: grid;
  place-items: center;
  padding: 0.28rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ec 100%);
  border: 1.5px solid rgba(201, 169, 98, 0.75);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 3px rgba(201, 169, 98, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.sector-tile__icon .sector-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  border-radius: 10px;
  color: var(--navy);
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: none;
  transform: none;
}

.sector-tile__icon .sector-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  filter: none;
  stroke: var(--navy);
}

.sector-tile__title {
  display: block;
  width: 100%;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-wrap: balance;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.35);
}

.sector-tile__desc {
  display: -webkit-box;
  width: 100%;
  margin: 0;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sector-tile.sector-card--fishery {
  background: linear-gradient(160deg, #4aa3e0 0%, #2e6da4 52%, #1a4d7a 100%);
}

.sector-tile.sector-card--aquaculture {
  background: linear-gradient(160deg, #3bc9b6 0%, #1f9e8f 52%, #12776f 100%);
}

.sector-tile.sector-card--domestic {
  background: linear-gradient(160deg, #e88ab5 0%, #c56aa0 52%, #8f3f72 100%);
}

.sector-tile.sector-card--hospitality {
  background: linear-gradient(160deg, #a99adf 0%, #7d6ac8 52%, #4f3f9e 100%);
}

.sector-tile.sector-card--manufacturing {
  background: linear-gradient(160deg, #e8c56a 0%, #c9a962 52%, #8a6a28 100%);
}

.sector-tile.sector-card--care {
  background: linear-gradient(160deg, #f08a9a 0%, #c44d62 52%, #8f2f42 100%);
}

.sector-tile.sector-card--construction {
  background: linear-gradient(160deg, #8aa0b5 0%, #5c6b7f 52%, #3a4656 100%);
}

@media (max-width: 900px) {
  .sectors-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }
}

@media (max-width: 420px) {
  .sectors-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .sector-tile {
    padding: 0.85rem 0.75rem;
    border-radius: 14px;
    gap: 0.35rem;
  }

  .sector-tile__icon {
    padding: 0.22rem;
    border-radius: 12px;
  }

  .sector-tile__icon .sector-card__icon {
    width: 2rem;
    height: 2rem;
  }

  .sector-tile__icon .sector-card__icon svg {
    width: 1rem;
    height: 1rem;
  }

  .sector-tile__title {
    font-size: 0.78rem;
  }

  .sector-tile__desc {
    font-size: 0.62rem;
    padding-top: 0.15rem;
  }
}

.sectors-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(201, 169, 98, 0.12) 0%, transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(91, 155, 213, 0.08) 0%, transparent 36%),
    linear-gradient(rgba(201, 169, 98, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
  animation: sectorsBgDrift 18s ease-in-out infinite alternate;
}

@keyframes sectorsBgDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-1.5%, 1%, 0) scale(1.02); }
}

.sectors-section .container {
  position: relative;
  z-index: 1;
}

.sectors-section .section-head {
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.5vw, 2rem);
  perspective: 1400px;
}

.sector-card__scene {
  position: relative;
  transform-style: preserve-3d;
  opacity: 1;
  transform: none;
}

html.js .sector-card__scene {
  opacity: 0;
  transform: translate3d(0, 48px, -40px) rotateX(8deg);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--sector-delay, 0s),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--sector-delay, 0s);
}

html.js .sector-card__scene.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg);
}

.sector-card {
  position: relative;
  display: block;
  height: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: none;
  overflow: visible;
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.sector-card.card:hover {
  box-shadow: none;
  transform: none;
}

.sector-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.15rem 2rem 1.9rem;
  border-radius: inherit;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 252, 247, 0.82) 55%, rgba(248, 243, 235, 0.88) 100%);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 56px rgba(15, 23, 41, 0.12),
    0 8px 20px rgba(15, 23, 41, 0.06),
    0 0 0 1px rgba(201, 169, 98, 0.14);
  overflow: hidden;
}

.sector-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(201, 169, 98, 0.35) 45%, rgba(255, 255, 255, 0.2) 70%, rgba(201, 169, 98, 0.25));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: calc(var(--radius-lg) + 8px) calc(var(--radius-lg) + 8px) 0 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  opacity: 0.85;
  z-index: 3;
  box-shadow: 0 0 18px rgba(201, 169, 98, 0.45);
}

.sector-card--fishery::before {
  background: linear-gradient(90deg, #7eb8e8, #2e6da4, #7eb8e8);
  box-shadow: 0 0 22px rgba(46, 109, 164, 0.45);
}

.sector-card--manufacturing::before {
  background: linear-gradient(90deg, #e8d08a, #a8863a, #e8d08a);
  box-shadow: 0 0 22px rgba(168, 134, 58, 0.45);
}

.sector-card--care::before {
  background: linear-gradient(90deg, #f0a0ad, #c44d62, #f0a0ad);
  box-shadow: 0 0 22px rgba(196, 77, 98, 0.4);
}

.sector-card--construction::before {
  background: linear-gradient(90deg, #b0bec9, #5c6b7f, #b0bec9);
  box-shadow: 0 0 22px rgba(92, 107, 127, 0.4);
}

.sector-card__shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.55) 50%, transparent 62%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.sector-card:hover .sector-card__shine {
  transform: translateX(130%) skewX(-18deg);
}

.sector-card__glow {
  position: absolute;
  inset: -20%;
  z-index: 0;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.sector-card--fishery .sector-card__glow { background: radial-gradient(circle, rgba(46, 109, 164, 0.35), transparent 70%); }
.sector-card--manufacturing .sector-card__glow { background: radial-gradient(circle, rgba(201, 169, 98, 0.4), transparent 70%); }
.sector-card--care .sector-card__glow { background: radial-gradient(circle, rgba(196, 77, 98, 0.32), transparent 70%); }
.sector-card--construction .sector-card__glow { background: radial-gradient(circle, rgba(92, 107, 127, 0.32), transparent 70%); }

.sector-card:hover .sector-card__glow,
.sector-card.is-tilting .sector-card__glow {
  opacity: 1;
}

.sector-card__scene:hover .sector-card__content {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 32px 72px rgba(15, 23, 41, 0.16),
    0 12px 28px rgba(15, 23, 41, 0.08),
    0 0 0 1px rgba(201, 169, 98, 0.28),
    0 0 40px rgba(201, 169, 98, 0.12);
}

.sector-card__num {
  position: absolute;
  top: 0.35rem;
  left: 0.5rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.07), rgba(15, 23, 41, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sector-card:hover .sector-card__num {
  transform: translate3d(4px, -2px, 20px) scale(1.04);
  opacity: 0.95;
}

.sector-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 1.15rem;
}

.sector-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(201, 169, 98, 0.18));
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 10px 24px rgba(201, 169, 98, 0.18), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translateZ(24px);
  animation: sectorIconFloat 4.5s ease-in-out infinite;
}

.sector-card--fishery .sector-card__icon {
  color: #2e6da4;
  border-color: rgba(46, 109, 164, 0.35);
  box-shadow: 0 10px 24px rgba(46, 109, 164, 0.18), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.sector-card--care .sector-card__icon {
  color: #c44d62;
  border-color: rgba(196, 77, 98, 0.35);
  box-shadow: 0 10px 24px rgba(196, 77, 98, 0.16), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.sector-card--construction .sector-card__icon {
  color: #5c6b7f;
  border-color: rgba(92, 107, 127, 0.35);
  box-shadow: 0 10px 24px rgba(92, 107, 127, 0.16), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

@keyframes sectorIconFloat {
  0%, 100% { transform: translate3d(0, 0, 24px); }
  50% { transform: translate3d(0, -6px, 32px); }
}

.sector-card__icon svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 4px rgba(15, 23, 41, 0.12));
}

.sector-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: -0.02em;
  transform: translateZ(12px);
}

.sector-card__scope {
  margin: 0 0 1.1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateZ(8px);
}

.sector-card--fishery .sector-card__scope { color: #2e6da4; }
.sector-card--care .sector-card__scope { color: #c44d62; }
.sector-card--construction .sector-card__scope { color: #5c6b7f; }

.sector-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.05rem;
  padding: 0.95rem 1.05rem;
  border-radius: calc(var(--radius-md) + 2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(15, 23, 41, 0.04));
  border: 1px solid rgba(201, 169, 98, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transform: translateZ(16px);
}

.sector-card__meta-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.sector-card__meta-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

.sector-card__desc {
  flex: 1;
  margin: 0 0 1.2rem;
  font-size: 0.96875rem;
  line-height: 1.75;
  color: var(--muted);
  transform: translateZ(6px);
}

.sector-card__competency {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0.45rem 0.75rem 0.45rem 0.55rem;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a6b3c;
  background: rgba(46, 158, 90, 0.1);
  border: 1px solid rgba(46, 158, 90, 0.22);
  border-radius: 999px;
  transform: translateZ(10px);
}

.sector-card__competency-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2e9e5a;
  box-shadow: 0 0 0 3px rgba(46, 158, 90, 0.2);
  flex-shrink: 0;
  animation: sectorPulse 2.2s ease-in-out infinite;
}

@keyframes sectorPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46, 158, 90, 0.2); transform: scale(1); }
  50% { box-shadow: 0 0 0 6px rgba(46, 158, 90, 0.08); transform: scale(1.08); }
}

.sector-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.55rem 0;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  transform: translateZ(14px);
  transition: color 0.22s ease, gap 0.22s ease, transform 0.22s ease;
}

.sector-card__cta:hover {
  color: var(--ink);
  gap: 0.65rem;
  transform: translateZ(20px) translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .sectors-section__bg,
  .sector-card__icon,
  .sector-card__competency-dot {
    animation: none;
  }

  .sector-card__scene,
  html.js .sector-card__scene,
  html.js .sector-card__scene.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sector-card {
    transition: none;
  }

  .sector-card__shine {
    display: none;
  }
}

/* Cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Floating social dock (all pages) */
.social-float {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 90;
  transform: translateY(-50%);
  pointer-events: none;
}

.social-float__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
}

.social-float__link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.4rem 0.55rem 0.4rem 0.7rem;
  margin-right: -0.35rem;
  border-radius: 999px 0 0 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 41, 0.1);
  border-right: 0;
  box-shadow: -6px 8px 20px rgba(15, 23, 41, 0.12);
  text-decoration: none;
  color: #1a7a5c;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transform: translateX(calc(100% - 2.55rem));
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.social-float__link:hover,
.social-float__link:focus-visible {
  transform: translateX(0);
  color: #0f1729;
  box-shadow: -10px 10px 24px rgba(15, 23, 41, 0.16);
  outline: none;
}

.social-float__icon {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  flex-shrink: 0;
  color: #fff;
}

.social-float__icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.social-float__label {
  white-space: nowrap;
  padding-right: 0.35rem;
}

.social-float__link--instagram .social-float__icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}

.social-float__link--facebook .social-float__icon {
  background: #1877f2;
}

.social-float__link--youtube .social-float__icon {
  background: #ff0000;
}

.social-float__link--whatsapp .social-float__icon {
  background: #25d366;
}

.social-float__link--instagram:hover,
.social-float__link--instagram:focus-visible {
  color: #dd2a7b;
}

.social-float__link--facebook:hover,
.social-float__link--facebook:focus-visible {
  color: #1877f2;
}

.social-float__link--youtube:hover,
.social-float__link--youtube:focus-visible {
  color: #ff0000;
}

.social-float__link--whatsapp:hover,
.social-float__link--whatsapp:focus-visible {
  color: #128c7e;
}

@media (max-width: 720px) {
  .social-float {
    top: auto;
    bottom: max(5.5rem, calc(4.5rem + env(safe-area-inset-bottom)));
    transform: none;
  }

  .social-float__link {
    transform: translateX(calc(100% - 2.4rem));
    min-height: 2.35rem;
    font-size: 0.6rem;
  }

  .social-float__link:hover,
  .social-float__link:focus-visible {
    transform: translateX(0);
  }
}

.contact-section--lux {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(201, 169, 98, 0.14), transparent 52%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(46, 109, 164, 0.12), transparent 50%),
    linear-gradient(165deg, #eaf2f9 0%, #f6f0e6 48%, #eef5fb 100%);
}

.contact-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.12) 0%, transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(74, 163, 224, 0.1) 0%, transparent 30%);
}

.contact-section--lux .container {
  position: relative;
  z-index: 1;
}

.contact-section__head h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
}

.contact-social {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: stretch;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 1.15rem;
}

.contact-social__link {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff8e8;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 10px 22px rgba(15, 23, 41, 0.14);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.contact-social__link:hover,
.contact-social__link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
  outline: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 28px rgba(15, 23, 41, 0.18);
}

.contact-social__icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.contact-social__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.contact-social__link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
}

.contact-social__link--facebook {
  background: linear-gradient(135deg, #4c8bf5 0%, #1877f2 55%, #0d5dbf 100%);
}

.contact-social__link--youtube {
  background: linear-gradient(135deg, #ff5a5a 0%, #ff0000 55%, #b00000 100%);
}

.contact-social__link--whatsapp {
  background: linear-gradient(135deg, #4fd67a 0%, #25d366 55%, #128c7e 100%);
}

.contact-map {
  position: relative;
  width: 100%;
  padding-bottom: min(56.25%, 420px);
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 40px rgba(15, 42, 68, 0.12);
  background: var(--cream-dark);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map__link-wrap {
  margin: 1rem 0 2rem;
}

.home-map-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.12), transparent 55%),
    linear-gradient(180deg, #f8f4ec 0%, #eef3f8 100%);
}

.home-map-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 90%);
}

.home-map-section .container {
  position: relative;
  z-index: 1;
}

.home-map-section__head {
  margin-bottom: 1.35rem;
}

.home-map-section__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  margin: 0 auto 1.35rem;
  max-width: 36rem;
  color: var(--muted, #64748b);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-map-section__address strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.home-map-section__frame {
  margin: 0 auto;
  max-width: 980px;
  padding-bottom: min(48%, 440px);
  min-height: 300px;
}

.home-map-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-info-card {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 246, 0.9));
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 18px;
  padding: 1.75rem 1.35rem;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(15, 23, 41, 0.07);
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff8e8, #e8d5a3);
  border: 1px solid rgba(201, 169, 98, 0.4);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 16px rgba(168, 134, 58, 0.14);
}

.contact-info-card h3 {
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
}

.contact-info-card p {
  margin: 0;
  color: #3f4b5c;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

.contact-info-card__wa {
  margin-top: 0.75rem !important;
}

.contact-info-card a {
  color: var(--navy);
  font-weight: 700;
}

.contact-info-card a:hover {
  color: var(--gold-dark);
}

@media (max-width: 720px) {
  .contact-social {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .contact-social__link {
    flex: 1 1 calc(50% - 0.55rem);
    min-width: calc(50% - 0.55rem);
    font-size: 0.78rem;
    min-height: 2.85rem;
    padding: 0.55rem 0.65rem;
  }

  .contact-social__label {
    font-size: 0.75rem;
  }
}

@media (max-width: 420px) {
  .contact-social__link {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.profile-section {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 2.5rem);
  background:
    radial-gradient(ellipse 70% 50% at 0% 20%, rgba(201, 169, 98, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 80%, rgba(74, 163, 224, 0.14), transparent 52%),
    linear-gradient(165deg, #e8f1f9 0%, #f6f0e6 46%, #eef5fb 100%);
}

.profile-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(201, 169, 98, 0.12) 0%, transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(46, 109, 164, 0.1) 0%, transparent 30%);
}

.profile-section__header {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.75rem;
}

.profile-section__header .eyebrow {
  margin-bottom: 0.55rem;
}

.profile-section__header h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.65rem;
  background: linear-gradient(135deg, #0f1729 0%, #243656 55%, #8a6a28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.profile-section__subtitle {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.profile-section__rule {
  width: 88px;
  height: 2px;
  margin: 1.15rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
}

.profile-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.profile-showcase--lux {
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.12fr);
}

.profile-showcase__media {
  position: relative;
  align-self: stretch;
  display: flex;
  min-height: 100%;
}

.profile-showcase__glow {
  position: absolute;
  inset: 4% -5% 4% 5%;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 30%, rgba(201, 169, 98, 0.35), transparent 62%);
  filter: blur(18px);
  z-index: 0;
}

.profile-showcase__frame {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  width: 100%;
  min-height: 100%;
  padding: 0.6rem;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 236, 0.9)),
    linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 28px 50px rgba(15, 23, 41, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.profile-showcase__media:hover .profile-showcase__frame {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 34px 58px rgba(15, 23, 41, 0.18);
}

.profile-showcase__frame::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 1;
}

.profile-showcase__frame img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.profile-showcase--lux .profile-showcase__frame img {
  aspect-ratio: auto;
}

.profile-showcase__badge {
  position: absolute;
  left: 1.15rem;
  bottom: 0.85rem;
  z-index: 2;
  display: grid;
  gap: 0.1rem;
  padding: 0.8rem 1rem 0.8rem 1.15rem;
  background: linear-gradient(135deg, rgba(15, 23, 41, 0.92), rgba(26, 39, 68, 0.88));
  color: var(--white);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(15, 23, 41, 0.28);
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.profile-showcase__badge-dot {
  position: absolute;
  left: 0.45rem;
  top: 50%;
  width: 0.35rem;
  height: 1.35rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}

.profile-showcase__badge span {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.profile-showcase__badge small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  color: rgba(232, 213, 163, 0.9);
}

.profile-showcase__content {
  display: flex;
  align-items: stretch;
}

.profile-showcase__panel {
  width: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 246, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px rgba(15, 42, 68, 0.08);
  backdrop-filter: blur(12px);
}

.about-prose--lux {
  max-width: none;
  margin: 0 0 1.5rem;
}

.about-prose--lux .profile-lead,
.about-prose--lux p:first-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  line-height: 1.55;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.about-prose--lux p {
  color: #4b5568;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.about-prose--lux p:last-child {
  margin-bottom: 0;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(201, 169, 98, 0.22);
}

.profile-stat {
  position: relative;
  padding: 1rem 0.7rem 0.9rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 236, 0.9));
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(15, 23, 41, 0.05);
  overflow: hidden;
}

.profile-stat::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.profile-stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  background: linear-gradient(135deg, #0f1729, #8a6a28);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.profile-stat span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Company profile PDF cards */
.profile-pdfs-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(46, 109, 164, 0.1), transparent 55%),
    linear-gradient(180deg, #f3efe6 0%, #eef5fb 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.profile-pdfs {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.profile-pdfs__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.profile-pdfs__title {
  margin: 0.35rem 0 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--navy);
}

.profile-pdfs__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.profile-pdfs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.profile-pdf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  min-height: 100%;
  padding: 1.45rem 1.25rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
  font: inherit;
  color: #fff8e8;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.profile-pdf-card--lux {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 16px 36px rgba(8, 12, 24, 0.2);
}

.profile-pdf-card--tone-0 {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 213, 163, 0.28), transparent 42%),
    linear-gradient(155deg, #101a30 0%, #1a2744 48%, #2a3d5f 100%);
}

.profile-pdf-card--tone-1 {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 248, 220, 0.3), transparent 40%),
    linear-gradient(155deg, #3a2a12 0%, #6b4f1f 42%, #a8863a 100%);
}

.profile-pdf-card--tone-2 {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 169, 98, 0.22), transparent 42%),
    linear-gradient(155deg, #0f1729 0%, #243656 50%, #3a4f72 100%);
}

.profile-pdf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
}

.profile-pdf-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.16) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.profile-pdf-card:hover:not(.is-empty),
.profile-pdf-card:focus-within:not(.is-empty) {
  transform: translateY(-5px);
  border-color: rgba(232, 213, 163, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 22px 44px rgba(8, 12, 24, 0.26),
    0 0 24px rgba(201, 169, 98, 0.12);
}

.profile-pdf-card:hover:not(.is-empty) .profile-pdf-card__shine,
.profile-pdf-card:focus-within:not(.is-empty) .profile-pdf-card__shine {
  transform: translateX(120%);
}

.profile-pdf-card.is-empty {
  opacity: 0.82;
}

.profile-pdf-card__num {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
}

.profile-pdf-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #0f1729;
  background: linear-gradient(145deg, #ffffff 0%, #f7f4ec 100%);
  border: 1.5px solid rgba(201, 169, 98, 0.7);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 18px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.profile-pdf-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #0f1729;
}

.profile-pdf-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f1729;
  background: linear-gradient(135deg, #fff8e8, #e8d5a3);
  border: 1px solid rgba(255, 248, 220, 0.45);
}

.profile-pdf-card__title {
  margin: 0.1rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff8e8;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-pdf-card__fallback-note {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(30, 41, 59, 0.62);
}

.profile-pdf-card__desc {
  margin: 0;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 250, 240, 0.92);
  line-height: 1.55;
  flex: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-pdf-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
  width: 100%;
}

.profile-pdf-card__cta,
.profile-pdf-card__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.profile-pdf-card__cta {
  color: #0f1729;
  background: linear-gradient(135deg, #fff8e8 0%, #e8d5a3 52%, #c9a962 100%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

.profile-pdf-card__download {
  color: #fff8e8;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 248, 220, 0.35);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.profile-pdf-card__cta:hover,
.profile-pdf-card__download:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.profile-pdf-card__cta:active,
.profile-pdf-card__download:active {
  transform: scale(0.97);
}

.profile-pdf-card__cta--soon {
  color: rgba(255, 248, 220, 0.55);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  cursor: default;
}

/* PDF viewer modal (PDF.js) */
.pdf-viewer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pdf-viewer[hidden] {
  display: none !important;
}

.pdf-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.78);
  backdrop-filter: blur(5px);
}

.pdf-viewer__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1040px, 100%);
  height: min(90dvh, 960px);
  border-radius: 18px;
  overflow: hidden;
  background: #0f1729;
  border: 1px solid rgba(201, 169, 98, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.pdf-viewer__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(180deg, #162038 0%, #121a2e 100%);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.pdf-viewer__eyebrow {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.9);
  margin-bottom: 0.15rem;
}

.pdf-viewer__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.25;
}

.pdf-viewer__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pdf-viewer__open-tab,
.pdf-viewer__download {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.pdf-viewer__open-tab {
  color: var(--navy);
  background: linear-gradient(135deg, #e8d5a3, #c9a962);
}

.pdf-viewer__download {
  color: #fff8e8;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 248, 220, 0.28);
}

.pdf-viewer__open-tab:hover,
.pdf-viewer__download:hover {
  filter: brightness(1.05);
}

.pdf-viewer__close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.pdf-viewer__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.pdf-viewer__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: rgba(8, 12, 24, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pdf-viewer__controls[hidden] {
  display: none !important;
}

.pdf-viewer__nav {
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.55rem;
  border: 1px solid rgba(255, 248, 220, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8e8;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.pdf-viewer__nav:hover:not(:disabled) {
  background: rgba(232, 213, 163, 0.22);
  border-color: rgba(232, 213, 163, 0.45);
}

.pdf-viewer__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.pdf-viewer__page {
  min-width: 4.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 248, 220, 0.92);
  font-variant-numeric: tabular-nums;
}

.pdf-viewer__sep {
  width: 1px;
  height: 1.2rem;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.18);
}

.pdf-viewer__frame-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 169, 98, 0.08), transparent 55%),
    #151d31;
}

.pdf-viewer__stage {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: grid;
  place-items: center;
  padding: 1rem;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.pdf-viewer__stage.is-landscape {
  place-items: center;
  align-content: center;
}

.pdf-viewer__canvas {
  display: block;
  /* Ukuran dikontrol JS agar rasio landscape tidak distorsi oleh max-width. */
  max-width: none;
  width: auto;
  height: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.pdf-viewer__status,
.pdf-viewer__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(18, 26, 46, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pdf-viewer__fallback-link {
  color: #e8d5a3;
  font-weight: 700;
}

.pdf-viewer__status[hidden],
.pdf-viewer__fallback[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .pdf-viewer {
    padding: 0.35rem;
  }

  .pdf-viewer__dialog {
    width: 100%;
    height: min(96dvh, 100%);
    max-height: 96dvh;
    border-radius: 14px;
  }

  .pdf-viewer__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
  }

  .pdf-viewer__title {
    font-size: 0.95rem;
  }

  .pdf-viewer__actions {
    justify-content: space-between;
  }

  .pdf-viewer__open-tab,
  .pdf-viewer__download {
    flex: 1;
    text-align: center;
  }

  .pdf-viewer__controls {
    gap: 0.35rem;
    padding: 0.45rem 0.65rem;
  }

  .pdf-viewer__stage {
    padding: 0.5rem;
    place-items: center;
  }
}

@media (max-width: 900px) {
  .profile-pdfs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .profile-pdfs__grid {
    grid-template-columns: 1fr;
  }
}

.vision-mission-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.12), transparent 55%),
    linear-gradient(180deg, #f5f9fc 0%, #f4efe6 100%);
}

.vision-mission-section--lux {
  background:
    radial-gradient(ellipse 55% 45% at 0% 10%, rgba(201, 169, 98, 0.2), transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 90%, rgba(46, 109, 164, 0.14), transparent 50%),
    linear-gradient(165deg, #e8f1f9 0%, #f7f1e6 48%, #eef4fb 100%);
}

.vision-mission-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(201, 169, 98, 0.14) 0%, transparent 26%),
    radial-gradient(circle at 85% 75%, rgba(74, 163, 224, 0.1) 0%, transparent 28%);
}

.vision-mission-section__head {
  position: relative;
  z-index: 1;
}

.vision-mission-section__head h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.vision-mission-section__head .lead {
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
  color: #4b5568;
  max-width: 38rem;
  margin-inline: auto;
}

.vision-mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.vision-mission-grid--lux {
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.vision-card,
.mission-card {
  position: relative;
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 2rem 1.75rem 1.75rem;
  min-height: 100%;
  overflow: hidden;
}

.vision-card--lux,
.mission-card--lux {
  padding: 2.1rem 1.85rem 1.9rem;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card--lux:hover,
.mission-card--lux:hover {
  transform: translateY(-4px);
}

.vision-card {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 169, 98, 0.22), transparent 42%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 55%, var(--navy-mid) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 20px 50px rgba(15, 23, 41, 0.22);
}

.vision-card--lux {
  color: #fff8e8;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 213, 163, 0.32), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(74, 163, 224, 0.14), transparent 42%),
    linear-gradient(155deg, #101a30 0%, #1a2744 48%, #2a3d5f 100%);
  border: 1px solid rgba(201, 169, 98, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 24px 48px rgba(8, 12, 24, 0.28);
}

.vision-card--lux:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 28px 54px rgba(8, 12, 24, 0.32),
    0 0 28px rgba(201, 169, 98, 0.14);
}

.vision-card__shine,
.mission-card__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.14) 48%, transparent 62%);
  opacity: 0.55;
}

.vision-card__ornament,
.mission-card__ornament {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  pointer-events: none;
  border: 2px solid rgba(201, 169, 98, 0.45);
  z-index: 1;
}

.vision-card__ornament--tl,
.mission-card__ornament--tl {
  top: 0.85rem;
  left: 0.85rem;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 10px;
}

.vision-card__ornament--br,
.mission-card__ornament--br {
  right: 0.85rem;
  bottom: 0.85rem;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 10px;
}

.vision-card__icon,
.mission-card__icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.05rem;
}

.vision-card__icon {
  background: linear-gradient(145deg, #f3e6c0, #c9a962);
  color: #0f1729;
  border: 1px solid rgba(255, 248, 220, 0.55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.vision-card__label,
.mission-card__label {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.6vw, 2.05rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.vision-card__label {
  color: #fff8e8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.vision-card__body p,
.mission-card__body p {
  margin: 0;
}

.vision-card__body {
  position: relative;
  z-index: 1;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
  color: #f8fafc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.vision-card--lux .vision-card__body {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mission-card--lux {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 213, 163, 0.35), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(168, 134, 58, 0.18), transparent 45%),
    linear-gradient(155deg, #3a2a12 0%, #6b4f1f 42%, #a8863a 100%);
  border: 1px solid rgba(255, 248, 220, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 24px 48px rgba(58, 42, 18, 0.28);
}

.mission-card--lux:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 28px 54px rgba(58, 42, 18, 0.32),
    0 0 28px rgba(201, 169, 98, 0.16);
}

.mission-card__icon {
  background: linear-gradient(145deg, #fff8e8, #e8d5a3);
  color: #3a2a12;
  border: 1px solid rgba(255, 248, 220, 0.55);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.mission-card__label {
  color: #fff8e8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
}

.mission-card__body {
  position: relative;
  z-index: 1;
  font-family: var(--font);
}

.mission-card__body ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: mission-item;
}

.mission-card__body li {
  display: grid;
  grid-template-columns: 2.15rem 1fr;
  gap: 0.8rem;
  align-items: start;
  margin: 0;
  padding: 0;
  color: #fffaf0;
  font-weight: 500;
  line-height: 1.65;
  font-size: 0.98rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.mission-card__body li::before {
  counter-increment: mission-item;
  content: counter(mission-item);
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 800;
  color: #3a2a12;
  background: linear-gradient(145deg, #fff8e8, #e8d5a3);
  border: 1px solid rgba(255, 248, 220, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.iso-card {
  max-width: 980px;
  margin: 1.5rem auto 0;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 41, 0.06);
}

.iso-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.iso-card__head h3 {
  margin: 0;
  font-size: 1.125rem;
}

.iso-card__badge {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 41, 0.06);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iso-card__body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.iso-card__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.iso-card__body li {
  margin: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--cream-dark);
  border: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--navy);
  line-height: 1.3;
}

.about-hero {
  margin: 0 auto 2rem;
  max-width: 960px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.about-prose {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.0625rem;
}

.about-prose--center {
  text-align: center;
  margin-bottom: 2rem;
}

.about-prose h3 {
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.about-prose p,
.about-prose li {
  margin-bottom: 0.85rem;
}

.about-prose ul,
.about-prose ol {
  padding-left: 1.25rem;
}

.legalitas-gallery__hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
}

.legalitas-category {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 24px;
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 40px rgba(15, 42, 68, 0.08);
}

.legalitas-category:first-of-type {
  margin-top: 0.5rem;
}

.legalitas-category--legal {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(46, 109, 164, 0.12), transparent 55%),
    linear-gradient(165deg, #eef5fb 0%, #f7f4ef 100%);
}

.legalitas-category--cert {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(201, 169, 98, 0.16), transparent 55%),
    linear-gradient(165deg, #f8f1e4 0%, #eef4fb 100%);
}

.legalitas-category__head {
  text-align: center;
  margin-bottom: 1.15rem;
}

.legalitas-category__ornament {
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.legalitas-category__title {
  margin: 0 0 0.55rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legalitas-category__rule {
  width: 4.5rem;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.35);
}

.legalitas-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 720px;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) auto;
  padding: 0 0.5rem;
}

.legalitas-divider__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.55), rgba(15, 23, 41, 0.12), rgba(201, 169, 98, 0.55), transparent);
}

.legalitas-divider__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 55%),
    linear-gradient(135deg, #1a2744 0%, #0f1729 55%, #243656 100%);
  border: 1px solid rgba(201, 169, 98, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 10px 24px rgba(15, 23, 41, 0.18);
  white-space: nowrap;
}

.legalitas-divider__gem {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8e8, #c9a962);
  box-shadow: 0 0 10px rgba(201, 169, 98, 0.55);
}

.legalitas-divider__text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8e8;
}

.legalitas-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.legalitas-gallery--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
}

.legalitas-gallery__item {
  margin: 0;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.92));
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(15, 23, 41, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legalitas-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 34px rgba(15, 23, 41, 0.12);
}

.legalitas-gallery__open {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
  text-align: left;
}

.legalitas-gallery__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: 280px;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 169, 98, 0.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.legalitas-category--legal .legalitas-gallery__preview {
  background:
    radial-gradient(circle at 50% 20%, rgba(74, 163, 224, 0.12), transparent 55%),
    linear-gradient(180deg, #f4f8fc 0%, #e8f0f7 100%);
}

.legalitas-category--cert .legalitas-gallery__preview {
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 169, 98, 0.16), transparent 55%),
    linear-gradient(180deg, #fbf7ef 0%, #f3ebe0 100%);
}

.legalitas-gallery__preview img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 248px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 41, 0.08);
}

.legalitas-gallery__item figcaption {
  padding: 0.9rem 1rem 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 244, 236, 0.9));
}

.doc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.doc-lightbox[hidden] {
  display: none !important;
}

.doc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 41, 0.88);
}

.doc-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.doc-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.doc-lightbox__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.doc-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
  text-align: center;
  max-width: 720px;
}

.team-list {
  display: grid;
  gap: 1.5rem;
}

.team-org-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(15, 23, 41, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(201, 169, 98, 0.1), transparent 50%),
    linear-gradient(180deg, #e8eef5 0%, #f4f1ea 48%, #e9f0f7 100%);
}

.team-org-section .section-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
}

.org-chart {
  max-width: 1120px;
  margin: 0 auto;
}

.org-chart--corp {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 252, 246, 0.55));
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 50px rgba(15, 42, 68, 0.08);
}

.org-chart__apex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-chart__level {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 168px));
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.org-chart__level--top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
}

.org-chart__level--staff {
  margin-top: 1.5rem;
}

.org-chart__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 0;
}

.org-chart__line-v {
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, #c9a962, rgba(15, 23, 41, 0.18));
}

.org-chart__fork {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.org-chart__line-h {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a962 12%, #c9a962 88%, transparent);
}

.org-chart__fork-legs {
  display: grid;
  grid-template-columns: repeat(var(--org-fork-count, 3), minmax(0, 1fr));
}

.org-chart__fork-leg {
  display: flex;
  justify-content: center;
}

.org-chart__fork-leg::before {
  content: "";
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, #c9a962, rgba(15, 23, 41, 0.14));
}

.org-card {
  width: 168px;
}

.org-card--director {
  width: 200px;
}

.org-card__btn {
  appearance: none;
  width: 100%;
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: 18px;
  padding: 0.85rem 0.7rem 0.9rem;
  background: #fff;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-height: 100%;
  box-shadow: 0 10px 26px rgba(15, 23, 41, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.org-card__btn:hover,
.org-card__btn:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 16px 34px rgba(15, 23, 41, 0.12);
  outline: none;
}

.org-card--director .org-card__btn {
  padding: 1rem 0.85rem 1.05rem;
  border: 1px solid rgba(201, 169, 98, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 213, 163, 0.28), transparent 55%),
    linear-gradient(180deg, #101a30 0%, #1a2744 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 16px 36px rgba(8, 12, 24, 0.28);
}

.org-card--director .org-card__name,
.org-card--director .org-card__role,
.org-card--director .org-card__hint {
  color: #fff8e8;
}

.org-card--director .org-card__role {
  color: #e8d5a3;
}

.org-card--director .org-card__hint {
  color: rgba(255, 248, 220, 0.7);
}

.org-card--director .org-card__btn:hover .org-card__hint,
.org-card--director .org-card__btn:focus-visible .org-card__hint {
  color: #fff;
}

.org-card--head .org-card__btn {
  border-color: rgba(201, 169, 98, 0.35);
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.12),
    0 12px 28px rgba(15, 23, 41, 0.1);
}

.org-chart__groups {
  display: grid;
  grid-template-columns: repeat(var(--org-fork-count, 3), minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  margin-top: 0.15rem;
}

.org-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 0 1.15rem;
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 41, 0.07);
  overflow: hidden;
}

.org-group__banner {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.7rem 0.75rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 169, 98, 0.22), transparent 50%),
    linear-gradient(135deg, #0f1729 0%, #1a2744 55%, #243656 100%);
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
}

.org-group__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff8e8;
  text-align: center;
}

.org-group__head {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0.65rem;
}

.org-group__connector {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0 0.75rem;
}

.org-group__line-v {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.7), rgba(15, 23, 41, 0.12));
}

.org-group__staff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 0 0.65rem;
}

.org-group__staff .org-card {
  width: 100%;
  max-width: 168px;
}

.org-card__photo-ring {
  display: block;
  width: 88%;
  max-width: 138px;
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(150deg, #fff8e8 0%, #d8bd7c 45%, #a9853c 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 41, 0.14);
}

.org-card--director .org-card__photo-ring {
  width: 90%;
  max-width: 156px;
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(150deg, #fff8e8 0%, #e8d5a3 45%, #c9a962 100%);
}

.org-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 13px;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid #fff;
}

.org-card--director .org-card__photo {
  border-radius: 15px;
}

.org-card__photo img,
.org-card__fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.org-card__fallback {
  display: grid;
  place-items: center;
  background: var(--navy-soft);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.75rem;
}

.org-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

.org-card__name {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  min-height: 2.2em;
}

.org-card__role {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  color: #8a6a28;
  min-height: 2.2em;
}

.org-card__hint {
  display: block;
  margin-top: 0.15rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(15, 23, 41, 0.08);
  width: 100%;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.org-card__btn:hover .org-card__hint,
.org-card__btn:focus-visible .org-card__hint {
  color: var(--navy);
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.team-modal[hidden] {
  display: none !important;
}

.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 41, 0.88);
}

.team-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--white);
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 1.5rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.team-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.team-modal__layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.team-modal__photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(201, 169, 98, 0.35);
}

.team-modal__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-modal__name {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: var(--navy);
}

.team-modal__role {
  margin: 0 0 1rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9375rem;
}

.team-modal__bio {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96875rem;
}

.team-modal__bio p {
  margin: 0;
}

.team-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.team-card__photo img,
.team-card__photo-fallback {
  width: 210px;
  height: 310px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.team-card__photo-fallback {
  display: grid;
  place-items: center;
  background: var(--cream-dark);
  color: var(--navy);
  font-size: 2rem;
  font-weight: 800;
}

.team-card__body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.team-card__role {
  margin: 0 0 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.team-card__bio {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.team-card__bio p {
  margin: 0;
}

.card {
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(15, 42, 68, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream-dark);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Services section */
.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(201, 169, 98, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(74, 163, 224, 0.1), transparent 50%),
    linear-gradient(180deg, #f3ebe0 0%, #f8f4ec 48%, #eef4fa 100%);
}

.services-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  gap: 1.35rem;
}

.service-card {
  position: relative;
  padding: 1.85rem 1.65rem 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow:
    0 10px 30px rgba(15, 23, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  opacity: 0.55;
  transition: opacity 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow:
    0 18px 42px rgba(15, 23, 41, 0.1),
    0 0 0 1px rgba(201, 169, 98, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 169, 98, 0.35), transparent 55%),
    linear-gradient(145deg, var(--navy-soft) 0%, var(--navy) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 8px 20px rgba(15, 23, 41, 0.18);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.0625rem;
  color: var(--navy);
}

.service-card p {
  line-height: 1.65;
}

/* News section */
.news-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(46, 109, 164, 0.12), transparent 58%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(201, 169, 98, 0.12), transparent 55%),
    linear-gradient(180deg, #eef5fb 0%, #f5f8fc 52%, #f3efe6 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  border-bottom: 1px solid rgba(15, 23, 41, 0.06);
}

.news-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0%, rgba(15, 23, 41, 0.02) 50%, transparent 100%);
}

.news-section .container {
  position: relative;
  z-index: 1;
}

.news-grid {
  gap: 1.5rem;
}

.news-section__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.news-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 41, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 41, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.12);
}

.news-card__media {
  position: relative;
  overflow: hidden;
  background: var(--navy-soft);
  display: block;
}

.news-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 41, 0.18));
  pointer-events: none;
}

.news-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.news-card time {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.18), rgba(201, 169, 98, 0.08));
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.news-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  line-height: 1.4;
}

.news-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-dark);
  transition: color 0.15s ease, transform 0.15s ease;
}

.news-card__link::after {
  content: "â†’";
  margin-left: 0.35rem;
  transition: transform 0.15s ease;
}

.news-card:hover .news-card__link {
  color: var(--navy);
}

.news-card:hover .news-card__link::after {
  transform: translateX(3px);
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.news-card h3 a:hover {
  color: var(--gold-dark);
}

.news-section__footer {
  margin-top: 2rem;
  text-align: center;
}

.news-archive-section .section-head h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.news-article-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.08), transparent 60%),
    linear-gradient(180deg, #f8f5f0 0%, var(--cream) 100%);
}

.news-article__hero {
  padding: calc(var(--header-h) + 2rem) 0 1.5rem;
}

.news-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.news-article__back:hover {
  color: var(--navy);
}

.news-article__date {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(201, 169, 98, 0.16);
  border: 1px solid rgba(201, 169, 98, 0.28);
}

.news-article__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy);
}

.news-article__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

.news-article__media {
  margin: 0 0 2rem;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 41, 0.12);
}

.news-article__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-article__content {
  padding: 0 0 2.5rem;
  color: #4b5568;
  font-size: 1.03125rem;
  line-height: 1.85;
}

.news-article__content p {
  margin: 0 0 1rem;
}

.news-article__content a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.news-article__content a:hover {
  color: var(--navy);
}

.news-article__content strong {
  color: var(--navy);
}

.news-article__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.news-empty {
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  text-align: center;
}

.news-empty .btn-row {
  justify-content: center;
  margin-top: 1.5rem;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process__step {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.process__step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Jobs / Lowongan */
.jobs-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(46, 109, 164, 0.12), transparent 58%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(201, 169, 98, 0.14), transparent 55%),
    linear-gradient(180deg, #eaf3fa 0%, #f4f7fb 48%, #f5efe4 100%);
  border-top: 1px solid rgba(15, 23, 41, 0.06);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.jobs-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 39, 68, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 39, 68, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 90%);
}

.jobs-section .container {
  position: relative;
  z-index: 1;
}

.jobs-page .section-head h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.jobs-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(340px, 1.15fr);
  grid-template-rows: auto auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.jobs-showcase__poster {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  min-height: 100%;
  align-self: stretch;
}

.jobs-poster__link {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 0.65rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 16px 40px rgba(15, 23, 41, 0.12);
  overflow: hidden;
}

.jobs-poster__link img {
  display: block;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  object-fit: contain;
  object-position: center center;
}

.jobs-grid {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.jobs-showcase:not(:has(.jobs-showcase__poster)) .jobs-grid {
  grid-column: 1 / -1;
}

.jobs-poster__zoom {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 41, 0.82);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.jobs-poster__link:hover .jobs-poster__zoom,
.jobs-poster__link:focus-visible .jobs-poster__zoom {
  opacity: 1;
}

.jobs-showcase__cta {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.jobs-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 1.25rem 1.15rem 1.15rem;
  box-shadow: 0 8px 24px rgba(15, 23, 41, 0.05);
  min-height: 100%;
}

.jobs-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(201, 169, 98, 0.28);
}

.jobs-card__title {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.jobs-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.jobs-card__list li {
  margin-bottom: 0.35rem;
}

.jobs-card__list li:last-child {
  margin-bottom: 0;
}

.jobs-showcase--compact .jobs-showcase__cta .btn:last-child {
  display: none;
}

/* Lowongan per sektor â€” luxury cards */
.job-sectors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.job-sector-card {
  --job-card-glow: rgba(232, 213, 163, 0.28);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  min-height: 100%;
  padding: 1.55rem 1.4rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 213, 163, 0.26), transparent 42%),
    linear-gradient(155deg, #101a30 0%, #1a2744 48%, #2a3d5f 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 16px 36px rgba(8, 12, 24, 0.2);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #fff8e8;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.job-sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  opacity: 0.9;
  transition: opacity 0.28s ease, left 0.28s ease, right 0.28s ease;
}

.job-sector-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -38% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--job-card-glow), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.job-sector-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.16) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 1;
}

.job-sector-card > *:not(.job-sector-card__shine):not(.job-sector-card__num) {
  position: relative;
  z-index: 2;
}

.job-sector-card:hover,
.job-sector-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(232, 213, 163, 0.48);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 24px 48px rgba(8, 12, 24, 0.28),
    0 0 28px rgba(201, 169, 98, 0.14);
  outline: none;
}

.job-sector-card:hover::before,
.job-sector-card:focus-visible::before {
  opacity: 1;
  left: 0.7rem;
  right: 0.7rem;
}

.job-sector-card:hover .job-sector-card__shine,
.job-sector-card:focus-visible .job-sector-card__shine {
  transform: translateX(120%);
}

.job-sector-card__num {
  position: absolute;
  top: 0.95rem;
  right: 1.15rem;
  z-index: 2;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.job-sector-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding-right: 2rem;
}

.job-sector-card__icon .sector-card__icon {
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff 0%, #f7f4ec 100%);
  color: #0f1729;
  border: 1.5px solid rgba(201, 169, 98, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.job-sector-card:hover .job-sector-card__icon .sector-card__icon,
.job-sector-card:focus-visible .job-sector-card__icon .sector-card__icon {
  transform: scale(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 248, 220, 0.35),
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.job-sector-card__icon .sector-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #0f1729;
}

.job-sector-card__title {
  margin: 0.15rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.18rem, 1.9vw, 1.4rem);
  font-weight: 700;
  color: #fff8e8;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.job-sector-card__scope {
  margin: 0;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1729;
  background: linear-gradient(135deg, #fff8e8, #e8d5a3);
  border: 1px solid rgba(255, 248, 220, 0.45);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.job-sector-card__dest {
  margin: 0;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 248, 220, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 250, 240, 0.9);
  line-height: 1.5;
  backdrop-filter: blur(6px);
}

.job-sector-card__dest span {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 213, 163, 0.92);
  margin-bottom: 0.22rem;
}

.job-sector-card__summary {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 250, 240, 0.86);
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.job-sector-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f1729;
  background: linear-gradient(135deg, #fff8e8 0%, #e8d5a3 52%, #c9a962 100%);
  border: 1px solid rgba(255, 248, 220, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.job-sector-card__cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.job-sector-card:hover .job-sector-card__cta,
.job-sector-card:focus-visible .job-sector-card__cta {
  color: #0f1729;
  background: linear-gradient(135deg, #ffffff 0%, #fff0c8 45%, #e8d5a3 100%);
  border-color: rgba(255, 248, 220, 0.65);
  box-shadow: 0 12px 24px rgba(201, 169, 98, 0.28);
}

.job-sector-card:hover .job-sector-card__cta-arrow,
.job-sector-card:focus-visible .job-sector-card__cta-arrow {
  transform: translateX(4px);
}

.job-sector-card--fishery {
  --job-card-glow: rgba(120, 180, 230, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(120, 180, 230, 0.28), transparent 42%),
    linear-gradient(155deg, #0c1a2e 0%, #16324f 48%, #1f4a6e 100%);
}

.job-sector-card--manufacturing {
  --job-card-glow: rgba(232, 213, 163, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 248, 220, 0.28), transparent 40%),
    linear-gradient(155deg, #3a2a12 0%, #6b4f1f 42%, #a8863a 100%);
}

.job-sector-card--care {
  --job-card-glow: rgba(140, 200, 170, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(140, 200, 170, 0.24), transparent 42%),
    linear-gradient(155deg, #0f241c 0%, #1a3d30 48%, #2a5a46 100%);
}

.job-sector-card--construction {
  --job-card-glow: rgba(220, 150, 110, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 150, 110, 0.24), transparent 42%),
    linear-gradient(155deg, #2a1810 0%, #4a2c1c 48%, #6b3f28 100%);
}

.job-sector-card--aquaculture {
  --job-card-glow: rgba(80, 210, 195, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(80, 210, 195, 0.24), transparent 42%),
    linear-gradient(155deg, #06231f 0%, #0d403a 48%, #147a6f 100%);
}

.job-sector-card--domestic {
  --job-card-glow: rgba(230, 130, 185, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(230, 130, 185, 0.24), transparent 42%),
    linear-gradient(155deg, #2b0f22 0%, #4a1a3a 48%, #7a2f5f 100%);
}

.job-sector-card--hospitality {
  --job-card-glow: rgba(150, 135, 220, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(150, 135, 220, 0.24), transparent 42%),
    linear-gradient(155deg, #171233 0%, #2b2258 48%, #443a86 100%);
}

.job-sector-card--agriculture {
  --job-card-glow: rgba(180, 200, 90, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 210, 100, 0.26), transparent 42%),
    linear-gradient(155deg, #1f2a0c 0%, #3d4f18 48%, #6b7a2a 100%);
}

.job-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(0.85rem, env(safe-area-inset-top)) max(0.85rem, env(safe-area-inset-right)) max(0.85rem, env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-left));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.job-modal[hidden] {
  display: none !important;
}

.job-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 24, 0.78);
  backdrop-filter: blur(4px);
}

.job-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100dvh - 1.7rem);
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffefb 0%, #fff 40%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow:
    0 28px 70px rgba(8, 12, 24, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.job-modal__dialog::before {
  content: "";
  flex: 0 0 auto;
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
}

.job-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 41, 0.08);
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.job-modal__close:hover {
  background: rgba(15, 23, 41, 0.14);
}

.job-modal__panels {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1.25rem 1.5rem 1.35rem;
}

.job-modal__panel[hidden] {
  display: none !important;
}

.job-modal__panel {
  padding-right: 0.25rem;
  padding-bottom: 0.25rem;
}

.job-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6a28;
}

.job-modal__title {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.job-modal__scope {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #8a6a28;
}

.job-modal__dest {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.job-modal__clips {
  margin: 0 0 1.1rem;
}

.job-modal__clips-title {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6a1f;
}

.job-modal__clips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.job-modal__clip {
  margin: 0;
  min-width: 0;
}

.job-modal__clip-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: #0b1f3a;
  border: 1px solid rgba(201, 169, 98, 0.28);
  box-shadow: 0 8px 18px rgba(15, 42, 68, 0.12);
}

.job-modal__clip-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.job-modal__clip-label {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f2a44;
  text-align: center;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .job-modal__clips-grid {
    grid-template-columns: 1fr;
  }

  .job-modal__clip-media {
    aspect-ratio: 16 / 9;
  }
}

.job-modal__narrative {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.15rem;
}

.job-modal__narrative p {
  margin: 0 0 0.75rem;
}

.job-modal__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.job-modal__block {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #f7f8fa;
  border: 1px solid rgba(15, 23, 41, 0.06);
}

.job-modal__block h4 {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--navy);
}

.job-modal__block ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.job-modal__block li + li {
  margin-top: 0.25rem;
}

.job-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.25rem;
  padding-bottom: 0.35rem;
}

.job-modal__services {
  margin: 1.15rem 0 1.35rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 98, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(248, 244, 236, 0.95) 100%);
}

.job-modal__services-head {
  margin-bottom: 0.95rem;
}

.job-modal__services-eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8860b;
}

.job-modal__services-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--navy, #0f2744);
}

.job-modal__services-lead {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted, #64748b);
}

.job-modal__services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.job-modal__service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.2rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 39, 68, 0.08);
}

.job-modal__service-card .service-card__icon {
  grid-row: 1 / span 2;
  align-self: start;
  width: 2rem;
  height: 2rem;
  margin: 0;
}

.job-modal__service-card .service-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.job-modal__service-card h5 {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.25;
  color: var(--navy, #0f2744);
}

.job-modal__service-card p {
  margin: 0;
  grid-column: 2;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted, #64748b);
}

@media (max-width: 640px) {
  .job-modal__services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .job-sectors__grid {
    grid-template-columns: 1fr;
  }

  .job-sector-card {
    padding: 1.3rem 1.15rem 1.15rem;
  }

  .job-sector-card__title {
    font-size: 1.15rem;
  }

  .job-sector-card__num {
    font-size: 1.4rem;
  }

  .job-modal {
    padding: 0.65rem;
    align-items: stretch;
  }

  .job-modal__dialog {
    max-height: calc(100dvh - 1.3rem);
    margin: 0 auto;
    width: 100%;
  }

  .job-modal__panels {
    padding: 1.1rem 1.05rem 1.15rem;
  }

  .job-modal__close {
    top: 0.55rem;
    right: 0.55rem;
  }
}

/* Jobs (legacy card helpers) */
.job-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--cream-dark);
  color: var(--navy-mid);
}

.tag--open {
  background: rgba(46, 125, 50, 0.12);
  color: var(--success);
}

/* News (legacy helpers) */
.news-card img:not(.news-card__media img) {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* Testimonials â€” luxurious editorial stage */
.testimonial-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(201, 169, 98, 0.16), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 88%, rgba(36, 84, 132, 0.14), transparent 55%),
    linear-gradient(180deg, #f7f2e9 0%, #eef4fa 48%, #f8f4ec 100%);
}

.testimonial-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 92%);
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
}

.testimonial-section__head {
  margin-bottom: 2.25rem;
}

.testimonial-stage {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border-radius: 28px;
  border: 1px solid rgba(201, 169, 98, 0.28);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 248, 241, 0.94) 55%, rgba(245, 250, 255, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px rgba(15, 39, 68, 0.1);
}

.testimonial-stage__glow {
  position: absolute;
  inset: auto 12% -20% 12%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.18), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.testimonial-slider {
  position: relative;
  z-index: 1;
}

.testimonial-slider__track {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  text-align: left;
}

.testimonial-card.is-active {
  display: flex;
  animation: testimonialReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes testimonialReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-card__quote-icon {
  color: var(--gold);
  opacity: 0.85;
  line-height: 0;
}

.testimonial-card__quote {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 42rem;
}

.testimonial-card__quote p {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 0.7vw + 1rem, 1.45rem);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.55rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(201, 169, 98, 0.28);
  width: 100%;
}

.testimonial-card__avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.14);
}

.testimonial-card__avatar img,
.testimonial-card__initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: #fff;
}

.testimonial-card__initials {
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #f3eee4);
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.testimonial-card__name {
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.testimonial-card__role {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
}

.testimonial-card--video {
  align-items: center;
}

.testimonial-card__video-wrap {
  width: min(100%, 280px);
  margin: 0 auto 1.15rem;
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(201, 169, 98, 0.28);
  box-shadow:
    0 18px 40px rgba(15, 23, 41, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  aspect-ratio: 9 / 16;
}

.testimonial-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b1220;
}

@media (min-width: 720px) {
  .testimonial-card__video-wrap {
    width: min(100%, 300px);
  }
}

.testimonial-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.65rem;
}

.testimonial-controls__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 39, 68, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 39, 68, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.testimonial-controls__btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-1px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.testimonial-dots__btn {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 39, 68, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dots__btn.is-active {
  width: 26px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

@media (max-width: 640px) {
  .testimonial-stage {
    padding: 1.25rem 1.1rem 1.35rem;
    border-radius: 22px;
  }

  .testimonial-slider__track {
    min-height: 240px;
  }

  .testimonial-card__quote p {
    font-size: 1.08rem;
    line-height: 1.6;
  }

  .testimonial-card__avatar {
    width: 60px;
    height: 60px;
  }
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.4rem 0 1.15rem;
}

.site-footer--video {
  background: #08101f;
}

.site-footer__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-footer__video {
  display: block;
  width: 100%;
  height: 100%;
  /* Banner video is pre-cropped to footer proportions (~5.6:1). */
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.08) contrast(1.06) saturate(1.1);
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 12, 24, 0.52) 0%, rgba(15, 23, 41, 0.32) 46%, rgba(15, 23, 41, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 12, 24, 0.1) 0%, rgba(8, 12, 24, 0.28) 100%);
}

.site-footer__content {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  margin-bottom: 1.1rem;
  align-items: start;
}

.footer-brand__desc {
  margin: 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand__slogan {
  margin: 0.55rem 0 0;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold-light, #e8d5a3);
}

.footer-brand__tagline {
  margin: 0.12rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact__meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact__meta li {
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
}

.footer-contact__key {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 0.25rem;
}

.site-footer--video .brand__text strong {
  color: #fff;
}

.site-footer--video .brand__text span {
  color: rgba(232, 213, 163, 0.88);
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.9375rem;
  margin: 0 0 0.55rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.66);
}

/* Mobile footer: proportional, readable, elegant hierarchy */
@media (max-width: 720px) {
  .site-footer {
    padding: 2.15rem 0 1.65rem;
  }

  .site-footer--video .site-footer__overlay {
    background:
      linear-gradient(180deg, rgba(6, 10, 20, 0.72) 0%, rgba(8, 12, 24, 0.78) 100%),
      linear-gradient(105deg, rgba(8, 12, 24, 0.55) 0%, rgba(15, 23, 41, 0.42) 100%);
  }

  .site-footer__content {
    /* Keep copy clear of the floating social dock */
    padding-right: 2.85rem;
  }

  .footer-grid {
    gap: 1.35rem;
    margin-bottom: 1.35rem;
  }

  .site-footer .brand {
    align-items: flex-start;
    gap: 0.65rem;
  }

  .site-footer .brand__logo-frame {
    padding: 0.18rem 0.24rem;
    border-radius: 9px;
  }

  .site-footer .brand__logo {
    height: 34px;
    max-width: 86px;
  }

  .site-footer .brand__text strong {
    font-size: 0.78rem;
    line-height: 1.28;
    letter-spacing: 0.055em;
    white-space: normal;
    animation: none;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  }

  .site-footer .brand__text-line {
    font-size: 0.62rem;
    line-height: 1.4;
    letter-spacing: 0.035em;
    color: rgba(255, 248, 232, 0.78);
  }

  .site-footer .brand__text-line--tag {
    margin-top: 0.12rem;
    font-size: 0.58rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: rgba(232, 213, 163, 0.9);
  }

  .footer-brand__desc {
    margin-top: 0.15rem;
    max-width: 21rem;
    font-size: 0.8rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 400;
    color: rgba(255, 248, 232, 0.82);
  }

  .site-footer h3 {
    margin: 0 0 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232, 213, 163, 0.95);
  }

  .site-footer li {
    margin-bottom: 0.42rem;
    font-size: 0.8rem;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: rgba(255, 248, 232, 0.8);
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .site-footer .footer-contact__address {
    max-width: 18.5rem;
  }

  .site-footer a {
    color: rgba(255, 248, 232, 0.88);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.28rem;
    padding-top: 1.1rem;
    font-size: 0.7rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: rgba(255, 248, 232, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__video {
    display: none;
  }

  .site-footer--video {
    background:
      linear-gradient(135deg, rgba(8, 12, 24, 0.72), rgba(15, 23, 41, 0.62)),
      url("../footer/footer-sea.jpg") center / cover no-repeat;
  }

  .site-footer__overlay {
    background: rgba(8, 12, 24, 0.45);
  }
}

.container--narrow {
  max-width: 760px;
}

.section-actions {
  text-align: center;
}

body.nav-open {
  overflow: hidden;
}

.mockup-badge {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero__content {
    padding-bottom: clamp(5rem, 14vh, 7rem);
  }

  .hero__scroll {
    bottom: 1rem;
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr 1fr;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .org-chart__fork {
    display: none;
  }

  .org-chart__groups {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .org-chart__connector .org-chart__line-v {
    height: 28px;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(1320px, calc(100% - 1.25rem));
  }

  .section {
    padding: 3rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .brand__logo-frame {
    padding: 0.2rem 0.28rem;
    border-radius: 10px;
  }

  .brand__logo {
    height: 38px;
    max-width: 98px;
  }

  .brand__text strong {
    font-size: 0.72rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
  }

  .brand__text-line {
    font-size: 0.55rem;
  }

  .brand__text-line--tag {
    font-size: 0.5rem;
  }

  .nav-toggle {
    display: block;
    font-size: 1.65rem;
    padding: 0.4rem;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    z-index: 150;
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1.15rem 1.15rem;
    gap: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 1rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__dropbtn {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.0625rem;
    text-align: left;
  }

  .site-nav__dropmenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
  }

  .site-nav__dropdown.is-open .site-nav__dropmenu {
    display: block;
  }

  .site-nav__dropmenu a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-transform: none;
    font-size: 0.975rem;
    letter-spacing: 0;
  }

  .site-nav__cta {
    margin-top: 0.65rem;
    padding: 0.85rem 1.15rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }

  .site-nav__lang-text {
    display: none;
  }

  .site-nav__dropdown--lang .site-nav__dropbtn--lang {
    padding: 0.55rem 0.65rem;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero__scroll {
    display: none;
  }

  .hero--videos {
    height: 100dvh;
    max-height: 100dvh;
    padding-top: 0;
  }

  .hero--videos .hero__overlay--videos {
    background:
      linear-gradient(180deg, rgba(8, 12, 24, 0.22) 0%, transparent 22%, transparent 48%, rgba(8, 12, 24, 0.55) 72%, rgba(8, 12, 24, 0.88) 100%);
  }

  .hero--videos .hero__glow {
    opacity: 0.35;
  }

  .hero__content,
  .hero__content--simple {
    justify-content: flex-end;
    align-items: center;
    padding: calc(var(--header-h) + 0.35rem) 1rem clamp(1.25rem, 6vh, 2.25rem);
  }

  .hero__copy,
  .hero__copy--simple {
    width: 100%;
    gap: 0.35rem;
  }

  .hero__name {
    font-size: clamp(1.25rem, 5.6vw, 1.85rem);
    letter-spacing: 0.04em;
  }

  .hero__tagline {
    font-size: clamp(0.58rem, 2.2vw, 0.7rem);
    letter-spacing: 0.12em;
  }

  .hero__video-caption {
    margin: 0.25rem auto 0.65rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero__content--simple .hero__actions {
    margin-top: 0.55rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero__content--simple .hero__actions .btn--lux {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    justify-content: center;
    padding: 0.55rem 0.25rem;
    font-size: clamp(0.58rem, 2.6vw, 0.7rem);
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 -1px 0 rgba(0, 0, 0, 0.18) inset,
      0 4px 0 rgba(0, 0, 0, 0.22),
      0 8px 14px rgba(0, 0, 0, 0.22);
  }

  .hero__content--simple .hero__actions .btn--lux:hover,
  .hero__content--simple .hero__actions .btn--lux:active {
    transform: translateY(0);
  }

  .hero__content--simple .hero__actions .btn--lux-gold {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.4) inset,
      0 4px 0 #7a5f24,
      0 8px 14px rgba(0, 0, 0, 0.22);
  }

  .hero__content--simple .hero__actions .btn--lux-blue {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.3) inset,
      0 4px 0 #163a5c,
      0 8px 14px rgba(0, 0, 0, 0.22);
  }

  .hero__content--simple .hero__actions .btn--lux-teal {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.3) inset,
      0 4px 0 #0d4034,
      0 8px 14px rgba(0, 0, 0, 0.22);
  }

  .hero__video-nav {
    gap: 0.4rem;
    margin-top: 0.5rem;
  }

  .hero__video-nav-btn {
    width: 0.45rem;
    height: 0.45rem;
  }

  .hero__video-nav-btn.is-active {
    width: 1.25rem;
  }

  .hero__text-panel {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    border: 0;
  }

  .hero__title {
    gap: 0.28rem;
  }

  .hero__title-prefix {
    max-width: 100%;
    font-size: 0.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-transform: none;
    text-wrap: balance;
    white-space: normal;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  }

  .hero__title-main {
    max-width: 100%;
    font-size: clamp(1.2rem, 6.2vw, 1.55rem);
    line-height: 1.12;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
  }

  .hero__title-suffix {
    font-size: clamp(0.95rem, 4.2vw, 1.15rem);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  }

  .hero__rule {
    margin: 0.45rem auto 0.5rem;
    width: 2.25rem;
  }

  .hero__lead {
    font-size: 0.8125rem;
    line-height: 1.45;
    max-width: 30ch;
    margin-inline: auto;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  }

  .hero__trust {
    margin-top: 0.45rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.55rem;
  }

  .hero__trust li {
    font-size: 0.5625rem;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  }

  .hero__actions {
    margin-top: 0.7rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
  }

  .hero__actions .btn--lux {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    justify-content: center;
    padding: 0.55rem 0.3rem;
    font-size: clamp(0.58rem, 2.6vw, 0.72rem);
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .hero__dots {
    display: none;
  }

  .hero__company-bar {
    padding: 0.4rem 0 max(0.45rem, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 24, 0.35) 40%, rgba(8, 12, 24, 0.78) 100%);
  }

  .hero__company-wrap {
    overflow: visible;
  }

  .hero__company {
    font-size: clamp(0.5625rem, 2.8vw, 0.75rem);
    letter-spacing: 0.03em;
    line-height: 1.2;
    white-space: normal;
    text-wrap: balance;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  }

  .hero__video-sound {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(clamp(2.85rem, 9vh, 3.75rem) + env(safe-area-inset-bottom));
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand {
    min-width: 0;
    flex: 1;
    gap: 0.55rem;
  }

  .brand__text strong {
    white-space: nowrap;
    font-size: 0.62rem;
    letter-spacing: 0.01em;
  }

  .brand__text-line {
    white-space: normal;
  }

  .global-reach__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .global-reach__card {
    padding: 0.85rem 0.65rem;
    border-radius: 14px;
  }

  .global-reach__flag-wrap {
    width: 3.4rem;
    height: 2.35rem;
  }

  .global-reach__name {
    font-size: 0.75rem;
  }

  .btn-row:not(.hero__actions) {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row:not(.hero__actions) .btn {
    width: 100%;
  }

  .trust-bar {
    padding: 1rem 0;
  }

  .trust-bar__list {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8125rem;
    text-align: center;
  }

  .grid-3,
  .grid-2,
  .footer-grid,
  .process,
  .contact-info-grid,
  .team-card {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.35rem;
  }

  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .news-card__body {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .jobs-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
  }

  .jobs-showcase__poster {
    grid-column: 1;
    grid-row: 1;
  }

  .jobs-poster__link {
    min-height: auto;
  }

  .jobs-poster__link img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .jobs-grid {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 1fr;
  }

  .jobs-showcase__cta {
    grid-column: 1;
    grid-row: 3;
    flex-direction: column;
    align-items: stretch;
  }

  .jobs-showcase__cta .btn {
    width: 100%;
  }

  .legalitas-gallery,
  .legalitas-gallery--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }

  .legalitas-gallery__preview {
    min-height: 160px;
    max-height: 200px;
    padding: 0.65rem;
  }

  .legalitas-gallery__preview img {
    max-height: 168px;
  }

  .team-card {
    text-align: center;
  }

  .team-card__photo img,
  .team-card__photo-fallback {
    margin: 0 auto;
  }

  .profile-section {
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .profile-section__header {
    margin-bottom: 2rem;
  }

  .profile-showcase {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    min-width: 0;
  }

  .profile-showcase--lux {
    grid-template-columns: 1fr;
  }

  .profile-showcase__frame {
    transform: none;
    min-height: 0;
  }

  .profile-showcase--lux .profile-showcase__frame img {
    aspect-ratio: 4 / 3;
    min-height: 0;
    height: auto;
    flex: none;
  }

  .profile-showcase__content {
    padding-top: 0;
    min-width: 0;
  }

  .profile-showcase__panel {
    padding: 1.15rem 1.05rem;
    border-radius: 20px;
  }

  .profile-showcase__media {
    min-width: 0;
    min-height: 0;
  }

  .profile-showcase__badge {
    left: 1rem;
    bottom: 1rem;
  }

  .profile-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .vision-card,
  .mission-card {
    padding: 1.5rem 1.25rem;
  }

  .profile-stat {
    padding: 0.75rem 0.35rem;
  }

  .profile-stat span {
    font-size: 0.6875rem;
  }

  .iso-card {
    padding: 1.25rem;
  }

  .iso-card__body ul {
    gap: 0.4rem;
  }

  .testimonial-slider__track {
    min-height: 240px;
  }

  .testimonial-card__quote p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
    padding: 1.75rem 1.25rem;
    text-align: center;
    gap: 1.25rem;
  }

  .cta-band .btn-row {
    justify-content: stretch;
  }

  .contact-map {
    min-height: 220px;
    padding-bottom: 62%;
  }

  .contact-info-card {
    padding: 1.35rem 1rem;
  }

  .contact-info-card p {
    word-break: break-word;
  }

  .org-group {
    padding: 1rem 0.5rem 1.1rem;
    min-width: 0;
  }

  .org-group__staff {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 0.65rem;
  }

  .org-chart__level {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-chart__level--top {
    display: flex;
    justify-content: center;
  }

  .org-card,
  .org-card--director {
    width: 100%;
    max-width: 184px;
    margin-inline: auto;
  }

  .org-group__staff .org-card {
    max-width: none;
  }

  .team-modal {
    padding: 0.75rem;
  }

  .team-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
  }

  .team-modal__layout {
    grid-template-columns: 1fr;
  }

  .team-modal__photo-wrap {
    max-width: 220px;
    margin: 0 auto;
  }

  .doc-lightbox {
    padding: 0.75rem;
  }

  .doc-lightbox__close {
    top: 0.25rem;
    right: 0.25rem;
  }

  .mockup-badge {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    right: max(0.75rem, env(safe-area-inset-right));
    font-size: 0.625rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1320px, calc(100% - 1rem));
  }

  .brand__logo-frame {
    padding: 0.16rem 0.22rem;
    border-radius: 8px;
  }

  .brand__logo {
    height: 34px;
    max-width: 86px;
  }

  .brand__text strong {
    font-size: 0.55rem;
    max-width: none;
    letter-spacing: 0;
  }

  .brand__text-line {
    font-size: 0.48rem;
  }

  .brand__text-line--tag {
    font-size: 0.45rem;
  }

  .hero__title-prefix {
    font-size: 0.525rem;
  }

  .hero__title-main {
    font-size: clamp(1.1rem, 5.8vw, 1.4rem);
  }

  .hero__lead {
    font-size: 0.75rem;
  }

  .hero__content--simple .hero__actions,
  .hero__actions {
    gap: 0.28rem;
    max-width: 100%;
  }

  .hero__content--simple .hero__actions .btn--lux,
  .hero__actions .btn--lux {
    min-width: 0;
    max-width: none;
    padding: 0.5rem 0.2rem;
    font-size: clamp(0.52rem, 2.5vw, 0.65rem);
  }

  .section {
    padding: 2.5rem 0;
  }

  .legalitas-gallery,
  .legalitas-gallery--cards {
    grid-template-columns: 1fr;
  }

  .profile-showcase__badge {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }

  .profile-section__header h1 {
    font-size: 1.85rem;
  }

  .org-group__staff {
    grid-template-columns: 1fr;
  }

  .org-chart__level {
    grid-template-columns: 1fr;
  }

  .org-card,
  .org-card--director {
    max-width: none;
  }

  .mission-card__body li {
    grid-template-columns: 1.75rem 1fr;
    gap: 0.5rem;
  }

  .mission-card__body li::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }
}

/* â€”â€”â€” Galeri â€”â€”â€” */
.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 41, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 41, 0.16);
}

.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 41, 0.35);
  color: #fff;
}

.home-gallery__footer {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .home-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .home-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-gallery {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 40%, #f8fafc 100%);
}

.gallery-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(135deg, #0f1729 0%, #1a2744 55%, #0f1729 100%);
  color: #fff;
}

.gallery-hero__inner {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.gallery-hero .eyebrow {
  color: #d4af37;
  letter-spacing: 0.14em;
}

.gallery-hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
  margin: 0.6rem 0 0.75rem;
  line-height: 1.15;
  color: #fff8e8;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 2px 16px rgba(201, 169, 98, 0.25);
}

.gallery-hero__lead {
  color: rgba(255, 250, 240, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 auto 1.75rem;
}

.gallery-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.gallery-tabs__btn span {
  display: inline-flex;
  min-width: 1.5rem;
  justify-content: center;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.gallery-tabs__btn.is-active,
.gallery-tabs__btn:hover {
  background: #fff;
  color: #0f1729;
}

.gallery-tabs__btn.is-active span,
.gallery-tabs__btn:hover span {
  background: rgba(15, 23, 41, 0.08);
  color: #0f1729;
}

.gallery-section {
  padding: 2.5rem 0 4.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 41, 0.08);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.14);
}

.gallery-card__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.gallery-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e2e8f0;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.05);
}

.gallery-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2744, #334155);
}

.gallery-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 41, 0.82) 100%);
  pointer-events: none;
}

.gallery-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: #0f1729;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.gallery-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 0.9rem;
  z-index: 3;
  color: #fff;
}

.gallery-card__type {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 0.25rem;
}

.gallery-card__caption strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
}

.gallery-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px dashed #cbd5e1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(6px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.gallery-lightbox__stage {
  border-radius: 0.85rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__stage img,
.gallery-lightbox__stage video {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
  background: #000;
}

.gallery-lightbox__title {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  margin: 0;
  padding: 0 1rem;
}

.site-footer--compact {
  padding: 2rem 0;
  background: #0f1729;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer--compact .site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.site-footer--compact a {
  color: #d4af37;
}

.site-footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .gallery-hero {
    padding-top: 3.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* â€”â€” FAQ â€”â€” */
.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(201, 169, 98, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 75%, rgba(46, 109, 164, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(244, 239, 228, 0.35) 100%);
  pointer-events: none;
}

.faq-section__head,
.faq-section__layout {
  position: relative;
  z-index: 1;
}

.faq-section__layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  margin-top: 2rem;
}

.faq-aside-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 236, 0.92) 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 41, 0.08);
}

.faq-aside-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.faq-aside-card h2,
.faq-aside-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--navy);
}

.faq-aside-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-aside-card__cta {
  width: 100%;
  margin-bottom: 0.55rem;
}

.faq-aside-card__link {
  display: block;
  text-align: center;
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.faq-category {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 41, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-category__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.22);
  background: linear-gradient(90deg, rgba(15, 23, 41, 0.04) 0%, rgba(201, 169, 98, 0.08) 100%);
}

.faq-category__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  color: var(--gold-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-category__title {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.faq-category__count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201, 169, 98, 0.16);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.faq-category__items {
  padding: 0.35rem 0.5rem 0.65rem;
}

.faq-item {
  border-radius: 12px;
  margin: 0.35rem 0.45rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.faq-item.is-open {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 236, 0.65) 100%);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.22);
}

.faq-item__question {
  margin: 0;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem 0.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--text);
}

.faq-item__q-text {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}

.faq-item__chevron {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  flex-shrink: 0;
  margin-top: -0.15rem;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0.75rem;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
  padding-bottom: 0.95rem;
}

.faq-item__panel[hidden] {
  display: none;
}

.faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__answer {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.faq-item__answer p {
  margin: 0 0 0.65rem;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer strong {
  color: var(--navy);
}

.faq-hero {
  position: relative;
  padding: clamp(3.75rem, 9vw, 6rem) 0 clamp(2.5rem, 6vw, 3.75rem);
  overflow: hidden;
}

.faq-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -15%, rgba(201, 169, 98, 0.28), transparent 62%),
    radial-gradient(ellipse 45% 40% at 8% 85%, rgba(46, 109, 164, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 35% at 95% 60%, rgba(201, 169, 98, 0.12), transparent 50%),
    linear-gradient(175deg, #0c1220 0%, #152238 42%, #1a2d4a 100%);
}

.faq-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: faqOrbFloat 14s ease-in-out infinite;
}

.faq-hero__orb--1 {
  width: clamp(180px, 28vw, 320px);
  height: clamp(180px, 28vw, 320px);
  top: -8%;
  right: 12%;
  background: rgba(201, 169, 98, 0.22);
  animation-delay: 0s;
}

.faq-hero__orb--2 {
  width: clamp(140px, 22vw, 260px);
  height: clamp(140px, 22vw, 260px);
  bottom: 5%;
  left: -4%;
  background: rgba(70, 130, 190, 0.2);
  animation-delay: -5s;
}

.faq-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

@keyframes faqOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.05); }
  66% { transform: translate(-8px, 10px) scale(0.96); }
}

.faq-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
}

.faq-hero__eyebrow {
  display: inline-block;
  color: var(--gold-light);
  animation: faqEyebrowShine 4s ease-in-out infinite;
}

@keyframes faqEyebrowShine {
  0%, 100% { opacity: 0.85; letter-spacing: 0.12em; }
  50% { opacity: 1; letter-spacing: 0.16em; }
}

.faq-hero__title {
  margin: 0.45rem 0 0.9rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.05rem, 5.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.faq-hero__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #fff8e8 0%, #f0dfa8 28%, #d4b76a 55%, #c9a962 78%, #f5eacc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(201, 169, 98, 0.55));
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.08em;
}

.faq-hero__title-sep {
  display: inline-block;
  margin: 0 0.28em 0 0.18em;
  color: rgba(232, 213, 163, 0.9);
  font-weight: 400;
  font-style: italic;
  font-size: 0.92em;
  vertical-align: baseline;
  text-shadow: 0 0 24px rgba(201, 169, 98, 0.35);
}

.faq-hero__title-sub {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.45),
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(255, 255, 255, 0.12);
}

.faq-hero h1.faq-hero__title {
  color: #fff;
}

.faq-hero__lead {
  margin: 0 auto 1.65rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Search bar */
.faq-search {
  max-width: 520px;
  margin: 0 auto 1.35rem;
}

.faq-search__field {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.faq-search__field:focus-within {
  border-color: rgba(201, 169, 98, 0.65);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(201, 169, 98, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.faq-search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.15rem;
  color: var(--gold-light);
  opacity: 0.85;
  flex-shrink: 0;
}

.faq-search__input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 0.75rem 0.95rem 0.55rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
}

.faq-search__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.faq-search__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.65rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.faq-search__clear:hover {
  background: rgba(201, 169, 98, 0.35);
  color: #fff;
  transform: scale(1.08);
}

/* Stats */
.faq-hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.22);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.faq-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.faq-hero__stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.faq-hero__stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.faq-hero__stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(201, 169, 98, 0.3);
}

.faq-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.faq-hero__chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s,
    transform 0.18s,
    box-shadow 0.22s;
}

.faq-hero__chip:hover {
  background: rgba(201, 169, 98, 0.18);
  border-color: rgba(201, 169, 98, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.faq-hero__chip.is-active {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.95) 0%, rgba(168, 138, 72, 0.95) 100%);
  border-color: transparent;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.35);
}

.page-faq .faq-page-section {
  position: relative;
  padding-top: 0;
  margin-top: -1.5rem;
}

.page-faq .faq-page-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(244, 239, 228, 0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq-page-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-aside-card--page {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.32);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 238, 0.94) 55%, rgba(244, 238, 226, 0.9) 100%);
  box-shadow:
    0 20px 50px rgba(15, 23, 41, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-aside-card__glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2), transparent 65%);
  pointer-events: none;
}

.faq-aside-card--page .faq-aside-card__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.faq-aside-card__cta-icon {
  color: #25d366;
  font-size: 0.55rem;
  animation: faqPulse 2s ease-in-out infinite;
}

@keyframes faqPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.faq-page-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 41, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(15, 23, 41, 0.06);
}

.faq-page-nav__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.7rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-soft);
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
}

.faq-page-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  transition: transform 0.22s ease;
}

.faq-page-nav__link:hover {
  background: rgba(201, 169, 98, 0.1);
  color: var(--navy);
  transform: translateX(3px);
}

.faq-page-nav__link.is-active {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.16) 0%, rgba(201, 169, 98, 0.04) 100%);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.2);
}

.faq-page-nav__link.is-active::before {
  transform: translateY(-50%) scaleY(1);
}

.faq-page-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  background: rgba(15, 23, 41, 0.06);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.faq-page-nav__link.is-active .faq-page-nav__icon {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  color: var(--gold-light);
}

.faq-page-nav__text {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.faq-page-nav__count {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201, 169, 98, 0.14);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  flex-shrink: 0;
}

/* Page FAQ accordion enhancements */
.page-faq .faq-accordion {
  gap: 1.5rem;
}

.page-faq .faq-category {
  border: 1px solid rgba(15, 23, 41, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow:
    0 16px 40px rgba(15, 23, 41, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: opacity 0.35s, transform 0.35s, box-shadow 0.3s;
  animation: faqFadeUp 0.6s ease both;
}

.page-faq .faq-category:nth-child(2) { animation-delay: 0.08s; }
.page-faq .faq-category:nth-child(3) { animation-delay: 0.16s; }
.page-faq .faq-category:nth-child(4) { animation-delay: 0.24s; }
.page-faq .faq-category:nth-child(5) { animation-delay: 0.32s; }
.page-faq .faq-category:nth-child(6) { animation-delay: 0.4s; }

@keyframes faqFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-faq .faq-category.is-filtered-out {
  display: none;
}

.page-faq .faq-category__head {
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.18);
  background: linear-gradient(90deg, rgba(15, 23, 41, 0.03) 0%, rgba(201, 169, 98, 0.1) 100%);
}

.page-faq .faq-category__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 41, 0.2);
}

.page-faq .faq-item {
  margin: 0.4rem 0.55rem;
  border-radius: 14px;
  transition: background 0.28s, box-shadow 0.28s, transform 0.2s;
}

.page-faq .faq-item:hover:not(.is-open) {
  background: rgba(201, 169, 98, 0.06);
}

.page-faq .faq-item.is-open {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 248, 240, 0.85) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 98, 0.28),
    0 8px 24px rgba(201, 169, 98, 0.1);
  transform: translateY(-1px);
}

.page-faq .faq-item.is-hidden {
  display: none;
}

.page-faq .faq-item.is-highlight .faq-item__q-text {
  color: var(--gold-dark);
}

.page-faq .faq-item__trigger {
  padding: 0.95rem 0.85rem;
}

.page-faq .faq-item__chevron {
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.12);
  position: relative;
  margin-top: 0;
  transform: none;
}

.page-faq .faq-item__chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-faq .faq-item.is-open .faq-item__chevron {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  margin-top: 0;
  transform: none;
}

.page-faq .faq-item.is-open .faq-item__chevron::after {
  border-color: var(--navy);
  transform: translate(-50%, -35%) rotate(-135deg);
}

.faq-no-results {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(201, 169, 98, 0.4);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.95rem;
  animation: faqFadeUp 0.4s ease;
}

.faq-cta-section {
  padding-top: 0;
}

.cta-band--faq {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.28);
  background: linear-gradient(135deg, rgba(12, 18, 32, 0.98) 0%, rgba(26, 45, 74, 0.96) 50%, rgba(36, 54, 86, 0.94) 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 41, 0.25);
}

.cta-band--faq__glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.15), transparent 60%);
  pointer-events: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-hero__orb,
  .faq-hero__eyebrow,
  .faq-aside-card__cta-icon,
  .page-faq .faq-category {
    animation: none;
  }

  .faq-item__panel {
    transition: none;
  }
}

@media (max-width: 900px) {
  .faq-section__layout,
  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-page-aside {
    position: static;
  }

  .faq-page-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .faq-page-nav__link::before {
    display: none;
  }

  .faq-page-nav__text {
    display: none;
  }

  .faq-page-nav__link {
    flex: 0 0 auto;
    padding: 0.5rem 0.65rem;
  }
}

@media (max-width: 720px) {
  .faq-hero__stats {
    gap: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .faq-hero__chip {
    font-size: 0.66rem;
    padding: 0.38rem 0.65rem;
  }

  .faq-category__head {
    padding: 0.8rem 0.9rem;
  }

  .faq-item__q-text {
    font-size: 0.9rem;
  }
}

.layanan-empty {
  min-height: 42vh;
  display: flex;
  align-items: center;
}

.layanan-empty .section-head {
  margin-bottom: 0;
}

/* —— Layanan: Alur P3MI —— */
.page-layanan main {
  padding-top: 0;
}

.page-layanan .layanan-hero {
  padding: calc(var(--header-h) + clamp(2rem, 4vw, 3.25rem)) 0 clamp(1.75rem, 3vw, 2.5rem);
  overflow: hidden;
  text-align: center;
}

.layanan-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(201, 169, 98, 0.16), transparent 58%),
    radial-gradient(ellipse 55% 50% at 0% 40%, rgba(14, 116, 144, 0.1), transparent 52%),
    radial-gradient(ellipse 50% 45% at 100% 30%, rgba(15, 23, 41, 0.05), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 75%);
}

.layanan-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin-inline: auto;
}

.layanan-hero__inner--title-only {
  max-width: min(52rem, 100%);
  text-align: center;
}

.layanan-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.2vw + 1.2rem, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-wrap: balance;
}

.layanan-hero__title::after {
  content: "";
  display: block;
  width: min(7.5rem, 28vw);
  height: 3px;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.layanan-hero h1 {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.2vw + 1.5rem, 2.55rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.layanan-hero__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 40rem;
}

.layanan-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-top: 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.layanan-hero__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.layanan-flow {
  padding-top: 0.75rem;
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.layanan-panels {
  display: grid;
  gap: clamp(2rem, 3.8vw, 3.25rem);
}

.layanan-panel {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(201, 169, 98, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 96% 88%, rgba(14, 116, 144, 0.08), transparent 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(201, 169, 98, 0.3);
  box-shadow:
    0 24px 56px rgba(15, 23, 41, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.layanan-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.layanan-panel__head {
  text-align: center;
  margin: 0 0 clamp(1.25rem, 2.2vw, 1.75rem);
  max-width: 44rem;
  margin-inline: auto;
}

.layanan-panel__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.layanan-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 0.7vw + 1.15rem, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}

.layanan-panel__role {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy-soft);
}

.layanan-panel__intro {
  margin: 0 auto 1.15rem;
  max-width: 48rem;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--muted);
  text-align: center;
  text-wrap: pretty;
}

.layanan-panel__lead {
  margin: 0 auto 1.5rem;
  max-width: 42rem;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.55;
  color: var(--navy);
  text-align: center;
}

.commit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.commit-list__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem 1.1rem;
  align-items: start;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 41, 0.06);
  box-shadow: 0 8px 20px rgba(15, 23, 41, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.commit-list__item:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 28px rgba(15, 23, 41, 0.07);
  transform: translateY(-1px);
}

.commit-list__num {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(201, 169, 98, 0.42);
  box-shadow:
    0 8px 16px rgba(15, 23, 41, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.commit-list__body h3 {
  margin: 0.15rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.1rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.commit-list__body > p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--muted);
}

.commit-list__bullets {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.85rem;
}

.commit-list__bullets li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy-soft);
}

.commit-list__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.16);
}

.commit-foundation {
  margin-top: clamp(1.5rem, 2.8vw, 2.1rem);
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(201, 169, 98, 0.14), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 41, 0.03), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(201, 169, 98, 0.28);
}

.commit-foundation__eyebrow {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.commit-foundation h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 750;
  color: var(--navy);
}

.commit-foundation > p {
  margin: 0 0 0.95rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.commit-foundation__laws {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.commit-foundation__laws li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 1.15rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 41, 0.05);
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--navy-soft);
}

.commit-foundation__laws li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.85em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

.layanan-panel--flow .p3mi-diagram {
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.layanan-panel--flow .p3mi-flow__phase {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
}

.layanan-flow__head {
  margin-bottom: clamp(1.75rem, 3vw, 2.35rem);
}

.layanan-flow__head .eyebrow {
  letter-spacing: 0.16em;
}

.layanan-flow__head h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--navy);
}

.layanan-flow__head .lead {
  max-width: 40rem;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .commit-list__item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.95rem 1rem;
  }

  .commit-list__num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 11px;
  }

  .commit-list__bullets {
    grid-template-columns: 1fr;
  }

  .layanan-panel__intro,
  .layanan-panel__lead {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .commit-list__item,
  .commit-list__item:hover {
    transition: none;
    transform: none;
  }
}

/* —— Visual rope / snake diagram —— */
.p3mi-diagram {
  margin: 0 0 clamp(2.25rem, 4vw, 3.25rem);
  padding: clamp(1.35rem, 2.2vw, 1.85rem);
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(201, 169, 98, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 80%, rgba(14, 116, 144, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(201, 169, 98, 0.3);
  box-shadow:
    0 24px 56px rgba(15, 23, 41, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.p3mi-diagram__caption {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1.35rem;
  text-align: center;
}

.p3mi-diagram__caption-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.p3mi-diagram__caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 0.45vw + 0.98rem, 1.35rem);
  color: var(--navy);
  letter-spacing: -0.015em;
}

.p3mi-diagram__caption > span:last-child {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 42rem;
  margin-inline: auto;
}

.p3mi-diagram__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1100 / 640;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(201, 169, 98, 0.07), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  border: 1px solid rgba(15, 23, 41, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.p3mi-diagram__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.p3mi-diagram__rope {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: p3mi-rope-draw 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.p3mi-diagram__rope-dash {
  opacity: 0;
  animation:
    p3mi-rope-fade 0.5s ease 1.4s forwards,
    p3mi-rope-dash-run 1.8s linear 1.6s infinite;
}

.p3mi-diagram__rope-flow {
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(232, 213, 163, 0.85));
  animation:
    p3mi-rope-fade 0.45s ease 1.5s forwards,
    p3mi-rope-travel 3.6s linear 1.6s infinite;
}

.p3mi-diagram__rope-glow {
  opacity: 0;
  animation:
    p3mi-rope-fade 0.8s ease 0.35s forwards,
    p3mi-rope-glow-pulse 2.8s ease-in-out 1.2s infinite;
}

.p3mi-diagram__arrow {
  opacity: 0;
  animation:
    p3mi-rope-fade 0.5s ease 1.8s forwards,
    p3mi-arrow-nudge 1.6s ease-in-out 2.2s infinite;
}

@keyframes p3mi-rope-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes p3mi-rope-fade {
  to { opacity: 1; }
}

@keyframes p3mi-rope-dash-run {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -34; }
}

@keyframes p3mi-rope-travel {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -2136; }
}

@keyframes p3mi-rope-glow-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes p3mi-arrow-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.85; }
  50% { transform: translateX(4px); opacity: 1; }
}

.p3mi-diagram__nodes {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p3mi-diagram__node {
  --nx: 0;
  --ny: 0;
  position: absolute;
  left: calc(var(--nx) / 1100 * 100%);
  top: calc(var(--ny) / 640 * 100%);
  width: min(168px, 16.5vw);
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  animation: p3mi-node-in 0.55s ease forwards;
}

.p3mi-diagram__node:nth-child(1) { animation-delay: 0.15s; }
.p3mi-diagram__node:nth-child(2) { animation-delay: 0.3s; }
.p3mi-diagram__node:nth-child(3) { animation-delay: 0.45s; }
.p3mi-diagram__node:nth-child(4) { animation-delay: 0.6s; }
.p3mi-diagram__node:nth-child(5) { animation-delay: 0.85s; }
.p3mi-diagram__node:nth-child(6) { animation-delay: 1s; }
.p3mi-diagram__node:nth-child(7) { animation-delay: 1.15s; }
.p3mi-diagram__node:nth-child(8) { animation-delay: 1.4s; }
.p3mi-diagram__node:nth-child(9) { animation-delay: 1.55s; }

@keyframes p3mi-node-in {
  from {
    opacity: 0;
    transform: translate(-50%, -42%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.p3mi-diagram__node-link {
  display: grid;
  justify-items: center;
  gap: 0.32rem;
  padding: 0.65rem 0.5rem 0.7rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow:
    0 12px 28px rgba(15, 23, 41, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.p3mi-diagram__node-link:hover,
.p3mi-diagram__node-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 14px 30px rgba(15, 23, 41, 0.12);
  outline: none;
}

.p3mi-diagram__node-num {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(201, 169, 98, 0.4);
  box-shadow: 0 4px 12px rgba(15, 23, 41, 0.2);
}

.p3mi-diagram__node--recruit .p3mi-diagram__node-num {
  background: linear-gradient(145deg, #0e7490, #155e75);
}

.p3mi-diagram__node--depart .p3mi-diagram__node-num {
  background: linear-gradient(145deg, #b45309, #92400e);
}

.p3mi-diagram__node--monitor .p3mi-diagram__node-num {
  background: linear-gradient(145deg, #059669, #047857);
}

.p3mi-diagram__node-title {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.55vw + 0.55rem, 0.82rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.p3mi-diagram__node-chip {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0.9;
}

.p3mi-diagram__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin-top: 1rem;
}

.p3mi-diagram__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-soft);
}

.p3mi-diagram__legend-item::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(15, 23, 41, 0.04);
}

.p3mi-diagram__legend-item--recruit::before { background: #0e7490; }
.p3mi-diagram__legend-item--depart::before { background: #b45309; }
.p3mi-diagram__legend-item--monitor::before { background: #047857; }

@media (max-width: 900px) {
  .p3mi-diagram__node {
    width: min(132px, 22vw);
  }

  .p3mi-diagram__node-link {
    padding: 0.4rem 0.3rem 0.45rem;
    gap: 0.18rem;
  }

  .p3mi-diagram__node-num {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.64rem;
  }

  .p3mi-diagram__node-chip {
    display: none;
  }
}

@media (max-width: 640px) {
  .p3mi-diagram__canvas {
    aspect-ratio: 1100 / 720;
    min-height: 340px;
  }

  .p3mi-diagram__node {
    width: min(108px, 28vw);
  }

  .p3mi-diagram__node-title {
    font-size: 0.62rem;
  }

  .p3mi-diagram__caption > span:last-child {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p3mi-diagram__rope,
  .p3mi-diagram__rope-dash,
  .p3mi-diagram__rope-flow,
  .p3mi-diagram__rope-glow,
  .p3mi-diagram__arrow,
  .p3mi-diagram__node {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }
}

.p3mi-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.p3mi-flow__phase {
  position: relative;
  margin: 0;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border: 1px solid rgba(201, 169, 98, 0.24);
  box-shadow:
    0 18px 44px rgba(15, 23, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.p3mi-flow__phase--recruit {
  border-top: 3px solid #0e7490;
}

.p3mi-flow__phase--depart {
  border-top: 3px solid var(--gold);
}

.p3mi-flow__phase--monitor {
  border-top: 3px solid #047857;
}

.p3mi-flow__phase-label {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 41, 0.06);
}

.p3mi-flow__phase-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(15, 23, 41, 0.06);
  color: var(--navy-soft);
}

.p3mi-flow__phase--recruit .p3mi-flow__phase-tag {
  background: rgba(14, 116, 144, 0.12);
  color: #0e7490;
}

.p3mi-flow__phase--depart .p3mi-flow__phase-tag {
  background: rgba(201, 169, 98, 0.18);
  color: var(--gold-dark);
}

.p3mi-flow__phase--monitor .p3mi-flow__phase-tag {
  background: rgba(4, 120, 87, 0.12);
  color: #047857;
}

.p3mi-flow__phase-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.5vw + 1.05rem, 1.45rem);
  color: var(--navy);
  letter-spacing: -0.01em;
}

.p3mi-flow__phase-label p {
  margin: 0.35rem 0 0;
  max-width: 46rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.p3mi-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.p3mi-flow__step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0 1.1rem;
  align-items: stretch;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.p3mi-flow__rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 1.15rem;
}

.p3mi-flow__rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(201, 169, 98, 0.15),
    rgba(201, 169, 98, 0.55),
    rgba(201, 169, 98, 0.15)
  );
}

.p3mi-flow__step:first-child .p3mi-flow__rail::before {
  top: 1.55rem;
}

.p3mi-flow__step:last-child .p3mi-flow__rail::before {
  bottom: calc(100% - 2.6rem);
}

.p3mi-flow__node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background:
    linear-gradient(145deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(201, 169, 98, 0.45);
  box-shadow:
    0 8px 18px rgba(15, 23, 41, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.p3mi-flow__phase--recruit .p3mi-flow__node {
  background: linear-gradient(145deg, #0e7490, #155e75);
}

.p3mi-flow__phase--depart .p3mi-flow__node {
  background: linear-gradient(145deg, #b45309, #92400e);
  border-color: rgba(251, 191, 36, 0.45);
}

.p3mi-flow__phase--monitor .p3mi-flow__node {
  background: linear-gradient(145deg, #059669, #047857);
}

.p3mi-flow__card {
  margin: 0.55rem 0 0.85rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 41, 0.07);
  box-shadow: 0 6px 18px rgba(15, 23, 41, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.p3mi-flow__card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 28px rgba(15, 23, 41, 0.08);
}

.p3mi-flow__card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.45rem;
}

.p3mi-flow__card-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.p3mi-flow__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 169, 98, 0.14);
  border: 1px solid rgba(201, 169, 98, 0.28);
}

.p3mi-flow__card > p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.p3mi-flow__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.p3mi-flow__points li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-soft);
  line-height: 1.4;
}

.p3mi-flow__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.18);
}

.layanan-flow__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  padding: 1.4rem 1.5rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(201, 169, 98, 0.2), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 70%, #1a2744 100%);
  color: #fff;
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.22);
}

.layanan-flow__cta-copy h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

.layanan-flow__cta-copy p {
  margin: 0;
  max-width: 38rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.layanan-flow__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.layanan-flow__cta-actions .btn--ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.layanan-flow__cta-actions .btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 720px) {
  .page-layanan .layanan-hero {
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .layanan-hero__title {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem);
    letter-spacing: 0.04em;
  }

  .p3mi-flow__step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 0.75rem;
  }

  .p3mi-flow__node {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 0.7rem;
  }

  .p3mi-flow__card {
    padding: 1rem 1.05rem;
  }

  .layanan-flow__cta {
    padding: 1.2rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p3mi-flow__card,
  .p3mi-flow__card:hover {
    transition: none;
    transform: none;
  }
}

/* —— Daftar Online — compact elegant —— */
.page-daftar {
  --daftar-navy: #0b1220;
  --daftar-gold: #c9a962;
  --daftar-gold-soft: #e8d5a3;
}

.page-daftar .site-header--daftar {
  background: #070d1a;
  border-bottom: 3px solid #c9a962;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(201, 169, 98, 0.18),
    inset 0 -1px 0 rgba(255, 248, 232, 0.2);
}

.page-daftar .site-header--daftar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 232, 0.85), transparent);
  pointer-events: none;
}

.page-daftar .site-header--daftar .brand__logo-frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 3px rgba(201, 169, 98, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.35);
}

.page-daftar .site-header--daftar .brand__text strong {
  color: #fff8e8;
  text-shadow: 0 0 18px rgba(201, 169, 98, 0.35);
}

.page-daftar .site-header--daftar .brand__text-line {
  color: rgba(232, 213, 163, 0.88);
}

.page-daftar .site-header--daftar .site-nav > a {
  color: #fffef8;
  font-weight: 700;
}

.page-daftar .site-header--daftar .site-nav > a:hover,
.page-daftar .site-header--daftar .site-nav > a[aria-current="page"] {
  color: #f0dfa8;
}

.page-daftar .site-header--daftar .site-nav__cta {
  background: linear-gradient(135deg, #fff4d4 0%, #e8d5a3 32%, #c9a962 68%, #b8944a 100%);
  color: #1a1408 !important;
  border: 1px solid rgba(255, 248, 232, 0.55);
  box-shadow: 0 8px 22px rgba(201, 169, 98, 0.45);
  font-weight: 800;
}

.page-daftar .site-header--daftar .site-nav__dropbtn {
  color: #fff8e8;
  border-color: rgba(201, 169, 98, 0.65);
  background: rgba(201, 169, 98, 0.18);
}

.page-daftar .daftar-hero {
  position: relative;
  padding: calc(var(--header-h) + 1.5rem) 0 1.35rem;
  overflow: hidden;
  color: #fff;
}

.daftar-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(201, 169, 98, 0.26), transparent 60%),
    radial-gradient(ellipse 50% 45% at 0% 80%, rgba(46, 109, 164, 0.16), transparent 55%),
    linear-gradient(175deg, #080e1a 0%, #121c32 45%, #1a2d4a 100%);
}

.daftar-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  animation: daftarOrbFloat 16s ease-in-out infinite;
}

.daftar-hero__orb--1 {
  width: clamp(120px, 22vw, 220px);
  height: clamp(120px, 22vw, 220px);
  top: -8%;
  right: 10%;
  background: rgba(201, 169, 98, 0.22);
}

.daftar-hero__orb--2 {
  width: clamp(100px, 16vw, 170px);
  height: clamp(100px, 16vw, 170px);
  bottom: 0;
  left: -4%;
  background: rgba(70, 140, 200, 0.16);
  animation-delay: -6s;
}

.daftar-hero__orb--3 { display: none; }

.daftar-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 15%, transparent 75%);
  pointer-events: none;
}

@keyframes daftarOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -10px) scale(1.03); }
}

.daftar-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.daftar-hero__eyebrow {
  display: inline-block;
  color: var(--daftar-gold-soft);
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
}

.daftar-hero__title {
  margin: 0.3rem 0 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.18;
}

.daftar-hero__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #fff8e8 0%, #f0dfa8 30%, #c9a962 70%, #f5eacc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.daftar-hero__title-sep {
  display: inline-block;
  margin: 0 0.2em;
  color: rgba(232, 213, 163, 0.9);
  font-style: italic;
  font-weight: 400;
}

.daftar-hero__title-sub { color: #fff; }

.daftar-hero__lead {
  max-width: 32rem;
  margin: 0 auto 0.7rem;
  color: rgba(255, 252, 245, 0.84);
  font-size: 0.88rem;
  line-height: 1.5;
}

.daftar-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.daftar-hero__trust li {
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: var(--daftar-gold-soft);
  font-size: 0.66rem;
  font-weight: 700;
}

.daftar-section {
  position: relative;
  padding: 0 0 2.75rem;
  margin-top: -0.85rem;
  z-index: 2;
}

.daftar-layout { max-width: 680px; }

.daftar-alert {
  margin-bottom: 0.65rem;
  border-radius: 8px;
  font-size: 0.86rem;
}

.daftar-form {
  position: relative;
  overflow: hidden;
  background: #fffefb;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 14px;
  padding: 0.95rem 1rem 1.05rem;
  box-shadow: 0 12px 28px rgba(15, 23, 41, 0.1);
}

.daftar-form__shine { display: none; }

.daftar-form__head {
  margin-bottom: 0.65rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.18);
}

.daftar-form__step {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.daftar-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.daftar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.7rem;
}

.daftar-field {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}

.daftar-field--full { grid-column: 1 / -1; }

.daftar-field > span,
.daftar-field > legend {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.daftar-field input,
.daftar-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 42, 68, 0.14);
  border-radius: 7px;
  padding: 0.42rem 0.6rem;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1.3;
  background: #fff;
  color: var(--navy);
}

.daftar-field textarea {
  min-height: 2.35rem;
  resize: vertical;
}

.daftar-field input:focus,
.daftar-field textarea:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.7);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.14);
}

.daftar-field--kota .kota-combobox {
  position: relative;
}

.daftar-field--kota .kota-dropdown {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 220px;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(15, 42, 68, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 42, 68, 0.14);
}

.daftar-field--kota .kota-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.7rem;
  border: 0;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  color: var(--navy);
}

.daftar-field--kota .kota-item:hover,
.daftar-field--kota .kota-item.is-active {
  background: rgba(201, 169, 98, 0.14);
}

.daftar-alamat {
  gap: 0.45rem;
}

.daftar-alamat > legend {
  margin-bottom: 0.15rem;
}

.daftar-alamat__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.5rem 4.5rem;
  gap: 0.55rem 0.7rem;
}

.daftar-alamat__jalan { grid-column: 1 / 2; }
.daftar-alamat__rt { grid-column: 2 / 3; }
.daftar-alamat__rw { grid-column: 3 / 4; }
.daftar-alamat__prov,
.daftar-alamat__kab,
.daftar-alamat__kec,
.daftar-alamat__kel {
  grid-column: 1 / -1;
}

.daftar-alamat__preview {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(15, 42, 68, 0.04);
  border: 1px dashed rgba(15, 42, 68, 0.16);
}

.daftar-alamat__preview-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(15, 42, 68, 0.55);
  margin-bottom: 0.25rem;
}

.daftar-alamat__preview-line {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  word-break: break-word;
}

.daftar-alamat__preview-line.is-empty {
  font-weight: 500;
  color: rgba(15, 42, 68, 0.4);
}

.daftar-alamat select {
  width: 100%;
  border: 1px solid rgba(15, 42, 68, 0.14);
  border-radius: 7px;
  padding: 0.42rem 0.6rem;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1.3;
  background: #fff;
  color: var(--navy);
}

.daftar-alamat select:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.7);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.14);
}

.daftar-alamat select:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .daftar-alamat__grid {
    grid-template-columns: 1fr 1fr;
  }
  .daftar-alamat__jalan { grid-column: 1 / -1; }
  .daftar-alamat__rt { grid-column: 1 / 2; }
  .daftar-alamat__rw { grid-column: 2 / 3; }
}

.daftar-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.daftar-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(15, 42, 68, 0.14);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--navy);
}

.daftar-choice:hover { border-color: rgba(201, 169, 98, 0.5); }

.daftar-choice:has(input:checked) {
  border-color: var(--daftar-gold);
  background: #f7edd0;
  color: #5c4818;
}

.daftar-choice input {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0;
  accent-color: var(--daftar-gold);
}

.daftar-docs {
  margin: 0.75rem 0 0;
  padding: 0.7rem 0 0;
  border: 0;
  border-top: 1px solid rgba(201, 169, 98, 0.18);
}

.daftar-docs__head { margin-bottom: 0.45rem; }

.daftar-docs legend {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0;
  color: var(--navy);
}

.daftar-docs__hint {
  color: var(--muted);
  font-size: 0.74rem;
  margin: 0.1rem 0 0;
}

.daftar-docs__list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 42, 68, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.daftar-doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.32rem 0.6rem;
  border-bottom: 1px solid rgba(15, 42, 68, 0.07);
}

.daftar-doc:last-child { border-bottom: 0; }
.daftar-doc:nth-child(even) { background: #f8fafc; }

.daftar-doc__label {
  margin: 0;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy);
  min-width: 6.5rem;
}

.daftar-choices--sm .daftar-choice {
  padding: 0.18rem 0.48rem;
  font-size: 0.72rem;
}

.daftar-form__footer { margin-top: 0.75rem; }

.daftar-note {
  color: var(--muted);
  font-size: 0.74rem;
  margin: 0 0 0.6rem;
  line-height: 1.4;
}

.daftar-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.35rem;
  border: 0;
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  color: #1a1408;
  background: linear-gradient(135deg, #fff4d4 0%, #f0d78a 30%, #c9a962 62%, #e8d5a3 100%);
  box-shadow: 0 6px 14px rgba(168, 134, 58, 0.22);
}

.daftar-submit:hover { filter: brightness(1.03); }

.daftar-success {
  background: #fffefb;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(201, 169, 98, 0.32);
  box-shadow: 0 12px 28px rgba(15, 23, 41, 0.1);
}

.daftar-success__glow { display: none; }

.daftar-success__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.daftar-success h2 {
  margin: 0.25rem 0 0.15rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: var(--navy);
}

.daftar-success__name {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
}

.daftar-success__code {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #0b1220, #1a2744);
  color: #fff;
  margin-bottom: 0.75rem;
}

.daftar-success__code strong {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--daftar-gold-soft);
}

.daftar-success__notice p {
  margin: 0 0 0.4rem;
  line-height: 1.45;
  font-size: 0.84rem;
}

.daftar-success__actions {
  margin-top: 0.75rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-daftar .btn--lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border: 0;
}

.page-daftar .btn--lux-gold {
  color: #1a1408;
  background: linear-gradient(135deg, #fff4d4, #c9a962 55%, #e8d5a3);
}

.page-daftar .btn--lux-blue {
  color: #fff;
  background: linear-gradient(135deg, #7eb8ef, #2e6da4 55%, #1d4f7a);
}

.page-daftar .btn--lux-teal {
  color: #fff;
  background: linear-gradient(135deg, #5fd0b5, #1d7f68 55%, #145a4a);
}

@media (max-width: 720px) {
  .daftar-grid { grid-template-columns: 1fr; }
  .daftar-form { padding: 0.85rem 0.8rem 0.95rem; }
  .daftar-doc {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .daftar-doc__label { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .daftar-hero__orb { animation: none; }
}
