/*
Theme Name: LKP PalComTech
Theme URI: https://palcomtech.ac.id
Author: PalComTech
Description: Landing page LKP PalComTech (kursus komputer & Bahasa Inggris) — dikonversi dari aplikasi Next.js ke tema WordPress statis.
Version: 1.0.5
License: GPL-2.0-or-later
Text Domain: lkp-palcomtech
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #06184e;
  --blue: #123da9;
  --blue-bright: #2458db;
  --orange: #ff9f0a;
  --orange-light: #ffc861;
  --ink: #0e1630;
  --muted: #66708c;
  --line: #dfe4ef;
  --paper: #f7f8fc;
  --white: #ffffff;
  --green: #0a8f65;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1320px, calc(100% - 48px));
  height: 72px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(5, 20, 67, .78);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(1, 13, 51, .22);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 600 17px/1 "Manrope", sans-serif;
  letter-spacing: -.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.brand b {
  color: var(--orange);
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  position: relative;
  opacity: .82;
  transition: opacity .25s ease;
}

.nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
  transition: width .25s ease;
}

.nav a:hover {
  opacity: 1;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language,
.menu-button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.language {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.sign-in {
  font-size: 13px;
  font-weight: 600;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font: 800 14px/1 "Manrope", sans-serif;
  box-shadow: 0 14px 30px rgba(255, 159, 10, .2);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  background: #ffad28;
  box-shadow: 0 18px 36px rgba(255, 159, 10, .3);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  padding: 10px 7px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-photo,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("assets/hero-genz-v2.webp") center/cover no-repeat;
  transform: scale(1.015);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,15,56,.98) 0%, rgba(5,23,79,.95) 36%, rgba(7,28,91,.55) 59%, rgba(8,28,83,.12) 100%),
    linear-gradient(0deg, rgba(4,16,56,.85), transparent 48%);
}

.hero-grid {
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 225px;
}

.hero-badge,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font: 800 11px/1 "Manrope", sans-serif;
  letter-spacing: .17em;
}

.hero-badge {
  color: #fff;
  animation: fadeUp .7s .1s both;
}

.hero-badge i {
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font: 500 clamp(56px, 6vw, 92px)/.99 "Manrope", sans-serif;
  letter-spacing: -.065em;
  animation: fadeUp .8s .2s both;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--orange);
  font-weight: 800;
}

.hero h1 strong span:last-child {
  margin-top: .03em;
}

.hero-content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.75;
  animation: fadeUp .8s .3s both;
}

.hero.hero-image-header {
  min-height: 0;
  padding-top: 104px;
  background: #fff;
  color: inherit;
}

.hero-image-header img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: fadeUp .8s .4s both;
}

.button-glow {
  min-width: 200px;
}

.button-glow span {
  font-size: 18px;
}

.ghost-link {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.38);
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font: 700 14px/1 "Manrope", sans-serif;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: fadeUp .8s .5s both;
}

.people {
  display: flex;
}

.people span {
  width: 34px;
  height: 34px;
  margin-right: -6px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font: 800 10px/1 "Manrope", sans-serif;
}

.people span:first-child {
  background: var(--orange);
  color: var(--navy);
}

.hero-trust p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.hero-floating {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  background: rgba(255,255,255,.91);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite;
}

.card-result {
  right: 4.5%;
  bottom: 126px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #dff7eb;
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.hero-floating b,
.hero-floating small {
  display: block;
}

.hero-floating b {
  font-size: 12px;
}

.hero-floating small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.card-rating {
  top: 165px;
  right: 5%;
  padding: 14px 18px;
  animation-delay: -1.8s;
}

.card-rating > span {
  color: var(--orange);
  letter-spacing: .08em;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue span {
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: .2em;
}

.scroll-cue i {
  width: 55px;
  height: 1px;
  background: rgba(255,255,255,.5);
}

.proof-strip {
  min-height: 190px;
  padding: 34px max(38px, calc((100% - 1440px) / 2));
  border-bottom: 1px solid #e7eaf1;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 30px;
}

.proof-item {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .3s ease;
}

.proof-item:hover {
  transform: translateY(-5px);
}

.proof-icon {
  position: relative;
  flex: 0 0 auto;
  width: 86px;
  height: 92px;
}

.proof-icon::before {
  position: absolute;
  content: "";
}

.proof-computer {
  height: 80px;
  margin-top: 8px;
  border-radius: 20px 20px 10px 10px;
  background: #5278ed;
}

.proof-computer::before {
  inset: 13px 9px 24px;
  border-radius: 8px;
  background: rgba(255,255,255,.13);
  content: "100%";
  color: #fff;
  display: grid;
  place-items: center;
  font: 800 25px/1 "Manrope", sans-serif;
  letter-spacing: -.07em;
}

.proof-computer::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -8px;
  height: 8px;
  border-radius: 0 0 9px 9px;
  background: #5278ed;
  content: "";
}

.proof-guarantee {
  border-radius: 38% 62% 56% 44% / 47% 42% 58% 53%;
  background: #45e953;
  animation: iconMorph 7s ease-in-out infinite;
}

.proof-guarantee::before {
  top: 22px;
  left: 26px;
  width: 34px;
  height: 20px;
  border-left: 8px solid #fff;
  border-bottom: 8px solid #fff;
  transform: rotate(-45deg);
}

.proof-award::before {
  top: 8px;
  left: 12px;
  width: 58px;
  height: 54px;
  border: 9px solid #f7c348;
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.proof-award::after {
  position: absolute;
  top: 6px;
  left: 28px;
  color: #f7c348;
  content: "1";
  font: 800 38px/1 "Manrope", sans-serif;
}

.proof-certificate {
  width: 72px;
  height: 88px;
  margin-inline: 7px;
  border-radius: 17px;
  background:
    linear-gradient(#fff,#fff) 15px 19px/39px 7px no-repeat,
    linear-gradient(#fff,#fff) 15px 34px/31px 7px no-repeat,
    linear-gradient(#fff,#fff) 15px 49px/35px 7px no-repeat,
    #f43f92;
}

.proof-certificate::before {
  right: -4px;
  bottom: -4px;
  width: 31px;
  height: 31px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #f43f92;
  box-shadow: 0 0 0 3px #f43f92;
}

.proof-certificate::after {
  position: absolute;
  right: 4px;
  bottom: -15px;
  width: 16px;
  height: 22px;
  background: #f43f92;
  clip-path: polygon(0 0,100% 0,100% 100%,50% 72%,0 100%);
  content: "";
}

.proof-item div {
  display: grid;
  gap: 6px;
}

.proof-item strong {
  color: #050814;
  font: 800 clamp(15px, 1.08vw, 19px)/1.12 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.proof-item div span {
  color: #272d3d;
  font-size: clamp(10px, .76vw, 12px);
  font-weight: 500;
  line-height: 1.35;
}

@keyframes iconMorph {
  0%, 100% { border-radius: 38% 62% 56% 44% / 47% 42% 58% 53%; }
  50% { border-radius: 57% 43% 38% 62% / 42% 56% 44% 58%; }
}

.proof-strip {
  min-height: 0;
  padding: 96px max(48px, calc((100% - 1320px) / 2)) 110px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(36,88,219,.08), transparent 24%),
    radial-gradient(circle at 92% 76%, rgba(255,159,10,.1), transparent 25%),
    linear-gradient(180deg, #f7f9ff 0%, #fff 100%);
  display: block;
}

.proof-heading {
  max-width: 1040px;
  margin: 0 auto 54px;
  text-align: center;
}

.proof-heading > span {
  color: var(--blue);
  font: 800 11px/1 "Manrope", sans-serif;
  letter-spacing: .16em;
}

.proof-heading h2 {
  margin: 0;
  color: var(--ink);
  font: 800 clamp(38px, 4vw, 58px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.proof-heading h2 strong {
  color: var(--orange);
  font-weight: 800;
}

.proof-heading h2 > span {
  display: block;
}

.proof-heading h2 > span + span {
  margin-top: .12em;
}

.proof-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-strip .proof-item {
  --accent: #2458db;
  --soft: #edf2ff;
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e4e9f3;
  border-radius: 24px;
  background: rgba(255,255,255,.93);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  box-shadow: 0 18px 52px rgba(8,27,80,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.proof-strip .proof-item::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 28px;
  width: 54px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: var(--accent);
  content: "";
}

.proof-strip .proof-item::after {
  position: absolute;
  z-index: 0;
  right: -55px;
  bottom: -72px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--soft);
  opacity: .78;
  content: "";
  transition: transform .45s ease;
}

.proof-strip .proof-item:hover {
  border-color: color-mix(in srgb, var(--accent) 34%, #e4e9f3);
  box-shadow: 0 28px 66px rgba(8,27,80,.14);
  transform: translateY(-8px);
}

.proof-strip .proof-item:hover::after {
  transform: scale(1.16);
}

.feature-green { --accent: #13ad6f !important; --soft: #e6f8f0 !important; }
.feature-gold { --accent: #e6a314 !important; --soft: #fff5db !important; }
.feature-pink { --accent: #e63882 !important; --soft: #ffebf3 !important; }

.proof-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}

.proof-strip .proof-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 20px;
  background: var(--soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent);
}

.proof-strip .proof-icon::before,
.proof-strip .proof-icon::after {
  content: none;
}

.proof-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.proof-item h3 {
  position: relative;
  z-index: 1;
  margin: 32px 0 14px;
  font: 800 clamp(19px, 1.5vw, 24px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.proof-item h3 span,
.proof-item h3 em {
  display: block;
}

.proof-item h3 span {
  color: var(--ink);
}

.proof-item h3 em {
  margin-top: 4px;
  color: var(--accent);
  font-style: normal;
}

.proof-strip .proof-item > p {
  position: relative;
  z-index: 1;
  max-width: 235px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.achievement-wall {
  position: relative;
  isolation: isolate;
  margin-top: 78px;
  padding: clamp(34px, 4.4vw, 60px);
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 4% 0%, rgba(36, 103, 243, .5), transparent 30%),
    radial-gradient(circle at 96% 100%, rgba(255, 181, 24, .2), transparent 31%),
    linear-gradient(135deg, #03134a 0%, #07266f 58%, #0a3a98 100%);
  color: #fff;
  box-shadow: 0 36px 80px rgba(5, 25, 78, .2);
}

.achievement-wall-legacy {
  display: none;
}

.achievement-poster {
  width: 100%;
  margin: 78px 0 0;
  padding: 0;
}

.achievement-poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(18px, 2.2vw, 32px);
  filter: drop-shadow(0 28px 55px rgba(5, 25, 78, .18));
}

.achievement-wall::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -220px;
  border: 1px solid rgba(255, 195, 56, .18);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(255, 195, 56, .035),
    0 0 0 108px rgba(255, 195, 56, .02);
}

.achievement-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
}

.achievement-kicker {
  display: block;
  margin-bottom: 15px;
  color: #ffc43d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.achievement-intro h3 {
  max-width: 760px;
  margin: 0 0 15px;
  font: 800 clamp(34px, 4.2vw, 62px)/1.02 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.achievement-intro p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.7;
}

.achievement-total {
  min-width: 190px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}

.achievement-total strong {
  color: #ffc43d;
  font: 800 58px/1 "Manrope", sans-serif;
  letter-spacing: -.07em;
}

.achievement-total span {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.achievement-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.35fr);
  gap: 26px;
}

.achievement-champion {
  position: relative;
  min-height: 570px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,196,61,.4);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,210,80,.2), transparent 31%),
    linear-gradient(155deg, rgba(255,255,255,.15), rgba(255,255,255,.035));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.045), 0 24px 52px rgba(0,8,40,.25);
}

.achievement-champion::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.09) 48%, transparent 62%);
  transform: translateX(-115%);
  animation: achievementShine 7s ease-in-out infinite;
}

.achievement-champion-number {
  position: absolute;
  top: -28px;
  right: -3px;
  color: rgba(255,255,255,.06);
  font: 900 190px/.9 "Manrope", sans-serif;
  letter-spacing: -.1em;
}

.achievement-trophy-halo {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd75e 0 31%, #ffb517 32% 43%, rgba(255,181,23,.12) 44% 67%, transparent 68%);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 20px 35px rgba(255,181,23,.24));
}

.achievement-trophy-halo svg {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  color: #05174d;
  stroke-width: 1.8;
}

.achievement-rays {
  position: absolute;
  inset: -22px;
  border: 1px dashed rgba(255,210,80,.38);
  border-radius: 50%;
  animation: achievementOrbit 16s linear infinite;
}

.achievement-champion-copy {
  position: relative;
  z-index: 2;
  max-width: 510px;
}

.achievement-champion-copy .achievement-scope {
  display: inline-flex;
  margin-bottom: 22px;
  color: #07184c;
  background: #ffc43d;
}

.achievement-champion-copy h4 {
  margin: 0 0 18px;
  color: #fff;
  font: 820 clamp(36px, 4vw, 58px)/.98 "Manrope", sans-serif;
  letter-spacing: -.065em;
}

.achievement-champion-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.7;
}

.achievement-podium {
  position: absolute;
  right: 25px;
  bottom: 25px;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  opacity: .22;
}

.achievement-podium span {
  width: 28px;
  border-radius: 5px 5px 0 0;
  background: #ffc43d;
}

.achievement-podium span:nth-child(1) { height: 42px; }
.achievement-podium span:nth-child(2) { height: 78px; }
.achievement-podium span:nth-child(3) { height: 57px; }

.achievement-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.achievement-journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,196,61,.35), transparent);
}

.achievement-milestone {
  position: relative;
  min-width: 0;
  min-height: 128px;
  padding: 18px 18px 18px 74px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  display: flex;
  align-items: center;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.achievement-milestone:nth-child(4n + 2),
.achievement-milestone:nth-child(4n + 3) {
  background: linear-gradient(135deg, rgba(62,133,255,.18), rgba(255,255,255,.035));
}

.achievement-milestone:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(255,196,61,.42);
  background: linear-gradient(135deg, rgba(255,196,61,.13), rgba(255,255,255,.055));
}

.achievement-step {
  position: absolute;
  right: 11px;
  bottom: -14px;
  color: rgba(255,255,255,.055);
  font: 900 72px/1 "Manrope", sans-serif;
  letter-spacing: -.08em;
}

.achievement-icon {
  position: absolute;
  left: 17px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(255,196,61,.14);
  color: #ffc43d;
  display: grid;
  place-items: center;
}

.achievement-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.achievement-scope {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.67);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.achievement-accolade {
  display: block;
  margin-bottom: 7px;
  color: #ffc43d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.achievement-milestone-copy {
  position: relative;
  z-index: 1;
}

.achievement-milestone-copy .achievement-scope {
  display: inline-flex;
  margin-bottom: 10px;
}

.achievement-milestone-copy .achievement-accolade {
  margin-bottom: 4px;
  font-size: 9px;
}

.achievement-milestone h4 {
  margin: 0;
  color: #fff;
  font: 760 clamp(13px, 1vw, 16px)/1.3 "Manrope", sans-serif;
  letter-spacing: -.025em;
}

@keyframes achievementOrbit {
  to { transform: rotate(360deg); }
}

@keyframes achievementShine {
  0%, 68% { transform: translateX(-115%); }
  88%, 100% { transform: translateX(115%); }
}

.section {
  padding: 120px max(48px, calc((100% - 1320px) / 2));
}

.section-head {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  align-items: end;
  gap: 60px;
}

.section-head h2,
.why-intro h2,
.testimonial-heading h2,
.conversion-copy h2,
.faq-heading h2 {
  margin: 18px 0 0;
  font: 500 clamp(38px, 4.1vw, 64px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.outlet-heading {
  max-width: 1180px;
  margin-inline: auto;
  display: block;
  text-align: center;
}

.outlet-heading h2 {
  margin-top: 0;
}

.program-section {
  background: var(--paper);
}

.program-heading {
  max-width: 1120px;
  margin-inline: auto;
  display: block;
  text-align: center;
}

.program-heading h2 {
  margin-top: 0;
  font-weight: 800;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.program-heading h2 span,
.program-heading h2 strong {
  display: block;
}

.program-heading h2 strong {
  margin-top: .08em;
  color: var(--orange);
  font-weight: 800;
}

.program-grid {
  width: min(100%, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.program-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3e7f1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(12,30,76,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.program-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 54px rgba(12,30,76,.14);
}

.program-poster-card {
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 22px;
  background: transparent;
  display: block;
  box-shadow: 0 14px 36px rgba(12,30,76,.09);
}

.program-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.program-art {
  position: relative;
  height: 235px;
  overflow: hidden;
  background-image: url("assets/programs-grid-v2.webp");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  transition: filter .35s ease, background-size .6s ease;
}

.program-card:hover .program-art {
  filter: saturate(1.08);
  background-size: 312% 208%;
}

.program-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,14,46,.04), rgba(4,14,46,.45));
  content: "";
}

.p1 { background-position: 0 0; }
.p2 { background-position: 50% 0; }
.p3 { background-position: 100% 0; }
.p4 { background-position: 0 100%; }
.p5 { background-position: 50% 100%; }
.p6 { background-position: 100% 100%; }

.program-arrow {
  position: absolute;
  z-index: 2;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font: 800 12px/1 "Manrope", sans-serif;
}

.program-arrow {
  right: 18px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(6,24,78,.38);
  color: #fff;
  font-size: 17px;
  backdrop-filter: blur(8px);
  transition: transform .3s ease;
}

.program-card:hover .program-arrow {
  transform: rotate(45deg);
}

.program-body {
  padding: 24px 24px 26px;
}

.program-body h3,
.tutor-card h3 {
  margin: 0 0 10px;
  font: 700 24px/1.2 "Manrope", sans-serif;
  letter-spacing: -.035em;
}

.program-body p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.program-body > a {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
}

.why-section {
  position: relative;
  padding: 120px max(48px, calc((100% - 1320px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(40,83,213,.55), transparent 35%),
    var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
}

.why-section::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
  content: "";
}

.kicker-light {
  color: var(--orange);
}

.why-intro {
  position: relative;
  z-index: 1;
  align-self: center;
}

.why-intro h2 {
  max-width: 530px;
}

.why-intro > p {
  max-width: 500px;
  margin: 26px 0 34px;
  color: rgba(255,255,255,.67);
  line-height: 1.8;
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  transition: background .3s ease, transform .3s ease;
}

.benefit-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0 0 24px;
  border-radius: 15px;
  background: var(--orange);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.1;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font: 700 20px/1.3 "Manrope", sans-serif;
}

.benefit-card p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 1.7;
}

.why-poster-section {
  width: 100%;
  overflow: hidden;
  background: #020d2f;
}

.why-poster-section img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .why-poster-section {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,181,24,.7) rgba(255,255,255,.08);
  }

  .why-poster-section img {
    width: 760px;
    max-width: none;
  }
}

.content-note {
  margin: -32px 0 28px;
  color: #8a91a5;
  font-size: 11px;
  font-style: italic;
}

.tutor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 28px;
}

.tutor-card {
  min-width: 0;
  border: 0;
  background: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.tutor-photo {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.tutor-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border: 0;
  filter: drop-shadow(0 20px 24px rgba(11, 42, 119, .14));
  transform: scale(1);
  transform-origin: center bottom;
  transition: transform .35s ease, filter .35s ease;
}

.tutor-card:hover .tutor-photo img {
  transform: translateY(-3px) scale(1.035);
  filter: drop-shadow(0 28px 30px rgba(11, 42, 119, .2));
}

.tutor-heading {
  max-width: 1160px;
  margin-inline: auto;
  display: block;
  text-align: center;
}

.tutor-heading h2 {
  max-width: 1160px;
  margin-inline: auto;
}

.tutor-card h3 {
  min-height: 44px;
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .025em;
  text-transform: uppercase;
  text-shadow: 0 2px 7px rgba(0, 43, 123, .28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tutor-info {
  position: relative;
  z-index: 2;
  height: 108px;
  margin-top: -20px;
  padding: 11px 14px 10px;
  border: 2px solid rgba(130, 231, 248, .85);
  border-radius: 22px;
  background: linear-gradient(180deg, #4dd7eb 0%, #1683d8 44%, #0752b8 100%);
  box-shadow:
    0 14px 26px rgba(7, 74, 176, .2),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  display: grid;
  grid-template-rows: 48px 1fr;
  align-items: center;
  overflow: hidden;
}

.tutor-info p {
  max-width: 290px;
  margin: 0 auto;
  color: rgba(255,255,255,.96);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .015em;
  text-shadow: 0 1px 4px rgba(0, 39, 112, .3);
}

.instructor-section {
  position: relative;
  padding: 100px max(42px, calc((100% - 1480px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(44, 109, 236, .11), transparent 24%),
    radial-gradient(circle at 92% 86%, rgba(255, 184, 27, .1), transparent 24%),
    linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

.instructor-carousel {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.instructor-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1777 / 887;
  border-radius: 28px;
  background: #001957;
  box-shadow:
    0 32px 72px rgba(4, 26, 89, .2),
    0 8px 22px rgba(4, 26, 89, .12);
  animation: instructorPanelReveal .48s cubic-bezier(.2,.8,.2,1) both;
}

.instructor-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.055), transparent 24%, transparent 78%, rgba(51,124,255,.07));
}

.instructor-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: auto;
}

.instructor-toolbar {
  width: min(100%, 900px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 14px;
}

.instructor-arrow {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #08256f;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(17, 47, 111, .13);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.instructor-arrow:hover {
  background: #ffbd2e;
  color: #061750;
  transform: translateY(-2px);
}

.instructor-arrow:focus-visible,
.instructor-tab:focus-visible {
  outline: 3px solid rgba(20, 87, 220, .38);
  outline-offset: 3px;
}

.instructor-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(17, 47, 111, .11);
}

.instructor-tab {
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #33446d;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.instructor-tab:hover {
  background: #edf3ff;
  color: #0a48b8;
}

.instructor-tab.active {
  background: linear-gradient(135deg, #0a49bd, #14307e);
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 60, 162, .2);
}

@keyframes instructorPanelReveal {
  from { opacity: 0; transform: translateY(12px) scale(.992); }
  to { opacity: 1; transform: none; }
}

.testimonial-section {
  position: relative;
  isolation: isolate;
  padding: 110px max(48px, calc((100% - 1320px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 73, 186, .38), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(10, 81, 211, .3), transparent 31%),
    linear-gradient(135deg, #001147 0%, #001a60 52%, #052a85 100%);
  color: #fff;
}

.testimonial-section::before,
.testimonial-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
}

.testimonial-section::before {
  width: 460px;
  height: 460px;
  left: -260px;
  top: 35%;
  background: rgba(22, 91, 224, .22);
}

.testimonial-section::after {
  width: 560px;
  height: 560px;
  right: -340px;
  bottom: -280px;
  background: rgba(49, 118, 255, .18);
}

.testimonial-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.testimonial-heading h2 {
  margin: 0;
}

.testimonial-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .72fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-spotlight::before {
  content: "";
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(34, 107, 255, .24), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

.testimonial-feature {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 650px);
  justify-self: center;
  animation: testimonialReveal .48s cubic-bezier(.2,.8,.2,1) both;
}

.testimonial-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% 9% 3%;
  background: radial-gradient(ellipse at center, rgba(38, 109, 255, .38), transparent 68%);
  filter: blur(34px);
}

.testimonial-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  border: 0;
  filter: contrast(1.015) saturate(1.025) drop-shadow(0 28px 44px rgba(0, 7, 34, .32));
  -webkit-mask-image: radial-gradient(ellipse 102% 102% at 50% 50%, #000 84%, rgba(0,0,0,.96) 92%, transparent 100%);
  mask-image: radial-gradient(ellipse 102% 102% at 50% 50%, #000 84%, rgba(0,0,0,.96) 92%, transparent 100%);
}

.testimonial-panel {
  position: relative;
  z-index: 1;
  padding: 30px 0 30px 30px;
  background: linear-gradient(110deg, rgba(255,255,255,.07), rgba(255,255,255,0) 72%);
  border-radius: 22px;
}

.testimonial-panel-copy {
  margin-bottom: 24px;
}

.testimonial-panel-copy > span {
  display: block;
  margin-bottom: 12px;
  color: #ffbd2e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.testimonial-panel-copy h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.05;
}

.testimonial-panel-copy p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: 14px;
}

.testimonial-selector {
  display: grid;
  gap: 5px;
}

.testimonial-selector-item {
  width: 100%;
  min-height: 68px;
  padding: 8px 14px 8px 10px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.testimonial-selector-item:hover {
  background: rgba(255,255,255,.055);
  transform: translateX(3px);
}

.testimonial-selector-item.active {
  background: linear-gradient(90deg, rgba(255,189,46,.16), rgba(255,255,255,.055));
  box-shadow: inset 3px 0 0 #ffbd2e;
}

.testimonial-selector-item:focus-visible,
.testimonial-controls button:focus-visible {
  outline: 3px solid rgba(255,189,46,.65);
  outline-offset: 2px;
}

.testimonial-selector-photo {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background: #08256f;
}

.testimonial-selector-photo img {
  position: absolute;
  width: 285%;
  height: 285%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.testimonial-selector-item strong,
.testimonial-selector-item small {
  display: block;
}

.testimonial-selector-item strong {
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.2;
}

.testimonial-selector-item small {
  color: rgba(255,255,255,.57);
  font-size: 11px;
  line-height: 1.25;
}

.testimonial-controls {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.testimonial-controls button:hover {
  background: #ffbd2e;
  color: #061750;
  transform: translateY(-2px);
}

.testimonial-controls span {
  min-width: 42px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .12em;
}

@keyframes testimonialReveal {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.outlet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.outlet-card {
  position: relative;
  flex: 0 1 calc((100% - 72px) / 4);
  max-width: 224px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .3s ease;
}

.outlet-card:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow: none;
}

.outlet-card:focus-visible {
  outline: 4px solid rgba(255,159,10,.42);
  outline-offset: 4px;
}

.outlet-admin-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 0;
  border-radius: 0;
  transform: none;
  filter: none;
  image-rendering: auto;
}

.conversion-section {
  position: relative;
  padding: 110px max(48px, calc((100% - 1320px) / 2));
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(7,25,80,.98), rgba(16,55,159,.94)),
    url("assets/hero-genz-v2.webp") center/cover;
  color: #fff;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.conversion-section::after {
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025);
  content: "";
}

.conversion-poster-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1717 / 916;
  overflow: hidden;
  background: #03164d;
}

.conversion-poster-art {
  position: absolute;
  inset: 0;
}

.conversion-poster-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conversion-poster-section .conversion-poster-form {
  position: absolute;
  z-index: 2;
  top: 10.25%;
  right: 8.45%;
  width: 38.75%;
  min-height: 65%;
  box-sizing: border-box;
  padding: clamp(22px, 2.05vw, 38px);
  border: 1px solid rgba(47,105,237,.18);
  border-radius: clamp(22px, 2.2vw, 38px);
  background: rgba(255,255,255,.985);
  box-shadow: 0 25px 70px rgba(0,31,114,.25), 0 0 35px rgba(58,112,255,.18);
}

.conversion-poster-section .conversion-poster-form .form-top {
  font-size: clamp(10px, .78vw, 13px);
  letter-spacing: .04em;
}

.conversion-poster-section .conversion-poster-form label {
  font-size: clamp(10px, .75vw, 13px);
}

.conversion-poster-section .conversion-poster-form input,
.conversion-poster-section .conversion-poster-form select {
  border-color: #ccd6eb;
  background: #fff;
}

.conversion-poster-section .conversion-poster-form .form-button {
  min-height: 54px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ffc515, #ff9f0a);
  color: #061749;
  box-shadow: 0 12px 28px rgba(255,166,12,.28);
}

@media (min-width: 701px) and (max-width: 1100px) {
  .conversion-poster-section .conversion-poster-form {
    padding: 18px 20px;
  }

  .conversion-poster-section .conversion-poster-form .form-top {
    margin-bottom: 12px;
  }

  .conversion-poster-section .conversion-poster-form label {
    gap: 5px;
    margin-bottom: 9px;
  }

  .conversion-poster-section .conversion-poster-form input,
  .conversion-poster-section .conversion-poster-form select {
    height: 42px;
  }

  .conversion-poster-section .conversion-poster-form .form-button {
    min-height: 44px;
  }

  .conversion-poster-section .conversion-poster-form > small {
    margin-top: 8px;
  }
}

@media (max-width: 700px) {
  .conversion-poster-section {
    aspect-ratio: auto;
    overflow: visible;
    display: grid;
  }

  .conversion-poster-art {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .conversion-poster-art img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .conversion-poster-section .conversion-poster-form {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    min-height: 0;
    margin: -28px 18px 34px;
    padding: 24px;
    border-radius: 22px;
  }
}

.conversion-copy {
  position: relative;
  z-index: 1;
}

.conversion-copy p {
  max-width: 520px;
  margin: 25px 0;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

.conversion-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.conversion-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.conversion-copy li span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,159,10,.15);
  color: var(--orange);
  display: grid;
  place-items: center;
}

.lead-form {
  position: relative;
  z-index: 2;
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.form-top {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font: 800 10px/1 "Manrope", sans-serif;
  letter-spacing: .12em;
}

.form-top b {
  color: var(--green);
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #39425a;
  font-size: 11px;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: #fafbfe;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(36,88,219,.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-button {
  width: 100%;
  margin-top: 5px;
}

.form-success {
  margin: 14px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.lead-form > small {
  display: block;
  margin-top: 14px;
  color: #9299aa;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.faq-section {
  padding: 110px max(48px, calc((100% - 1320px) / 2));
  background: var(--paper);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.faq-heading h2 {
  font-size: clamp(36px, 3.3vw, 52px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 700 16px/1.4 "Manrope", sans-serif;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-size: 25px;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 40px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer {
  position: relative;
  isolation: isolate;
  padding: 0 max(48px, calc((100% - 1320px) / 2)) 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 100%, rgba(19,91,231,.34), transparent 31%),
    radial-gradient(circle at 94% 15%, rgba(255,181,24,.12), transparent 24%),
    #030d2e;
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -280px;
  bottom: -370px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02);
}

.footer-cta {
  min-height: 184px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.footer-cta span,
.footer small {
  display: block;
  margin-bottom: 11px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 710px;
  margin: 0;
  font: 750 clamp(25px, 3vw, 42px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.05em;
}

.footer-cta a {
  min-width: max-content;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--orange);
  color: #061749;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 800 12px/1 "Manrope", sans-serif;
  box-shadow: 0 14px 28px rgba(255,165,21,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255,165,21,.28);
}

.footer-cta a svg { width: 17px; height: 17px; }

.footer-grid {
  padding: 52px 0 42px;
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr 1.65fr;
  gap: clamp(28px, 4vw, 64px);
}

.footer-brand {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: start;
  gap: 16px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}

.footer-brand b,
.footer-brand span {
  display: block;
}

.footer-brand b {
  font: 700 18px/1.2 "Manrope", sans-serif;
}

.footer-brand span {
  margin-top: 7px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
}

.footer-brand p {
  max-width: 305px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.75;
}

.footer-links,
.footer-outlets {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer a {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  transition: color .2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer .instagram-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 15px;
}

.footer .instagram-links a {
  min-width: 0;
  padding: 9px 8px;
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 7px;
}

.footer .instagram-links span,
.footer .instagram-links b,
.footer .instagram-links em {
  overflow-wrap: anywhere;
}

.footer .instagram-links svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  stroke-width: 2;
}

.footer .instagram-links b {
  display: block;
  color: rgba(255,255,255,.9);
  font: 700 10px/1.35 "Manrope", sans-serif;
}

.footer .instagram-links em {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-style: normal;
  line-height: 1.35;
}

.footer .instagram-links a:hover {
  background: rgba(255,255,255,.085);
}

.footer .instagram-links a:hover b { color: var(--orange); }

.footer-bottom {
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
}

.footer-bottom p { margin: 0; }

.footer-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 700;
}

.footer-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.footer-poster {
  position: relative;
  overflow: hidden;
  background: #020c2c;
  color: #fff;
}

.footer-poster-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-poster-frame > img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-hotspot {
  position: absolute;
  z-index: 2;
  border-radius: 18px;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.footer-hotspot:hover,
.footer-hotspot:focus-visible {
  background: rgba(255,181,24,.08);
  box-shadow: inset 0 0 0 2px rgba(255,181,24,.85), 0 0 28px rgba(255,181,24,.18);
  outline: none;
  transform: translateY(-2px);
}

.footer-hotspot.consultation { left: 62.4%; top: 8.5%; width: 26.5%; height: 11.5%; }
.footer-hotspot.outlet-1 { left: 61.5%; top: 41.1%; width: 16.2%; height: 9.8%; }
.footer-hotspot.outlet-2 { left: 78.5%; top: 41.1%; width: 16.2%; height: 9.8%; }
.footer-hotspot.outlet-3 { left: 61.5%; top: 52%; width: 16.2%; height: 9.8%; }
.footer-hotspot.outlet-4 { left: 78.5%; top: 52%; width: 16.2%; height: 9.8%; }
.footer-hotspot.outlet-5 { left: 61.5%; top: 63.2%; width: 16.2%; height: 9.8%; }
.footer-hotspot.outlet-6 { left: 78.5%; top: 63.2%; width: 16.2%; height: 9.8%; }
.footer-hotspot.outlet-7 { left: 61.5%; top: 73.9%; width: 16.2%; height: 9.8%; }

.footer-mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,.8,.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes heroZoom {
  from { transform: scale(1.015); }
  to { transform: scale(1.065); }
}

@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }

  .sign-in {
    display: none;
  }

  .hero-content {
    width: calc(100% - 64px);
  }

  .proof-strip {
    padding-inline: 32px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .achievement-stage {
    grid-template-columns: minmax(310px, .75fr) minmax(0, 1.25fr);
  }

  .achievement-champion {
    min-height: 590px;
    padding: 28px;
  }

  .program-grid,
  .tutor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section {
    grid-template-columns: 1fr;
  }

  .why-intro {
    max-width: 730px;
  }

  .outlet-grid {
    gap: 20px;
  }

  .outlet-card {
    flex-basis: calc((100% - 40px) / 3);
  }

  .conversion-section {
    gap: 50px;
  }

  .instructor-section {
    padding: 88px 30px;
  }

  .instructor-stage {
    border-radius: 22px;
  }

  .testimonial-spotlight {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
  }

  .testimonial-panel {
    padding-left: 22px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 18px;
    border-radius: 15px;
    background: rgba(4,17,58,.97);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .header-actions .button-small {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero.hero-image-header {
    min-height: 0;
    padding-top: 92px;
  }

  .hero-photo {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3,15,56,.98), rgba(5,23,79,.87) 65%, rgba(5,23,79,.34));
  }

  .hero-content {
    width: calc(100% - 48px);
    padding-top: 205px;
  }

  .hero h1 {
    max-width: 650px;
  }

  .hero-content > p {
    max-width: 530px;
  }

  .card-rating {
    display: none;
  }

  .proof-strip {
    padding-inline: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 34px;
  }

  .achievement-wall {
    margin-top: 62px;
    padding: 34px 28px;
    border-radius: 28px;
  }

  .achievement-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .achievement-total {
    width: max-content;
  }

  .achievement-stage {
    grid-template-columns: 1fr;
  }

  .achievement-champion {
    min-height: 470px;
  }

  .achievement-champion-copy h4 {
    max-width: 560px;
  }

  .section-head,
  .conversion-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .outlet-grid {
    gap: 18px;
  }

  .outlet-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .conversion-copy {
    max-width: 620px;
  }

  .instructor-section {
    padding: 82px 20px;
  }

  .instructor-stage {
    border-radius: 18px;
  }

  .instructor-toolbar {
    width: 100%;
    gap: 10px;
  }

  .instructor-tab {
    padding-inline: 10px;
    font-size: 11px;
  }

  .testimonial-spotlight {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .testimonial-feature {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
    justify-self: center;
  }

  .testimonial-panel {
    width: 100%;
    padding: 24px 0 0;
    background: transparent;
  }

  .testimonial-panel-copy {
    text-align: center;
  }

  /* Centered horizontal scroller: centered when it fits, no clipping when it overflows. */
  .testimonial-selector {
    display: flex;
    justify-content: safe center;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) rgba(255,255,255,.1);
  }

  .testimonial-selector-item {
    flex: 0 0 auto;
    width: 220px;
    scroll-snap-align: center;
  }

  .testimonial-controls {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .footer-outlets {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 64px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 760px;
  }

  .achievement-wall {
    margin-top: 50px;
    padding: 28px 18px;
    border-radius: 24px;
  }

  .achievement-wall::before {
    display: none;
  }

  .achievement-intro h3 {
    font-size: 32px;
  }

  .achievement-total {
    width: 100%;
    min-width: 0;
  }

  .achievement-champion {
    min-height: 500px;
    padding: 24px;
    border-radius: 24px;
  }

  .achievement-champion-number {
    top: -12px;
    font-size: 120px;
  }

  .achievement-trophy-halo {
    width: 112px;
    height: 112px;
  }

  .achievement-champion-copy h4 {
    font-size: 38px;
  }

  .achievement-podium {
    display: none;
  }

  .achievement-journey {
    grid-template-columns: 1fr;
  }

  .achievement-journey::before {
    left: 38px;
    top: 24px;
    bottom: 24px;
  }

  .achievement-milestone {
    min-height: 132px;
  }

  .hero.hero-image-header {
    min-height: 0;
    padding-top: 84px;
  }

  .hero-photo {
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(3,15,56,.98) 12%, rgba(4,18,62,.88) 60%, rgba(4,18,62,.36)),
      linear-gradient(90deg, rgba(3,15,56,.75), transparent);
  }

  .hero-content {
    width: calc(100% - 34px);
    padding-top: 205px;
  }

  .hero-badge {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-content > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-trust {
    margin-top: 32px;
  }

  .hero-trust p {
    max-width: 220px;
  }

  .hero-floating,
  .scroll-cue {
    display: none;
  }

  .proof-strip {
    padding: 26px 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proof-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .proof-heading h2 {
    font-size: 38px;
  }

  .proof-heading p {
    margin-left: 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip .proof-item {
    min-height: 0;          /* fit content so trailing space is equal across cards */
    padding: 24px;
  }
  .proof-strip .proof-item h3 { margin-top: 22px; }
  .proof-strip .proof-item > p { margin-bottom: 0; }

  .section,
  .why-section,
  .testimonial-section,
  .conversion-section,
  .faq-section {
    padding: 82px 20px;
  }

  .section-head {
    margin-bottom: 38px;
    gap: 22px;
  }

  .section-head h2,
  .why-intro h2,
  .testimonial-heading h2,
  .conversion-copy h2,
  .faq-heading h2 {
    font-size: 38px;
  }

  .program-grid,
  .tutor-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .outlet-card {
    flex-basis: min(100%, 224px);
  }

  .program-art {
    height: 220px;
  }

  .program-body p {
    min-height: 0;
  }

  .benefit-card {
    min-height: 220px;
  }

  .tutor-photo {
    height: 420px;
  }

  .testimonial-heading {
    margin-bottom: 30px;
  }

  .instructor-section {
    padding: 72px 12px;
  }

  .instructor-stage {
    border-radius: 14px;
  }

  .instructor-toolbar {
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
  }

  .instructor-tabs {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    overflow-x: auto;
    padding: 5px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .instructor-tab {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }

  .instructor-arrow:first-child {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .instructor-arrow:last-child {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .testimonial-feature {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }

  .testimonial-panel-copy h3 {
    font-size: 30px;
  }

  .testimonial-selector-item {
    width: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    padding: 24px;
  }

  .footer {
    padding: 0 22px 24px;
  }

  .footer-cta {
    min-height: 0;
    padding: 38px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-cta h2 {
    max-width: 360px;
    font-size: 29px;
  }

  .footer-grid {
    padding: 38px 0 32px;
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

  .footer-brand,
  .footer-outlets {
    grid-column: 1 / -1;
  }

  .footer .instagram-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }
}

@media (max-width: 700px) {
  .footer-poster-frame > img {
    width: 100%;
    min-height: 210px;
    object-fit: cover;
    object-position: 17% center;
  }

  .footer-hotspot {
    display: none;
  }

  .footer-mobile-actions {
    display: grid;
    gap: 18px;
    padding: 22px 18px 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    background:
      radial-gradient(circle at 100% 0, rgba(23,87,205,.28), transparent 40%),
      #020c2c;
  }

  .footer-mobile-consultation {
    min-height: 70px;
    padding: 14px 16px 14px 19px;
    border: 1px solid rgba(53,119,255,.72);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(19,67,175,.66), rgba(4,24,77,.92));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
  }

  .footer-mobile-consultation span,
  .footer-mobile-consultation b,
  .footer-mobile-consultation em {
    display: block;
  }

  .footer-mobile-consultation b {
    font: 800 16px/1.2 "Manrope", sans-serif;
  }

  .footer-mobile-consultation em {
    margin-top: 5px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    font-style: normal;
  }

  .footer-mobile-consultation > svg {
    flex: 0 0 auto;
    width: 43px;
    height: 43px;
    padding: 12px;
    border-radius: 13px;
    background: #ffb518;
    color: #07133b;
  }

  .footer-mobile-outlets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .footer-mobile-outlets a {
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(53,119,255,.34);
    border-radius: 14px;
    background: rgba(15,39,99,.68);
    color: #fff;
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 11px;
  }

  .footer-mobile-outlets svg {
    width: 21px;
    height: 21px;
    color: #ffb518;
  }

  .footer-mobile-outlets span,
  .footer-mobile-outlets b,
  .footer-mobile-outlets em {
    min-width: 0;
    display: block;
  }

  .footer-mobile-outlets b {
    font: 750 13px/1.3 "Manrope", sans-serif;
  }

  .footer-mobile-outlets em {
    margin-top: 3px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    font-style: normal;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive safety: prevent any minor bleed from causing sideways page scroll.
   Inner scrollers (e.g. .testimonial-selector) keep their own overflow-x:auto. */
html, body { overflow-x: hidden; max-width: 100%; }

/* ---------- Login page (e-Learning) ---------- */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px 20px;
}
.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.login-brand img { height: 34px; width: auto; }
.login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(0, 7, 34, .35);
}
.login-card h1 { margin: 0 0 4px; font-size: 24px; color: #0b1b40; }
.login-sub { margin: 0 0 20px; color: #5b6785; font-size: 14px; }
.login-card .custom-fieldset { border: 0; margin: 0; padding: 0; }
.login-card .custom-form-group { margin-bottom: 16px; }
.login-card .custom-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #23324f;
}
.login-card .custom-input,
.login-card .custom-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5ddec;
  border-radius: 12px;
  font-size: 15px;
  background: #fff;
  color: #0b1b40;
}
.login-card .custom-input:focus,
.login-card .custom-select:focus {
  outline: none;
  border-color: #f39a12;
  box-shadow: 0 0 0 3px rgba(243, 154, 18, .2);
}
.login-card .custom-submit {
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #1a1204;
  background: linear-gradient(90deg, #ffb32c, #f28a0f);
  box-shadow: 0 14px 26px rgba(242, 138, 15, .35);
}
.login-card .custom-submit:hover { filter: brightness(1.03); }

/* Loading state on the lead form submit button */
.form-button.is-loading { opacity: .85; cursor: progress; }
.lkp-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  margin-right: 9px;
  vertical-align: -3px;
  border: 2px solid rgba(0, 0, 0, .25);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: lkp-spin .7s linear infinite;
}
@keyframes lkp-spin { to { transform: rotate(360deg); } }

/* ---------- Responsive hardening (safe, global) ---------- */
img, svg, video, iframe { max-width: 100%; }

/* Small phones: keep big display headings from dominating the screen */
@media (max-width: 480px) {
  .section-head h2, .why-intro h2, .testimonial-heading h2,
  .conversion-copy h2, .faq-heading h2 { font-size: 30px; letter-spacing: -.03em; }
  .proof-heading h2 { font-size: 26px; }
  .section, .why-section, .testimonial-section,
  .conversion-section, .faq-section { padding: 60px 16px; }
  .proof-strip { padding-left: 16px; padding-right: 16px; }
}

/* ---------- Testimonial: force-center feature + tidy paging (tablet/mobile) ---------- */
@media (max-width: 900px) {
  .testimonial-spotlight { grid-template-columns: 1fr; gap: 28px; overflow: hidden; }
  .testimonial-spotlight::before { display: none; }
  .testimonial-spotlight .testimonial-feature {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    justify-self: center;
  }
  .testimonial-spotlight .testimonial-feature img { width: 100%; height: auto; }
}

/* ---------- Testimonial: bulletproof stack/center (overrides grid) ---------- */
@media (max-width: 900px) {
  .testimonial-spotlight { display: block !important; }
  .testimonial-spotlight .testimonial-feature {
    display: block !important;
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }
  .testimonial-spotlight .testimonial-feature img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .testimonial-panel { margin-top: 24px; }
}

/* ---------- Konsultasi: stack (form di bawah poster) untuk tablet ---------- */
/* Poster di-crop ke sisi kiri agar form yang tercetak di poster (kanan) tersembunyi;
   form asli diletakkan di bawahnya. */
@media (min-width: 701px) and (max-width: 1024px) {
  .conversion-poster-section { aspect-ratio: auto; overflow: visible; display: block; background: #03164d; }
  .conversion-poster-art { position: relative; inset: auto; height: auto; overflow: visible; }
  .conversion-poster-art img { width: 100%; max-width: 100%; height: auto; object-fit: contain; }
  .conversion-poster-section .conversion-poster-form {
    position: relative;
    top: auto; right: auto;
    width: min(560px, calc(100% - 48px));
    min-height: 0;
    margin: -40px auto 56px;
  }
}

/* Fix: avatar selector photo must not be clamped by the global img{max-width:100%} */
.testimonial-selector-photo img {
  width: 285% !important;
  height: 285% !important;
  max-width: none !important;
}

/* Elementor editor: reveal-on-scroll doesn't trigger there, so show content unhidden */
.elementor-editor-active .reveal,
body.elementor-editor-active .reveal {
  opacity: 1 !important;
  transform: none !important;
}
