/* Eksplorasio marketing landing — port from Next.js */

:root {
  --eks-gold: #c89b3c;
  --eks-gold-accent: #d9a766;
  --eks-gold-hover: #c8955a;
  --eks-gold-soft: rgba(217, 167, 102, 0.14);
  --eks-midnight: #0b1120;
  --eks-navy: #0b1c2c;
  --eks-footer: #061a2b;
  --eks-panel: #0a1220;
  --eks-slate-950: #020617;
  --eks-white-90: rgba(255, 255, 255, 0.9);
  --eks-white-80: rgba(255, 255, 255, 0.8);
  --eks-white-70: rgba(255, 255, 255, 0.7);
  --eks-container: 80rem;
  --eks-radius-lg: 1rem;
  --eks-radius-xl: 1.25rem;
  --eks-cta-radius: 9999px;
  --eks-cta-padding-y: 0.5rem;
  --eks-cta-padding-x: 0.875rem;
  --eks-cta-font-size: 0.9375rem;
  --eks-cta-font-weight: 700;
}

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

html {
  scroll-behavior: smooth;
}

.eks-landing-body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(200, 155, 60, 0.09), transparent 58%),
    radial-gradient(900px 480px at 92% 4%, rgba(56, 189, 248, 0.07), transparent 55%),
    var(--eks-slate-950);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.eks-landing {
  min-height: 100vh;
  background: var(--eks-slate-950);
}

.eks-container {
  width: 100%;
  max-width: var(--eks-container);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .eks-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .eks-container {
    padding: 0 2rem;
  }
}

.eks-gold {
  color: var(--eks-gold);
  font-weight: 500;
}

/* Navbar */
.eks-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  transition: background-color 0.2s ease;
}

.eks-nav.is-scrolled {
  background: rgba(11, 28, 44, 0.82);
  border-bottom: 1px solid rgba(217, 167, 102, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

/* Bright-page navbar (mis. page Why We Exist, Blog) */
.eks-landing--bright {
  background: var(--ui-section-blogs-bg, #fffff0);
}

.eks-landing--bright .eks-nav {
  background: rgba(249, 245, 241, 0.9);
  border-bottom: 1px solid rgba(10, 17, 40, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(10, 17, 40, 0.08);
}

.eks-landing--bright .eks-nav.is-scrolled {
  background: rgba(249, 245, 241, 0.96);
  border-bottom-color: rgba(10, 17, 40, 0.1);
  box-shadow: 0 12px 36px rgba(10, 17, 40, 0.12);
}

.eks-landing--bright .eks-nav__brand-name {
  color: var(--eks-navy);
}

.eks-landing--bright .eks-nav__brand-tagline {
  color: var(--eks-gold-hover);
}

.eks-landing--bright .eks-nav__desktop {
  color: rgba(11, 28, 44, 0.92);
}

.eks-landing--bright .eks-nav__link:hover {
  border-color: rgba(200, 149, 90, 0.35);
}

.eks-landing--bright .eks-nav__link.is-active {
  color: var(--eks-navy);
  border-color: var(--eks-gold-hover);
}

.eks-landing--bright .eks-nav__toggle {
  border-color: rgba(10, 17, 40, 0.14);
  background: rgba(255, 255, 255, 0.6);
  color: var(--eks-navy);
  backdrop-filter: blur(10px);
}

.eks-landing--bright .eks-lang__trigger,
.eks-landing--bright .eks-nav__login {
  border-color: rgba(10, 17, 40, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--eks-navy);
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.08);
}

.eks-landing--bright .eks-lang__trigger:hover,
.eks-landing--bright .eks-nav__login:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(10, 17, 40, 0.18);
  color: var(--eks-gold-hover);
}

.eks-landing--bright .eks-nav__mobile-panel {
  border-bottom-color: rgba(10, 17, 40, 0.08);
  background: rgba(249, 245, 241, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.eks-landing--bright .eks-nav__mobile-close {
  border-color: rgba(10, 17, 40, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--eks-navy);
}

.eks-landing--bright .eks-nav__mobile-lang-label {
  color: rgba(11, 28, 44, 0.6);
}

.eks-landing--bright .eks-nav__mobile-link {
  color: rgba(11, 28, 44, 0.92);
}

.eks-landing--bright .eks-nav__mobile-link:hover {
  background: rgba(10, 17, 40, 0.05);
  color: var(--eks-gold-hover);
}

.eks-landing--bright .eks-nav__mobile-link.is-active {
  color: var(--eks-navy);
  border-bottom-color: var(--eks-gold-hover);
}

.eks-nav__inner {
  max-width: var(--eks-container);
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* position: relative;
  z-index: 1; */
}

/* .eks-nav.is-open .eks-nav__inner {
   z-index: 60; 
} */

@media (min-width: 640px) {
  .eks-nav__inner {
    padding: 1.25rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .eks-nav__inner {
    padding: 1.25rem 2rem;
  }
}

.eks-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.eks-nav__logo {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
}

.eks-nav__brand-name {
  margin: 0;
  font-family: "Poppins", Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 640px) {
  .eks-nav__brand-name {
    font-size: 1.25rem;
  }
}

.eks-nav__brand-tagline {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--eks-gold-accent);
}

@media (min-width: 640px) {
  .eks-nav__brand-tagline {
    font-size: 0.75rem;
  }
}

.eks-nav__desktop {
  display: none;
  flex: 1;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  padding: 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  min-width: 0;
}

@media (min-width: 1230px) {
  .eks-nav__desktop {
    display: flex;
  }
}

.eks-nav__link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.125rem;
  transition: color 0.2s, border-color 0.2s;
}

.eks-nav__link:hover {
  color: var(--eks-gold-accent);
  border-color: rgba(217, 167, 102, 0.3);
}

.eks-nav__link.is-active {
  color: #fff;
  border-color: var(--eks-gold-accent);
}

.eks-nav__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}

.eks-nav__actions > .eks-lang,
.eks-nav__actions > .eks-nav__login,
.eks-nav__actions > .eks-nav__academy {
  flex: 0 0 auto;
  height: 2.375rem;
  min-height: 2.375rem;
  box-sizing: border-box;
}

.eks-nav__actions .eks-lang__trigger {
  height: 100%;
  min-height: 2.375rem;
  box-sizing: border-box;
}

@media (max-width: 1229px) {
  .eks-nav__actions > .eks-lang,
  .eks-nav__actions > .eks-nav__login,
  .eks-nav__actions > .eks-nav__academy {
    display: none;
  }
}

.eks-nav__academy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 5rem;
  padding: var(--eks-cta-padding-y) var(--eks-cta-padding-x);
  border: 1px solid rgba(16, 185, 129, 0.45);
  border-radius: var(--eks-cta-radius);
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff !important;
  font-size: var(--eks-cta-font-size);
  font-weight: var(--eks-cta-font-weight);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.32);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.eks-nav__academy:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  border-color: rgba(52, 211, 153, 0.55);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

.eks-nav__academy:focus-visible {
  outline: 2px solid rgba(52, 211, 153, 0.65);
  outline-offset: 2px;
}

.eks-nav__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.125rem;
  background: rgba(2, 6, 23, 0.5);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.eks-nav__login--full {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 0.75rem;
}

.eks-nav__login-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eks-nav__login-icon {
  color: rgba(217, 167, 102, 0.9);
  font-size: 0.875rem;
  line-height: 1;
}

.eks-nav__login-text {
  letter-spacing: 0.04em;
}

.eks-nav__login:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--eks-gold-accent);
}

.eks-nav__login:focus-visible {
  outline: 2px solid rgba(217, 167, 102, 0.55);
  outline-offset: 2px;
}

.eks-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.125rem;
  background: rgba(2, 6, 23, 0.2);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.eks-nav__toggle .eks-nav__toggle-close {
  display: none;
}

.eks-nav.is-open .eks-nav__toggle .eks-nav__toggle-open {
  display: none;
}

.eks-nav.is-open .eks-nav__toggle .eks-nav__toggle-close {
  display: inline;
}

@media (min-width: 1230px) {
  .eks-nav__toggle {
    display: none;
  }
}

.eks-nav__mobile {
  display: none;
}

.eks-nav.is-open .eks-nav__mobile {
  display: block;
}

@media (min-width: 1230px) {
  .eks-nav__mobile {
    display: none !important;
  }
}

.eks-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  border: 0;
  background: rgba(2, 6, 23, 0.7);
  cursor: pointer;
}

.eks-nav__mobile-panel {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  max-height: min(100dvh, 100vh);
  overflow-y: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(12px);
}

.eks-nav__mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  /* z-index: 2; */
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.125rem;
  background: rgba(2, 6, 23, 0.2);
  color: #fff;
  cursor: pointer;
}

.eks-nav__mobile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: var(--eks-container);
  margin: 0 auto;
  padding: 4.75rem 1rem 0;
}

.eks-nav__mobile-actions > .eks-lang,
.eks-nav__mobile-actions > .eks-nav__login,
.eks-nav__mobile-actions > .eks-nav__academy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  height: 2.375rem;
  min-height: 2.375rem;
  box-sizing: border-box;
}

.eks-nav__mobile-actions .eks-lang__trigger {
  width: 100%;
  height: 100%;
  min-height: 2.375rem;
  box-sizing: border-box;
}

.eks-nav__mobile-lang {
  max-width: var(--eks-container);
  margin: 0 auto;
  padding: 5rem 1rem 0;
}

.eks-nav__mobile-lang-label {
  margin: 0 0 0.375rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.eks-nav__mobile-links {
  max-width: var(--eks-container);
  margin: 0 auto;
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.eks-nav__mobile-link {
  display: block;
  padding: 0.75rem;
  border-radius: 0.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.eks-nav__mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--eks-gold-accent);
}

.eks-nav__mobile-link.is-active {
  color: #fff;
  display: inline-block;
  border-bottom: 2px solid var(--eks-gold-accent);
}

/* Language select */
.eks-lang {
  position: relative;
}

.eks-lang--full {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}

.eks-lang__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.125rem;
  background: rgba(2, 6, 23, 0.5);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.eks-lang__trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--eks-gold-accent);
}

.eks-lang__trigger:focus-visible {
  outline: 2px solid rgba(217, 167, 102, 0.55);
  outline-offset: 2px;
}

.eks-lang--full .eks-lang__trigger {
  width: 100%;
}

.eks-lang__current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eks-lang__flag {
  border-radius: 2px;
  object-fit: cover;
}

.eks-lang__code {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.eks-lang__chev {
  color: rgba(217, 167, 102, 0.9);
  transition: transform 0.2s;
}

.eks-lang.is-open .eks-lang__chev {
  transform: rotate(180deg);
}

.eks-lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  z-index: 60;
  min-width: 100%;
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.125rem;
  background: #020617;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.eks-lang--full .eks-lang__menu {
  left: 0;
  right: 0;
}

.eks-lang__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.eks-lang__option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.eks-lang__option.is-selected {
  background: rgba(255, 255, 255, 0.05);
  color: var(--eks-gold-accent);
}

/* Hero */
.eks-hero__visual {
  position: relative;
  min-height: min(105vh, 966px);
  overflow: hidden;
}

@media (min-width: 640px) {
  .eks-hero__visual {
    min-height: min(100vh, 920px);
  }
}

.eks-hero__carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  --swiper-pagination-bottom: 2rem;
  --swiper-pagination-top: auto;
  --swiper-pagination-left: auto;
  --swiper-pagination-right: auto;
}

.eks-hero__carousel.swiper,
.eks-hero__carousel .swiper-wrapper,
.eks-hero__carousel .swiper-slide {
  height: 100%;
}

.eks-hero__slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.eks-hero__slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eks-hero__slide-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  will-change: transform;
}

.eks-hero__slide-image--mobile {
  display: none;
  object-position: center;
}

.eks-hero__slide-image--desktop {
  object-position: right center;
}

.eks-hero__slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.62) 38%, rgba(2, 6, 23, 0.28) 62%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.15) 0%, rgba(2, 6, 23, 0.88) 100%);
}

.eks-hero__slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.eks-hero__slide-content a,
.eks-hero__slide-content button {
  pointer-events: auto;
}

.eks-hero__carousel-prev,
.eks-hero__carousel-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.45);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.eks-hero__carousel-prev:hover,
.eks-hero__carousel-next:hover {
  background: rgba(217, 167, 102, 0.35);
  border-color: var(--eks-gold-accent, #d4a853);
}

.eks-hero__carousel-prev {
  left: 1rem;
}

.eks-hero__carousel-next {
  right: 1rem;
}

.eks-hero__carousel-prev i,
.eks-hero__carousel-next i {
  font-size: 1.35rem;
  line-height: 1;
}

.eks-hero__carousel-prev.swiper-button-disabled,
.eks-hero__carousel-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Override Swiper default pagination — bottom center */
.eks-hero__carousel > .eks-hero__carousel-pagination,
.eks-hero__carousel > .eks-hero__carousel-pagination.swiper-pagination,
.eks-hero__carousel.swiper-horizontal > .eks-hero__carousel-pagination.swiper-pagination-bullets {
  position: absolute;
  top: auto;
  bottom: 2rem;
  left: 50%;
  right: auto;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.28);
  transform: translateX(-50%);
  pointer-events: none;
}

.eks-hero__carousel-pagination .swiper-pagination-bullet {
  position: relative;
  left: auto;
  top: auto;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  pointer-events: auto;
  transition: background-color 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.eks-hero__carousel-pagination .swiper-pagination-bullet-active {
  background: var(--eks-gold-accent, #d4a853);
  width: 0.72rem;
  height: 0.72rem;
}

@media (max-width: 500px) {
  .eks-hero__slide-image--desktop {
    display: none;
  }

  .eks-hero__slide-image--mobile {
    display: block;
  }

  .eks-hero__carousel-prev,
  .eks-hero__carousel-next {
    width: 2.35rem;
    height: 2.35rem;
  }

  .eks-hero__carousel-prev {
    left: 0.5rem;
  }

  .eks-hero__carousel-next {
    right: 0.5rem;
  }

  .eks-hero__carousel > .eks-hero__carousel-pagination,
  .eks-hero__carousel > .eks-hero__carousel-pagination.swiper-pagination,
  .eks-hero__carousel.swiper-horizontal > .eks-hero__carousel-pagination.swiper-pagination-bullets {
    bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .eks-hero__carousel-prev {
    left: 1.5rem;
  }

  .eks-hero__carousel-next {
    right: 1.5rem;
  }
}

.eks-hero__content-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: var(--eks-container);
  width: 100%;
  margin: 0 auto;
  padding: 5.5rem 1rem 2.5rem;
}

@media (min-width: 640px) {
  .eks-hero__content-inner {
    justify-content: center;
    padding: 8rem 1.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .eks-hero__content-inner {
    padding: 8rem 2rem 3.5rem;
  }
}

.eks-hero__title {
  max-width: 48rem;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}

.eks-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 167, 102, 0.32);
  background: rgba(217, 167, 102, 0.1);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eks-gold-accent);
}

.eks-hero__badge i {
  font-size: 0.82rem;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .eks-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .eks-hero__title {
    font-size: 3.75rem;
  }
}

.eks-hero__title-line {
  display: block;
}

.eks-hero__title-line + .eks-hero__title-line {
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .eks-hero__title-line + .eks-hero__title-line {
    margin-top: 0.5rem;
  }
}

.eks-hero__title-line--gold {
  color: var(--eks-gold);
}

.eks-hero__title-rule {
  --eks-hero-title-rule-thickness: 3px;
  display: block;
  width: 4rem;
  height: 0;
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  border-top: var(--eks-hero-title-rule-thickness) solid var(--eks-gold-accent);
  background: none;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  box-sizing: border-box;
}

/* Garis 2 — sebelum subtitle, hanya mobile (< md) */
.eks-hero__title-rule-mobile {
  display: block;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
}

@media (min-width: 768px) {
  .eks-hero__title-rule-mobile {
    display: none !important;
  }

  .eks-hero__title > .eks-hero__title-rule {
    width: 5rem;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  /* Garis 1 & 2 — tampilan identik di mobile */
  .eks-hero__title > .eks-hero__title-rule,
  .eks-hero__title-rule-mobile .eks-hero__title-rule {
    display: block;
    width: 4rem;
    height: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-top: var(--eks-hero-title-rule-thickness) solid var(--eks-gold-accent);
    background: none;
    flex-shrink: 0;
    font-size: 0;
    line-height: 0;
    box-sizing: border-box;
  }

  .eks-hero__title > .eks-hero__title-rule {
    margin-top: 0.75rem;
    margin-bottom: 0;
  }

  .eks-hero__title-rule-mobile .eks-hero__title-rule {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }
}

/* Subtitle + CTA — layout desktop mengikuti alur normal */
.eks-hero__actions {
  display: flex;
  flex-direction: column;
}

@media (max-width: 639.98px) {
  .eks-hero__content-inner {
    /* Ruang di atas dot pagination (bottom ~1.25–2rem + tinggi pill + jarak) */
    padding-bottom: 6.25rem;
  }

  .eks-hero__actions {
    margin-top: auto;
    padding-top: 1.25rem;
  }
}

@media (min-width: 640px) {
  .eks-hero__actions {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.eks-hero__subtitle {
  max-width: 42rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--eks-white-90);
}

@media (min-width: 640px) {
  .eks-hero__subtitle {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}

.eks-hero__subtitle strong {
  color: var(--eks-gold);
  font-weight: 600;
}

.eks-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
  scroll-margin-top: 7rem;
}

@media (min-width: 640px) {
  .eks-hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.25rem;
    scroll-margin-top: 8rem;
  }
}

@media (min-width: 1024px) {
  .eks-hero__cta {
    margin-top: 1.75rem;
  }
}

.eks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 5rem;
  padding: var(--eks-cta-padding-y) var(--eks-cta-padding-x);
  border-radius: var(--eks-cta-radius);
  font-size: var(--eks-cta-font-size);
  font-weight: var(--eks-cta-font-weight);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s;
}

.eks-btn .lms-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.eks-btn:hover .lms-icon {
  transform: translateX(2px);
}

.eks-btn:focus-visible {
  outline: 2px solid rgba(217, 167, 102, 0.55);
  outline-offset: 2px;
}

.eks-btn i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.eks-btn:hover i {
  transform: translateX(2px);
}

.eks-btn--outline {
  border: 1px solid var(--eks-gold-accent);
  background: transparent;
  color: #fff;
}

.eks-btn--outline:hover {
  background: rgba(217, 167, 102, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.eks-btn--solid {
  border: 1px solid var(--eks-gold-accent);
  background: linear-gradient(135deg, rgba(217, 167, 102, 0.92), rgba(200, 155, 60, 0.88));
  color: var(--eks-midnight);
  box-shadow: 0 4px 14px rgba(200, 155, 60, 0.22);
}

.eks-btn--solid:hover {
  background: linear-gradient(135deg, var(--eks-gold-hover), rgba(200, 155, 60, 0.95));
  color: var(--eks-midnight);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200, 155, 60, 0.28);
}

.eks-hero__trust {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 42rem;
  margin: 1.35rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--eks-white-90);
}

@media (min-width: 640px) {
  .eks-hero__trust {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
  }
}

.eks-hero__trust i {
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 1.25rem;
  color: var(--eks-gold-accent);
}

.eks-hero__trust strong {
  white-space: nowrap;
  font-weight: 600;
  color: var(--eks-gold-accent);
}

.eks-hero__features-wrap {
  position: relative;
  border-top: 1px solid rgba(217, 167, 102, 0.2);
  background:
    linear-gradient(180deg, rgba(217, 167, 102, 0.04), transparent 28%),
    var(--eks-slate-950);
  padding: 2rem 0 3rem;
}

@media (min-width: 640px) {
  .eks-hero__features-wrap {
    padding: 2rem 0 3rem;
  }
}

.eks-hero__features-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eks-gold-accent);
}

@media (min-width: 640px) {
  .eks-hero__features-label {
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
  }
}

.eks-hero__features-line {
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: linear-gradient(to left, var(--eks-gold-accent), transparent);
}

.eks-hero__features-line--right {
  background: linear-gradient(to right, var(--eks-gold-accent), transparent);
}

.eks-hero__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .eks-hero__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eks-hero__features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eks-hero__feature {
  position: relative;
  border: 1px solid rgba(217, 167, 102, 0.16);
  border-radius: var(--eks-radius-lg);
  padding: 1.25rem 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.eks-hero__feature:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 167, 102, 0.34);
  background: rgba(217, 167, 102, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.eks-hero__feature i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  font-size: 1.15rem;
  color: var(--eks-gold-accent);
  background: rgba(217, 167, 102, 0.1);
  border: 1px solid rgba(217, 167, 102, 0.18);
}

.eks-hero__feature h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 640px) {
  .eks-hero__feature h3 {
    font-size: 1rem;
  }
}

.eks-hero__feature p {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* Sections */
.eks-section {
  border-top: 1px solid rgba(217, 167, 102, 0.2);
  background: var(--eks-slate-950);
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .eks-section {
    padding: 3rem 0;
  }
}

.eks-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--eks-radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--eks-panel);
  padding: 2rem 1.25rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.eks-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 167, 102, 0.45), transparent);
  pointer-events: none;
}

@media (min-width: 640px) {
  .eks-panel {
    padding: 2.5rem 2rem;
  }
}

.eks-section__header {
  margin-bottom: 2rem;
}

.eks-section__header--center {
  text-align: center;
}

.eks-section__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.eks-section__title-line {
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: linear-gradient(to left, var(--eks-gold-accent), transparent);
}

.eks-section__title-line--right {
  background: linear-gradient(to right, var(--eks-gold-accent), transparent);
}

@media (min-width: 640px) {
  .eks-section__title-line {
    max-width: 5.5rem;
  }
}

@media (min-width: 640px) {
  .eks-section__header {
    margin-bottom: 2.5rem;
  }
}

.eks-section__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  text-wrap: balance;
}

.eks-section__eyebrow {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eks-gold-accent);
}

.eks-section__subtitle {
  max-width: 40rem;
  margin: 0.85rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94a3b8;
  text-align: center;
}

@media (min-width: 640px) {
  .eks-section__title {
    font-size: 1.5rem;
  }
}

.eks-arrow-line {
  width: 4.25rem;
  height: 1rem;
  margin-top: 0.75rem;
  background:
    linear-gradient(var(--eks-gold-accent), var(--eks-gold-accent)) left center / 2.5rem 2px no-repeat,
    linear-gradient(135deg, var(--eks-gold-accent) 50%, transparent 50%) right center / 0.5rem 0.5rem no-repeat;
}

.eks-arrow-line--sm {
  width: 2.5rem;
  height: 2px;
  margin: 0.5rem auto 0;
  background: var(--eks-gold-accent);
}

.eks-stats {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1024px) {
  .eks-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eks-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 0.85rem;
  text-align: center;
  border-radius: 0.85rem;
  transition: transform 0.22s ease, background 0.22s ease;
}

.eks-stats__item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
}

.eks-stats__item--border {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .eks-stats__item--border {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.eks-stats__icon {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--eks-gold-accent);
}

.eks-stats__value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--eks-gold);
}

@media (min-width: 640px) {
  .eks-stats__value {
    font-size: 1.875rem;
  }
}

.eks-stats__label {
  margin: 0.375rem 0 0;
  max-width: 14rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}

.eks-stats__arrow {
  margin-top: 0.75rem;
  color: var(--eks-gold-accent);
}

.eks-stats__body {
  margin: 0.75rem 0 0;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.eks-section__source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #94a3b8;
}

@media (min-width: 640px) {
  .eks-section__source {
    font-size: 0.875rem;
    padding-top: 2rem;
  }
}

.eks-section__source i {
  color: var(--eks-gold-accent);
}

/* Execution framework */
.eks-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .eks-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.eks-steps__connector {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0;
  color: #fff;
}

.eks-steps__chev-desktop {
  display: none;
  font-size: 2rem;
}

.eks-steps__chev-mobile {
  display: block;
  font-size: 2rem;
}

@media (min-width: 1024px) {
  .eks-steps__connector {
    align-self: stretch;
    align-items: center;
    padding: 2.5rem 0.5rem 0;
  }

  .eks-steps__chev-desktop {
    display: block;
  }

  .eks-steps__chev-mobile {
    display: none;
  }
}

.eks-steps__item {
  flex: 1;
  min-width: 0;
  padding: 0 0.5rem;
  text-align: center;
}

.eks-steps__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 2px solid rgba(217, 167, 102, 0.45);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(217, 167, 102, 0.18), rgba(255, 255, 255, 0.02) 68%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eks-steps__item:hover .eks-steps__icon-wrap {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200, 155, 60, 0.16);
}

.eks-steps__icon-wrap i {
  font-size: 2rem;
  color: var(--eks-gold-accent);
}

.eks-steps__item h3 {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 640px) {
  .eks-steps__item h3 {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.eks-steps__item p {
  margin: 1rem auto 0;
  max-width: 18rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

/* Footer — mockup cream layout */
.eks-footer {
  --eks-footer-surface: #f9f7f2;
  --eks-footer-ink: #1a2332;
  --eks-footer-muted: #4b5563;
  --eks-footer-gold: #b68d40;
  --eks-footer-gold-soft: rgba(182, 141, 64, 0.18);
  --eks-footer-divider: rgba(26, 35, 50, 0.12);
  position: relative;
  overflow: hidden;
  background: var(--eks-footer-surface);
  color: var(--eks-footer-ink);
}

.eks-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--eks-footer-gold-soft), transparent);
}

.eks-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--eks-container);
  margin: 0 auto;
  padding: 3.5rem 1rem 2.5rem;
}

@media (min-width: 640px) {
  .eks-footer__inner {
    padding: 4rem 1.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .eks-footer__inner {
    padding: 4.5rem 2rem 3rem;
  }
}

.eks-footer__masthead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid var(--eks-footer-divider);
}

@media (min-width: 900px) {
  .eks-footer__masthead {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) minmax(7rem, 0.55fr);
    align-items: center;
    gap: 2.5rem;
  }
}

.eks-footer__brand-col {
  max-width: 18rem;
}

.eks-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: inherit;
}

.eks-footer__logo {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  object-fit: contain;
}

.eks-footer__brand-name {
  margin: 0;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--eks-footer-gold);
  line-height: 1.2;
}

.eks-footer__brand-rule {
  display: block;
  width: 2.75rem;
  height: 2px;
  margin: 1rem 0 0.875rem;
  background: var(--eks-footer-gold);
}

.eks-footer__brand-tagline {
  margin: 0;
  max-width: 16rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--eks-footer-muted);
}

.eks-footer__quote-col {
  position: relative;
  padding-top: 0.25rem;
}

@media (min-width: 900px) {
  .eks-footer__quote-col {
    padding-left: 2.25rem;
    border-left: 1px solid var(--eks-footer-divider);
  }
}

.eks-footer__quote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--eks-footer-ink);
}

.eks-footer__quote-highlight {
  color: var(--eks-footer-gold);
}

.eks-footer__deco {
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
  color: var(--eks-footer-gold);
  opacity: 0.42;
}

@media (min-width: 900px) {
  .eks-footer__deco {
    display: flex;
  }
}

.eks-footer__deco-img {
  width: min(13.75rem, 100%);
  height: auto;
  object-fit: contain;
}

.eks-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .eks-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .eks-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .eks-footer__columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.eks-footer__col {
  min-width: 0;
}

.eks-footer__col-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eks-footer-ink);
}

.eks-footer__col-title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.5rem;
  background: var(--eks-footer-gold);
}

.eks-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.eks-footer__links li {
  min-width: 0;
  max-width: 100%;
}

.eks-footer__links li + li {
  margin-top: 0.625rem;
}

.eks-footer__link,
.eks-footer__connect {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  max-width: 100%;
  color: var(--eks-footer-muted);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.2s;
}

.eks-footer__link:hover,
.eks-footer__connect:hover {
  color: var(--eks-footer-gold);
}

.eks-footer__connect-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  margin-top: 0.05rem;
  border: 1px solid var(--eks-footer-gold);
  border-radius: 999px;
  color: var(--eks-footer-gold);
}

.eks-footer__connect-icon .lms-icon {
  width: 0.8rem;
  height: 0.8rem;
}

.eks-footer__company-name {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--eks-footer-ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.eks-footer__company-address {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--eks-footer-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.eks-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--eks-footer-divider);
}

@media (min-width: 768px) {
  .eks-footer__legal {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.eks-footer__legal-heading {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eks-footer-ink);
}

.eks-footer__legal-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eks-footer__legal-icon-link {
  display: inline-flex;
  text-decoration: none;
  color: var(--eks-footer-ink);
  transition: color 0.2s, border-color 0.2s;
}

.eks-footer__legal-icon-link:hover {
  color: var(--eks-footer-gold);
}

.eks-footer__legal-icon-link:hover .eks-footer__legal-icon {
  border-color: var(--eks-footer-gold);
  color: var(--eks-footer-gold);
}

.eks-footer__legal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--eks-footer-ink);
  border-radius: 999px;
  color: var(--eks-footer-ink);
  transition: color 0.2s, border-color 0.2s;
}

.eks-footer__legal-icon .lms-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.eks-footer__legal-signoff {
  text-align: left;
}

@media (min-width: 768px) {
  .eks-footer__legal-signoff {
    text-align: right;
    margin-left: auto;
  }
}

.eks-footer__legal-tagline {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  color: var(--eks-footer-gold);
}

.eks-footer__legal-tagline-script {
  font-family: "Dancing Script", "Segoe Script", cursive;
  font-weight: 600;
}

.eks-footer__legal-tagline-accent {
  display: inline-block;
  margin-left: 0.2rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: baseline;
  border-bottom: 2px solid var(--eks-footer-gold);
  padding-bottom: 0.08rem;
}

.eks-footer__legal-copy {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--eks-footer-muted);
}

/* Placeholder pages */
.eks-page-placeholder {
  min-height: 60vh;
  padding: 7rem 0 4rem;
  background: var(--eks-slate-950);
}

.eks-page-placeholder__card {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: var(--eks-panel);
  text-align: center;
}

.eks-page-placeholder__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eks-gold-accent);
}

.eks-page-placeholder__card h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.eks-page-placeholder__card p {
  margin: 0 0 1.5rem;
  color: var(--eks-white-70);
  line-height: 1.6;
}

/* CTA band */
.eks-cta-band {
  padding: 0 0 3.5rem;
  background: var(--eks-slate-950);
}

.eks-cta-band__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 167, 102, 0.22);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(217, 167, 102, 0.12), rgba(56, 189, 248, 0.08)),
    rgba(10, 18, 32, 0.92);
  padding: 2rem 1.25rem;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

@media (min-width: 640px) {
  .eks-cta-band__panel {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .eks-cta-band__panel {
    padding: 3rem 2.5rem;
  }
}

.eks-cta-band__glow {
  position: absolute;
  top: -45%;
  right: -8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(217, 167, 102, 0.16);
  filter: blur(52px);
  pointer-events: none;
}

.eks-cta-band__content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.eks-cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.eks-portal-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--eks-gold-accent);
  box-shadow: 0 0 0 0 rgba(217, 167, 102, 0.55);
  animation: eks-portal-dot-pulse 2s ease-out infinite;
}

@keyframes eks-portal-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 167, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(217, 167, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 167, 102, 0);
  }
}

.eks-cta-band__title {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
}

.eks-cta-band__subtitle {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.eks-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .eks-cta-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.eks-cta-band__tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.15rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (min-width: 640px) {
  .eks-cta-band__tertiary {
    margin-left: 0.35rem;
  }
}

.eks-cta-band__tertiary:hover {
  color: var(--eks-gold-accent);
}
