:root {
    --bg-1: #0f172a;
    --bg-2: #1e293b;
    --primary: #6366f1;
    --accent: #14b8a6;
    --text-soft: #94a3b8;
    --card: rgba(255,255,255,.82);
}

body {
    background:
        radial-gradient(circle at top left, rgba(99,102,241,.25), transparent 28%),
        radial-gradient(circle at top right, rgba(20,184,166,.18), transparent 25%),
        linear-gradient(135deg, #f8fafc, #eef2ff 45%, #f8fafc);
    min-height: 100vh;
    color: #0f172a;
}

.glass-nav {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.hero {
    padding: 5rem 0 4rem;
}

.hero-card,
.soft-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border-radius: 24px;
}

.hero-badge {
    background: rgba(99,102,241,.12);
    color: #4338ca;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    letter-spacing: -.02em;
}

.step-card {
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 12px 30px rgba(30,41,59,.06);
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(226,232,240,.9);
}

.step-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-card {
    max-width: 880px;
    margin: 3rem auto;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 25px 55px rgba(15,23,42,.1);
}

.form-control, .form-select {
    border-radius: 14px;
    padding: .85rem 1rem;
    border-color: #dbe2ea;
}

.form-control:focus, .form-select:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 .25rem rgba(99,102,241,.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    border: none;
}

.btn-teal {
    background: linear-gradient(135deg, var(--accent), #0f766e);
    color: #fff;
    border: none;
}

.sidebar-card {
    position: sticky;
    top: 90px;
}

.progress-modern {
    height: 14px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.progress-modern > div {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.metric-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1rem;
}

.footer-soft {
    background: rgba(255,255,255,.68);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(226,232,240,.7);
}

.table-soft {
    --bs-table-bg: transparent;
}

.upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 1rem;
    background: #f8fafc;
}

.form-shell {
    max-width: 980px;
    background: rgba(255,255,255,.92);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
    border: 1px solid rgba(203, 213, 225, .8);
}

.register-heading {
    background: linear-gradient(135deg, #0ea5b7, #0f766e);
    color: #fff;
    padding: 1.25rem 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.register-body {
    padding: 1.5rem;
    background: #f8fafc;
}

.register-label {
    font-size: .94rem;
    letter-spacing: .02em;
    color: #334155;
    margin-bottom: .35rem;
}

.register-control {
    border-radius: 8px;
    border-color: #cbd5e1;
    background: #fff;
    min-height: 46px;
}

.register-submit {
    border-radius: 10px;
    font-weight: 600;
    min-height: 46px;
}

@media (max-width: 767px) {
    .hero {
        padding-top: 3.5rem;
    }
    .form-card {
        margin: 1rem;
    }
    .register-heading {
        font-size: 1.5rem;
    }
}


.captcha-wrap {
    margin-top: .15rem;
}

.captcha-refresh {
    color: #2563eb;
    text-decoration: none;
    font-size: 1.05rem;
}

.captcha-refresh:hover {
    text-decoration: underline;
}

.captcha-box {
    min-height: 108px;
    display: flex;
    align-items: center;
}

.captcha-image {
    width: 190px;
    height: 70px;
    border-radius: 4px;
    border: 1px solid #d6d6d6;
    background: #fff;
    cursor: pointer;
    object-fit: cover;
}

.captcha-input {
    max-width: 260px;
    text-transform: none;
}


.login-inline-card {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.login-inline-card .form-control {
    background: rgba(248,250,252,.95);
}


.site-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    padding: 2px;
}

.form-brand-card {
    background: linear-gradient(180deg, rgba(246,251,247,.96), rgba(255,255,255,.94));
    border: 1px solid rgba(20, 83, 45, .16);
    box-shadow: 0 18px 45px rgba(20, 83, 45, .12);
}

.form-brand-top {
    border-bottom: 1px solid rgba(20, 83, 45, .10);
    padding-bottom: .85rem;
}

.form-brand-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto .5rem;
}

.form-brand-name {
    color: #14532d;
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: 1.05rem;
}

.login-inline-card h5 {
    color: #14532d;
    font-weight: 800;
}

.login-inline-card .form-control:focus {
    border-color: #166534;
    box-shadow: 0 0 0 .25rem rgba(22, 101, 52, .12);
}

.hero-card {
    background: linear-gradient(180deg, rgba(239,248,241,.96), rgba(255,255,255,.94));
    border: 1px solid rgba(20, 83, 45, .16);
    box-shadow: 0 18px 45px rgba(20, 83, 45, .12);
}

.hero-card h5,
.hero-card .badge {
    color: #14532d;
}

.hero-card .badge {
    background: rgba(20, 83, 45, .10) !important;
    border: 1px solid rgba(20, 83, 45, .12);
}

.metric-pill {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(20, 83, 45, .14);
}


/* Landing page redesign */
.landing-page-body {
    background: linear-gradient(180deg, #f8fbf5 0%, #eff6ef 100%);
    color: #16311d;
}
.landing-nav {
    background: linear-gradient(180deg, #0f5e39 0%, #0b472d 100%);
    border-bottom: 4px solid rgba(255,255,255,.75);
    box-shadow: 0 10px 30px rgba(8, 49, 30, .16);
}
.landing-nav-wrap { min-height: 78px; }
.landing-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
}
.landing-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.18));
}
.landing-brand span { display:block; line-height:1.05; }
.landing-brand strong {
    display:block;
    font-size: 2rem;
    letter-spacing: -.03em;
    color: #fff;
}
.landing-brand small {
    display:block;
    color: rgba(255,255,255,.85);
    font-size: .98rem;
    margin-top: 2px;
}
.landing-menu { gap: 1.1rem; }
.landing-menu .nav-link {
    color: rgba(255,255,255,.92);
    font-weight: 600;
    padding: .4rem .1rem;
}
.landing-menu .nav-link:hover { color: #ffe082; }
.landing-login-btn {
    border: none;
    background: linear-gradient(180deg, #ffd54f, #f4b400);
    color: #263238;
    font-weight: 700;
    border-radius: 12px;
    padding: .85rem 1.7rem;
    box-shadow: 0 10px 20px rgba(244,180,0,.25);
}
.landing-hero-section { padding: 1.25rem 0 2rem; }
.landing-hero-shell {
    background:
      radial-gradient(circle at 18% 20%, rgba(255,255,255,.12), transparent 24%),
      radial-gradient(circle at 80% 16%, rgba(255,255,255,.45), transparent 18%),
      linear-gradient(90deg, #145b34 0%, #2d8f53 35%, #b7e6ef 100%);
    border-radius: 0 0 22px 22px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 6px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 30px rgba(12, 71, 42, .12);
}
.landing-hero-shell::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    top: 0;
    height: 10px;
    background: rgba(255,255,255,.95);
    border-radius: 0 0 50% 50%;
}
.landing-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    color: #f4ffea;
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.landing-hero-copy h1 {
    font-size: clamp(2.8rem, 4vw, 4.6rem);
    line-height: 1.07;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #fff;
    max-width: 700px;
}
.landing-hero-copy h1 span { color: #ffe17a; }
.landing-hero-copy p {
    font-size: 1.55rem;
    line-height: 1.45;
    color: rgba(255,255,255,.94);
    max-width: 700px;
}
.landing-cta-primary,
.landing-cta-secondary {
    border-radius: 14px;
    padding: 1rem 1.75rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.landing-cta-primary {
    background: linear-gradient(180deg, #2da948, #1b7f32);
    color: #fff;
    box-shadow: 0 14px 24px rgba(27,127,50,.22);
}
.landing-cta-secondary {
    background: #fff;
    color: #20313a;
    border: 1px solid rgba(0,0,0,.12);
}
.landing-hero-art {
    position: relative;
    min-height: 460px;
}
.sky-cloud {
    position: absolute;
    background: rgba(255,255,255,.75);
    border-radius: 40px;
    filter: blur(.2px);
}
.sky-cloud::before, .sky-cloud::after {
    content:''; position:absolute; background: inherit; border-radius:50%;
}
.cloud-one { width: 110px; height: 34px; top: 50px; right: 90px; }
.cloud-one::before { width: 42px; height: 42px; left: 14px; top: -18px; }
.cloud-one::after { width: 54px; height: 54px; right: 12px; top: -22px; }
.cloud-two { width: 90px; height: 28px; top: 85px; right: 10px; }
.cloud-two::before { width: 34px; height: 34px; left: 10px; top: -14px; }
.cloud-two::after { width: 42px; height: 42px; right: 9px; top: -18px; }
.paper-plane {
    position: absolute;
    top: 20px;
    left: 58%;
    font-size: 2.4rem;
    color: rgba(255,255,255,.92);
    transform: rotate(-18deg);
}
.school-illustration {
    position: absolute;
    left: 10%;
    bottom: 26px;
    width: 310px;
    height: 260px;
}
.school-roof {
    position: absolute;
    left: 72px;
    top: 78px;
    width: 166px;
    height: 50px;
    background: #c3934c;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.school-body {
    position: absolute;
    left: 44px;
    bottom: 0;
    width: 226px;
    height: 168px;
    background: linear-gradient(180deg, #f3f2d4, #e3e2b7);
    border-radius: 14px 14px 8px 8px;
    border: 5px solid #d4cf92;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 24px 18px 22px;
}
.school-window { background: #8abb68; border-radius: 8px; height: 38px; display:block; }
.school-door {
    position: absolute;
    width: 52px; height: 82px;
    left: calc(50% - 26px);
    bottom: 0;
    background: #2c8b46;
    border-radius: 28px 28px 0 0;
}
.school-moon {
    position: absolute; width: 22px; height: 22px; border-radius:50%;
    right: 22px; top: 64px; background:#ffe169; box-shadow:-7px 0 0 0 #2b8b4a;
}
.student-group {
    position: absolute;
    right: 2%;
    bottom: 10px;
    width: 320px;
    height: 360px;
}
.student-boy, .student-girl { position:absolute; bottom:0; }
.student-boy { right: 120px; width: 135px; height: 310px; }
.student-boy .head, .student-girl .head {
    position:absolute; width: 94px; height: 94px; border-radius: 50%; background:#ffd1ae; top: 0; left: 18px; z-index:3;
    box-shadow: inset 0 -8px 0 rgba(0,0,0,.06);
}
.student-boy .head::before {
    content:''; position:absolute; inset:0; border-radius:50%; background: linear-gradient(180deg, #2f241b 0 40%, transparent 41%);
}
.student-boy .head::after {
    content:''; position:absolute; left:6px; right:6px; top:-12px; height:32px; border-radius: 40px 40px 10px 10px; border: 8px solid #f2f2ec; border-bottom: 0;
}
.student-boy .body {
    position:absolute; left: 16px; top: 78px; width: 102px; height: 165px; background:#fff; border-radius: 24px 24px 16px 16px;
}
.student-boy .body::before { content:''; position:absolute; left: 28px; bottom:-74px; width: 22px; height: 82px; background:#315f1f; }
.student-boy .body::after { content:''; position:absolute; right: 28px; bottom:-74px; width: 22px; height: 82px; background:#315f1f; }
.student-boy .tie { position:absolute; left: 52px; top: 104px; width: 18px; height: 92px; background:#3aa34b; clip-path: polygon(50% 0, 100% 20%, 70% 100%, 30% 100%, 0 20%); }
.student-boy .book-stack { position:absolute; left:-18px; bottom:8px; width:90px; height:66px; background: linear-gradient(180deg, #a5702a, #d79642); border-radius: 8px; box-shadow: 0 18px 0 #3e6935, 12px 34px 0 #f1d375; }
.student-girl { right: 0; width: 150px; height: 326px; }
.student-girl .head { left: 28px; top: 6px; }
.student-girl .hijab {
    position:absolute; left: 6px; top: -4px; width: 138px; height: 180px; background:#f8f8f1; border-radius: 70px 70px 36px 36px; z-index:2;
}
.student-girl .body {
    position:absolute; left: 28px; top: 112px; width: 88px; height: 150px; background:#fff; border-radius: 24px 24px 20px 20px; z-index:1;
}
.student-girl .body::before { content:''; position:absolute; left: 10px; bottom:-86px; width: 70px; height: 96px; background:#3d8e37; border-radius: 22px 22px 10px 10px; }
.student-girl .book {
    position:absolute; right: 12px; top: 154px; width: 86px; height: 62px; background:#2c7b2c; border-radius: 10px; transform: rotate(10deg); box-shadow: inset -4px 0 0 rgba(255,255,255,.3);
}
.landing-section { position: relative; }
.section-heading-row {
    display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.section-heading-row h2 {
    margin:0; font-size: 2.1rem; font-weight: 800; color:#213324;
}
.section-heading-row a { color:#5b8d33; text-decoration:none; font-weight:700; }
.landing-info-card, .landing-video-card, .landing-announcement-card, .landing-timeline-card, .landing-contact-card {
    background:#fff; border-radius: 20px; box-shadow: 0 18px 36px rgba(25, 59, 34, .09); border: 1px solid rgba(12,90,40,.08);
}
.landing-info-card { padding: 1.6rem; height:100%; }
.landing-info-icon {
    width: 92px; height: 92px; margin-bottom: 1rem; border-radius: 22px; display:flex; align-items:center; justify-content:center;
    background: linear-gradient(180deg, #f2fbf1, #dbeedd); color:#1d7b39; font-size:2.6rem;
}
.landing-info-card h5 { font-size: 1.65rem; font-weight: 800; color:#1f5e33; }
.landing-info-card p { margin:0; color:#4f5f57; font-size: 1.1rem; }
.landing-video-card { padding: 1rem; overflow:hidden; }
.landing-video-scene {
    position:relative; min-height: 290px; border-radius: 16px;
    background: linear-gradient(180deg, #f6f5e8, #d3e2b5 55%, #88a865 100%);
    display:flex; align-items:center; justify-content:center;
}
.landing-video-scene img {
    width: 72%; max-width: 260px; opacity:.95; filter: drop-shadow(0 18px 28px rgba(0,0,0,.15));
}
.landing-play-btn {
    position:absolute; width: 88px; height: 88px; border:none; border-radius:50%;
    background: rgba(27,34,34,.72); color:#fff; font-size:2.3rem; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.landing-video-footer {
    display:flex; align-items:center; gap:.6rem; padding:.9rem .4rem .2rem; color:#fff; font-weight:700; font-size:1.25rem;
    background: linear-gradient(180deg, transparent, rgba(9, 52, 22, 0.75)); margin-top:-52px; position:relative; z-index:2; border-radius:0 0 16px 16px;
}
.landing-announcement-card, .landing-timeline-card { padding: 1.5rem; }
.landing-announcement-item {
    display:flex; gap:1rem; align-items:flex-start; padding:1rem 1.1rem; background:#fbfdf8; border:1px solid #edf3e6; border-radius: 16px;
}
.announcement-dot { width:10px; height:10px; border-radius:50%; background:#2b8c41; margin-top:.35rem; flex-shrink:0; }
.landing-announcement-item strong { display:block; color:#213324; }
.landing-announcement-item small { color:#7b8d7f; }
.landing-timeline-card p { color:#5b6a5d; }
.landing-step-box {
    padding: 1.3rem; border-radius: 18px; background:#f8fcf4; border:1px solid #e4eddc; height:100%;
}
.landing-step-box span {
    display:inline-flex; width:42px; height:42px; align-items:center; justify-content:center; border-radius:14px; background:linear-gradient(180deg,#2f9e4e,#1f7b39); color:#fff; font-weight:800; margin-bottom:1rem;
}
.landing-step-box strong { display:block; color:#21402a; font-size:1.05rem; }
.landing-contact-card {
    padding: 1.8rem 2rem; display:flex; justify-content:space-between; gap:1rem; align-items:center;
    background: linear-gradient(135deg, #0f5e39, #2d8f53); color:#fff;
}
.landing-contact-card h3 { margin:0 0 .45rem; font-size: 2rem; }
.landing-contact-card p { margin:0; color: rgba(255,255,255,.88); max-width: 760px; }
.landing-contact-actions { display:flex; gap:.85rem; flex-wrap:wrap; }
.landing-footer { padding: 2rem 0 2.4rem; color:#5e6d60; }
.navbar-toggler { border-color: rgba(255,255,255,.35); }
.navbar-toggler-icon { filter: invert(1); }

@media (max-width: 1199px) {
  .landing-brand strong { font-size: 1.65rem; }
  .landing-hero-shell { padding: 2.4rem; }
  .landing-hero-copy h1 { font-size: 3.3rem; }
  .landing-hero-copy p { font-size: 1.3rem; }
}
@media (max-width: 991px) {
  .landing-nav-wrap { min-height: 72px; }
  .landing-brand-logo { width: 52px; height: 52px; }
  .landing-brand strong { font-size: 1.35rem; }
  .landing-brand small { font-size: .85rem; }
  .landing-menu { gap: .2rem; padding-top: 1rem; }
  .landing-hero-shell { border-radius: 0 0 18px 18px; }
  .landing-hero-art { min-height: 360px; }
  .student-group { transform: scale(.84); transform-origin: bottom right; }
  .landing-contact-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  .landing-hero-shell { padding: 2rem 1.2rem; }
  .landing-pill { font-size: .88rem; }
  .landing-hero-copy h1 { font-size: 2.35rem; }
  .landing-hero-copy p { font-size: 1.05rem; }
  .landing-cta-primary, .landing-cta-secondary { width: 100%; text-align:center; font-size: 1rem; }
  .landing-hero-art { min-height: 300px; }
  .school-illustration { left: 0; transform: scale(.7); transform-origin: bottom left; }
  .student-group { right: -8px; transform: scale(.63); }
  .section-heading-row h2 { font-size: 1.6rem; }
  .landing-info-card h5 { font-size: 1.3rem; }
  .landing-video-scene { min-height: 220px; }
}


.landing-hero-art-photo {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.landing-hero-photo-stage {
    position: relative;
    width: min(100%, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px 0;
}
.landing-hero-photo-glow {
    position: absolute;
    inset: 8% 6% 10%;
    background:
      radial-gradient(circle at 40% 40%, rgba(255,255,255,.32), transparent 34%),
      radial-gradient(circle at 68% 52%, rgba(255,255,255,.22), transparent 30%),
      radial-gradient(circle at 52% 70%, rgba(44,143,83,.24), transparent 35%);
    filter: blur(42px);
    z-index: 0;
}
.landing-hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 34px;
    box-shadow:
      0 28px 50px rgba(7, 54, 28, .22),
      0 0 0 1px rgba(255,255,255,.18);
    mix-blend-mode: multiply;
    opacity: .97;
    -webkit-mask-image: radial-gradient(circle at center, #000 72%, transparent 100%);
    mask-image: radial-gradient(circle at center, #000 72%, transparent 100%);
}
.landing-hero-photo-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0));
    z-index: 0;
}
@media (max-width: 991.98px) {
    .landing-hero-art-photo {
        min-height: auto;
        margin-top: 8px;
    }
    .landing-hero-photo-stage {
        width: 100%;
        padding: 6px 0 0;
    }
    .landing-hero-photo {
        max-width: 100%;
        border-radius: 26px;
        -webkit-mask-image: none;
        mask-image: none;
    }
}


/* v51 integrated landing full-page panel */
.landing-page-body {
    background: linear-gradient(180deg, #f4f7f1 0%, #eef4ee 100%);
}
.landing-panel-section {
    margin-top: -1rem;
}
.landing-main-panel {
    background: #fff;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 20px 36px rgba(18, 63, 36, .10);
    border: 1px solid rgba(12,90,40,.08);
    border-top: none;
    padding: 2rem;
}
.landing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 73, 39, .16), transparent);
    margin: 1.6rem 0;
}
.landing-info-card.compact,
.landing-video-card.compact {
    box-shadow: 0 10px 22px rgba(22, 55, 30, .08);
    border-radius: 16px;
}
.landing-info-card.compact {
    min-height: 100%;
}
.landing-video-card.compact {
    padding: .9rem;
}
.landing-video-poster {
    min-height: 250px;
    background: linear-gradient(180deg, #d7f0d8, #f0f7ea);
    overflow: hidden;
}
.landing-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .96;
}
.landing-announcement-card.integrated {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}
.landing-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.landing-mini-contact h3 {
    margin: 0 0 .35rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #21402a;
}
.landing-mini-contact p {
    margin: 0;
    color: #5b6a5d;
    max-width: 720px;
}
@media (max-width: 991px) {
    .landing-main-panel {
        padding: 1.4rem;
        border-radius: 0 0 22px 22px;
    }
}
@media (max-width: 767px) {
    .landing-main-panel {
        padding: 1rem;
    }
    .landing-panel-section {
        margin-top: -.5rem;
    }
    .landing-bottom-row {
        align-items: flex-start;
    }
}


/* v52 fine-tuned full-page landing */
.landing-main{overflow:hidden;}
.landing-page-frame{max-width:1400px;padding-left:28px;padding-right:28px;}
.landing-nav{border-bottom:0;position:sticky;top:0;z-index:1030;}
.landing-nav::after{content:"";position:absolute;left:0;right:0;bottom:-10px;height:16px;background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,0));pointer-events:none;}
.landing-nav-wrap{min-height:86px;}
.landing-brand-logo{width:58px;height:58px;}
.landing-brand strong{font-size:2.35rem;letter-spacing:-.04em;}
.landing-brand small{font-size:1rem;}
.landing-menu .nav-link{font-size:1.12rem;position:relative;}
.landing-menu .nav-link + .nav-link{}
.landing-menu .nav-item{position:relative;padding:0 .25rem;}
.landing-menu .nav-item:not(:last-child)::after{content:"";position:absolute;right:-.35rem;top:50%;width:1px;height:22px;background:rgba(255,255,255,.22);transform:translateY(-50%);}
.landing-login-btn{border-radius:10px;padding:.95rem 2rem;font-size:1.1rem;min-width:96px;}
.landing-hero-section{padding:1.1rem 0 0;}
.landing-hero-shell{border-radius:0 0 30px 30px;padding:2.8rem 3rem 1.6rem;box-shadow:0 18px 36px rgba(8,53,31,.14);}
.landing-hero-shell::before{content:"";position:absolute;left:-3%;right:-3%;top:-22px;height:34px;border-bottom:6px solid rgba(255,255,255,.9);border-radius:0 0 50% 50%;}
.landing-hero-shell::after{top:0;height:12px;}
.landing-hero-copy h1{font-size:clamp(3.4rem,4.8vw,5.5rem);line-height:1.02;max-width:620px;margin-bottom:1.1rem;}
.landing-hero-copy p{font-size:1.14rem;max-width:620px;line-height:1.5;}
.landing-pill{font-size:1.02rem;padding:.7rem 1.15rem;background:rgba(255,255,255,.18);}
.landing-cta-primary,.landing-cta-secondary{font-size:1.02rem;padding:1rem 1.9rem;border-radius:12px;}
.landing-hero-art-photo{min-height:430px;}
.landing-hero-photo-stage{width:100%;max-width:560px;padding:10px 0 0;}
.landing-hero-photo-glow{inset:8% 10% 12%;filter:blur(34px);}
.landing-hero-photo{max-width:520px;border-radius:0;box-shadow:none;mix-blend-mode:normal;opacity:1;-webkit-mask-image:none;mask-image:none;filter:drop-shadow(0 18px 26px rgba(0,0,0,.10));}
.landing-hero-photo-stage::before{display:none;}
.landing-panel-section{margin-top:0;padding-top:0;}
.landing-main-panel{border-radius:0 0 30px 30px;padding:1.6rem 2rem 2rem;box-shadow:0 22px 36px rgba(16,55,34,.10);}
.landing-main-panel .row.g-4{--bs-gutter-x:1.25rem;--bs-gutter-y:1.25rem;}
.section-heading-row h2{font-size:1.45rem;white-space:nowrap;}
.section-heading-row{margin-bottom:.75rem;}
.landing-info-card.compact,.landing-video-card.compact{background:#fff;border-radius:12px;box-shadow:0 8px 20px rgba(12,47,25,.08);}
.landing-info-card.compact{padding:1.15rem .95rem 1rem;text-align:center;min-height:192px;}
.landing-info-icon{width:86px;height:62px;border-radius:18px;margin:0 auto .85rem;background:radial-gradient(circle at 50% 40%, #eef6ea 0%, #eff5ec 45%, #dcead7 100%);font-size:2.3rem;}
.landing-info-card h5{font-size:1rem;margin-bottom:.45rem;}
.landing-info-card p{font-size:.88rem;line-height:1.35;}
.landing-video-card.compact{padding:.75rem;overflow:hidden;}
.landing-video-poster{min-height:255px;border-radius:8px;background:linear-gradient(180deg,#efe8cc,#dce7d0);}
.landing-video-footer{margin-top:-48px;font-size:1.05rem;padding:.75rem .55rem .1rem;border-radius:0 0 10px 10px;}
.landing-announcement-item{padding:.7rem .9rem;border-radius:10px;min-height:56px;align-items:center;}
.landing-announcement-item strong{font-size:.95rem;}
.landing-announcement-item small{font-size:.82rem;}
.landing-divider{margin:1.2rem 0;}
.landing-bottom-row{padding-top:.1rem;}
.landing-mini-contact h3{font-size:1.15rem;}
.landing-mini-contact p{font-size:.96rem;}
.landing-footer{padding:1.2rem 0 2rem;}
@media (min-width:1200px){.landing-info-grid>.col-xl-3{width:25%;}.landing-hero-copy{padding-right:1rem;}}
@media (max-width:1199px){.landing-page-frame{padding-left:18px;padding-right:18px;}.landing-brand strong{font-size:1.95rem;}.landing-hero-copy h1{font-size:clamp(2.8rem,5vw,4.4rem);} }
@media (max-width:991px){.landing-nav-wrap{min-height:76px;}.landing-nav::after{display:none;}.landing-menu .nav-item:not(:last-child)::after{display:none;}.landing-brand strong{font-size:1.5rem;}.landing-brand-logo{width:50px;height:50px;}.landing-hero-shell{padding:2rem 1.35rem 1.25rem;border-radius:0 0 22px 22px;}.landing-hero-shell::before{display:none;}.landing-hero-copy p{max-width:none;}.landing-hero-art-photo{min-height:260px;}.landing-hero-photo{max-width:380px;}.landing-main-panel{padding:1.15rem 1.1rem 1.4rem;border-radius:0 0 22px 22px;}}
@media (max-width:767px){.landing-page-frame{padding-left:12px;padding-right:12px;}.landing-nav-wrap{min-height:70px;}.landing-brand span small{display:none;}.landing-brand strong{font-size:1.15rem;}.landing-hero-shell{padding:1.35rem 1rem 1rem;}.landing-pill{font-size:.8rem;padding:.55rem .9rem;}.landing-hero-copy h1{font-size:2.3rem;}.landing-hero-copy p{font-size:.98rem;}.landing-hero-art-photo{min-height:220px;}.landing-hero-photo{max-width:100%;}.section-heading-row h2{font-size:1.15rem;white-space:normal;}.landing-info-card.compact{min-height:170px;} }


/* v53 truly full-width landing */
body.landing-page-body{background:linear-gradient(180deg,#f4f7f2 0%,#eef5ef 100%);}
.landing-page-frame{max-width:none !important;width:100%;padding-left:18px;padding-right:18px;}
.landing-nav{box-shadow:0 2px 0 rgba(255,255,255,.35) inset;}
.landing-nav-wrap{max-width:none;min-height:88px;}
.landing-hero-section{padding:0;}
.landing-hero-shell{width:100%;border-radius:0 0 34px 34px;padding:2rem 3.2rem 1.2rem;min-height:680px;display:flex;align-items:center;}
.landing-hero-shell .row{width:100%;align-items:stretch !important;}
.landing-hero-copy{display:flex;flex-direction:column;justify-content:center;height:100%;padding-right:2rem;}
.landing-hero-copy h1{font-size:clamp(4.2rem,5vw,6.2rem);max-width:700px;}
.landing-hero-copy p{max-width:640px;font-size:1.22rem;}
.landing-hero-art-photo{min-height:520px;display:flex;align-items:flex-end;justify-content:center;}
.landing-hero-photo-stage{max-width:700px;padding:0;display:flex;align-items:flex-end;justify-content:center;}
.landing-hero-photo{max-width:100%;width:640px;filter:drop-shadow(0 26px 34px rgba(0,0,0,.14));}
.landing-main-panel{margin-top:-4px;border-radius:0 0 34px 34px;padding:1.75rem 2.25rem 2rem;}
.landing-panel-section{padding-top:0;margin-top:0;}
.landing-info-card.compact{min-height:205px;}
.landing-video-card.compact{height:100%;}
.landing-video-poster{min-height:290px;}
.landing-announcement-card.integrated{padding-top:.2rem;}
@media (min-width:1600px){.landing-page-frame{padding-left:28px;padding-right:28px;} .landing-hero-shell{min-height:730px;} .landing-hero-photo{width:700px;}}
@media (max-width:1199px){.landing-page-frame{padding-left:14px;padding-right:14px;} .landing-hero-shell{min-height:unset;padding:1.8rem 2rem 1rem;} .landing-hero-copy h1{font-size:clamp(3.2rem,5vw,4.8rem);} .landing-hero-photo{width:520px;}}
@media (max-width:991px){.landing-hero-shell{border-radius:0 0 24px 24px;padding:1.6rem 1.2rem 1rem;} .landing-hero-art-photo{min-height:320px;} .landing-hero-copy{padding-right:0;} .landing-main-panel{border-radius:0 0 24px 24px;padding:1.15rem 1rem 1.3rem;}}
@media (max-width:767px){.landing-page-frame{padding-left:8px;padding-right:8px;} .landing-hero-shell{padding:1.25rem .9rem .9rem;border-radius:0 0 18px 18px;} .landing-hero-copy h1{font-size:2.5rem;} .landing-hero-copy p{font-size:1rem;} .landing-hero-art-photo{min-height:220px;} .landing-main-panel{border-radius:0 0 18px 18px;} }


/* v54 landing premium cleanup */

.landing-hero-shell{overflow:hidden;position:relative;}
.landing-hero-art-photo{position:relative;min-height:560px;display:flex;align-items:center;justify-content:center;}
.landing-hero-photo-stage{position:relative;max-width:760px;width:100%;display:flex;align-items:center;justify-content:center;background:transparent;padding:0;}
.landing-hero-photo-stage::before{content:"";position:absolute;inset:4% 2% 8%;background:radial-gradient(circle at 50% 45%, rgba(255,255,255,.26) 0%, rgba(255,255,255,.10) 28%, rgba(173, 232, 216, .16) 48%, rgba(0,0,0,0) 72%);filter:blur(24px);z-index:0;display:block;}
.landing-hero-photo-glow{display:none;}
.landing-hero-photo{position:relative;z-index:1;width:min(760px,100%);max-width:760px;height:auto;border-radius:0;box-shadow:none;mix-blend-mode:multiply;opacity:.98;filter:saturate(1.02) contrast(1.01) drop-shadow(0 18px 26px rgba(8,42,30,.10));-webkit-mask-image:radial-gradient(circle at 52% 46%, rgba(0,0,0,1) 48%, rgba(0,0,0,.96) 60%, rgba(0,0,0,.82) 74%, rgba(0,0,0,.55) 84%, transparent 100%);mask-image:radial-gradient(circle at 52% 46%, rgba(0,0,0,1) 48%, rgba(0,0,0,.96) 60%, rgba(0,0,0,.82) 74%, rgba(0,0,0,.55) 84%, transparent 100%);}
.landing-main-panel{margin-top:0;border-radius:0 0 34px 34px;padding:1.75rem 2.25rem 2rem;}
.landing-panel-section{padding-top:0;margin-top:0;}
.landing-info-grid .landing-info-card.compact{min-height:198px;}
.landing-divider:first-of-type{display:none;}
@media (min-width:1200px){
  .landing-hero-shell{min-height:760px;padding:2.1rem 3.2rem 1.2rem;}
  .landing-hero-copy h1{max-width:760px;}
  .landing-hero-copy p{max-width:650px;}
}
@media (max-width:1199px){
  .landing-hero-art-photo{min-height:420px;}
  .landing-hero-photo{width:min(560px,100%);max-width:560px;}
}
@media (max-width:991px){
  .landing-hero-art-photo{min-height:300px;}
  .landing-hero-photo{-webkit-mask-image:none;mask-image:none;mix-blend-mode:normal;filter:drop-shadow(0 10px 20px rgba(8,42,30,.18));}
}


/* v55 landing premium blend fix */
.landing-hero-shell{
  position:relative;
  min-height:700px;
  overflow:hidden;
}
.landing-hero-shell::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 78% 42%, rgba(255,255,255,.14), transparent 24%), radial-gradient(circle at 86% 60%, rgba(255,255,255,.08), transparent 30%);
  pointer-events:none;
}
.landing-hero-art-photo{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.landing-hero-photo-stage{
  position:relative;
  width:100%;
  min-height:520px;
}
.landing-hero-photo-stage::before,
.landing-hero-photo-stage::after{content:none !important;display:none !important;}
.landing-hero-photo-glow{display:none !important;}
.landing-hero-photo-blend{
  position:absolute;
  inset:0;
  background-image: var(--hero-photo);
  background-repeat:no-repeat;
  background-position:center 54%;
  background-size:min(96%, 740px) auto;
  mix-blend-mode:multiply;
  opacity:.98;
  filter:saturate(1.03) contrast(1.01) drop-shadow(0 18px 26px rgba(8,42,30,.10));
  -webkit-mask-image: radial-gradient(circle at 58% 50%, rgba(0,0,0,1) 34%, rgba(0,0,0,.98) 47%, rgba(0,0,0,.92) 58%, rgba(0,0,0,.75) 70%, rgba(0,0,0,.45) 82%, transparent 100%);
  mask-image: radial-gradient(circle at 58% 50%, rgba(0,0,0,1) 34%, rgba(0,0,0,.98) 47%, rgba(0,0,0,.92) 58%, rgba(0,0,0,.75) 70%, rgba(0,0,0,.45) 82%, transparent 100%);
}
.landing-hero-copy{
  position:relative;
  z-index:2;
  padding-right:1rem;
}
.landing-main-panel{
  margin-top:0;
  border-radius:0 0 34px 34px;
  padding:1.5rem 1.8rem 2rem;
  box-shadow:none;
}
@media (max-width:1199px){
  .landing-hero-shell{min-height:620px;}
  .landing-hero-photo-stage{min-height:430px;}
  .landing-hero-photo-blend{background-size:min(100%,560px) auto;}
}
@media (max-width:991px){
  .landing-hero-shell{min-height:auto;}
  .landing-hero-art-photo{min-height:300px;}
  .landing-hero-photo-stage{min-height:300px;}
  .landing-hero-photo-blend{background-position:center center;background-size:min(100%,500px) auto;}
}
@media (max-width:767px){
  .landing-hero-art-photo{min-height:220px;}
  .landing-hero-photo-stage{min-height:220px;}
  .landing-hero-photo-blend{background-size:100% auto; -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 46%, rgba(0,0,0,.85) 70%, transparent 100%); mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 46%, rgba(0,0,0,.85) 70%, transparent 100%);} 
}


/* v56 landing login card */
.landing-hero-shell{align-items:stretch;}
.landing-hero-copy{padding-right:1.5rem;}
.landing-hero-login-card{
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-radius:28px;
    padding:26px 24px;
    box-shadow:0 24px 60px rgba(7,46,28,.22);
    max-width:520px;
    margin-left:auto;
    position:relative;
    overflow:hidden;
}
.landing-hero-login-card::before{
    content:"";
    position:absolute;
    inset:-30% auto auto -15%;
    width:220px;height:220px;
    background:radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0));
    pointer-events:none;
}
.landing-hero-login-head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:14px;position:relative;z-index:1;}
.landing-hero-login-brand{display:flex;align-items:center;gap:14px;}
.landing-hero-login-brand img{width:54px;height:54px;object-fit:contain;border-radius:50%;background:rgba(255,255,255,.92);padding:5px;box-shadow:0 8px 18px rgba(0,0,0,.14);}
.landing-hero-login-brand h3{margin:0;font-size:1.65rem;font-weight:800;color:#fff;}
.landing-hero-login-brand p{margin:2px 0 0;font-size:.96rem;line-height:1.4;color:rgba(255,255,255,.85);max-width:280px;}
.landing-hero-login-form{position:relative;z-index:1;display:grid;gap:12px;}
.landing-hero-login-form label{font-size:.92rem;font-weight:700;color:rgba(255,255,255,.96);}
.landing-hero-login-form .form-control{
    min-height:56px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.4);
    background:rgba(255,255,255,.88);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.5);
    padding:.95rem 1rem;
    font-size:1rem;
}
.landing-hero-login-form .form-control:focus{
    border-color:#ffd44f;
    box-shadow:0 0 0 .2rem rgba(255,212,79,.18);
    background:#fff;
}
.landing-hero-login-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px;}
.landing-login-submit{
    background:linear-gradient(135deg,#ffd84f,#efbd15);
    color:#113b24;
    border:none;
    font-weight:800;
    border-radius:16px;
    padding:14px 22px;
    min-width:155px;
    box-shadow:0 12px 24px rgba(239,189,21,.26);
}
.landing-login-submit:hover{background:linear-gradient(135deg,#ffe37f,#f2c62d);color:#0f3e26;}
.landing-login-alt{
    background:rgba(255,255,255,.15);
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
    border-radius:16px;
    padding:14px 22px;
    font-weight:700;
}
.landing-login-alt:hover{background:rgba(255,255,255,.25);color:#fff;}
@media (max-width: 991px){
  .landing-hero-copy{padding-right:0;}
  .landing-hero-login-card{max-width:none;margin:0;}
}
@media (max-width: 575px){
  .landing-hero-login-card{padding:18px 16px;border-radius:22px;}
  .landing-hero-login-brand{align-items:flex-start;}
  .landing-hero-login-brand img{width:46px;height:46px;}
  .landing-hero-login-brand h3{font-size:1.35rem;}
  .landing-hero-login-actions>*{width:100%;}
}


/* v57 login card vertical center tweak */
.landing-hero-shell .row{align-items:center !important;}
.landing-hero-login-col{display:flex;align-items:center;justify-content:center;}
.landing-hero-login-card{margin:42px 0 0 auto;}
@media (max-width:991px){.landing-hero-login-col{display:block;}.landing-hero-login-card{margin:18px 0 0;}}

/* v58 syarat section */
html{scroll-behavior:smooth;}
.landing-info-link{text-decoration:none;color:inherit;display:block;}
.landing-info-link:hover{text-decoration:none;color:inherit;}
.landing-requirements-section{
  padding:2rem 0 1rem;
}
.landing-section-badge{
  display:inline-block;
  background:#e3f2e5;
  color:#156039;
  padding:.45rem .85rem;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  margin-bottom:.65rem;
}
.landing-requirements-section .section-heading-row p{margin:.35rem 0 0;color:#58705f;max-width:760px;}
.landing-requirements-actions{display:flex;gap:.75rem;flex-wrap:wrap;}
.landing-req-outline{border:1px solid #9ccfac !important;background:#fff !important;color:#166534 !important;}
.landing-requirements-grid{display:grid;grid-template-columns:1.1fr 1.1fr .9fr;gap:1rem;margin-top:1rem;}
.landing-requirement-card{
  background:#fff;
  border:1px solid #e8efe9;
  border-radius:22px;
  padding:1.35rem;
  box-shadow:0 12px 28px rgba(12,58,31,.06);
}
.landing-requirement-card h3{margin:0 0 1rem;color:#163825;font-size:1.25rem;font-weight:800;}
.landing-requirement-card.highlight{background:linear-gradient(180deg,#0f6a37 0%,#157842 100%);color:#fff;}
.landing-requirement-card.highlight h3{color:#fff;}
.landing-requirement-card.highlight ul{padding-left:1.15rem;margin:0;}
.landing-requirement-card.highlight li{margin-bottom:.8rem;line-height:1.5;}
.landing-accordion-item{border:1px solid #e6efe8;border-radius:16px;background:#fbfdfb;overflow:hidden;margin-bottom:.8rem;}
.landing-accordion-btn{width:100%;border:none;background:#fff;padding:1rem 1.05rem;display:flex;justify-content:space-between;align-items:center;font-weight:700;color:#173a28;text-align:left;cursor:pointer;}
.landing-accordion-content{display:none;padding:0 1.05rem 1rem;color:#526658;line-height:1.55;background:#fbfdfb;}
.landing-accordion-item.active .landing-accordion-content{display:block;}
.landing-req-modal{position:fixed;inset:0;background:rgba(9,24,15,.45);display:none;align-items:center;justify-content:center;z-index:9999;padding:20px;}
.landing-req-modal.show{display:flex;}
.landing-req-modal-box{width:100%;max-width:560px;background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.2);}
.landing-req-modal-header,.landing-req-modal-footer{padding:1rem 1.2rem;border-bottom:1px solid #edf1ee;display:flex;justify-content:space-between;align-items:center;}
.landing-req-modal-footer{border-top:1px solid #edf1ee;border-bottom:none;justify-content:flex-end;}
.landing-req-modal-header h3{margin:0;color:#123524;font-size:1.2rem;font-weight:800;}
.landing-req-close{background:none;border:none;font-size:1.8rem;line-height:1;cursor:pointer;color:#506456;}
.landing-req-modal-body{padding:1.2rem;color:#425648;line-height:1.65;}
.landing-req-modal-body ol{margin:0;padding-left:1.2rem;}
.landing-req-modal-body li{margin-bottom:.6rem;}
@media (max-width: 1100px){.landing-requirements-grid{grid-template-columns:1fr;}}
@media (max-width: 767px){.landing-requirements-actions{width:100%;}.landing-requirements-actions .btn{flex:1;}.landing-requirement-card{padding:1rem;border-radius:18px;}}
:root {
    --bg-1: #0f172a;
    --bg-2: #1e293b;
    --primary: #6366f1;
    --accent: #14b8a6;
    --text-soft: #94a3b8;
    --card: rgba(255,255,255,.82);
}

body {
    background:
        radial-gradient(circle at top left, rgba(99,102,241,.25), transparent 28%),
        radial-gradient(circle at top right, rgba(20,184,166,.18), transparent 25%),
        linear-gradient(135deg, #f8fafc, #eef2ff 45%, #f8fafc);
    min-height: 100vh;
    color: #0f172a;
}

.glass-nav {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.hero {
    padding: 5rem 0 4rem;
}

.hero-card,
.soft-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border-radius: 24px;
}

.hero-badge {
    background: rgba(99,102,241,.12);
    color: #4338ca;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    letter-spacing: -.02em;
}

.step-card {
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 12px 30px rgba(30,41,59,.06);
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(226,232,240,.9);
}

.step-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-card {
    max-width: 880px;
    margin: 3rem auto;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 25px 55px rgba(15,23,42,.1);
}

.form-control, .form-select {
    border-radius: 14px;
    padding: .85rem 1rem;
    border-color: #dbe2ea;
}

.form-control:focus, .form-select:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 .25rem rgba(99,102,241,.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    border: none;
}

.btn-teal {
    background: linear-gradient(135deg, var(--accent), #0f766e);
    color: #fff;
    border: none;
}

.sidebar-card {
    position: sticky;
    top: 90px;
}

.progress-modern {
    height: 14px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.progress-modern > div {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.metric-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1rem;
}

.footer-soft {
    background: rgba(255,255,255,.68);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(226,232,240,.7);
}

.table-soft {
    --bs-table-bg: transparent;
}

.upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 1rem;
    background: #f8fafc;
}

.form-shell {
    max-width: 980px;
    background: rgba(255,255,255,.92);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
    border: 1px solid rgba(203, 213, 225, .8);
}

.register-heading {
    background: linear-gradient(135deg, #0ea5b7, #0f766e);
    color: #fff;
    padding: 1.25rem 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.register-body {
    padding: 1.5rem;
    background: #f8fafc;
}

.register-label {
    font-size: .94rem;
    letter-spacing: .02em;
    color: #334155;
    margin-bottom: .35rem;
}

.register-control {
    border-radius: 8px;
    border-color: #cbd5e1;
    background: #fff;
    min-height: 46px;
}

.register-submit {
    border-radius: 10px;
    font-weight: 600;
    min-height: 46px;
}

@media (max-width: 767px) {
    .hero {
        padding-top: 3.5rem;
    }
    .form-card {
        margin: 1rem;
    }
    .register-heading {
        font-size: 1.5rem;
    }
}


.captcha-wrap {
    margin-top: .15rem;
}

.captcha-refresh {
    color: #2563eb;
    text-decoration: none;
    font-size: 1.05rem;
}

.captcha-refresh:hover {
    text-decoration: underline;
}

.captcha-box {
    min-height: 108px;
    display: flex;
    align-items: center;
}

.captcha-image {
    width: 190px;
    height: 70px;
    border-radius: 4px;
    border: 1px solid #d6d6d6;
    background: #fff;
    cursor: pointer;
    object-fit: cover;
}

.captcha-input {
    max-width: 260px;
    text-transform: none;
}


.login-inline-card {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.login-inline-card .form-control {
    background: rgba(248,250,252,.95);
}


.site-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    padding: 2px;
}

.form-brand-card {
    background: linear-gradient(180deg, rgba(246,251,247,.96), rgba(255,255,255,.94));
    border: 1px solid rgba(20, 83, 45, .16);
    box-shadow: 0 18px 45px rgba(20, 83, 45, .12);
}

.form-brand-top {
    border-bottom: 1px solid rgba(20, 83, 45, .10);
    padding-bottom: .85rem;
}

.form-brand-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto .5rem;
}

.form-brand-name {
    color: #14532d;
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: 1.05rem;
}

.login-inline-card h5 {
    color: #14532d;
    font-weight: 800;
}

.login-inline-card .form-control:focus {
    border-color: #166534;
    box-shadow: 0 0 0 .25rem rgba(22, 101, 52, .12);
}

.hero-card {
    background: linear-gradient(180deg, rgba(239,248,241,.96), rgba(255,255,255,.94));
    border: 1px solid rgba(20, 83, 45, .16);
    box-shadow: 0 18px 45px rgba(20, 83, 45, .12);
}

.hero-card h5,
.hero-card .badge {
    color: #14532d;
}

.hero-card .badge {
    background: rgba(20, 83, 45, .10) !important;
    border: 1px solid rgba(20, 83, 45, .12);
}

.metric-pill {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(20, 83, 45, .14);
}


/* Landing page redesign */
.landing-page-body {
    background: linear-gradient(180deg, #f8fbf5 0%, #eff6ef 100%);
    color: #16311d;
}
.landing-nav {
    background: linear-gradient(180deg, #0f5e39 0%, #0b472d 100%);
    border-bottom: 4px solid rgba(255,255,255,.75);
    box-shadow: 0 10px 30px rgba(8, 49, 30, .16);
}
.landing-nav-wrap { min-height: 78px; }
.landing-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
}
.landing-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.18));
}
.landing-brand span { display:block; line-height:1.05; }
.landing-brand strong {
    display:block;
    font-size: 2rem;
    letter-spacing: -.03em;
    color: #fff;
}
.landing-brand small {
    display:block;
    color: rgba(255,255,255,.85);
    font-size: .98rem;
    margin-top: 2px;
}
.landing-menu { gap: 1.1rem; }
.landing-menu .nav-link {
    color: rgba(255,255,255,.92);
    font-weight: 600;
    padding: .4rem .1rem;
}
.landing-menu .nav-link:hover { color: #ffe082; }
.landing-login-btn {
    border: none;
    background: linear-gradient(180deg, #ffd54f, #f4b400);
    color: #263238;
    font-weight: 700;
    border-radius: 12px;
    padding: .85rem 1.7rem;
    box-shadow: 0 10px 20px rgba(244,180,0,.25);
}
.landing-hero-section { padding: 1.25rem 0 2rem; }
.landing-hero-shell {
    background:
      radial-gradient(circle at 18% 20%, rgba(255,255,255,.12), transparent 24%),
      radial-gradient(circle at 80% 16%, rgba(255,255,255,.45), transparent 18%),
      linear-gradient(90deg, #145b34 0%, #2d8f53 35%, #b7e6ef 100%);
    border-radius: 0 0 22px 22px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 6px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 30px rgba(12, 71, 42, .12);
}
.landing-hero-shell::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    top: 0;
    height: 10px;
    background: rgba(255,255,255,.95);
    border-radius: 0 0 50% 50%;
}
.landing-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    color: #f4ffea;
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.landing-hero-copy h1 {
    font-size: clamp(2.8rem, 4vw, 4.6rem);
    line-height: 1.07;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #fff;
    max-width: 700px;
}
.landing-hero-copy h1 span { color: #ffe17a; }
.landing-hero-copy p {
    font-size: 1.55rem;
    line-height: 1.45;
    color: rgba(255,255,255,.94);
    max-width: 700px;
}
.landing-cta-primary,
.landing-cta-secondary {
    border-radius: 14px;
    padding: 1rem 1.75rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.landing-cta-primary {
    background: linear-gradient(180deg, #2da948, #1b7f32);
    color: #fff;
    box-shadow: 0 14px 24px rgba(27,127,50,.22);
}
.landing-cta-secondary {
    background: #fff;
    color: #20313a;
    border: 1px solid rgba(0,0,0,.12);
}
.landing-hero-art {
    position: relative;
    min-height: 460px;
}
.sky-cloud {
    position: absolute;
    background: rgba(255,255,255,.75);
    border-radius: 40px;
    filter: blur(.2px);
}
.sky-cloud::before, .sky-cloud::after {
    content:''; position:absolute; background: inherit; border-radius:50%;
}
.cloud-one { width: 110px; height: 34px; top: 50px; right: 90px; }
.cloud-one::before { width: 42px; height: 42px; left: 14px; top: -18px; }
.cloud-one::after { width: 54px; height: 54px; right: 12px; top: -22px; }
.cloud-two { width: 90px; height: 28px; top: 85px; right: 10px; }
.cloud-two::before { width: 34px; height: 34px; left: 10px; top: -14px; }
.cloud-two::after { width: 42px; height: 42px; right: 9px; top: -18px; }
.paper-plane {
    position: absolute;
    top: 20px;
    left: 58%;
    font-size: 2.4rem;
    color: rgba(255,255,255,.92);
    transform: rotate(-18deg);
}
.school-illustration {
    position: absolute;
    left: 10%;
    bottom: 26px;
    width: 310px;
    height: 260px;
}
.school-roof {
    position: absolute;
    left: 72px;
    top: 78px;
    width: 166px;
    height: 50px;
    background: #c3934c;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.school-body {
    position: absolute;
    left: 44px;
    bottom: 0;
    width: 226px;
    height: 168px;
    background: linear-gradient(180deg, #f3f2d4, #e3e2b7);
    border-radius: 14px 14px 8px 8px;
    border: 5px solid #d4cf92;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 24px 18px 22px;
}
.school-window { background: #8abb68; border-radius: 8px; height: 38px; display:block; }
.school-door {
    position: absolute;
    width: 52px; height: 82px;
    left: calc(50% - 26px);
    bottom: 0;
    background: #2c8b46;
    border-radius: 28px 28px 0 0;
}
.school-moon {
    position: absolute; width: 22px; height: 22px; border-radius:50%;
    right: 22px; top: 64px; background:#ffe169; box-shadow:-7px 0 0 0 #2b8b4a;
}
.student-group {
    position: absolute;
    right: 2%;
    bottom: 10px;
    width: 320px;
    height: 360px;
}
.student-boy, .student-girl { position:absolute; bottom:0; }
.student-boy { right: 120px; width: 135px; height: 310px; }
.student-boy .head, .student-girl .head {
    position:absolute; width: 94px; height: 94px; border-radius: 50%; background:#ffd1ae; top: 0; left: 18px; z-index:3;
    box-shadow: inset 0 -8px 0 rgba(0,0,0,.06);
}
.student-boy .head::before {
    content:''; position:absolute; inset:0; border-radius:50%; background: linear-gradient(180deg, #2f241b 0 40%, transparent 41%);
}
.student-boy .head::after {
    content:''; position:absolute; left:6px; right:6px; top:-12px; height:32px; border-radius: 40px 40px 10px 10px; border: 8px solid #f2f2ec; border-bottom: 0;
}
.student-boy .body {
    position:absolute; left: 16px; top: 78px; width: 102px; height: 165px; background:#fff; border-radius: 24px 24px 16px 16px;
}
.student-boy .body::before { content:''; position:absolute; left: 28px; bottom:-74px; width: 22px; height: 82px; background:#315f1f; }
.student-boy .body::after { content:''; position:absolute; right: 28px; bottom:-74px; width: 22px; height: 82px; background:#315f1f; }
.student-boy .tie { position:absolute; left: 52px; top: 104px; width: 18px; height: 92px; background:#3aa34b; clip-path: polygon(50% 0, 100% 20%, 70% 100%, 30% 100%, 0 20%); }
.student-boy .book-stack { position:absolute; left:-18px; bottom:8px; width:90px; height:66px; background: linear-gradient(180deg, #a5702a, #d79642); border-radius: 8px; box-shadow: 0 18px 0 #3e6935, 12px 34px 0 #f1d375; }
.student-girl { right: 0; width: 150px; height: 326px; }
.student-girl .head { left: 28px; top: 6px; }
.student-girl .hijab {
    position:absolute; left: 6px; top: -4px; width: 138px; height: 180px; background:#f8f8f1; border-radius: 70px 70px 36px 36px; z-index:2;
}
.student-girl .body {
    position:absolute; left: 28px; top: 112px; width: 88px; height: 150px; background:#fff; border-radius: 24px 24px 20px 20px; z-index:1;
}
.student-girl .body::before { content:''; position:absolute; left: 10px; bottom:-86px; width: 70px; height: 96px; background:#3d8e37; border-radius: 22px 22px 10px 10px; }
.student-girl .book {
    position:absolute; right: 12px; top: 154px; width: 86px; height: 62px; background:#2c7b2c; border-radius: 10px; transform: rotate(10deg); box-shadow: inset -4px 0 0 rgba(255,255,255,.3);
}
.landing-section { position: relative; }
.section-heading-row {
    display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.section-heading-row h2 {
    margin:0; font-size: 2.1rem; font-weight: 800; color:#213324;
}
.section-heading-row a { color:#5b8d33; text-decoration:none; font-weight:700; }
.landing-info-card, .landing-video-card, .landing-announcement-card, .landing-timeline-card, .landing-contact-card {
    background:#fff; border-radius: 20px; box-shadow: 0 18px 36px rgba(25, 59, 34, .09); border: 1px solid rgba(12,90,40,.08);
}
.landing-info-card { padding: 1.6rem; height:100%; }
.landing-info-icon {
    width: 92px; height: 92px; margin-bottom: 1rem; border-radius: 22px; display:flex; align-items:center; justify-content:center;
    background: linear-gradient(180deg, #f2fbf1, #dbeedd); color:#1d7b39; font-size:2.6rem;
}
.landing-info-card h5 { font-size: 1.65rem; font-weight: 800; color:#1f5e33; }
.landing-info-card p { margin:0; color:#4f5f57; font-size: 1.1rem; }
.landing-video-card { padding: 1rem; overflow:hidden; }
.landing-video-scene {
    position:relative; min-height: 290px; border-radius: 16px;
    background: linear-gradient(180deg, #f6f5e8, #d3e2b5 55%, #88a865 100%);
    display:flex; align-items:center; justify-content:center;
}
.landing-video-scene img {
    width: 72%; max-width: 260px; opacity:.95; filter: drop-shadow(0 18px 28px rgba(0,0,0,.15));
}
.landing-play-btn {
    position:absolute; width: 88px; height: 88px; border:none; border-radius:50%;
    background: rgba(27,34,34,.72); color:#fff; font-size:2.3rem; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.landing-video-footer {
    display:flex; align-items:center; gap:.6rem; padding:.9rem .4rem .2rem; color:#fff; font-weight:700; font-size:1.25rem;
    background: linear-gradient(180deg, transparent, rgba(9, 52, 22, 0.75)); margin-top:-52px; position:relative; z-index:2; border-radius:0 0 16px 16px;
}
.landing-announcement-card, .landing-timeline-card { padding: 1.5rem; }
.landing-announcement-item {
    display:flex; gap:1rem; align-items:flex-start; padding:1rem 1.1rem; background:#fbfdf8; border:1px solid #edf3e6; border-radius: 16px;
}
.announcement-dot { width:10px; height:10px; border-radius:50%; background:#2b8c41; margin-top:.35rem; flex-shrink:0; }
.landing-announcement-item strong { display:block; color:#213324; }
.landing-announcement-item small { color:#7b8d7f; }
.landing-timeline-card p { color:#5b6a5d; }
.landing-step-box {
    padding: 1.3rem; border-radius: 18px; background:#f8fcf4; border:1px solid #e4eddc; height:100%;
}
.landing-step-box span {
    display:inline-flex; width:42px; height:42px; align-items:center; justify-content:center; border-radius:14px; background:linear-gradient(180deg,#2f9e4e,#1f7b39); color:#fff; font-weight:800; margin-bottom:1rem;
}
.landing-step-box strong { display:block; color:#21402a; font-size:1.05rem; }
.landing-contact-card {
    padding: 1.8rem 2rem; display:flex; justify-content:space-between; gap:1rem; align-items:center;
    background: linear-gradient(135deg, #0f5e39, #2d8f53); color:#fff;
}
.landing-contact-card h3 { margin:0 0 .45rem; font-size: 2rem; }
.landing-contact-card p { margin:0; color: rgba(255,255,255,.88); max-width: 760px; }
.landing-contact-actions { display:flex; gap:.85rem; flex-wrap:wrap; }
.landing-footer { padding: 2rem 0 2.4rem; color:#5e6d60; }
.navbar-toggler { border-color: rgba(255,255,255,.35); }
.navbar-toggler-icon { filter: invert(1); }

@media (max-width: 1199px) {
  .landing-brand strong { font-size: 1.65rem; }
  .landing-hero-shell { padding: 2.4rem; }
  .landing-hero-copy h1 { font-size: 3.3rem; }
  .landing-hero-copy p { font-size: 1.3rem; }
}
@media (max-width: 991px) {
  .landing-nav-wrap { min-height: 72px; }
  .landing-brand-logo { width: 52px; height: 52px; }
  .landing-brand strong { font-size: 1.35rem; }
  .landing-brand small { font-size: .85rem; }
  .landing-menu { gap: .2rem; padding-top: 1rem; }
  .landing-hero-shell { border-radius: 0 0 18px 18px; }
  .landing-hero-art { min-height: 360px; }
  .student-group { transform: scale(.84); transform-origin: bottom right; }
  .landing-contact-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  .landing-hero-shell { padding: 2rem 1.2rem; }
  .landing-pill { font-size: .88rem; }
  .landing-hero-copy h1 { font-size: 2.35rem; }
  .landing-hero-copy p { font-size: 1.05rem; }
  .landing-cta-primary, .landing-cta-secondary { width: 100%; text-align:center; font-size: 1rem; }
  .landing-hero-art { min-height: 300px; }
  .school-illustration { left: 0; transform: scale(.7); transform-origin: bottom left; }
  .student-group { right: -8px; transform: scale(.63); }
  .section-heading-row h2 { font-size: 1.6rem; }
  .landing-info-card h5 { font-size: 1.3rem; }
  .landing-video-scene { min-height: 220px; }
}


.landing-hero-art-photo {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.landing-hero-photo-stage {
    position: relative;
    width: min(100%, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px 0;
}
.landing-hero-photo-glow {
    position: absolute;
    inset: 8% 6% 10%;
    background:
      radial-gradient(circle at 40% 40%, rgba(255,255,255,.32), transparent 34%),
      radial-gradient(circle at 68% 52%, rgba(255,255,255,.22), transparent 30%),
      radial-gradient(circle at 52% 70%, rgba(44,143,83,.24), transparent 35%);
    filter: blur(42px);
    z-index: 0;
}
.landing-hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 34px;
    box-shadow:
      0 28px 50px rgba(7, 54, 28, .22),
      0 0 0 1px rgba(255,255,255,.18);
    mix-blend-mode: multiply;
    opacity: .97;
    -webkit-mask-image: radial-gradient(circle at center, #000 72%, transparent 100%);
    mask-image: radial-gradient(circle at center, #000 72%, transparent 100%);
}
.landing-hero-photo-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0));
    z-index: 0;
}
@media (max-width: 991.98px) {
    .landing-hero-art-photo {
        min-height: auto;
        margin-top: 8px;
    }
    .landing-hero-photo-stage {
        width: 100%;
        padding: 6px 0 0;
    }
    .landing-hero-photo {
        max-width: 100%;
        border-radius: 26px;
        -webkit-mask-image: none;
        mask-image: none;
    }
}


/* v51 integrated landing full-page panel */
.landing-page-body {
    background: linear-gradient(180deg, #f4f7f1 0%, #eef4ee 100%);
}
.landing-panel-section {
    margin-top: -1rem;
}
.landing-main-panel {
    background: #fff;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 20px 36px rgba(18, 63, 36, .10);
    border: 1px solid rgba(12,90,40,.08);
    border-top: none;
    padding: 2rem;
}
.landing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 73, 39, .16), transparent);
    margin: 1.6rem 0;
}
.landing-info-card.compact,
.landing-video-card.compact {
    box-shadow: 0 10px 22px rgba(22, 55, 30, .08);
    border-radius: 16px;
}
.landing-info-card.compact {
    min-height: 100%;
}
.landing-video-card.compact {
    padding: .9rem;
}
.landing-video-poster {
    min-height: 250px;
    background: linear-gradient(180deg, #d7f0d8, #f0f7ea);
    overflow: hidden;
}
.landing-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .96;
}
.landing-announcement-card.integrated {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}
.landing-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.landing-mini-contact h3 {
    margin: 0 0 .35rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #21402a;
}
.landing-mini-contact p {
    margin: 0;
    color: #5b6a5d;
    max-width: 720px;
}
@media (max-width: 991px) {
    .landing-main-panel {
        padding: 1.4rem;
        border-radius: 0 0 22px 22px;
    }
}
@media (max-width: 767px) {
    .landing-main-panel {
        padding: 1rem;
    }
    .landing-panel-section {
        margin-top: -.5rem;
    }
    .landing-bottom-row {
        align-items: flex-start;
    }
}


/* v52 fine-tuned full-page landing */
.landing-main{overflow:hidden;}
.landing-page-frame{max-width:1400px;padding-left:28px;padding-right:28px;}
.landing-nav{border-bottom:0;position:sticky;top:0;z-index:1030;}
.landing-nav::after{content:"";position:absolute;left:0;right:0;bottom:-10px;height:16px;background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,0));pointer-events:none;}
.landing-nav-wrap{min-height:86px;}
.landing-brand-logo{width:58px;height:58px;}
.landing-brand strong{font-size:2.35rem;letter-spacing:-.04em;}
.landing-brand small{font-size:1rem;}
.landing-menu .nav-link{font-size:1.12rem;position:relative;}
.landing-menu .nav-link + .nav-link{}
.landing-menu .nav-item{position:relative;padding:0 .25rem;}
.landing-menu .nav-item:not(:last-child)::after{content:"";position:absolute;right:-.35rem;top:50%;width:1px;height:22px;background:rgba(255,255,255,.22);transform:translateY(-50%);}
.landing-login-btn{border-radius:10px;padding:.95rem 2rem;font-size:1.1rem;min-width:96px;}
.landing-hero-section{padding:1.1rem 0 0;}
.landing-hero-shell{border-radius:0 0 30px 30px;padding:2.8rem 3rem 1.6rem;box-shadow:0 18px 36px rgba(8,53,31,.14);}
.landing-hero-shell::before{content:"";position:absolute;left:-3%;right:-3%;top:-22px;height:34px;border-bottom:6px solid rgba(255,255,255,.9);border-radius:0 0 50% 50%;}
.landing-hero-shell::after{top:0;height:12px;}
.landing-hero-copy h1{font-size:clamp(3.4rem,4.8vw,5.5rem);line-height:1.02;max-width:620px;margin-bottom:1.1rem;}
.landing-hero-copy p{font-size:1.14rem;max-width:620px;line-height:1.5;}
.landing-pill{font-size:1.02rem;padding:.7rem 1.15rem;background:rgba(255,255,255,.18);}
.landing-cta-primary,.landing-cta-secondary{font-size:1.02rem;padding:1rem 1.9rem;border-radius:12px;}
.landing-hero-art-photo{min-height:430px;}
.landing-hero-photo-stage{width:100%;max-width:560px;padding:10px 0 0;}
.landing-hero-photo-glow{inset:8% 10% 12%;filter:blur(34px);}
.landing-hero-photo{max-width:520px;border-radius:0;box-shadow:none;mix-blend-mode:normal;opacity:1;-webkit-mask-image:none;mask-image:none;filter:drop-shadow(0 18px 26px rgba(0,0,0,.10));}
.landing-hero-photo-stage::before{display:none;}
.landing-panel-section{margin-top:0;padding-top:0;}
.landing-main-panel{border-radius:0 0 30px 30px;padding:1.6rem 2rem 2rem;box-shadow:0 22px 36px rgba(16,55,34,.10);}
.landing-main-panel .row.g-4{--bs-gutter-x:1.25rem;--bs-gutter-y:1.25rem;}
.section-heading-row h2{font-size:1.45rem;white-space:nowrap;}
.section-heading-row{margin-bottom:.75rem;}
.landing-info-card.compact,.landing-video-card.compact{background:#fff;border-radius:12px;box-shadow:0 8px 20px rgba(12,47,25,.08);}
.landing-info-card.compact{padding:1.15rem .95rem 1rem;text-align:center;min-height:192px;}
.landing-info-icon{width:86px;height:62px;border-radius:18px;margin:0 auto .85rem;background:radial-gradient(circle at 50% 40%, #eef6ea 0%, #eff5ec 45%, #dcead7 100%);font-size:2.3rem;}
.landing-info-card h5{font-size:1rem;margin-bottom:.45rem;}
.landing-info-card p{font-size:.88rem;line-height:1.35;}
.landing-video-card.compact{padding:.75rem;overflow:hidden;}
.landing-video-poster{min-height:255px;border-radius:8px;background:linear-gradient(180deg,#efe8cc,#dce7d0);}
.landing-video-footer{margin-top:-48px;font-size:1.05rem;padding:.75rem .55rem .1rem;border-radius:0 0 10px 10px;}
.landing-announcement-item{padding:.7rem .9rem;border-radius:10px;min-height:56px;align-items:center;}
.landing-announcement-item strong{font-size:.95rem;}
.landing-announcement-item small{font-size:.82rem;}
.landing-divider{margin:1.2rem 0;}
.landing-bottom-row{padding-top:.1rem;}
.landing-mini-contact h3{font-size:1.15rem;}
.landing-mini-contact p{font-size:.96rem;}
.landing-footer{padding:1.2rem 0 2rem;}
@media (min-width:1200px){.landing-info-grid>.col-xl-3{width:25%;}.landing-hero-copy{padding-right:1rem;}}
@media (max-width:1199px){.landing-page-frame{padding-left:18px;padding-right:18px;}.landing-brand strong{font-size:1.95rem;}.landing-hero-copy h1{font-size:clamp(2.8rem,5vw,4.4rem);} }
@media (max-width:991px){.landing-nav-wrap{min-height:76px;}.landing-nav::after{display:none;}.landing-menu .nav-item:not(:last-child)::after{display:none;}.landing-brand strong{font-size:1.5rem;}.landing-brand-logo{width:50px;height:50px;}.landing-hero-shell{padding:2rem 1.35rem 1.25rem;border-radius:0 0 22px 22px;}.landing-hero-shell::before{display:none;}.landing-hero-copy p{max-width:none;}.landing-hero-art-photo{min-height:260px;}.landing-hero-photo{max-width:380px;}.landing-main-panel{padding:1.15rem 1.1rem 1.4rem;border-radius:0 0 22px 22px;}}
@media (max-width:767px){.landing-page-frame{padding-left:12px;padding-right:12px;}.landing-nav-wrap{min-height:70px;}.landing-brand span small{display:none;}.landing-brand strong{font-size:1.15rem;}.landing-hero-shell{padding:1.35rem 1rem 1rem;}.landing-pill{font-size:.8rem;padding:.55rem .9rem;}.landing-hero-copy h1{font-size:2.3rem;}.landing-hero-copy p{font-size:.98rem;}.landing-hero-art-photo{min-height:220px;}.landing-hero-photo{max-width:100%;}.section-heading-row h2{font-size:1.15rem;white-space:normal;}.landing-info-card.compact{min-height:170px;} }


/* v53 truly full-width landing */
body.landing-page-body{background:linear-gradient(180deg,#f4f7f2 0%,#eef5ef 100%);}
.landing-page-frame{max-width:none !important;width:100%;padding-left:18px;padding-right:18px;}
.landing-nav{box-shadow:0 2px 0 rgba(255,255,255,.35) inset;}
.landing-nav-wrap{max-width:none;min-height:88px;}
.landing-hero-section{padding:0;}
.landing-hero-shell{width:100%;border-radius:0 0 34px 34px;padding:2rem 3.2rem 1.2rem;min-height:680px;display:flex;align-items:center;}
.landing-hero-shell .row{width:100%;align-items:stretch !important;}
.landing-hero-copy{display:flex;flex-direction:column;justify-content:center;height:100%;padding-right:2rem;}
.landing-hero-copy h1{font-size:clamp(4.2rem,5vw,6.2rem);max-width:700px;}
.landing-hero-copy p{max-width:640px;font-size:1.22rem;}
.landing-hero-art-photo{min-height:520px;display:flex;align-items:flex-end;justify-content:center;}
.landing-hero-photo-stage{max-width:700px;padding:0;display:flex;align-items:flex-end;justify-content:center;}
.landing-hero-photo{max-width:100%;width:640px;filter:drop-shadow(0 26px 34px rgba(0,0,0,.14));}
.landing-main-panel{margin-top:-4px;border-radius:0 0 34px 34px;padding:1.75rem 2.25rem 2rem;}
.landing-panel-section{padding-top:0;margin-top:0;}
.landing-info-card.compact{min-height:205px;}
.landing-video-card.compact{height:100%;}
.landing-video-poster{min-height:290px;}
.landing-announcement-card.integrated{padding-top:.2rem;}
@media (min-width:1600px){.landing-page-frame{padding-left:28px;padding-right:28px;} .landing-hero-shell{min-height:730px;} .landing-hero-photo{width:700px;}}
@media (max-width:1199px){.landing-page-frame{padding-left:14px;padding-right:14px;} .landing-hero-shell{min-height:unset;padding:1.8rem 2rem 1rem;} .landing-hero-copy h1{font-size:clamp(3.2rem,5vw,4.8rem);} .landing-hero-photo{width:520px;}}
@media (max-width:991px){.landing-hero-shell{border-radius:0 0 24px 24px;padding:1.6rem 1.2rem 1rem;} .landing-hero-art-photo{min-height:320px;} .landing-hero-copy{padding-right:0;} .landing-main-panel{border-radius:0 0 24px 24px;padding:1.15rem 1rem 1.3rem;}}
@media (max-width:767px){.landing-page-frame{padding-left:8px;padding-right:8px;} .landing-hero-shell{padding:1.25rem .9rem .9rem;border-radius:0 0 18px 18px;} .landing-hero-copy h1{font-size:2.5rem;} .landing-hero-copy p{font-size:1rem;} .landing-hero-art-photo{min-height:220px;} .landing-main-panel{border-radius:0 0 18px 18px;} }


/* v54 landing premium cleanup */

.landing-hero-shell{overflow:hidden;position:relative;}
.landing-hero-art-photo{position:relative;min-height:560px;display:flex;align-items:center;justify-content:center;}
.landing-hero-photo-stage{position:relative;max-width:760px;width:100%;display:flex;align-items:center;justify-content:center;background:transparent;padding:0;}
.landing-hero-photo-stage::before{content:"";position:absolute;inset:4% 2% 8%;background:radial-gradient(circle at 50% 45%, rgba(255,255,255,.26) 0%, rgba(255,255,255,.10) 28%, rgba(173, 232, 216, .16) 48%, rgba(0,0,0,0) 72%);filter:blur(24px);z-index:0;display:block;}
.landing-hero-photo-glow{display:none;}
.landing-hero-photo{position:relative;z-index:1;width:min(760px,100%);max-width:760px;height:auto;border-radius:0;box-shadow:none;mix-blend-mode:multiply;opacity:.98;filter:saturate(1.02) contrast(1.01) drop-shadow(0 18px 26px rgba(8,42,30,.10));-webkit-mask-image:radial-gradient(circle at 52% 46%, rgba(0,0,0,1) 48%, rgba(0,0,0,.96) 60%, rgba(0,0,0,.82) 74%, rgba(0,0,0,.55) 84%, transparent 100%);mask-image:radial-gradient(circle at 52% 46%, rgba(0,0,0,1) 48%, rgba(0,0,0,.96) 60%, rgba(0,0,0,.82) 74%, rgba(0,0,0,.55) 84%, transparent 100%);}
.landing-main-panel{margin-top:0;border-radius:0 0 34px 34px;padding:1.75rem 2.25rem 2rem;}
.landing-panel-section{padding-top:0;margin-top:0;}
.landing-info-grid .landing-info-card.compact{min-height:198px;}
.landing-divider:first-of-type{display:none;}
@media (min-width:1200px){
  .landing-hero-shell{min-height:760px;padding:2.1rem 3.2rem 1.2rem;}
  .landing-hero-copy h1{max-width:760px;}
  .landing-hero-copy p{max-width:650px;}
}
@media (max-width:1199px){
  .landing-hero-art-photo{min-height:420px;}
  .landing-hero-photo{width:min(560px,100%);max-width:560px;}
}
@media (max-width:991px){
  .landing-hero-art-photo{min-height:300px;}
  .landing-hero-photo{-webkit-mask-image:none;mask-image:none;mix-blend-mode:normal;filter:drop-shadow(0 10px 20px rgba(8,42,30,.18));}
}


/* v55 landing premium blend fix */
.landing-hero-shell{
  position:relative;
  min-height:700px;
  overflow:hidden;
}
.landing-hero-shell::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 78% 42%, rgba(255,255,255,.14), transparent 24%), radial-gradient(circle at 86% 60%, rgba(255,255,255,.08), transparent 30%);
  pointer-events:none;
}
.landing-hero-art-photo{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.landing-hero-photo-stage{
  position:relative;
  width:100%;
  min-height:520px;
}
.landing-hero-photo-stage::before,
.landing-hero-photo-stage::after{content:none !important;display:none !important;}
.landing-hero-photo-glow{display:none !important;}
.landing-hero-photo-blend{
  position:absolute;
  inset:0;
  background-image: var(--hero-photo);
  background-repeat:no-repeat;
  background-position:center 54%;
  background-size:min(96%, 740px) auto;
  mix-blend-mode:multiply;
  opacity:.98;
  filter:saturate(1.03) contrast(1.01) drop-shadow(0 18px 26px rgba(8,42,30,.10));
  -webkit-mask-image: radial-gradient(circle at 58% 50%, rgba(0,0,0,1) 34%, rgba(0,0,0,.98) 47%, rgba(0,0,0,.92) 58%, rgba(0,0,0,.75) 70%, rgba(0,0,0,.45) 82%, transparent 100%);
  mask-image: radial-gradient(circle at 58% 50%, rgba(0,0,0,1) 34%, rgba(0,0,0,.98) 47%, rgba(0,0,0,.92) 58%, rgba(0,0,0,.75) 70%, rgba(0,0,0,.45) 82%, transparent 100%);
}
.landing-hero-copy{
  position:relative;
  z-index:2;
  padding-right:1rem;
}
.landing-main-panel{
  margin-top:0;
  border-radius:0 0 34px 34px;
  padding:1.5rem 1.8rem 2rem;
  box-shadow:none;
}
@media (max-width:1199px){
  .landing-hero-shell{min-height:620px;}
  .landing-hero-photo-stage{min-height:430px;}
  .landing-hero-photo-blend{background-size:min(100%,560px) auto;}
}
@media (max-width:991px){
  .landing-hero-shell{min-height:auto;}
  .landing-hero-art-photo{min-height:300px;}
  .landing-hero-photo-stage{min-height:300px;}
  .landing-hero-photo-blend{background-position:center center;background-size:min(100%,500px) auto;}
}
@media (max-width:767px){
  .landing-hero-art-photo{min-height:220px;}
  .landing-hero-photo-stage{min-height:220px;}
  .landing-hero-photo-blend{background-size:100% auto; -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 46%, rgba(0,0,0,.85) 70%, transparent 100%); mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 46%, rgba(0,0,0,.85) 70%, transparent 100%);} 
}


/* v56 landing login card */
.landing-hero-shell{align-items:stretch;}
.landing-hero-copy{padding-right:1.5rem;}
.landing-hero-login-card{
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-radius:28px;
    padding:26px 24px;
    box-shadow:0 24px 60px rgba(7,46,28,.22);
    max-width:520px;
    margin-left:auto;
    position:relative;
    overflow:hidden;
}
.landing-hero-login-card::before{
    content:"";
    position:absolute;
    inset:-30% auto auto -15%;
    width:220px;height:220px;
    background:radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0));
    pointer-events:none;
}
.landing-hero-login-head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:14px;position:relative;z-index:1;}
.landing-hero-login-brand{display:flex;align-items:center;gap:14px;}
.landing-hero-login-brand img{width:54px;height:54px;object-fit:contain;border-radius:50%;background:rgba(255,255,255,.92);padding:5px;box-shadow:0 8px 18px rgba(0,0,0,.14);}
.landing-hero-login-brand h3{margin:0;font-size:1.65rem;font-weight:800;color:#fff;}
.landing-hero-login-brand p{margin:2px 0 0;font-size:.96rem;line-height:1.4;color:rgba(255,255,255,.85);max-width:280px;}
.landing-hero-login-form{position:relative;z-index:1;display:grid;gap:12px;}
.landing-hero-login-form label{font-size:.92rem;font-weight:700;color:rgba(255,255,255,.96);}
.landing-hero-login-form .form-control{
    min-height:56px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.4);
    background:rgba(255,255,255,.88);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.5);
    padding:.95rem 1rem;
    font-size:1rem;
}
.landing-hero-login-form .form-control:focus{
    border-color:#ffd44f;
    box-shadow:0 0 0 .2rem rgba(255,212,79,.18);
    background:#fff;
}
.landing-hero-login-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px;}
.landing-login-submit{
    background:linear-gradient(135deg,#ffd84f,#efbd15);
    color:#113b24;
    border:none;
    font-weight:800;
    border-radius:16px;
    padding:14px 22px;
    min-width:155px;
    box-shadow:0 12px 24px rgba(239,189,21,.26);
}
.landing-login-submit:hover{background:linear-gradient(135deg,#ffe37f,#f2c62d);color:#0f3e26;}
.landing-login-alt{
    background:rgba(255,255,255,.15);
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
    border-radius:16px;
    padding:14px 22px;
    font-weight:700;
}
.landing-login-alt:hover{background:rgba(255,255,255,.25);color:#fff;}
@media (max-width: 991px){
  .landing-hero-copy{padding-right:0;}
  .landing-hero-login-card{max-width:none;margin:0;}
}
@media (max-width: 575px){
  .landing-hero-login-card{padding:18px 16px;border-radius:22px;}
  .landing-hero-login-brand{align-items:flex-start;}
  .landing-hero-login-brand img{width:46px;height:46px;}
  .landing-hero-login-brand h3{font-size:1.35rem;}
  .landing-hero-login-actions>*{width:100%;}
}


/* v57 login card vertical center tweak */
.landing-hero-shell .row{align-items:center !important;}
.landing-hero-login-col{display:flex;align-items:center;justify-content:center;}
.landing-hero-login-card{margin:42px 0 0 auto;}
@media (max-width:991px){.landing-hero-login-col{display:block;}.landing-hero-login-card{margin:18px 0 0;}}

/* v58 syarat section */
html{scroll-behavior:smooth;}
.landing-info-link{text-decoration:none;color:inherit;display:block;}
.landing-info-link:hover{text-decoration:none;color:inherit;}
.landing-requirements-section{
  padding:2rem 0 1rem;
}
.landing-section-badge{
  display:inline-block;
  background:#e3f2e5;
  color:#156039;
  padding:.45rem .85rem;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  margin-bottom:.65rem;
}
.landing-requirements-section .section-heading-row p{margin:.35rem 0 0;color:#58705f;max-width:760px;}
.landing-requirements-actions{display:flex;gap:.75rem;flex-wrap:wrap;}
.landing-req-outline{border:1px solid #9ccfac !important;background:#fff !important;color:#166534 !important;}
.landing-requirements-grid{display:grid;grid-template-columns:1.1fr 1.1fr .9fr;gap:1rem;margin-top:1rem;}
.landing-requirement-card{
  background:#fff;
  border:1px solid #e8efe9;
  border-radius:22px;
  padding:1.35rem;
  box-shadow:0 12px 28px rgba(12,58,31,.06);
}
.landing-requirement-card h3{margin:0 0 1rem;color:#163825;font-size:1.25rem;font-weight:800;}
.landing-requirement-card.highlight{background:linear-gradient(180deg,#0f6a37 0%,#157842 100%);color:#fff;}
.landing-requirement-card.highlight h3{color:#fff;}
.landing-requirement-card.highlight ul{padding-left:1.15rem;margin:0;}
.landing-requirement-card.highlight li{margin-bottom:.8rem;line-height:1.5;}
.landing-accordion-item{border:1px solid #e6efe8;border-radius:16px;background:#fbfdfb;overflow:hidden;margin-bottom:.8rem;}
.landing-accordion-btn{width:100%;border:none;background:#fff;padding:1rem 1.05rem;display:flex;justify-content:space-between;align-items:center;font-weight:700;color:#173a28;text-align:left;cursor:pointer;}
.landing-accordion-content{display:none;padding:0 1.05rem 1rem;color:#526658;line-height:1.55;background:#fbfdfb;}
.landing-accordion-item.active .landing-accordion-content{display:block;}
.landing-req-modal{position:fixed;inset:0;background:rgba(9,24,15,.45);display:none;align-items:center;justify-content:center;z-index:9999;padding:20px;}
.landing-req-modal.show{display:flex;}
.landing-req-modal-box{width:100%;max-width:560px;background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.2);}
.landing-req-modal-header,.landing-req-modal-footer{padding:1rem 1.2rem;border-bottom:1px solid #edf1ee;display:flex;justify-content:space-between;align-items:center;}
.landing-req-modal-footer{border-top:1px solid #edf1ee;border-bottom:none;justify-content:flex-end;}
.landing-req-modal-header h3{margin:0;color:#123524;font-size:1.2rem;font-weight:800;}
.landing-req-close{background:none;border:none;font-size:1.8rem;line-height:1;cursor:pointer;color:#506456;}
.landing-req-modal-body{padding:1.2rem;color:#425648;line-height:1.65;}
.landing-req-modal-body ol{margin:0;padding-left:1.2rem;}
.landing-req-modal-body li{margin-bottom:.6rem;}
@media (max-width: 1100px){.landing-requirements-grid{grid-template-columns:1fr;}}
@media (max-width: 767px){.landing-requirements-actions{width:100%;}.landing-requirements-actions .btn{flex:1;}.landing-requirement-card{padding:1rem;border-radius:18px;}}
/* =========================================================
   PATCH FINAL LANDING UI
   Fokus:
   1. Tombol WA lebih rapi
   2. Floating CS lebih halus
   3. Card alur / jadwal lebih premium
   Tempel di PALING BAWAH style.css
========================================================= */

/* ---------- tombol CTA kontak ---------- */
.landing-contact-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.landing-contact-actions .landing-cta-primary,
.landing-contact-actions .landing-cta-secondary {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap;
}

.landing-contact-actions .landing-cta-primary {
    background: linear-gradient(135deg, #25d366 0%, #179c47 100%);
    color: #fff;
    border: 1px solid rgba(22, 122, 52, .22);
    box-shadow: 0 14px 28px rgba(37, 211, 102, .20);
}

.landing-contact-actions .landing-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(37, 211, 102, .28);
    color: #fff;
}

.landing-contact-actions .landing-cta-secondary {
    background: #fff;
    color: #1f2f27;
    border: 1px solid #d8e4d9;
    box-shadow: 0 10px 22px rgba(18, 60, 34, .06);
}

.landing-contact-actions .landing-cta-secondary:hover {
    transform: translateY(-2px);
    border-color: #bfd4c1;
    color: #14532d;
}

.landing-contact-actions .bi {
    font-size: 1.05rem;
    line-height: 1;
}

/* ---------- tombol WA di section kontak ---------- */
.landing-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.landing-mini-contact {
    flex: 1 1 520px;
}

.landing-contact-actions {
    flex: 0 1 auto;
}

/* ---------- floating CS / customer service ---------- */
.floating-cs {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17, 94, 50, .10);
    box-shadow:
        0 12px 24px rgba(16, 55, 34, .16),
        0 0 0 6px rgba(255,255,255,.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1080;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    overflow: hidden;
}

.floating-cs img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.floating-cs:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 16px 30px rgba(16, 55, 34, .24),
        0 0 0 8px rgba(255,255,255,.42);
    background: #ffffff;
}

.floating-cs::after {
    content: "Butuh Bantuan?";
    position: absolute;
    left: 78px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #167a34, #25a84b);
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(20, 122, 52, .22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.floating-cs:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* kalau masih ada wa-float-btn lama, sembunyikan */
.wa-float-btn {
    display: none !important;
}

/* ---------- card alur & jadwal lebih premium ---------- */
.landing-announcement-card.integrated {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
    border: 1px solid #e7efe7;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(17, 56, 31, .06);
    padding: 1.4rem;
}

.landing-announcement-card.integrated .section-heading-row {
    margin-bottom: .85rem;
}

.landing-announcement-card.integrated .section-heading-row h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #183525;
}

.landing-announcement-card.integrated .section-heading-row a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .96rem;
    font-weight: 700;
    color: #5e8f37;
    text-decoration: none;
}

.landing-announcement-card.integrated .section-heading-row a:hover {
    color: #3f6d1d;
}

/* item alur / jadwal */
.landing-announcement-item {
    min-height: 88px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,246,.98));
    border: 1px solid #e5ede3;
    box-shadow: 0 8px 18px rgba(19, 59, 31, .04);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.landing-announcement-item:hover {
    transform: translateY(-2px);
    border-color: #d6e7d2;
    box-shadow: 0 14px 24px rgba(19, 59, 31, .08);
}

.announcement-dot {
    width: 11px;
    height: 11px;
    margin-top: .42rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aa44a, #157a38);
    box-shadow: 0 0 0 5px rgba(42, 164, 74, .10);
}

.landing-announcement-item strong {
    display: block;
    margin-bottom: 4px;
    color: #183525;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.35;
}

.landing-announcement-item small {
    display: block;
    color: #6b7e70;
    font-size: .92rem;
    line-height: 1.45;
}

/* card informasi penting juga sedikit dipremiumkan */
.landing-info-card.compact {
    border-radius: 18px;
    border: 1px solid #e7efe7;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
    box-shadow: 0 12px 24px rgba(17, 56, 31, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.landing-info-card.compact:hover {
    transform: translateY(-3px);
    border-color: #d6e7d2;
    box-shadow: 0 18px 28px rgba(17, 56, 31, .08);
}

.landing-info-icon {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

/* ---------- section syarat sedikit dirapikan ---------- */
.landing-requirement-card {
    transition: transform .22s ease, box-shadow .22s ease;
}

.landing-requirement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(12, 58, 31, .08);
}

.landing-accordion-btn {
    transition: background .2s ease, color .2s ease;
}

.landing-accordion-btn:hover {
    background: #f6fbf6;
    color: #14532d;
}

/* ---------- login hero sedikit lebih halus ---------- */
.landing-hero-login-card {
    box-shadow:
        0 24px 60px rgba(7, 46, 28, .18),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.landing-login-submit,
.landing-login-alt,
.landing-cta-primary,
.landing-cta-secondary,
.landing-login-btn {
    transition: all .22s ease;
}

.landing-login-submit:hover,
.landing-login-alt:hover,
.landing-login-btn:hover,
.landing-cta-primary:hover,
.landing-cta-secondary:hover {
    transform: translateY(-2px);
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
    .landing-bottom-row {
        align-items: flex-start;
    }

    .landing-contact-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .floating-cs {
        left: 14px;
        bottom: 14px;
        width: 62px;
        height: 62px;
    }

    .floating-cs img {
        width: 40px;
        height: 40px;
    }

    .floating-cs::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .landing-announcement-card.integrated {
        padding: 1rem;
        border-radius: 18px;
    }

    .landing-announcement-card.integrated .section-heading-row h2 {
        font-size: 1.2rem;
    }

    .landing-announcement-item {
        min-height: 78px;
        padding: .9rem .95rem;
        border-radius: 14px;
    }

    .landing-announcement-item strong {
        font-size: .96rem;
    }

    .landing-announcement-item small {
        font-size: .84rem;
    }

    .landing-contact-actions .landing-cta-primary,
    .landing-contact-actions .landing-cta-secondary {
        width: 100%;
    }

    .floating-cs {
        width: 58px;
        height: 58px;
    }

    .floating-cs img {
        width: 36px;
        height: 36px;
    }
}




/* Pengumuman dashboard textarea */
.pengumuman-textarea-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pengumuman-textarea {
    border-radius: 16px;
    padding: 16px 18px;
    min-height: 190px;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    resize: vertical;
    border: 1px solid #dbe3f0;
    background: linear-gradient(180deg, #fbfdff 0%, #f8fafc 100%);
    transition: all .2s ease;
    white-space: pre-wrap;
}
.pengumuman-textarea:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99,102,241,.14);
}
.pengumuman-textarea::placeholder {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.8;
}
.pengumuman-textarea-note {
    display: block;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
    padding-left: 2px;
}


.pengumuman-editor-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pengumuman-editor-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #dbe3f1;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.08);
}

.editor-tool-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #dbe3f1;
    border-radius: 12px;
    background: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.editor-tool-btn:hover {
    border-color: #6366f1;
    color: #4f46e5;
    box-shadow: 0 6px 14px rgba(99, 102, 241, .16);
}

.editor-tool-divider {
    width: 1px;
    height: 24px;
    background: #dbe3f1;
    margin: 0 2px;
}

.pengumuman-editor {
    min-height: 240px;
    border-radius: 18px;
    padding: 18px 18px;
    border: 1px solid #dbe3f1;
    background: #fff;
    overflow-y: auto;
    line-height: 1.7;
}

.pengumuman-editor:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, .12);
}

.pengumuman-editor p { margin: 0 0 12px; }
.pengumuman-editor ul,
.pengumuman-editor ol,
.student-announcement-content ul,
.student-announcement-content ol { padding-left: 22px; margin: 0 0 12px; }
.pengumuman-editor a,
.student-announcement-content a { color: #2563eb; text-decoration: underline; }
.pengumuman-textarea-note { color: #64748b; font-size: 12px; }
.student-announcement-content p:last-child { margin-bottom: 0; }
.student-announcement-content a { font-weight: 600; }


/* ==== 2026 responsive premium polish overrides ==== */
html{scroll-behavior:smooth;}
body{overflow-x:hidden;}
img{max-width:100%;height:auto;}
.container,.container-fluid{max-width:100%;}
.glass-nav .navbar-collapse,
.landing-nav .navbar-collapse{transition:all .25s ease;}
.landing-nav .navbar-toggler,
.glass-nav .navbar-toggler{box-shadow:none;}
.landing-hero-login-card,
.landing-info-card,
.landing-requirement-card,
.landing-announcement-card,
.landing-contact-card,
.hero-card,
.sidebar-card,
.card,
.panel{border-radius:22px;}
.landing-main-panel{box-shadow:0 22px 50px rgba(15,23,42,.08);}
.landing-hero-shell{box-shadow:0 24px 60px rgba(8,53,31,.12);}
.landing-hero-copy,.landing-hero-login-col,.landing-hero-art-photo,.landing-main-panel,.landing-requirements-grid>*{min-width:0;}
.landing-hero-login-form .form-control,
.form-control,
.form-select{min-height:48px;border-radius:14px;}
.table-responsive-premium,.admin-table-wrap,.data-table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;}
.table-responsive-premium table,.admin-table-wrap table,.data-table-wrap table{min-width:760px;}
.footer-soft{background:linear-gradient(180deg,rgba(255,255,255,.7),rgba(248,250,252,.95));backdrop-filter:blur(10px);}

@media (max-width: 991.98px){
  .glass-nav .navbar-collapse,
  .landing-nav .navbar-collapse{
    margin-top:14px;
    padding:14px;
    border-radius:18px;
    background:rgba(15,23,42,.92);
    box-shadow:0 18px 40px rgba(15,23,42,.18);
  }
  .glass-nav .navbar-nav,
  .landing-nav .navbar-nav{align-items:stretch !important;gap:10px;}
  .glass-nav .nav-link,
  .landing-nav .nav-link{padding:.8rem 1rem;border-radius:14px;}
  .landing-login-btn,.glass-nav .btn{width:100%;justify-content:center;display:inline-flex;}
  .landing-hero-shell{padding:1.5rem 1rem 1rem !important;min-height:auto !important;}
  .landing-hero-shell .row{row-gap:1rem;}
  .landing-hero-copy{text-align:left;padding-right:0 !important;}
  .landing-hero-copy h1{font-size:clamp(2.3rem,9vw,3.5rem) !important;max-width:none;}
  .landing-hero-copy p{font-size:1rem !important;max-width:none;}
  .landing-hero-login-col{order:2;}
  .landing-hero-login-card{margin:0 auto;max-width:100%;}
  .landing-main-panel{padding:1rem !important;}
  .landing-requirements-grid,
  .landing-contact-grid,
  .landing-announcement-grid,
  .landing-stat-grid{grid-template-columns:1fr !important;}
  .landing-requirements-actions,
  .section-heading-row,
  .landing-contact-row{gap:.9rem;}
}

@media (max-width: 767.98px){
  .container,.container-fluid,.landing-page-frame{padding-left:12px !important;padding-right:12px !important;}
  .landing-nav-wrap{padding-top:10px;padding-bottom:10px;}
  .landing-brand{max-width:calc(100% - 64px);}
  .landing-brand strong{font-size:1rem !important;line-height:1.15;display:block;}
  .landing-brand small{display:block !important;font-size:.68rem;line-height:1.3;margin-top:3px;}
  .landing-brand-logo{width:44px !important;height:44px !important;}
  .landing-pill{display:inline-flex;max-width:100%;white-space:normal;text-align:left;}
  .landing-hero-copy h1{font-size:clamp(2rem,10vw,2.75rem) !important;line-height:1.08;}
  .landing-hero-copy .d-flex{flex-direction:column;align-items:stretch;}
  .landing-cta-primary,.landing-cta-secondary,.landing-login-submit,.landing-login-alt{width:100%;}
  .landing-hero-login-actions{grid-template-columns:1fr !important;display:grid;gap:.75rem;}
  .landing-info-grid > [class*="col-"]{width:100%;}
  .landing-info-card.compact{min-height:auto !important;}
  .landing-info-icon{width:56px;height:56px;font-size:1.35rem;}
  .section-heading-row h2{font-size:1.15rem !important;line-height:1.3;}
  .landing-section-badge{font-size:.78rem;}
  .contact-item,.floating-cs,.wa-float{max-width:100%;}
  .hero,.hero-card,.sidebar-card{border-radius:18px;}
}


/* === Final polish full fix 2026 === */
html{scroll-behavior:smooth;}
body{font-feature-settings:"liga" 1,"kern" 1;}
img{max-width:100%;height:auto;}
.container,.container-fluid{min-width:0;}
.site-logo{width:42px;height:42px;object-fit:contain;filter:drop-shadow(0 6px 12px rgba(0,0,0,.15));}
.navbar-brand span{font-weight:800;letter-spacing:-.02em;}
.glass-nav .navbar-toggler{border:1px solid rgba(255,255,255,.18);box-shadow:none;padding:.55rem .75rem;border-radius:14px;}
.glass-nav .navbar-toggler:focus{box-shadow:0 0 0 .22rem rgba(255,255,255,.14);}
.glass-nav .navbar-collapse{min-width:0;}
.btn,.form-control,.form-select,.card,.modal-content,.alert,.input-group-text{transition:all .22s ease;}
.btn{border-radius:14px;font-weight:700;}
.btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(15,23,42,.08);}
.btn:active{transform:translateY(0);}
.form-label{font-weight:700;color:#334155;}
.form-control,.form-select,textarea.form-control{min-height:48px;background:#fff;}
textarea.form-control{min-height:120px;}
.form-control::placeholder{color:#94a3b8;}
.form-control:hover,.form-select:hover{border-color:#c7d2fe;}
.card,.soft-card,.hero-card,.step-card,.metric-pill,.upload-box,.form-shell,.form-card{backdrop-filter:blur(10px);}
.shadow-soft{box-shadow:0 20px 40px rgba(15,23,42,.08);}
.table-responsive{border-radius:18px;}
.table-responsive::-webkit-scrollbar{height:10px;}
.table-responsive::-webkit-scrollbar-thumb{background:#cbd5e1;border-radius:999px;}
.premium-section-gap{padding-top:1.2rem;padding-bottom:1.2rem;}

/* auto wrappers inserted by JS */
.responsive-table-shell{overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:18px;border:1px solid rgba(148,163,184,.18);background:#fff;box-shadow:0 14px 28px rgba(15,23,42,.04);}
.responsive-table-shell > table{margin-bottom:0;}

/* Landing page polish */
.landing-page-frame{padding-left:clamp(12px,2vw,26px);padding-right:clamp(12px,2vw,26px);}
.landing-main-panel,.landing-info-card,.landing-requirement-card,.landing-contact-card,.landing-schedule-card,.landing-announcement-card,.landing-hero-login-card{box-shadow:0 18px 42px rgba(16,24,40,.08);}
.landing-main-panel{border-radius:28px;overflow:hidden;}
.landing-info-card,.landing-requirement-card,.landing-contact-card,.landing-schedule-card,.landing-announcement-card{border:1px solid rgba(15,23,42,.06);}
.landing-info-card:hover,.landing-requirement-card:hover,.landing-contact-card:hover,.landing-schedule-card:hover,.landing-announcement-card:hover{transform:translateY(-3px);box-shadow:0 22px 42px rgba(20,83,45,.12);}
.landing-hero-login-card{border:1px solid rgba(20,83,45,.12);}
.landing-hero-login-form .form-control{border-radius:16px;min-height:52px;padding:.9rem 1rem;}
.landing-login-submit,.landing-login-alt{min-height:50px;display:inline-flex;align-items:center;justify-content:center;}
.landing-divider{opacity:.7;}
.landing-section-badge{box-shadow:0 10px 20px rgba(27,127,50,.14);}
.landing-info-link{text-decoration:none;display:block;height:100%;}
.landing-contact-floating,.floating-cs,.floating-wa,.wa-float{box-shadow:0 18px 34px rgba(15,23,42,.16) !important;}

/* Student/auth pages */
.form-shell,.form-card{overflow:hidden;}
.register-body .row>[class*='col-']{margin-bottom:.2rem;}
.captcha-box{border-radius:16px;background:#fff;border:1px solid #e2e8f0;padding:.6rem;}
.footer-soft{margin-top:2rem !important;}

/* Small screens */
@media (max-width: 991.98px){
  .glass-nav .navbar-collapse{margin-top:14px;background:rgba(15,23,42,.94);border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:14px;box-shadow:0 18px 32px rgba(15,23,42,.18);}
  .glass-nav .navbar-nav{gap:8px;align-items:stretch !important;}
  .glass-nav .nav-link,.glass-nav .btn{width:100%;justify-content:center;}
  .landing-nav-wrap{min-height:72px;}
  .landing-brand-logo{width:52px;height:52px;}
  .landing-brand strong{font-size:1.35rem;}
  .landing-brand small{font-size:.82rem;}
  .landing-menu{gap:.3rem;}
  .landing-menu .nav-link{padding:.7rem .9rem;border-radius:14px;}
  .landing-login-btn{width:100%;display:inline-flex;justify-content:center;padding:.85rem 1.15rem;}
  .landing-hero-shell{padding:1.5rem;border-radius:0 0 24px 24px;}
  .landing-hero-copy h1{font-size:clamp(2rem,9vw,3rem);}
  .landing-hero-copy p{font-size:1rem;}
  .landing-cta-primary,.landing-cta-secondary{font-size:1rem;padding:.9rem 1.15rem;}
  .landing-hero-login-col{order:2;}
  .landing-hero-art{min-height:0;}
  .landing-main-panel{border-radius:22px;}
}
@media (max-width: 767.98px){
  .site-logo{width:38px;height:38px;}
  .hero{padding:2.75rem 0 2.5rem;}
  .landing-page-frame{padding-left:10px;padding-right:10px;}
  .landing-hero-shell{padding:1rem 1rem 1.25rem;}
  .landing-pill{font-size:.82rem;padding:.45rem .8rem;}
  .landing-hero-copy h1{margin-bottom:.8rem;}
  .landing-hero-login-card{border-radius:22px;}
  .landing-hero-login-head,.landing-hero-login-form{padding-left:1rem !important;padding-right:1rem !important;}
  .landing-hero-login-actions{display:grid !important;grid-template-columns:1fr;gap:.75rem;}
  .landing-requirements-actions{width:100%;display:grid;grid-template-columns:1fr;gap:.65rem;}
  .section-heading-row{display:block !important;}
  .section-heading-row > * + *{margin-top:.9rem;}
  .landing-info-grid .col-sm-6,.landing-requirements-grid,.landing-contact-grid,.landing-schedule-grid{min-width:0;}
  .landing-info-card{min-height:auto;}
  .form-card{margin:.75rem;}
  .register-body{padding:1rem;}
  .register-heading{padding:1rem 1.1rem;font-size:1.35rem;}
  .footer-soft{padding-bottom:5.5rem !important;}
}
@media (max-width: 575.98px){
  .btn,.landing-cta-primary,.landing-cta-secondary,.landing-login-submit,.landing-login-alt{width:100%;}
  .hero-card,.soft-card,.step-card,.upload-box,.metric-pill,.form-shell,.form-card{border-radius:20px;}
  .table-responsive,.responsive-table-shell{border-radius:16px;}
}


/* === hard fix: horizontal table scroll + action column visibility === */
body{overflow-x:clip;}
.table-responsive,
.responsive-table-shell,
.panel-body,
.document-table-wrap,
.history-table-wrap,
.payment-table-wrap,
.summary-table-wrap,
.admin-table-wrap,
.data-table-wrap{
  display:block;
  width:100%;
  max-width:100%;
  overflow-x:auto !important;
  overflow-y:visible;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-x pan-y;
  scrollbar-gutter:stable both-edges;
}
.table-responsive table,
.responsive-table-shell table,
.admin-data-table,
.student-data-table{
  width:max-content;
  min-width:100%;
}
.panel{overflow:visible;}
.row-actions{display:flex;flex-wrap:nowrap;gap:6px;align-items:center;min-width:max-content;}
.row-actions > *{flex:0 0 auto;}
@media (max-width: 1199.98px){
  .admin-data-table{min-width:1180px !important;}
  .student-data-table{min-width:980px !important;}
}
@media (max-width: 991.98px){
  .admin-data-table th:last-child,
  .admin-data-table td:last-child,
  .student-data-table th:last-child,
  .student-data-table td:last-child{
    position:static !important;
    right:auto !important;
    box-shadow:none !important;
    background:inherit !important;
  }
  .table-responsive,
  .responsive-table-shell,
  .panel-body{padding-bottom:8px;}
}


/* Student WhatsApp actions after daftar ulang */
.student-wa-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
    margin-top:18px;
}
.student-wa-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:none;
    border-radius:14px;
    padding:12px 18px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(15, 23, 42, .12);
    transition:all .2s ease;
}
.student-wa-btn i{
    font-size:1.1rem;
    line-height:1;
}
.student-wa-btn:hover{
    transform:translateY(-1px);
    text-decoration:none;
}
.student-wa-btn-group{
    background:linear-gradient(135deg, #25d366, #128c7e);
    color:#fff;
}
.student-wa-btn-group:hover,
.student-wa-btn-group:focus{
    color:#fff;
    box-shadow:0 14px 34px rgba(18, 140, 126, .25);
}
.student-wa-btn-chat{
    background:#ffffff;
    color:#128c7e;
    border:1px solid rgba(18, 140, 126, .16);
}
.student-wa-btn-chat:hover,
.student-wa-btn-chat:focus{
    color:#128c7e;
    box-shadow:0 14px 34px rgba(18, 140, 126, .16);
}
.student-wa-floating{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:1080;
    border-radius:999px;
    padding:14px 18px;
    box-shadow:0 16px 40px rgba(18, 140, 126, .28);
}
@media (max-width: 991.98px){
    .student-wa-floating{
        right:14px;
        bottom:14px;
        padding:12px 16px;
    }
}
@media (max-width: 575.98px){
    .student-wa-actions{
        flex-direction:column;
        align-items:stretch;
    }
    .student-wa-btn{
        justify-content:center;
        width:100%;
    }
    .student-wa-floating{
        width:auto;
        max-width:calc(100vw - 28px);
    }
    .student-wa-floating span{
        white-space:nowrap;
    }
}


/* Inline WhatsApp icon fallback */
.wa-inline-icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    flex: 0 0 18px;
    vertical-align: middle;
    fill: currentColor;
}
.student-wa-btn .wa-inline-icon{
    width: 19px;
    height: 19px;
    flex-basis: 19px;
}
.student-wa-btn-group .wa-inline-icon{
    fill: #ffffff;
}
.student-wa-btn-chat .wa-inline-icon{
    fill: #128c7e;
}


/* Premium WhatsApp buttons */
.student-wa-actions{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;
    margin-top:18px;
}
.student-wa-btn{
    position:relative;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:13px 20px;
    border:0 !important;
    border-radius:999px !important;
    font-weight:800;
    letter-spacing:.01em;
    text-decoration:none !important;
    line-height:1.1;
    overflow:hidden;
    backdrop-filter:blur(10px);
    transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.student-wa-btn::before{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:999px;
    pointer-events:none;
}
.student-wa-btn:hover{
    transform:translateY(-2px);
}
.student-wa-btn-group{
    color:#fff !important;
    background:linear-gradient(135deg, #25d366 0%, #17b85d 48%, #128c7e 100%) !important;
    box-shadow:0 14px 34px rgba(18, 140, 126, .28), inset 0 1px 0 rgba(255,255,255,.18);
}
.student-wa-btn-group::before{
    border:1px solid rgba(255,255,255,.16);
}
.student-wa-btn-group:hover{
    color:#fff !important;
    box-shadow:0 18px 42px rgba(18, 140, 126, .34), inset 0 1px 0 rgba(255,255,255,.18);
}
.student-wa-btn-chat{
    color:#128c7e !important;
    background:rgba(255,255,255,.96) !important;
    border:1px solid rgba(18,140,126,.14) !important;
    box-shadow:0 14px 36px rgba(15,23,42,.12);
}
.student-wa-btn-chat::before{
    border:1px solid rgba(18,140,126,.08);
}
.student-wa-btn-chat:hover{
    color:#128c7e !important;
    box-shadow:0 18px 44px rgba(15,23,42,.16);
}

/* Smaller premium floating button */
.student-wa-floating{
    position:fixed !important;
    right:18px;
    bottom:18px;
    z-index:1080;
    width:58px;
    height:58px;
    min-height:58px;
    padding:0 !important;
    border-radius:50% !important;
    box-shadow:0 20px 46px rgba(18, 140, 126, .32), 0 4px 12px rgba(15,23,42,.12);
}
.student-wa-floating span{
    display:none !important;
}
.student-wa-floating .wa-inline-icon{
    width:26px !important;
    height:26px !important;
    flex:0 0 26px !important;
}
.student-wa-floating::after{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50%;
    border:2px solid rgba(37,211,102,.18);
    animation:waPulse 2s infinite;
}
@keyframes waPulse{
    0%{transform:scale(.92); opacity:.9;}
    70%{transform:scale(1.12); opacity:0;}
    100%{transform:scale(1.12); opacity:0;}
}

/* Icon fallback */
.wa-inline-icon{
    width:20px;
    height:20px;
    display:inline-block !important;
    flex:0 0 20px;
    fill:currentColor !important;
    vertical-align:middle;
}
.student-wa-btn-group .wa-inline-icon{
    fill:#ffffff !important;
}
.student-wa-btn-chat .wa-inline-icon{
    fill:#128c7e !important;
}

@media (max-width: 991.98px){
    .student-wa-floating{
        right:14px;
        bottom:14px;
        width:54px;
        height:54px;
        min-height:54px;
    }
    .student-wa-floating .wa-inline-icon{
        width:24px !important;
        height:24px !important;
        flex-basis:24px !important;
    }
}
@media (max-width: 575.98px){
    .student-wa-actions{
        flex-direction:column;
        align-items:stretch;
    }
    .student-wa-btn:not(.student-wa-floating){
        width:100%;
    }
}


/* Anti copy protection */
body.anti-copy-active{
    -webkit-touch-callout: none;
}
.anti-copy-active :not(input):not(textarea):not(select):not([contenteditable="true"]):not(.allow-copy-paste){
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.anti-copy-active img{
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}
/* =========================================================
   FINAL FIX WARNA CARD INFORMASI PENTING
   Tempel di PALING BAWAH style.css
========================================================= */

.landing-info-grid .landing-info-link{
    height: 100%;
}

.landing-info-grid .landing-info-card.compact{
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 20px;
    border: 1px solid #e5efe5;
    box-shadow: 0 12px 28px rgba(16, 55, 34, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.landing-info-grid .landing-info-card.compact::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 0;
}

.landing-info-grid .landing-info-card.compact::after{
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 4px;
    border-radius: 999px;
    opacity: .9;
    z-index: 0;
}

.landing-info-grid .landing-info-card.compact > *{
    position: relative;
    z-index: 1;
}

.landing-info-grid .landing-info-card.compact:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(16, 55, 34, .12);
}

/* icon default */
.landing-info-grid .landing-info-card.compact .landing-info-icon{
    width: 76px;
    height: 76px;
    border-radius: 20px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all .25s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.landing-info-grid .landing-info-card.compact h5{
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: .4rem;
    transition: color .25s ease;
}

.landing-info-grid .landing-info-card.compact p{
    font-size: .92rem;
    line-height: 1.5;
    transition: color .25s ease;
}

/* =========================
   CARD 1 - Pendaftaran
========================= */
.landing-info-grid .col-sm-6.col-lg-3:nth-child(1) .landing-info-card.compact{
    background: linear-gradient(180deg, #f2fff6 0%, #e1f7e8 100%);
    border-color: #cdeed8;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(1) .landing-info-card.compact::after{
    background: linear-gradient(90deg, #22c55e, #15803d);
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(1) .landing-info-card.compact .landing-info-icon{
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #fff;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(1) .landing-info-card.compact h5{
    color: #166534;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(1) .landing-info-card.compact p{
    color: #4d6b55;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(1) .landing-info-card.compact:hover{
    background: linear-gradient(180deg, #dcfce7 0%, #c7f0d3 100%);
    border-color: #b9e8c7;
}

/* =========================
   CARD 2 - Jadwal
========================= */
.landing-info-grid .col-sm-6.col-lg-3:nth-child(2) .landing-info-card.compact{
    background: linear-gradient(180deg, #eff8ff 0%, #dcefff 100%);
    border-color: #cfe5fb;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(2) .landing-info-card.compact::after{
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(2) .landing-info-card.compact .landing-info-icon{
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(2) .landing-info-card.compact h5{
    color: #1d4ed8;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(2) .landing-info-card.compact p{
    color: #55697c;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(2) .landing-info-card.compact:hover{
    background: linear-gradient(180deg, #e0f2fe 0%, #cfe8ff 100%);
    border-color: #bddcfb;
}

/* =========================
   CARD 3 - Alur
========================= */
.landing-info-grid .col-sm-6.col-lg-3:nth-child(3) .landing-info-card.compact{
    background: linear-gradient(180deg, #fff9eb 0%, #fff0c8 100%);
    border-color: #f8e0a7;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(3) .landing-info-card.compact::after{
    background: linear-gradient(90deg, #f59e0b, #d97706);
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(3) .landing-info-card.compact .landing-info-icon{
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(3) .landing-info-card.compact h5{
    color: #b45309;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(3) .landing-info-card.compact p{
    color: #7b6854;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(3) .landing-info-card.compact:hover{
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f4d36d;
}

/* =========================
   CARD 4 - Hubungi Kami
========================= */
.landing-info-grid .col-sm-6.col-lg-3:nth-child(4) .landing-info-card.compact{
    background: linear-gradient(180deg, #f7f2ff 0%, #eadfff 100%);
    border-color: #dccdf8;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(4) .landing-info-card.compact::after{
    background: linear-gradient(90deg, #8b5cf6, #6d28d9);
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(4) .landing-info-card.compact .landing-info-icon{
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #fff;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(4) .landing-info-card.compact h5{
    color: #6d28d9;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(4) .landing-info-card.compact p{
    color: #6b5e7c;
}
.landing-info-grid .col-sm-6.col-lg-3:nth-child(4) .landing-info-card.compact:hover{
    background: linear-gradient(180deg, #efe4ff 0%, #dfccff 100%);
    border-color: #cfb7fb;
}

/* efek hover icon */
.landing-info-grid .landing-info-card.compact:hover .landing-info-icon{
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.5),
        0 10px 20px rgba(0,0,0,.08);
}

/* responsive */
@media (max-width: 991.98px){
    .landing-info-grid .landing-info-card.compact{
        min-height: 175px;
    }
}

@media (max-width: 767.98px){
    .landing-info-grid .landing-info-card.compact{
        min-height: auto;
        padding: 1.15rem 1rem;
        border-radius: 18px;
    }

    .landing-info-grid .landing-info-card.compact .landing-info-icon{
        width: 64px;
        height: 64px;
        font-size: 1.65rem;
        border-radius: 18px;
        margin-bottom: 12px;
    }

    .landing-info-grid .landing-info-card.compact h5{
        font-size: 1rem;
    }

    .landing-info-grid .landing-info-card.compact p{
        font-size: .88rem;
        line-height: 1.45;
    }
}

