/* SILAT_PUBLIC_LANDING_DYNAMIC_V1 */

:root {
  --lp-primary: #047857;
  --lp-secondary: #0284c7;
  --lp-accent: #10b981;
  --lp-footer: #0f2933;
  --lp-text: #0f172a;
  --lp-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-surface: #ffffff;
  --lp-soft: #f8fafc;
  --lp-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lp-body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--lp-text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}

body.lp-menu-open {
  overflow: hidden;
}

.lp-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 18%, rgba(14, 165, 233, .07), transparent 22rem),
    radial-gradient(circle at 92% 40%, rgba(16, 185, 129, .08), transparent 24rem),
    #ffffff;
}

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

.lp-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(15, 23, 42, .16);
  transition:
    background .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.lp-nav.is-sticky {
  position: fixed;
}

.lp-nav.is-scrolled {
  border-color: rgba(226, 232, 240, .9);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lp-nav-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
}

.lp-nav.is-scrolled .lp-brand {
  color: var(--lp-text);
}

.lp-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 25px rgba(15, 23, 42, .12);
}

.lp-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.lp-brand-name {
  overflow: hidden;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-brand-tagline {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  max-width: 320px;
  color: rgba(255, 255, 255, .74);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-nav.is-scrolled .lp-brand-tagline {
  color: var(--lp-muted);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lp-nav-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 12px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.lp-nav-link:hover {
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
}

.lp-nav.is-scrolled .lp-nav-link {
  color: #334155;
}

.lp-nav.is-scrolled .lp-nav-link:hover {
  background: #f1f5f9;
  color: var(--lp-primary);
}

.lp-nav-button,
.lp-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 15px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background .16s ease;
}

.lp-nav-button {
  background: #ffffff;
  color: var(--lp-primary);
  box-shadow: 0 12px 25px rgba(15, 23, 42, .14);
}

.lp-nav.is-scrolled .lp-nav-button {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  color: #ffffff;
}

.lp-button:hover,
.lp-nav-button:hover {
  transform: translateY(-1px);
}

.lp-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  background: rgba(255, 255, 255, .10);
  color: #ffffff;
  cursor: pointer;
}

.lp-nav.is-scrolled .lp-menu-button {
  border-color: var(--lp-border);
  background: #ffffff;
  color: var(--lp-text);
}

.lp-menu-lines,
.lp-menu-lines::before,
.lp-menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.lp-menu-lines {
  position: relative;
}

.lp-menu-lines::before {
  position: absolute;
  top: -6px;
}

.lp-menu-lines::after {
  position: absolute;
  top: 6px;
}

.lp-mobile-menu {
  display: none;
  border-top: 1px solid var(--lp-border);
  background: #ffffff;
  padding: 12px 16px 18px;
}

.lp-mobile-menu.is-open {
  display: grid;
  gap: 7px;
}

.lp-mobile-menu .lp-nav-link {
  color: #334155;
}

.lp-hero {
  position: relative;
  display: grid;
  min-height: max(720px, 88vh);
  align-items: center;
  overflow: hidden;
  background: #0f2933;
}

.lp-hero-backgrounds,
.lp-hero-slide,
.lp-hero-overlay {
  position: absolute;
  inset: 0;
}

.lp-hero-backgrounds {
  z-index: 0;
}

.lp-hero-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .8s ease;
}

.lp-hero-slide.is-active {
  opacity: 1;
}

.lp-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 20, 28, .90) 0%, rgba(2, 25, 34, .66) 48%, rgba(2, 26, 35, .34) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, .14), rgba(15, 23, 42, .44));
}

.lp-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(28px, 7vw, 90px);
  padding-top: 118px;
  padding-bottom: 76px;
}

.lp-hero-copy {
  max-width: 750px;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(167, 243, 208, .22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(16, 185, 129, .12);
  color: #d1fae5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lp-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #a7f3d0;
  box-shadow: 0 0 0 6px rgba(167, 243, 208, .12);
}

.lp-hero-title {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: .98;
  font-weight: 1000;
  letter-spacing: -.055em;
}

.lp-hero-title strong {
  color: #86efac;
  font-weight: inherit;
}

.lp-hero-description {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.75;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.lp-button-primary {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(2, 132, 199, .22);
}

.lp-button-secondary {
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .10);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.lp-hero-card {
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 30px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 30px 80px rgba(2, 12, 20, .28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lp-hero-logo {
  display: grid;
  min-height: 210px;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
}

.lp-hero-logo img {
  width: min(86%, 280px);
  max-height: 190px;
  object-fit: contain;
}

.lp-hero-card-title {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -.025em;
}

.lp-hero-card-text {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.7;
}

.lp-section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.lp-section-soft {
  background: #f8fafc;
}

.lp-section-heading {
  max-width: 730px;
  margin: 0 auto 36px;
  text-align: center;
}

.lp-section-kicker {
  color: var(--lp-primary);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.lp-section-title {
  margin: 9px 0 0;
  color: var(--lp-text);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.lp-section-description {
  margin: 13px auto 0;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.lp-program-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96));
  color: #0f172a;
  text-decoration: none;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, .065),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
  isolation: isolate;
}

.lp-program-card:nth-child(5n + 2) {
  --lp-program-icon-color: #0369a1;
  --lp-program-icon-bg: rgba(14, 165, 233, .12);
  --lp-program-glow-color: rgba(14, 165, 233, .16);
}

.lp-program-card:nth-child(5n + 3) {
  --lp-program-icon-color: #4f46e5;
  --lp-program-icon-bg: rgba(99, 102, 241, .12);
  --lp-program-glow-color: rgba(99, 102, 241, .16);
}

.lp-program-card:nth-child(5n + 4) {
  --lp-program-icon-color: #b45309;
  --lp-program-icon-bg: rgba(245, 158, 11, .13);
  --lp-program-glow-color: rgba(245, 158, 11, .16);
}

.lp-program-card:nth-child(5n + 5) {
  --lp-program-icon-color: #be123c;
  --lp-program-icon-bg: rgba(244, 63, 94, .11);
  --lp-program-glow-color: rgba(244, 63, 94, .15);
}

.lp-program-card:nth-child(5n + 1) {
  --lp-program-icon-color: var(--lp-primary);
  --lp-program-icon-bg: rgba(16, 185, 129, .12);
  --lp-program-glow-color: rgba(16, 185, 129, .16);
}

.lp-program-glow {
  position: absolute;
  z-index: -1;
  top: -54px;
  right: -48px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--lp-program-glow-color);
  filter: blur(2px);
  transition: transform .35s ease;
}

.lp-program-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 19px;
  background: var(--lp-program-icon-bg);
  color: var(--lp-program-icon-color);
  box-shadow: 0 12px 25px rgba(15, 23, 42, .07);
}

.lp-program-icon svg {
  width: 29px;
  height: 29px;
}

.lp-program-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.lp-program-icon-text {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.lp-program-body {
  display: block;
  margin-top: 28px;
}

.lp-program-code {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--lp-program-icon-bg);
  color: var(--lp-program-icon-color);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.lp-program-title {
  display: block;
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.lp-program-description {
  display: block;
  margin-top: 9px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.65;
}

.lp-program-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, .055);
  color: #475569;
  opacity: 0;
  transform: translateX(-5px);
  transition:
    opacity .24s ease,
    transform .24s ease,
    background .24s ease,
    color .24s ease;
}

.lp-program-arrow svg {
  width: 15px;
  height: 15px;
}

.lp-program-card-static .lp-program-arrow {
  display: none;
}

.lp-program-card:hover,
.lp-program-card:focus-visible {
  border-color: rgba(16, 185, 129, .3);
  box-shadow:
    0 25px 55px rgba(15, 23, 42, .11),
    0 0 0 4px rgba(16, 185, 129, .045);
  transform: translateY(-7px);
  outline: none;
}

.lp-program-card:hover .lp-program-glow,
.lp-program-card:focus-visible .lp-program-glow {
  transform: scale(1.22);
}

.lp-program-card:hover .lp-program-arrow,
.lp-program-card:focus-visible .lp-program-arrow {
  background: var(--lp-program-icon-color);
  color: #ffffff;
  opacity: 1;
  transform: translateX(0);
}

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

.lp-gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 26px;
  background: #cbd5e1;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .1);
  isolation: isolate;
}

.lp-gallery-item:first-child {
  grid-column: span 7;
}

.lp-gallery-item:nth-child(2) {
  grid-column: span 5;
}

.lp-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform .55s cubic-bezier(.2, .7, .2, 1),
    filter .45s ease;
}

.lp-gallery-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 20, 28, .05) 12%,
      rgba(2, 20, 28, .22) 48%,
      rgba(2, 20, 28, .94) 100%
    );
  transition: background .42s ease;
}

.lp-gallery-caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  max-height: calc(100% - 18px);
  overflow: hidden;
  padding: 92px 22px 21px;
  color: #ffffff;
  transform: translateY(112px);
  transition:
    transform .48s cubic-bezier(.2, .7, .2, 1),
    padding .38s ease;
  scrollbar-width: thin;
  scrollbar-color:
    rgba(255, 255, 255, .5)
    rgba(255, 255, 255, .1);
}

.lp-gallery-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .88);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lp-gallery-caption strong {
  display: block;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 950;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.lp-gallery-subtitle {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  line-height: 1.5;
}

.lp-gallery-description {
  display: block;
  max-width: 720px;
  margin: 11px 0 0;
  overflow: visible;
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  line-height: 1.62;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity .34s ease .08s,
    transform .38s ease .08s;
}

.lp-gallery-view {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #d1fae5;
  font-size: 10px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity .32s ease .08s,
    transform .32s ease .08s;
}

.lp-gallery-view svg {
  width: 14px;
  height: 14px;
}

.lp-gallery-item:hover img,
.lp-gallery-item:focus-within img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.075);
}

.lp-gallery-item:hover .lp-gallery-overlay,
.lp-gallery-item:focus-within .lp-gallery-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(2, 20, 28, .12) 5%,
      rgba(2, 20, 28, .47) 45%,
      rgba(2, 20, 28, .97) 100%
    );
}

.lp-gallery-item:hover .lp-gallery-caption,
.lp-gallery-item:focus-within .lp-gallery-caption {
  overflow-y: auto;
  padding-top: 34px;
  transform: translateY(0);
}

.lp-gallery-item:hover .lp-gallery-description,
.lp-gallery-item:hover .lp-gallery-view,
.lp-gallery-item:focus-within .lp-gallery-description,
.lp-gallery-item:focus-within .lp-gallery-view {
  opacity: 1;
  transform: translateY(0);
}

.lp-feature-grid,
.lp-stat-grid,
.lp-testimonial-grid {
  display: grid;
  gap: 16px;
}

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

.lp-feature-card {
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .055);
}

.lp-feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(14,165,233,.14));
  color: var(--lp-primary);
  font-size: 20px;
  font-weight: 1000;
}

.lp-feature-title {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 950;
}

.lp-feature-description {
  margin: 8px 0 0;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.lp-stat-card {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  padding: 24px 18px;
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  text-align: center;
}

.lp-stat-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 185, 129, .22), transparent 24rem),
    linear-gradient(135deg, #062a31, #0f2933);
}

.lp-stat-section .lp-section-title {
  color: #ffffff;
}

.lp-stat-value {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.lp-stat-label {
  margin-top: 9px;
  color: rgba(255, 255, 255, .70);
  font-size: 12px;
  font-weight: 800;
}

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

.lp-testimonial {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.lp-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

.lp-testimonial-text {
  flex: 1;
  margin: 15px 0 20px;
  color: #334155;
  font-size: 13px;
  line-height: 1.75;
}

.lp-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-person-photo,
.lp-person-initial {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.lp-person-photo {
  object-fit: cover;
}

.lp-person-initial {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  color: #ffffff;
  font-size: 17px;
  font-weight: 1000;
}

.lp-person-name {
  font-size: 12px;
  font-weight: 950;
}

.lp-person-meta {
  margin-top: 3px;
  color: var(--lp-muted);
  font-size: 10px;
  line-height: 1.45;
}

.lp-cta {
  padding: clamp(32px, 5vw, 54px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(134, 239, 172, .24), transparent 18rem),
    linear-gradient(135deg, var(--lp-primary), #075985);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 28px 70px rgba(4, 120, 87, .20);
}

.lp-cta-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.lp-cta-description {
  max-width: 690px;
  margin: 13px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.75;
}

.lp-cta .lp-button {
  margin-top: 23px;
  background: #ffffff;
  color: var(--lp-primary);
}

.lp-footer {
  margin-top: 88px;
  padding: 58px 0 24px;
  background: var(--lp-footer);
  color: #ffffff;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 36px;
}

.lp-footer-title {
  margin: 0;
  font-size: 20px;
  font-weight: 1000;
}

.lp-footer-text,
.lp-footer-address {
  margin-top: 12px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  line-height: 1.7;
}

.lp-footer-links {
  display: grid;
  gap: 9px;
}

.lp-footer-link {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.lp-footer-link:hover {
  color: #ffffff;
}

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
}

.lp-empty {
  grid-column: 1 / -1;
  border: 1px dashed #cbd5e1;
  border-radius: 22px;
  padding: 28px;
  background: #f8fafc;
  color: var(--lp-muted);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .lp-nav-links {
    display: none;
  }

  .lp-menu-button {
    display: grid;
  }

  .lp-hero-content {
    grid-template-columns: 1fr;
    padding-top: 126px;
  }

  .lp-hero-copy {
    max-width: 820px;
  }

  .lp-hero-card {
    max-width: 680px;
  }

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

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

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

@media (max-width: 680px) {
  .lp-container {
    width: min(calc(100% - 20px), var(--lp-container));
  }

  .lp-nav-inner {
    min-height: 64px;
  }

  .lp-brand-tagline {
    display: none;
  }

  .lp-nav-button {
    display: none;
  }

  .lp-hero {
    min-height: 100svh;
  }

  .lp-hero-content {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .lp-hero-title {
    font-size: clamp(38px, 13vw, 58px);
  }

  .lp-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lp-button {
    width: 100%;
  }

  .lp-hero-card {
    border-radius: 24px;
    padding: 16px;
  }

  .lp-hero-logo {
    min-height: 155px;
  }

  .lp-section {
    padding: 62px 0;
  }

  .lp-gallery-grid,
  .lp-feature-grid,
  .lp-stat-grid,
  .lp-testimonial-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-gallery-item,
  .lp-gallery-item:first-child,
  .lp-gallery-item:nth-child(2) {
    grid-column: span 12;
    min-height: 240px;
  }

  .lp-footer {
    margin-top: 60px;
  }

  .lp-footer-bottom {
    display: block;
  }

  .lp-footer-bottom > * + * {
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Landing program and gallery enhancement — 2026-07-31 */
@media (max-width: 1180px) {
  .lp-program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .lp-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-program-card {
    min-height: 215px;
  }
}

@media (max-width: 560px) {
  .lp-program-grid {
    grid-template-columns: 1fr;
  }

  .lp-program-card {
    min-height: 0;
    padding: 20px;
  }

  .lp-program-body {
    margin-top: 21px;
  }

  .lp-program-description {
    padding-right: 28px;
  }

  .lp-gallery-item {
    min-height: 420px;
  }

  .lp-gallery-caption {
    max-height: calc(100% - 14px);
    padding: 72px 18px 18px;
  }

  .lp-gallery-item:hover .lp-gallery-caption,
  .lp-gallery-item:focus-within .lp-gallery-caption {
    padding-top: 24px;
  }

  .lp-gallery-description {
    font-size: 10.5px;
    line-height: 1.58;
  }
}

@media (hover: none), (pointer: coarse) {
  .lp-program-arrow {
    opacity: 1;
    transform: none;
  }

  .lp-gallery-caption {
    max-height: calc(100% - 12px);
    overflow-y: auto;
    padding-top: 28px;
    transform: none;
  }

  .lp-gallery-description,
  .lp-gallery-view {
    opacity: 1;
    transform: none;
  }

  .lp-gallery-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 20, 28, .08) 6%,
        rgba(2, 20, 28, .38) 47%,
        rgba(2, 20, 28, .96) 100%
      );
  }
}

/* Gallery full-description hover — 2026-07-31 */
.lp-gallery-caption::-webkit-scrollbar {
  width: 5px;
}

.lp-gallery-caption::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.lp-gallery-caption::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
}

.lp-gallery-caption::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, .64);
}

/* Landing statistic snapshot cards — 2026-07-31 */
.lp-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 24px 20px;
  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, .20),
      transparent 12rem
    ),
    rgba(255, 255, 255, .075);
  backdrop-filter: blur(12px);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.lp-stat-card::after {
  position: absolute;
  right: -42px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  content: "";
}

.lp-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 211, 252, .48);
  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, .27),
      transparent 12rem
    ),
    rgba(255, 255, 255, .115);
  box-shadow: 0 24px 50px rgba(2, 16, 23, .22);
}

.lp-stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .10);
  font-size: 22px;
}

.lp-stat-label {
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 900;
}

.lp-stat-description {
  max-width: 230px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, .60);
  font-size: 11px;
  line-height: 1.6;
}

/* Responsive testimonial showcase — 2026-07-31 */
.lp-testimonial-slider {
  position: relative;
}

.lp-testimonial-viewport {
  overflow: hidden;
  padding: 8px 5px 18px;
}

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.lp-testimonial[hidden] {
  display: none !important;
}

.lp-testimonial {
  position: relative;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .82);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(16, 185, 129, .11),
      transparent 170px
    ),
    linear-gradient(
      155deg,
      #ffffff 0%,
      #ffffff 62%,
      #f8fafc 100%
    );
  box-shadow:
    0 20px 48px rgba(15, 23, 42, .075),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.lp-testimonial::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(
    90deg,
    var(--lp-primary),
    var(--lp-secondary)
  );
  content: "";
}

.lp-testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, .42);
  box-shadow:
    0 28px 64px rgba(15, 23, 42, .12),
    0 10px 28px rgba(16, 185, 129, .08);
}

.lp-testimonial-top {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-stars {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 191, 36, .28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 251, 235, .86);
  color: #f59e0b;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2px;
}

.lp-testimonial-quote {
  color: rgba(16, 185, 129, .18);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: .7;
  font-weight: 900;
}

.lp-testimonial-text {
  flex: 1;
  margin: 18px 0 22px;
  color: #334155;
  font-size: 14px;
  line-height: 1.78;
}

.lp-testimonial-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(
    90deg,
    rgba(203, 213, 225, .9),
    rgba(203, 213, 225, .18)
  );
}

.lp-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.lp-person-photo-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.lp-person-photo,
.lp-person-initial {
  width: 58px;
  height: 58px;
  border: 3px solid #ffffff;
  border-radius: 18px;
  box-shadow:
    0 8px 20px rgba(15, 23, 42, .14),
    0 0 0 1px rgba(203, 213, 225, .75);
}

.lp-person-photo {
  object-fit: cover;
}

.lp-person-initial {
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--lp-primary),
    var(--lp-secondary)
  );
  color: #ffffff;
  font-size: 18px;
  font-weight: 1000;
}

.lp-person-status {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 15px;
  height: 15px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #10b981;
}

.lp-person-copy {
  min-width: 0;
  flex: 1;
}

.lp-person-name {
  overflow: hidden;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;
  text-overflow: ellipsis;
}

.lp-person-position {
  margin-top: 4px;
  color: var(--lp-primary);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 850;
}

.lp-person-institution {
  margin-top: 2px;
  color: #64748b;
  font-size: 10px;
  line-height: 1.45;
}

.lp-person-training {
  display: inline-flex;
  max-width: 100%;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  padding: 4px 8px;
  background: #ecfdf5;
  color: #047857;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-testimonial-controls {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.lp-testimonial-controls[hidden] {
  display: none !important;
}

.lp-testimonial-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .07);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    color .2s ease;
}

.lp-testimonial-control:hover {
  transform: translateY(-2px);
  border-color: var(--lp-primary);
  background: var(--lp-primary);
  color: #ffffff;
}

.lp-testimonial-dots {
  display: flex;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.lp-testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition:
    width .22s ease,
    background .22s ease,
    transform .22s ease;
}

.lp-testimonial-dot:hover {
  transform: scale(1.2);
  background: #94a3b8;
}

.lp-testimonial-dot.is-active {
  width: 28px;
  background: linear-gradient(
    90deg,
    var(--lp-primary),
    var(--lp-secondary)
  );
}

@media (max-width: 1023px) {
  .lp-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-testimonial {
    min-height: 310px;
  }
}

@media (max-width: 699px) {
  .lp-testimonial-viewport {
    padding-right: 2px;
    padding-left: 2px;
  }

  .lp-testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .lp-testimonial {
    min-height: 300px;
    border-radius: 24px;
    padding: 21px;
  }

  .lp-testimonial-text {
    font-size: 13px;
  }

  .lp-person-photo-wrap,
  .lp-person-photo,
  .lp-person-initial {
    width: 54px;
    height: 54px;
  }

  .lp-person-photo-wrap {
    flex-basis: 54px;
  }
}

/* Continuous testimonial and hero motion — 2026-07-31 */
.lp-testimonial-viewport {
  position: relative;
  overflow: hidden;
}

.lp-testimonial-viewport::before,
.lp-testimonial-viewport::after {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: clamp(18px, 4vw, 54px);
  pointer-events: none;
  content: "";
}

.lp-testimonial-viewport::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #f8fafc 0%,
    rgba(248, 250, 252, .82) 28%,
    rgba(248, 250, 252, 0) 100%
  );
}

.lp-testimonial-viewport::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #f8fafc 0%,
    rgba(248, 250, 252, .82) 28%,
    rgba(248, 250, 252, 0) 100%
  );
}

[data-lp-testimonial-track] {
  display: flex;
  width: max-content;
  max-width: none;
  align-items: stretch;
  grid-template-columns: none;
  will-change: transform;
}

[data-lp-testimonial-track] .lp-testimonial {
  flex: 0 0 auto;
}

.lp-testimonial-clone {
  pointer-events: none;
}

.lp-testimonial-slider:hover
.lp-testimonial {
  animation-play-state: paused;
}

/*
 * Efek Ken Burns untuk foto background landing.
 * Teks dan komponen hero tidak ikut bergerak.
 */
.lp-hero-slide {
  transform: scale(1.045);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.lp-hero-slide.is-active {
  animation:
    lp-hero-ken-burns
    18s
    ease-in-out
    infinite
    alternate;
}

.lp-hero-backgrounds::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(134, 239, 172, .12),
      transparent 30%
    ),
    linear-gradient(
      115deg,
      transparent 25%,
      rgba(255, 255, 255, .045) 48%,
      transparent 68%
    );
  background-size: 100% 100%, 220% 100%;
  animation:
    lp-hero-light-sweep
    12s
    ease-in-out
    infinite;
  content: "";
}

@keyframes lp-hero-ken-burns {
  0% {
    transform:
      scale(1.045)
      translate3d(-.7%, -.25%, 0);
  }

  50% {
    transform:
      scale(1.085)
      translate3d(.45%, -.65%, 0);
  }

  100% {
    transform:
      scale(1.125)
      translate3d(1%, .35%, 0);
  }
}

@keyframes lp-hero-light-sweep {
  0%,
  22% {
    background-position:
      center center,
      140% center;
  }

  62%,
  100% {
    background-position:
      center center,
      -120% center;
  }
}

@media (max-width: 699px) {
  .lp-testimonial-viewport::before,
  .lp-testimonial-viewport::after {
    width: 20px;
  }

  .lp-hero-slide.is-active {
    animation-duration: 22s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-slide,
  .lp-hero-slide.is-active,
  .lp-hero-backgrounds::after {
    animation: none !important;
    transform: scale(1.02) !important;
  }

  [data-lp-testimonial-track] {
    transform: none !important;
    will-change: auto;
  }

  .lp-testimonial-clone {
    display: none !important;
  }
}

/* Testimonial bold text and role badge — 2026-07-31 */
.lp-testimonial-text {
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -.005em;
}

.lp-person-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.lp-person-heading .lp-person-name {
  min-width: 0;
  flex: 0 1 auto;
}

.lp-person-role {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, .26);
  border-radius: 999px;
  padding: 4px 8px;
  background:
    linear-gradient(
      135deg,
      rgba(236, 253, 245, .96),
      rgba(240, 249, 255, .96)
    );
  color: #047857;
  font-size: 9px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow:
    0 4px 12px rgba(16, 185, 129, .08);
}

.lp-testimonial:hover .lp-person-role {
  border-color: rgba(16, 185, 129, .42);
  background:
    linear-gradient(
      135deg,
      #d1fae5,
      #e0f2fe
    );
}

@media (max-width: 699px) {
  .lp-testimonial-text {
    font-weight: 700;
  }

  .lp-person-role {
    padding: 4px 7px;
    font-size: 8px;
  }
}

/* Testimonial drag and swipe interaction — 2026-08-01 */
.lp-testimonial-viewport {
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.lp-testimonial-viewport.is-dragging {
  cursor: grabbing;
}

.lp-testimonial-viewport.is-dragging
[data-lp-testimonial-track] {
  will-change: transform;
}

.lp-testimonial-viewport img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

[data-lp-testimonial-track] {
  transform: translate3d(0, 0, 0);
  transition: none;
}

.lp-testimonial {
  cursor: inherit;
}

@media (hover: hover) {
  .lp-testimonial-viewport:not(.is-dragging)
  .lp-testimonial:hover {
    transform: translateY(-3px);
  }

  .lp-testimonial-viewport.is-dragging
  .lp-testimonial {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-testimonial-viewport {
    cursor: default;
  }
}
