/* =====================================================
   RESET & BASE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #151222;
    color: #ffffff;
    overflow-x: hidden;
}


/* =====================================================
   TOP ANNOUNCEMENT BAR
===================================================== */

.announcement-bar {
    width: 100%;
    min-height: 42px;
    background: #242136;

    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    font-size: 12px;
    font-weight: 700;
    color: #f1eef0;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rocket-icon {
    font-size: 11px;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown-box {
    min-width: 28px;
    height: 27px;
    padding: 0 7px;

    background: #39354a;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d9d6df;
    font-size: 12px;
    font-weight: 700;
}

.countdown-label {
    color: #c5c1cc;
    font-size: 11px;
}

.seats-left {
    font-size: 11px;
    color: #ece9ed;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 100%;
    height: 72px;

    background: #f5f2ec;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 100;
}

.nav-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo-image {
    max-height: 32px;
    max-width: 180px;
    object-fit: contain;
}

.logo-text {
    font-family: "Montserrat", sans-serif;

    font-size: 22px;
    font-weight: 800;

    color: #292938;

    margin-left: 5px;
}


/* =====================================================
   NAV LINKS
===================================================== */

.nav-links {
    display: flex;
    align-items: center;

    gap: 32px;

    margin-left: auto;
    margin-right: 55px;
}

.nav-links a {
    text-decoration: none;

    color: #666572;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #f65a27;
}


/* =====================================================
   NAV ACTIONS
===================================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-button {
    width: 41px;
    height: 41px;

    border-radius: 50%;
    border: 1px solid #d8d5cf;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #292938;
    background: #faf9f6;

    text-decoration: none;

    font-size: 18px;

    transition: 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    color: #25d366;
}

.nav-demo-button {
    text-decoration: none;

    background: linear-gradient(
        135deg,
        #ff7737,
        #f54b17
    );

    color: #ffffff;

    padding: 13px 24px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 10px 24px
        rgba(246, 85, 27, 0.22);

    transition: 0.3s ease;
}

.nav-demo-button:hover {
    transform: translateY(-2px);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-button {
    display: none;

    border: none;
    background: transparent;

    color: #292938;

    font-size: 20px;

    cursor: pointer;
}

.mobile-menu {
    display: none;
}


/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {
    width: 100%;
    min-height: 684px;

    background:
        radial-gradient(
            circle at 57% 5%,
            rgba(48, 45, 77, 0.28),
            transparent 33%
        ),
        linear-gradient(
            110deg,
            #1b182e 0%,
            #151322 60%,
            #12111d 100%
        );

    display: flex;
    align-items: center;

    padding: 48px 0 75px;
}

.hero-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.12fr 0.88fr;

    gap: 75px;

    align-items: center;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    padding-top: 2px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;

    color: #43afa6;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #38c2b4;

    margin-right: 10px;
}


/* =====================================================
   HERO TITLE
===================================================== */

.hero-title {
    font-family: "Montserrat", sans-serif;

    font-size: 61px;
    line-height: 0.95;

    letter-spacing: -2.6px;

    font-weight: 800;

    margin-bottom: 25px;
}

.title-white {
    color: #f4f3f4;
}

.title-green {
    color: #2baaa0;
}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero-description {
    max-width: 570px;

    color: #b9b6c8;

    font-size: 17px;
    line-height: 1.62;

    margin-bottom: 40px;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 17px;

    margin-bottom: 37px;
}

.primary-demo-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 0 25px;

    border-radius: 30px;

    text-decoration: none;

    background: linear-gradient(
        135deg,
        #ff7838,
        #f24b17
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 14px 30px
        rgba(248, 81, 28, 0.22);

    transition: 0.3s ease;
}

.primary-demo-button:hover {
    transform: translateY(-3px);
}

.course-video-link {
    display: flex;
    align-items: center;

    gap: 11px;

    color: #bdb9ca;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.play-circle {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #5b52b7,
            #2b9da0
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 13px;

    box-shadow:
        0 8px 22px
        rgba(67, 82, 183, 0.25);
}

.video-text {
    border-bottom: 1px solid #777486;
    padding-bottom: 3px;
}


/* =====================================================
   TRUST SECTION
===================================================== */

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 29px;
}

.rating-block {
    display: flex;
    align-items: center;
}

.stars {
    color: #ffbe3b;

    font-size: 12px;

    letter-spacing: 1px;

    margin-right: 8px;
}

.rating-text {
    color: #c1bed0;
    font-size: 13px;
}

.joined-block {
    display: flex;
    align-items: center;
    gap: 9px;
}

.student-avatars {
    display: flex;
}

.student-avatar {
    width: 29px;
    height: 29px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    margin-left: -7px;

    border: 2px solid #19162a;
}

.student-avatar:first-child {
    margin-left: 0;
}

.avatar-one {
    background: #ff6531;
}

.avatar-two {
    background: #6956bc;
}

.avatar-three {
    background: #2ca99d;
}

.joined-text {
    color: #c1bed0;
    font-size: 13px;
}

.experience-text {
    width: 100%;

    color: #aaa7bb;

    font-size: 13px;

    margin-top: -2px;
}


/* =====================================================
   DEMO FORM CARD
===================================================== */

.demo-form-card {
    position: relative;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98),
            rgba(246, 246, 247, 0.98)
        );

    border-radius: 21px;

    padding: 35px 27px 25px;

    color: #292837;

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.18);
}


/* =====================================================
   FREE BADGE
===================================================== */

.free-badge {
    position: absolute;

    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    background:
        linear-gradient(
            135deg,
            #ff7838,
            #f34c17
        );

    color: #ffffff;

    padding: 8px 17px;

    border-radius: 20px;

    white-space: nowrap;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
}


/* =====================================================
   FORM HEADINGS
===================================================== */

.form-title {
    font-family: "Montserrat", sans-serif;

    font-size: 21px;
    font-weight: 800;

    margin-bottom: 7px;
}

.form-description {
    color: #696979;

    font-size: 14px;
    line-height: 1.55;

    margin-bottom: 17px;
}

.form-step {
    color: #727381;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 14px;
}


/* =====================================================
   FORM FIELDS
===================================================== */

.form-group {
    margin-bottom: 11px;
}

.form-group label {
    display: block;

    color: #656675;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    height: 45px;

    border: 1px solid #d6d4d0;
    border-radius: 11px;

    padding: 0 15px;

    background: #fafafa;

    outline: none;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    color: #292837;

    transition: 0.25s ease;
}

.form-group input::placeholder {
    color: #7e7d89;
}

.form-group input:focus {
    border-color: #ff6631;

    box-shadow:
        0 0 0 3px
        rgba(255, 102, 49, 0.08);
}


/* =====================================================
   COURSE MODE
===================================================== */

.course-mode-selection {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

    margin-top: 4px;
    margin-bottom: 13px;
}

.course-mode-card {
    display: block;

    min-height: 67px;

    border: 1px solid #d8d6d2;
    border-radius: 11px;

    padding: 10px 13px;

    background: #fbfbfb;

    cursor: pointer;

    transition: 0.25s ease;
}

.course-mode-card:hover {
    border-color: #ff8b65;
}

.course-mode-card.active {
    border-color: #ff6631;

    box-shadow:
        inset 0 0 0 1px
        rgba(255, 102, 49, 0.08);
}

.course-mode-card input {
    display: none;
}

.course-mode-title {
    display: block;

    font-family: "Montserrat", sans-serif;

    color: #292837;

    font-size: 15px;
    font-weight: 800;

    margin-bottom: 6px;
}

.course-mode-price {
    display: block;

    color: #575867;

    font-size: 12px;
}


/* =====================================================
   CONTINUE BUTTON
===================================================== */

.continue-button {
    width: 100%;
    height: 49px;

    border: none;
    border-radius: 28px;

    cursor: pointer;

    background:
        linear-gradient(
            90deg,
            #ff7939,
            #f34d18
        );

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 12px 25px
        rgba(245, 82, 25, 0.23);

    transition: 0.3s ease;
}

.continue-button:hover {
    transform: translateY(-2px);
}

.continue-button span {
    margin-left: 5px;
}


/* =====================================================
   STATS SECTION
===================================================== */

.stats-section {
    width: 100%;

    background: #f3f0ea;

    border-top:
        1px solid #dedad3;

    padding: 46px 0 43px;
}

.stats-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;
}

.stat-item {
    text-align: left;
    padding-left: 16px;
}

.stat-number {
    font-family: "Montserrat", sans-serif;

    font-size: 44px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.5px;

    background:
        linear-gradient(
            90deg,
            #f15b2a 0%,
            #d84848 45%,
            #9b4b9e 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.stat-label {
    margin-top: 17px;

    color: #646372;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.2px;
}


/* =====================================================
   WHY THIS / WHY NOW SECTION
===================================================== */

.why-section {
    width: 100%;

    background: #f3f0ea;

    padding: 88px 0 92px;

    color: #202139;
}

.why-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


/* =====================================================
   WHY HEADER
===================================================== */

.why-header {
    max-width: 690px;

    margin: 0 auto;

    text-align: center;
}

.why-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #dc6135;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 16px;
}

.why-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #f16b38;
}

.why-title {
    font-family: "Montserrat", sans-serif;

    color: #202139;

    font-size: 43px;
    line-height: 1.01;

    font-weight: 800;

    letter-spacing: -1.7px;

    margin-bottom: 18px;
}

.why-description {
    max-width: 650px;

    margin: 0 auto;

    color: #696a78;

    font-size: 15px;
    line-height: 1.65;
}


/* =====================================================
   COMPARISON AREA
===================================================== */

.comparison-wrapper {
    width: 100%;

    margin-top: 42px;

    display: grid;

    grid-template-columns:
        1fr 62px 1fr;

    align-items: center;
}

.comparison-card {
    min-height: 296px;

    border-radius: 20px;

    padding: 32px 31px;
}


/* =====================================================
   OLD SCHOOL CARD
===================================================== */

.old-school-card {
    background:
        rgba(255, 255, 255, 0.16);

    border:
        1px dashed #d2ccc1;

    color: #25263a;
}

.old-school-card .comparison-title {
    color: #5f6271;
}


/* =====================================================
   DIGIEXPI METHOD CARD
===================================================== */

.digiexpi-card {
    background: #211e36;

    box-shadow:
        0 20px 38px
        rgba(31, 28, 48, 0.18);

    color: #ffffff;
}

.digiexpi-card .comparison-title {
    color: #39afa5;
}


/* =====================================================
   COMPARISON TITLE
===================================================== */

.comparison-title {
    font-family: "Montserrat", sans-serif;

    font-size: 15px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 1.1px;

    margin-bottom: 21px;
}


/* =====================================================
   COMPARISON LIST
===================================================== */

.comparison-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    font-size: 14px;
    line-height: 1.55;

    margin-bottom: 13px;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.comparison-icon {
    display: inline-flex;

    flex-shrink: 0;

    width: 15px;

    align-items: center;
    justify-content: center;

    font-size: 19px;
    line-height: 1;

    margin-top: 1px;
}

.cross-icon {
    color: #b15e42;
}

.check-icon {
    color: #34b6a8;
}


/* =====================================================
   VS DIVIDER
===================================================== */

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #5f6070;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;
    font-weight: 800;
}


/* =====================================================
   CURRICULUM SECTION
===================================================== */

.curriculum-section {
    width: 100%;

    /* Different warm beige background */
    background: #e8e1d5;

    padding: 82px 0 72px;

    color: #202139;
}

.curriculum-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


/* =====================================================
   CURRICULUM HEADER
===================================================== */

.curriculum-header {
    width: 100%;
}

.curriculum-eyebrow {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #d85a31;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.curriculum-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ed6837;

    flex-shrink: 0;
}


/* =====================================================
   CURRICULUM HEADING
===================================================== */

.curriculum-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.curriculum-heading-content {
    max-width: 620px;
}

.curriculum-title {
    font-family: "Montserrat", sans-serif;

    font-size: 43px;
    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -1.7px;

    color: #202139;

    margin-bottom: 14px;
}

.curriculum-description {
    max-width: 600px;

    color: #676876;

    font-size: 14px;
    line-height: 1.65;

    margin: 0;
}


/* =====================================================
   DOWNLOAD BUTTON
===================================================== */

.curriculum-download {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    flex-shrink: 0;

    padding: 10px 16px;

    border:
        1px solid #cfc6b9;

    border-radius: 25px;

    color: #343443;

    background:
        rgba(255, 255, 255, 0.12);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    transition: 0.25s ease;
}

.curriculum-download:hover {
    border-color: #f0612f;

    color: #f0612f;

    transform: translateY(-2px);
}


/* =====================================================
   CURRICULUM GRID
===================================================== */

.curriculum-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-top: 72px;
}


/* =====================================================
   CURRICULUM CARD
===================================================== */

.curriculum-card {
    min-height: 226px;

    background:
        rgba(255, 255, 255, 0.52);

    border:
        1px solid rgba(198, 195, 191, 0.9);

    border-radius: 18px;

    padding: 20px 17px 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(240, 97, 47, 0.45);

    box-shadow:
        0 18px 35px
        rgba(32, 33, 57, 0.09);
}


/* =====================================================
   CURRICULUM ICON
===================================================== */

.curriculum-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8eee6;

    border-radius: 11px;

    font-size: 17px;

    margin-bottom: 11px;
}


/* =====================================================
   CURRICULUM CARD TITLE
===================================================== */

.curriculum-card h3 {
    font-family: "Montserrat", sans-serif;

    color: #202139;

    font-size: 15px;
    line-height: 1.38;

    font-weight: 800;

    margin: 0 0 8px;
}


/* =====================================================
   CURRICULUM TAG
===================================================== */

.curriculum-tag {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 15px;

    background: #dcefeb;

    color: #398980;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.8px;

    margin-bottom: 9px;
}


/* =====================================================
   CURRICULUM DESCRIPTION
===================================================== */

.curriculum-card p {
    color: #686977;

    font-size: 12px;

    line-height: 1.65;

    margin: 0;
}


/* =====================================================
   WHY SECTION ANIMATION
===================================================== */

.reveal-up {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-card {
    opacity: 0;

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-left {
    transform:
        translateX(-40px);
}

.reveal-right {
    transform:
        translateX(40px);
}

.reveal-up.is-visible,
.reveal-card.is-visible {
    opacity: 1;

    transform:
        translate(0);
}


/* =====================================================
   CURRICULUM ANIMATION
===================================================== */

.curriculum-reveal-header {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.curriculum-reveal-card {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.curriculum-reveal-header.curriculum-visible,
.curriculum-reveal-card.curriculum-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   TABLET - 1100px
===================================================== */

@media (max-width: 1100px) {

    .nav-container,
    .hero-container,
    .stats-container,
    .why-container,
    .curriculum-container {
        width: 90%;
    }

    .hero-container {
        gap: 50px;
    }

    .nav-links {
        margin-right: 25px;
        gap: 20px;
    }

    .hero-title {
        font-size: 54px;
    }

    .curriculum-grid {
        grid-template-columns:
            repeat(2, 1fr);

        margin-top: 55px;
    }

}


/* =====================================================
   TABLET - 850px
===================================================== */

@media (max-width: 850px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;

        margin-left: 15px;
    }

    .nav-actions {
        margin-left: auto;
    }


    /* Mobile Navigation */

    .mobile-menu {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        background: #f5f2ec;

        flex-direction: column;

        padding: 20px 5%;

        gap: 16px;

        border-top:
            1px solid #e2dfd9;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        color: #555461;

        text-decoration: none;

        font-size: 15px;
        font-weight: 600;
    }


    /* Hero */

    .hero-section {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trust {
        justify-content: center;
    }

    .experience-text {
        text-align: center;
    }

    .demo-form-card {
        max-width: 500px;
        margin: 0 auto;
    }


    /* Stats */

    .stats-section {
        padding: 42px 0;
    }

    .stats-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 20px;
    }

    .stat-item {
        text-align: center;
        padding-left: 0;
    }


    /* Why Section */

    .why-section {
        padding: 70px 0;
    }

    .why-title {
        font-size: 38px;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 38px;
    }

    .vs-divider {
        order: 2;
        height: 20px;
    }

    .old-school-card {
        order: 1;
    }

    .digiexpi-card {
        order: 3;
    }

    .comparison-card {
        min-height: auto;
    }


    /* Curriculum */

    .curriculum-section {
        padding: 70px 0;
    }

    .curriculum-title {
        font-size: 38px;
    }

    .curriculum-heading-row {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .curriculum-download {
        align-self: flex-start;
    }

}


/* =====================================================
   MOBILE - 600px
===================================================== */

@media (max-width: 600px) {

    /* Announcement */

    .announcement-bar {
        min-height: 42px;
        padding: 5px 10px;
    }

    .announcement-content {
        gap: 5px;
        font-size: 9px;
    }

    .announcement-text {
        white-space: nowrap;
    }

    .seats-left {
        display: none;
    }

    .countdown-box {
        min-width: 24px;

        height: 24px;

        padding: 0 5px;

        font-size: 10px;
    }

    .countdown-label {
        font-size: 10px;
    }


    /* Navbar */

    .navbar {
        height: 65px;
    }

    .nav-container {
        width: 92%;
    }

    .logo-image {
        max-width: 130px;
        max-height: 28px;
    }

    .logo-text {
        font-size: 19px;
    }

    .whatsapp-button {
        display: none;
    }

    .nav-demo-button {
        padding: 10px 16px;
        font-size: 11px;
    }

    .mobile-menu {
        top: 65px;
    }


    /* Hero */

    .hero-section {
        padding: 50px 0;
    }

    .hero-container {
        width: 92%;
    }

    .hero-title {
        font-size: 42px;

        line-height: 1;

        letter-spacing: -1.7px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-demo-button {
        min-height: 53px;
    }

    .course-video-link {
        font-size: 12px;
    }

    .hero-trust {
        gap: 18px;
    }

    .rating-block,
    .joined-block {
        width: 100%;

        justify-content: center;
    }


    /* Form */

    .demo-form-card {
        padding: 34px 18px 22px;
    }

    .form-title {
        font-size: 19px;
    }


    /* Stats */

    .stats-section {
        padding: 35px 0;
    }

    .stats-container {
        width: 92%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 32px 15px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        margin-top: 10px;

        font-size: 12px;

        line-height: 1.4;
    }


    /* Why Section */

    .why-section {
        padding: 55px 0 60px;
    }

    .why-container {
        width: 92%;
    }

    .why-eyebrow {
        font-size: 10px;

        letter-spacing: 1.6px;

        margin-bottom: 13px;
    }

    .why-title {
        font-size: 30px;

        line-height: 1.08;

        letter-spacing: -1px;
    }

    .why-description {
        font-size: 14px;

        line-height: 1.6;
    }

    .comparison-wrapper {
        margin-top: 32px;
        gap: 18px;
    }

    .comparison-card {
        border-radius: 16px;

        padding: 25px 20px;
    }

    .comparison-title {
        font-size: 13px;

        margin-bottom: 18px;
    }

    .comparison-list li {
        font-size: 13px;

        gap: 8px;

        margin-bottom: 12px;
    }

    .comparison-icon {
        font-size: 17px;
    }


    /* Curriculum */

    .curriculum-section {
        padding: 55px 0 60px;
    }

    .curriculum-container {
        width: 92%;
    }

    .curriculum-eyebrow {
        font-size: 10px;

        letter-spacing: 1.6px;
    }

    .curriculum-title {
        font-size: 31px;

        line-height: 1.08;

        letter-spacing: -1px;
    }

    .curriculum-description {
        font-size: 14px;
    }

    .curriculum-download {
        width: 100%;

        min-height: 44px;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 40px;
    }

    .curriculum-card {
        min-height: auto;

        padding: 21px 18px;
    }

    .curriculum-card h3 {
        font-size: 16px;
    }

    .curriculum-card p {
        font-size: 13px;
    }

}
/* =====================================================
   AI STACK SECTION
===================================================== */

.ai-stack-section {
    width: 100%;
    background: #171426;
    padding: 82px 0 78px;
}

.ai-stack-container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.ai-stack-header {
    max-width: 540px;
    margin-bottom: 43px;
}

.ai-stack-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #49b8ae;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.ai-stack-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #42c0b4;
}

.ai-stack-title {
    font-family: "Montserrat", sans-serif;

    color: #f4f1ed;

    font-size: 40px;
    line-height: 1.02;

    font-weight: 800;
    letter-spacing: -1.6px;

    margin-bottom: 14px;
}

.ai-stack-description {
    max-width: 530px;

    color: #aaa7bb;

    font-size: 13px;
    line-height: 1.65;

    margin: 0;
}


/* =====================================================
   AI STACK GRID
===================================================== */

.ai-stack-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid #454057;
    border-radius: 17px;

    overflow: hidden;

    background: #26213c;
}


/* =====================================================
   AI STACK ITEM
===================================================== */

.ai-stack-item {
    min-height: 172px;

    padding: 24px 21px 20px;

    background: #26213c;

    border-right: 1px solid #38344b;
    border-bottom: 1px solid #38344b;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

/* हर चौथे card का right border हटेगा */
.ai-stack-item:nth-child(4n) {
    border-right: none;
}

/* Last row का bottom border हटेगा */
.ai-stack-item:nth-child(n + 5) {
    border-bottom: none;
}

.ai-stack-item:hover {
    background: #2d2745;
}


/* =====================================================
   CATEGORY
===================================================== */

.ai-stack-category {
    display: block;

    color: #47b9af;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


/* =====================================================
   CARD TITLE
===================================================== */

.ai-stack-item h3 {
    font-family: "Montserrat", sans-serif;

    color: #f5f2ed;

    font-size: 16px;
    line-height: 1.35;

    font-weight: 800;

    letter-spacing: -0.3px;

    margin: 0 0 9px;
}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.ai-stack-item p {
    color: #aaa7bd;

    font-size: 12px;
    line-height: 1.72;

    margin: 0;
}


/* =====================================================
   ANIMATION
===================================================== */

.ai-stack-reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.ai-stack-reveal.ai-stack-visible {
    opacity: 1;
    transform: translateY(0);
}


.ai-stack-card-reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.ai-stack-card-reveal.ai-stack-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .ai-stack-container {
        width: 90%;
    }

}


@media (max-width: 850px) {

    .ai-stack-section {
        padding: 70px 0;
    }

    .ai-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset borders */
    .ai-stack-item {
        border-right: 1px solid #38344b;
        border-bottom: 1px solid #38344b;
    }

    .ai-stack-item:nth-child(4n) {
        border-right: 1px solid #38344b;
    }

    /* 2nd column */
    .ai-stack-item:nth-child(2n) {
        border-right: none;
    }

    /* Last row */
    .ai-stack-item:nth-child(n + 7) {
        border-bottom: none;
    }

}


@media (max-width: 600px) {

    .ai-stack-section {
        padding: 55px 0 60px;
    }

    .ai-stack-container {
        width: 92%;
    }

    .ai-stack-header {
        margin-bottom: 32px;
    }

    .ai-stack-title {
        font-size: 31px;

        line-height: 1.08;

        letter-spacing: -1px;
    }

    .ai-stack-description {
        font-size: 13px;
    }

    .ai-stack-grid {
        grid-template-columns: 1fr;

        border-radius: 14px;
    }

    .ai-stack-item {
        min-height: auto;

        padding: 22px 19px;

        border-right: none !important;
        border-bottom: 1px solid #38344b !important;
    }

    .ai-stack-item:last-child {
        border-bottom: none !important;
    }

    .ai-stack-item h3 {
        font-size: 16px;
    }

    .ai-stack-item p {
        font-size: 13px;
    }

}
/* ==========================================
   PICK YOUR FORMAT / PRICING SECTION
========================================== */

.format-section {
    width: 100%;
    padding: 70px 20px 80px;
    background: #f3f0ea;
}

.format-container {
    max-width: 970px;
    margin: 0 auto;
}


/* HEADER */

.format-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.format-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #e26739;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.format-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f26435;
}

.format-title {
    margin: 0 0 18px;
    color: #202139;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.format-description {
    max-width: 620px;
    margin: 0 auto;
    color: #6b6b78;
    font-size: 13px;
    line-height: 1.7;
}


/* CARDS */

.format-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.format-card {
    position: relative;
    min-height: 540px;
    padding: 34px 27px 50px;
    border: 1px solid #d6d3ce;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    transition: 0.3s ease;
}

.format-card:hover {
    transform: translateY(-4px);
}

.format-online {
    border: 1.5px solid #ff6936;
    box-shadow: 0 18px 40px rgba(40, 35, 55, 0.08);
}


/* BEST SELLER */

.best-seller-badge {
    position: absolute;
    top: -13px;
    right: 22px;

    padding: 7px 15px;
    border-radius: 20px;

    background: linear-gradient(90deg, #ff7b3c, #f4511b);
    color: #fff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
}


/* CARD CONTENT */

.format-type {
    color: #696b78;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
}

.format-card h3 {
    margin: 0 0 24px;
    color: #202139;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.6px;
}


/* PRICE */

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price {
    color: #202139;
    font-size: 39px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.price-label {
    color: #747583;
    font-size: 11px;
}

.price-note {
    margin: 0 0 18px;
    color: #747583;
    font-size: 11px;
    line-height: 1.5;
}


/* FEATURES */

.format-features {
    padding: 0;
    margin: 0;
    list-style: none;
}

.format-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 11px;

    color: #444554;
    font-size: 12px;
    line-height: 1.5;
}

.format-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    color: #45aaa1;
    font-size: 14px;
    font-weight: 700;
}


/* BUTTONS */

.format-actions {
    position: absolute;
    left: 27px;
    right: 27px;
    bottom: 52px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.format-button {
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 15px;
    border-radius: 30px;

    text-decoration: none;
    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}

.format-outline-btn,
.format-deposit-btn {
    color: #282938;
    border: 1px solid #d3d0cb;
    background: rgba(255, 255, 255, 0.18);
}

.format-outline-btn:hover,
.format-deposit-btn:hover {
    border-color: #ff6734;
    color: #ff6734;
}

.format-primary-btn {
    color: #fff;
    background: linear-gradient(90deg, #ff783a, #f34c17);
    box-shadow: 0 10px 22px rgba(245, 82, 25, 0.2);
}

.format-primary-btn:hover {
    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 850px) {

    .format-section {
        padding: 65px 25px;
    }

    .format-cards {
        max-width: 650px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .format-section {
        padding: 55px 15px;
    }

    .format-header {
        margin-bottom: 40px;
    }

    .format-title {
        font-size: 31px;
        line-height: 1.05;
    }

    .format-description {
        font-size: 13px;
    }

    .format-card {
        min-height: auto;
        padding: 28px 20px;
    }

    .format-card h3 {
        font-size: 19px;
    }

    .price {
        font-size: 34px;
    }

    .format-actions {
        position: static;
        margin-top: 25px;
    }

    .best-seller-badge {
        right: 15px;
    }

}

/* ==========================================
   FORMAT SECTION ANIMATION
========================================== */

.format-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.format-reveal.format-visible {
    opacity: 1;
    transform: translateY(0);
}

.format-card-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.format-card-reveal.format-card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   WHY DIGIEXPI / CAREER BENEFITS SECTION
===================================================== */

.why-digiexpi-section {
    width: 100%;
    padding: 85px 0 78px;
    background: #f3ede1;
    color: #202139;
}

.why-digiexpi-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   HEADER
===================================================== */

.why-digiexpi-header {
    max-width: 650px;
    margin-bottom: 62px;
}

.why-digiexpi-header .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: #d9633c;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.why-digiexpi-header .section-dot {
    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ef6434;
}

.why-digiexpi-header h2 {
    margin: 0 0 14px;

    color: #202139;

    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 800;

    line-height: 1.03;
    letter-spacing: -1.4px;
}

.why-digiexpi-header p {
    max-width: 570px;
    margin: 0;

    color: #666777;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;
}


/* =====================================================
   BENEFITS GRID
===================================================== */

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 70px;
    row-gap: 62px;

    margin-bottom: 64px;
}

.benefit-item {
    min-width: 0;
}

.benefit-item h3 {
    margin: 0 0 10px;

    color: #202139;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;

    line-height: 1.3;
    letter-spacing: -0.2px;
}

.benefit-item p {
    margin: 0;

    max-width: 275px;

    color: #6d6e7b;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.65;
}


/* =====================================================
   TRAINER CARD
===================================================== */

.trainer-card {
    display: flex;
    align-items: center;

    gap: 24px;

    width: 100%;

    padding: 26px 26px;

    border: 1px solid #d4d4d8;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.62);

    box-shadow:
        0 12px 30px rgba(30, 29, 50, 0.05);
}


/* =====================================================
   TRAINER AVATAR
===================================================== */

.trainer-avatar {
    width: 82px;
    height: 82px;

    min-width: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #513b9b 0%,
            #a5427d 50%,
            #f26435 100%
        );

    color: #ffffff;
}

.trainer-avatar span {
    font-family: "Montserrat", sans-serif;

    font-size: 27px;
    font-weight: 800;

    letter-spacing: -1px;
}


/* =====================================================
   TRAINER CONTENT
===================================================== */

.trainer-content {
    flex: 1;
    min-width: 0;
}

.trainer-content h3 {
    margin: 0 0 5px;

    color: #202139;

    font-family: "Montserrat", sans-serif;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.3;
}

.trainer-experience {
    margin-bottom: 9px;

    color: #d95e32;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.5;
}

.trainer-content p {
    margin: 0 0 10px;

    color: #666777;

    font-size: 12px;

    line-height: 1.65;
}


/* =====================================================
   TRAINER LINKS
===================================================== */

.trainer-links {
    display: flex;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.trainer-links a {
    color: #df6338;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    transition: opacity 0.25s ease;
}

.trainer-links a:hover {
    opacity: 0.7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .why-digiexpi-container {
        width: 90%;
        padding: 0;
    }

    .benefits-grid {
        column-gap: 45px;
    }

}


@media (max-width: 850px) {

    .why-digiexpi-section {
        padding: 70px 0;
    }

    .why-digiexpi-header h2 {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 50px;
        row-gap: 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .why-digiexpi-section {
        padding: 55px 0 60px;
    }

    .why-digiexpi-container {
        width: 92%;
    }


    /* HEADER */

    .why-digiexpi-header {
        margin-bottom: 45px;
    }

    .why-digiexpi-header h2 {
        font-size: 30px;

        line-height: 1.08;

        letter-spacing: -1px;
    }

    .why-digiexpi-header p {
        font-size: 12px;
    }


    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: 1fr;

        gap: 34px;

        margin-bottom: 50px;
    }

    .benefit-item h3 {
        font-size: 15px;
    }

    .benefit-item p {
        max-width: 100%;

        font-size: 12px;
    }


    /* TRAINER CARD */

    .trainer-card {
        align-items: flex-start;

        gap: 16px;

        padding: 20px;

        border-radius: 15px;
    }

    .trainer-avatar {
        width: 60px;
        height: 60px;

        min-width: 60px;
    }

    .trainer-avatar span {
        font-size: 20px;
    }

    .trainer-content h3 {
        font-size: 15px;
    }

    .trainer-content p {
        font-size: 11px;
    }

    .trainer-links {
        gap: 14px;
    }

}


@media (max-width: 420px) {

    .trainer-card {
        flex-direction: column;
    }

    .trainer-content {
        width: 100%;
    }

}

/* =====================================================
   BOOK FREE DEMO CLASS SECTION
===================================================== */

.demo-booking-section {
    width: 100%;
    padding: 85px 0 74px;
    background: #171224;
    color: #ffffff;
}

.demo-booking-container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   HEADER
===================================================== */

.demo-booking-header {
    max-width: 560px;
    margin-bottom: 40px;
}

.demo-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;

    color: #4fc3b4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.demo-eyebrow span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4fc3b4;
}

.demo-booking-header h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.demo-booking-header p {
    max-width: 570px;
    margin: 0;

    color: #b5b0c6;

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   BOOKING CARD
===================================================== */

.demo-booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

    padding: 30px;

    background: #241d38;

    border: 1px solid #46405d;
    border-radius: 18px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}


/* =====================================================
   LABEL
===================================================== */

.booking-label {
    margin-bottom: 13px;

    color: #4fc3b4;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =====================================================
   FORMAT SELECTOR
===================================================== */

.format-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-bottom: 22px;
}

.format-option {
    min-height: 40px;

    padding: 8px 12px;

    color: #e7e4ef;
    background: transparent;

    border: 1px solid #3e3856;
    border-radius: 12px;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.format-option:hover {
    border-color: #7e68d8;
}

.format-option.active {
    color: #ffffff;

    background: #332653;

    border-color: #8867dc;

    box-shadow: 0 0 0 1px rgba(136, 103, 220, 0.18);
}


/* =====================================================
   LOCATION
===================================================== */

.demo-location {
    display: flex;
    align-items: flex-start;
    gap: 7px;

    margin-bottom: 20px;
    padding: 12px 13px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px dashed #48415e;
    border-radius: 9px;

    color: #a9a5ba;

    font-size: 10px;
    line-height: 1.65;
}

.demo-location strong {
    color: #f2f0f5;
    font-weight: 700;
}

.location-icon {
    flex-shrink: 0;
    font-size: 11px;
}


/* =====================================================
   DAY SELECTOR
===================================================== */

.choose-day-label {
    margin-top: 4px;
}

.day-selector {
    display: flex;
    gap: 7px;

    margin-bottom: 24px;
}

.day-option {
    width: 58px;
    height: 54px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 2px;

    color: #d5d2e1;
    background: transparent;

    border: 1px solid #3e3856;
    border-radius: 12px;

    font-family: inherit;

    cursor: pointer;

    transition: 0.25s ease;
}

.day-option:hover {
    border-color: #70658e;
}

.day-option span {
    font-size: 8px;
    font-weight: 700;
}

.day-option strong {
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    line-height: 1;
}

.day-option.active {
    color: #ffffff;

    background: linear-gradient(135deg, #ff7435, #ff4f1f);

    border-color: #ff5f2b;

    box-shadow: 0 8px 20px rgba(255, 93, 40, 0.18);
}


/* =====================================================
   TIME SELECTOR
===================================================== */

.choose-time-label {
    margin-bottom: 12px;
}

.time-selector {
    display: flex;
    gap: 9px;
}

.time-option {
    min-height: 36px;

    padding: 0 15px;

    color: #c7c3d5;
    background: transparent;

    border: 1px solid #3e3856;
    border-radius: 20px;

    font-family: inherit;
    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.time-option:hover {
    border-color: #5e5680;
}

.time-option.active {
    color: #173238;

    background: #4eb5aa;

    border-color: #4eb5aa;
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.demo-booking-right {
    min-width: 0;
}


/* =====================================================
   SELECTED SLOT
===================================================== */

.selected-demo-slot {
    margin-bottom: 18px;
    padding: 14px 16px;

    background: #2d2742;

    border: 1px dashed #494260;
    border-radius: 11px;

    color: #a8a3b8;

    font-size: 10px;
}

.selected-demo-slot strong {
    color: #f1eef7;
    font-size: 11px;
}


/* =====================================================
   FORM
===================================================== */

.demo-form-group {
    margin-bottom: 10px;
}

.demo-form-group label {
    display: block;

    margin-bottom: 6px;

    color: #aaa5bb;

    font-size: 10px;
    font-weight: 700;
}

.demo-form-group input {
    width: 100%;
    height: 42px;

    padding: 0 14px;

    outline: none;

    color: #ffffff;

    background: #302a45;

    border: 1px solid #494260;
    border-radius: 10px;

    font-family: inherit;
    font-size: 11px;

    transition: 0.25s ease;
}

.demo-form-group input::placeholder {
    color: #777187;
}

.demo-form-group input:focus {
    border-color: #7561bd;

    box-shadow: 0 0 0 3px rgba(117, 97, 189, 0.12);
}


/* =====================================================
   CONFIRM BUTTON
===================================================== */

.confirm-demo-button {
    width: 100%;
    height: 47px;

    margin-top: 2px;

    border: none;
    border-radius: 25px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #ff7739,
            #f34b16
        );

    box-shadow:
        0 10px 24px
        rgba(247, 77, 22, 0.2);

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.25s ease;
}

.confirm-demo-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 28px
        rgba(247, 77, 22, 0.28);
}

.confirm-demo-button:active {
    transform: translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .demo-booking-container {
        width: 90%;
        padding: 0;
    }

    .day-option {
        flex: 1;
        width: auto;
    }

}


@media (max-width: 850px) {

    .demo-booking-section {
        padding: 70px 0;
    }

    .demo-booking-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .demo-booking-section {
        padding: 55px 0 60px;
    }

    .demo-booking-container {
        width: 92%;
    }

    .demo-booking-header h2 {
        font-size: 31px;
        letter-spacing: -1px;
    }

    .demo-booking-card {
        padding: 20px;
        border-radius: 15px;
    }

    .format-selector {
        grid-template-columns: 1fr;
    }

    .day-selector {
        gap: 5px;
        flex-wrap: wrap;
    }

    .day-option {
        flex: 0 0 calc(25% - 4px);
        width: auto;
    }

    .time-selector {
        flex-wrap: wrap;
    }

    .time-option {
        flex: 1;
    }

}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    width: 100%;
    padding: 70px 0 55px;
    background: #e8e2d6;
}

.faq-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   FAQ HEADER
===================================================== */

.faq-header {
    text-align: center;
    margin-bottom: 36px;
}

.faq-eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;

    margin-bottom: 12px;

    color: #e75a2c;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.faq-eyebrow span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #e75a2c;
}

.faq-header h2 {
    margin: 0;

    color: #1d2740;

    font-family: "Montserrat", sans-serif;
    font-size: 39px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
}


/* =====================================================
   FAQ LIST
===================================================== */

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.55);

    border: 1px solid rgba(120, 125, 140, 0.22);
    border-radius: 13px;

    transition: 0.3s ease;
}

.faq-item.active {
    background: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(40, 35, 50, 0.07);
}


/* =====================================================
   QUESTION
===================================================== */

.faq-question {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 20px;

    color: #202a41;
    background: transparent;

    border: none;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-align: left;

    cursor: pointer;

    transition: 0.25s ease;
}

.faq-question:hover {
    color: #e85b2d;
}


/* =====================================================
   PLUS / MINUS ICON
===================================================== */

.faq-icon {
    flex-shrink: 0;

    width: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f25b2a;

    font-size: 18px;
    font-weight: 400;

    transition: 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 20px;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;

    padding: 0 20px 18px;
}

.faq-answer p {
    max-width: 850px;

    margin: 0;

    color: #667080;

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .faq-container {
        width: 90%;
        padding: 0;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .faq-section {
        padding: 55px 0 45px;
    }

    .faq-container {
        width: 92%;
    }

    .faq-header {
        margin-bottom: 28px;
    }

    .faq-header h2 {
        font-size: 31px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .faq-question {
        min-height: 58px;
        padding: 0 15px;

        font-size: 11px;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 16px;
    }

    .faq-answer p {
        font-size: 11px;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .hero-title {
        font-size: 36px;
    }

    .course-mode-selection {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

}

/* =====================================================
   FINAL CTA SECTION
===================================================== */

.final-cta-section {
    width: 100%;
    padding: 78px 0 68px;
    background: #27213d;
    color: #ffffff;
}

.final-cta-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta-content {
    text-align: center;
}


/* =====================================================
   CTA EYEBROW
===================================================== */

.final-cta-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-bottom: 14px;

    color: #ff7440;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.final-cta-eyebrow span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ff7440;
}


/* =====================================================
   CTA HEADING
===================================================== */

.final-cta-content h2 {
    max-width: 1050px;
    margin: 0 auto 20px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 43px;
    font-weight: 800;
    line-height: 1.48;
    letter-spacing: -1.8px;
}

.final-cta-content p {
    margin: 0 auto 26px;

    color: #bcb6cd;

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.final-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 230px;
    height: 54px;

    padding: 0 28px;

    border-radius: 30px;

    color: #ffffff;
    background: linear-gradient(
        90deg,
        #ff7a3d,
        #f65319
    );

    box-shadow:
        0 10px 24px
        rgba(246, 83, 25, 0.24);

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition: 0.25s ease;
}

.final-demo-btn:hover {
    transform: translateY(-2px);

    color: #ffffff;

    box-shadow:
        0 14px 30px
        rgba(246, 83, 25, 0.32);
}

.final-whatsapp-link {
    color: #8f89a4;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s ease;
}

.final-whatsapp-link:hover {
    color: #ffffff;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    width: 100%;
    padding: 48px 0 20px;

    background: #211c34;

    color: #ffffff;
}

.footer-container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   FOOTER MAIN
===================================================== */

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 30px;
}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {
    max-width: 230px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color: #ffffff;

    text-decoration: none;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #ff733a,
        #7056c8
    );

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.footer-logo-text {
    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.footer-brand p {
    margin: 0;

    color: #a9a4ba;

    font-size: 11px;
    line-height: 1.85;
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h4 {
    margin: 5px 0 15px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column a {
    color: #aaa5bc;

    text-decoration: none;

    font-size: 11px;

    transition: 0.25s ease;
}

.footer-column a:hover {
    color: #ff6b32;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 21px;

    border-top: 1px solid
        rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;

    color: #aaa5bc;

    font-size: 10px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #aaa5bc;
}

.footer-legal a {
    color: #aaa5bc;

    text-decoration: none;

    font-size: 10px;

    transition: 0.25s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .final-cta-content h2 {
        font-size: 36px;
        line-height: 1.35;
    }

    .footer-container {
        width: 90%;
        padding: 0;
    }

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-container {
        width: 92%;
        padding: 0;
    }

    .final-cta-content h2 {
        font-size: 29px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .final-cta-content h2 br {
        display: none;
    }

    .final-cta-content p {
        font-size: 12px;
    }

    .final-cta-content p br {
        display: none;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 18px;
    }

    .final-demo-btn {
        width: 100%;
        max-width: 280px;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 45px;
    }

    .footer-container {
        width: 92%;
        padding: 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }

}