@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html{
    overflow-x: hidden;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, li { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; }

/* ── tokens ── */
:root {
    --navy: #0c1e3a;
    --navy-light: #162d50;
    --gold: #f77800;
    --gold-soft: #fef3c7;
    --bg-soft: #f7f8fa;
    --text: #1e293b;
    --text-muted: #64748b;
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.06);
}

/* ── shared ── */
.sec { padding: 90px 0; }
.sec--white { background: #fff; }
.sec--soft { background: var(--bg-soft); }
.sec--dark { background: var(--navy); }

.sec__label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}
.sec__label--gold { color: var(--gold); }

.sec__title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 52px;
    letter-spacing: -.3px;
    line-height: 1.2;
}
.sec__title--white { color: #fff; }

.sec__note {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.muted-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.pill {
    display: inline-block;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}
.pill--gold {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-main {
    display: inline-block;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: var(--gold);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: .2px;
}
.btn-main:hover { background: #e06b00; transform: translateY(-1px); }
.btn-main--sm { padding: 10px 28px; font-size: 14px; }

/* ── scroll reveal ── */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}
[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 115px 0;
    overflow: hidden;
    background: url('../image/two-days-workshop.jpg') center/cover no-repeat;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12,30,58,.96) 0%, rgba(12,30,58,.82) 45%, rgba(12,30,58,.35) 75%, transparent 100%);
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}
.hero__title span {
    color: var(--gold);
}

.hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 28px;
}

.hero__chips {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    max-width: fit-content;
}
.chip img {
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: .7;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero__price-hint {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero__price-hint s {
    color: rgba(255,255,255,.3);
    font-size: 15px;
}
.badge-off {
    font-size: 11px;
    font-weight: 700;
    background: var(--gold);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 50px;
}

.hero__logo {
    max-width: 300px;
    filter: brightness(0) invert(1);
    opacity: .08;
}

/* ============================================
   LEARN CARDS
   ============================================ */
.card-learn {
    position: relative;
    padding: 32px 28px 28px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    height: 100%;
    transition: all .3s ease;
    overflow: hidden;
}
.card-learn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card-learn__num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(12,30,58,.04);
    line-height: 1;
}

.card-learn img {
    height: 40px;
    margin-bottom: 18px;
}

.card-learn h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.card-learn p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all .3s ease;
}
.pain-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pain-item__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pain-item__icon img {
    height: 36px;
}

.pain-item h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.pain-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   OUTCOMES
   ============================================ */
.card-outcome {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    height: 100%;
    transition: all .3s ease;
}
.card-outcome:hover {
    background: rgba(255,255,255,.11);
    transform: translateY(-2px);
}

.card-outcome img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: .75;
    flex-shrink: 0;
}

.card-outcome h6 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

/* ============================================
   AUDIENCE
   ============================================ */
.audience-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-item {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    transition: all .3s ease;
}
.audience-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.audience-item img {
    height: 44px;
    margin-bottom: 16px;
}

.audience-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.audience-item small {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    height: 260px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.gallery-card:hover img { transform: scale(1.06); }

.gallery-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { text-align: center; max-width: 85vw; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 6px; }
.lightbox-caption { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 14px; }
.lightbox-close {
    position: absolute; top: 20px; right: 28px;
    background: none; border: none; color: #fff;
    font-size: 36px; cursor: pointer; opacity: .5;
    transition: opacity .2s; z-index: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: #fff;
    font-size: 28px; cursor: pointer; opacity: .4;
    transition: opacity .2s; padding: 16px; z-index: 1;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================
   STUDENT STORIES SECTION
   ============================================ */
.sec--student-stories {
    background: url('../image/student-stories-cta.jpg') center/cover no-repeat;
}
.sec--student-stories .sec__title {
    color: #fff;
}
.sec--student-stories .muted-text {
    color: rgba(255, 255, 255, .7);
}

/* ============================================
   VIDEO
   ============================================ */
.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy);
    cursor: pointer;
}

.video-frame video,
.video-frame__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-frame__play {
    position: relative;
    background: none; border: none;
    cursor: pointer;
    z-index: 2;
}

.video-frame__play::before,
.video-frame__play::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: pulse-spread 2s ease-out infinite;
}

.video-frame__play::after {
    animation-delay: 1s;
}

@keyframes pulse-spread {
    0% { opacity: .5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2.2); }
}

.video-frame__play svg {
    position: relative;
    z-index: 1;
    transition: transform .25s ease;
}

.video-frame__play:hover svg {
    transform: scale(1.1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-card {
    padding: 28px;
    background: #fff;
    border-radius: var(--radius);
    height: 100%;
}

.testi-card__stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.testi-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.avatar {
    width: 36px; height: 36px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-card__user strong {
    font-size: 14px;
    color: var(--navy);
    display: block;
}
.testi-card__user small {
    font-size: 12px;
    color: #94a3b8;
}

/* ============================================
   WHY US
   ============================================ */
.why-logo {
    width: 100%;
    height: 100%;
    opacity: .8;
}

.why-list {
    display: flex;
    flex-direction: column;
}

.why-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #f1f5f9;
}
.why-row:last-child { border-bottom: none; }

.why-row__marker {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.why-row h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.why-row p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* ============================================
   CTA
   ============================================ */
.sec--cta { padding: 70px 0; background: var(--bg-soft); }

.cta-box {
    background: url('../image/student-stories-cta.jpg') center/cover no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(105deg, rgba(12,30,58,.95) 0%, rgba(12,30,58,.85) 45%, rgba(12,30,58,.35) 75%, transparent 100%); */
    z-index: 0;
}

.cta-box__content {
    position: relative;
    z-index: 1;
    padding: 52px 56px;
    /* max-width: 540px; */
}

.cta-box__content .pill--gold {
    margin-bottom: 14px;
}

.cta-box__content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.cta-box__content h2 span {
    color: var(--gold);
}

.cta-box__content > p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-box__price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-box__amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.cta-box__old-price {
    font-size: 18px;
    color: rgba(255,255,255,.3);
}

.cta-box__discount {
    font-size: 11px;
    font-weight: 700;
    background: var(--gold);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
}

.btn-main--glow {
    box-shadow: 0 4px 24px rgba(247,120,0,.35);
    animation: btn-glow 2.5s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 4px 24px rgba(247,120,0,.35); }
    50% { box-shadow: 0 6px 36px rgba(247,120,0,.55); }
}

/* ============================================
   STICKY BAR
   ============================================ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navy);
    z-index: 100;
    transform: translateY(100%);
    transition: transform .35s ease;
}
.sticky-bar.visible { transform: translateY(0); }

.sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.sticky-bar__timer {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sticky-bar__label {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}

.countdown {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    gap: 4px;
}
.countdown span {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    min-width: 26px;
    text-align: center;
}

/* ============================================
   MODAL
   ============================================ */
.modal-custom {
    border-radius: 16px;
    overflow: hidden;
}
.modal-custom .modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}
.modal-price {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}
.form-field {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color .2s;
}
.form-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232,163,23,.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 36px 0;
    background: #080f1d;
    color: rgba(255,255,255,.35);
    font-size: 13px;
    margin-bottom: 50px;
}
.footer__logo {
    height: 40px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: .4;
}
.footer p { margin-bottom: 0; }