@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');


/* =====================================
   ROOT
===================================== */

:root {
    --navy: #073b68;
    --navy-dark: #052d50;

    --orange: #f58220;
    --orange-dark: #dd6b0d;

    --green: #00b67a;

    --heading: #10243e;
    --text: #5e6c7c;

    --light: #f7f9fc;
    --border: #e3e9ef;
    --white: #ffffff;

    --container: 1180px;
}


/* =====================================
   RESET
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


body {
    font-family: 'DM Sans', sans-serif;
    color: var(--heading);
    background: var(--white);
    line-height: 1.6;
}


body.menu-open {
    overflow: hidden;
}


h1,
h2,
h3,
h4 {
    font-family: 'Manrope', sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


ul {
    list-style: none;
}


img {
    display: block;
    max-width: 100%;
}


button {
    font-family: inherit;
}


.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}


/* =====================================
   TOPBAR
===================================== */

.topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}


.topbar-inner {
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.topbar-contact {
    display: flex;
    align-items: center;

    gap: 22px;
}


.topbar a {
    transition: 0.2s ease;
}


.topbar a:hover {
    color: var(--white);
}


.top-apply {
    align-self: stretch;

    display: flex;
    align-items: center;

    padding: 0 20px;

    background: var(--green);

    color: var(--white) !important;

    font-weight: 700;
}


/* =====================================
   HEADER
===================================== */

.header {
    position: sticky;
    top: 0;

    width: 100%;

    z-index: 9999;

    background: var(--white);

    box-shadow: 0 5px 20px rgba(8, 39, 67, 0.06);
}


.header-inner {
    position: relative;

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.logo-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--navy);
    color: var(--white);

    font-size: 23px;
    font-weight: 800;
}


.logo-text strong {
    display: block;

    color: var(--navy);

    font-size: 20px;
    line-height: 1.1;
}


.logo-text span {
    display: block;

    margin-top: 3px;

    color: #778493;

    font-size: 11px;
}


/* NAVIGATION */

.navigation {
    display: flex;
    align-items: center;

    gap: 27px;
}


.navigation a {
    color: var(--heading);

    font-size: 14px;
    font-weight: 600;

    transition: color 0.2s ease;
}


.navigation a:hover,
.navigation a.active {
    color: var(--orange);
}


.navigation .header-btn {
    padding: 12px 19px;

    border-radius: 6px;

    background: var(--orange);

    color: var(--white) !important;
}


.navigation .header-btn:hover {
    background: var(--orange-dark);
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    position: relative;

    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 29px;
    line-height: 1;

    cursor: pointer;

    z-index: 10001;
}


.menu-icon {
    display: block;

    line-height: 1;
}


/* =====================================
   BUTTONS
===================================== */

.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-orange {
    background: var(--orange);
    color: var(--white);
}


.btn-orange:hover {
    background: var(--orange-dark);
}


.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);

    color: var(--white);
}


.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}


.btn-white {
    background: var(--white);
    color: var(--green);
}


/* =====================================
   HERO
===================================== */

.hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #052f53,
            #0a4b7f
        );

    color: var(--white);
}


.hero::before {
    content: '';

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    pointer-events: none;
}


.hero-container {
    position: relative;

    z-index: 2;

    min-height: 540px;

    padding-top: 75px;
    padding-bottom: 75px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, 0.8fr);

    align-items: center;

    gap: 75px;
}


.hero-content {
    min-width: 0;
}


.hero-badge {
    display: inline-block;

    margin-bottom: 16px;

    color: #a9d8ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.hero h1 {
    max-width: 680px;

    color: var(--white);

    font-size: clamp(46px, 5vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;
}


.hero h1 span {
    color: var(--orange);
}


.hero-content > p {
    max-width: 630px;

    margin-top: 23px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 17px;
}


.hero-buttons {
    margin-top: 32px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.hero-points {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
}


/* HERO STATS */

.hero-stats {
    min-width: 0;

    padding: 32px;

    border-radius: 15px;

    background: var(--white);

    color: var(--heading);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.22);
}


.stats-label {
    display: block;

    margin-bottom: 20px;

    color: #718096;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


.stats-grid div {
    min-width: 0;

    padding: 24px 15px;

    border: 1px solid #e9edf1;
}


.stats-grid strong {
    display: block;

    color: var(--navy);

    font-size: 27px;
}


.stats-grid span {
    display: block;

    color: var(--text);

    font-size: 11px;
}


.stats-link {
    display: inline-block;

    margin-top: 20px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 700;
}


/* HERO DECORATIONS */

.hero-circle {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;

    pointer-events: none;
}


.hero-circle-one {
    width: 450px;
    height: 450px;

    top: -200px;
    right: -150px;
}


.hero-circle-two {
    width: 300px;
    height: 300px;

    left: 30%;
    bottom: -220px;
}


/* =====================================
   QUICK STATS
===================================== */

.quick-stats {
    background: var(--green);

    color: var(--white);
}


.quick-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));
}


.quick-stats-grid > div {
    min-width: 0;
    min-height: 100px;

    padding: 22px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.17);
}


.quick-stats-grid > div:last-child {
    border-right: 0;
}


.quick-stats strong {
    font-size: 15px;
}


.quick-stats span {
    margin-top: 2px;

    font-size: 11px;

    opacity: 0.8;
}


/* =====================================
   COMMON SECTIONS
===================================== */

.section {
    padding: 100px 0;
}


.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-heading > span,
.section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.section-heading h2,
.about-content h2,
.courses-title h2 {
    font-size:
        clamp(32px, 4vw, 45px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.section-heading h2 strong,
.about-content h2 strong,
.courses-title h2 strong {
    color: var(--navy);
}


.section-heading p {
    max-width: 580px;

    margin: 15px auto 0;

    color: var(--text);
}


/* =====================================
   WHY PIMS
===================================== */

.why-pims {
    background: var(--white);
}


.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.benefit {
    min-width: 0;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.benefit:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px
        rgba(18, 46, 72, 0.08);
}


.benefit-number {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #eaf3fb;

    color: var(--navy);

    font-size: 11px;
    font-weight: 800;
}


.benefit h3 {
    margin-bottom: 9px;

    font-size: 17px;
}


.benefit p {
    color: var(--text);

    font-size: 13px;
}


/* COURSE BANNER */

.course-banner {
    margin-top: 35px;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border: 1px solid #b7e8d5;
    border-left: 4px solid var(--green);

    border-radius: 10px;

    background: #effbf7;
}


.course-banner h3 {
    margin-bottom: 5px;
}


.course-banner p {
    color: var(--text);

    font-size: 13px;
}


/* =====================================
   ABOUT
===================================== */

.about-section {
    background: #f8fafc;
}


.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


.about-visual {
    min-width: 0;
    min-height: 370px;

    display: grid;
    place-items: center;
}


.about-shape {
    width: 350px;
    height: 350px;

    max-width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #dfeef9,
            #fff1e5
        );

    border-radius:
        38% 62% 53% 47% /
        50% 37% 63% 50%;
}


.about-shape span {
    color: var(--navy);

    font-size: 60px;
    font-weight: 800;
}


.about-shape small {
    color: var(--text);
}


.about-content {
    min-width: 0;
}


.about-content p {
    margin-top: 16px;

    color: var(--text);
}


.about-content .btn {
    margin-top: 28px;
}


/* =====================================
   STEPS
===================================== */

.steps {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: 25px;
}


.step {
    min-width: 0;

    text-align: center;
}


.step > span {
    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--navy);

    color: var(--white);

    font-weight: 800;
}


.step h3 {
    margin-bottom: 10px;

    font-size: 17px;
}


.step p {
    color: var(--text);

    font-size: 13px;
}


.step-line {
    width: 75px;
    height: 1px;

    background: #ccd6df;
}


/* =====================================
   LEARNING OPTIONS
===================================== */

.learning-section {
    background: #f8fafc;
}


.learning-options {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


.learning-options > div {
    min-width: 0;

    padding: 35px;

    text-align: center;

    border-right: 1px solid var(--border);
}


.learning-options > div:last-child {
    border-right: 0;
}


.learning-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eaf3fb;

    color: var(--navy);
}


.learning-options h3 {
    font-size: 18px;
}


.learning-options p {
    margin-top: 8px;

    color: var(--text);

    font-size: 13px;
}


/* =====================================
   COURSES
===================================== */

.courses-section {
    background: #f4f7fa;
}


.courses-title {
    margin-bottom: 45px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.courses-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.courses-grid article {
    min-width: 0;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.courses-grid article:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px
        rgba(12, 41, 66, 0.08);
}


.course-type {
    color: var(--orange);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.courses-grid h3 {
    margin: 12px 0;

    font-size: 18px;
}


.courses-grid p {
    min-height: 65px;

    color: var(--text);

    font-size: 13px;
}


.courses-grid footer {
    margin-top: 20px;

    padding-top: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top: 1px solid var(--border);

    font-size: 12px;
}


.courses-grid footer span {
    color: #7b8794;
}


.courses-grid footer a {
    color: var(--navy);

    font-weight: 700;
}


/* =====================================
   TESTIMONIALS
===================================== */

.testimonials {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.testimonials blockquote {
    min-width: 0;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #fafbfc;
}


.quote {
    display: block;

    color: var(--orange);

    font-size: 45px;
    line-height: 1;
}


.testimonials p {
    margin: 10px 0 22px;

    color: var(--text);

    font-size: 14px;
}


.testimonials strong,
.testimonials small {
    display: block;
}


.testimonials small {
    margin-top: 3px;

    color: #86919c;
}


/* =====================================
   CORPORATE SECTION
===================================== */

.corporate-section {
    padding: 90px 0;

    background: var(--green);

    color: var(--white);
}


.corporate-content {
    max-width: 720px;

    text-align: center;
}


.corporate-content > span {
    display: inline-block;

    margin-bottom: 14px;

    padding: 5px 12px;

    border-radius: 20px;

    background: var(--navy);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}


.corporate-content h2 {
    font-size:
        clamp(32px, 4vw, 47px);

    line-height: 1.1;
}


.corporate-content p {
    max-width: 580px;

    margin: 17px auto 27px;

    opacity: 0.85;
}


/* =====================================
   FOOTER
===================================== */

.footer {
    background: #071f34;

    color: rgba(255, 255, 255, 0.7);
}


.footer-grid {
    padding: 65px 0;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 55px;
}


.footer-logo {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--white);

    font-size: 30px;
    font-weight: 800;
}


.footer-about p {
    max-width: 340px;
}


.footer h4 {
    margin-bottom: 18px;

    color: var(--white);
}


.footer li {
    margin-bottom: 9px;

    font-size: 13px;
}


.footer a {
    transition: color 0.2s ease;
}


.footer a:hover {
    color: var(--white);
}


.footer-bottom {
    padding: 20px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    font-size: 12px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

    .hero-container {
        gap: 40px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.7fr);
    }


    .hero h1 {
        font-size: 50px;
    }


    .benefits-grid,
    .courses-grid,
    .testimonials {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}



/* =====================================
   COURSES MEGA MENU
===================================== */

.nav-item {
    position: relative;
}


.courses-menu-toggle {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    color: var(--heading);

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}


.courses-menu-toggle:hover,
.courses-menu-toggle.active {
    color: var(--orange);
}


.courses-menu-toggle {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0;

    border: 0;
    background: transparent;

    color: var(--heading);

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.courses-arrow {
    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.courses-arrow-icon {
    width: 16px;
    height: 16px;

    display: block;

    transition: transform 0.2s ease;
}

.courses-menu-toggle.active .courses-arrow-icon {
    transform: rotate(180deg);
}

/* MEGA MENU */

.courses-mega-menu {
    position: absolute;

    top: calc(100% + 32px);
    left: 50%;

    width: min(950px, calc(100vw - 40px));

    display: grid;
    grid-template-columns: 280px 1fr;

    background: #ffffff;

    box-shadow:
        0 18px 45px
        rgba(8, 39, 67, 0.15);

    border-radius: 0 0 10px 10px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(10px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 10000;
}


.courses-mega-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* LEFT BLUE AREA */

.mega-menu-info {
    padding: 35px 30px;

    background: var(--navy);

    color: #ffffff;

    border-right: 4px solid var(--orange);
}


.mega-small-title {
    display: block;

    margin-bottom: 12px;

    color: #9ed2ff;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.mega-menu-info h3 {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.35;
}


.mega-menu-info p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 13px;
    line-height: 1.7;
}


.mega-menu-info a {
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}


/* COURSE LINKS AREA */

.mega-menu-links {
    padding: 10px 10px 30px;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 25px;
}


.mega-column {
    min-width: 0;
}


.navigation .mega-column a {
    width: 100%;

    min-height: 76px;

    padding: 20px 20px;

    display: flex;
    align-items: center;

    gap: 15px;

    border-bottom: 1px solid #e7edf3;

    color: var(--heading);

    font-size: 15px;
    font-weight: 500;

    line-height: 1.4;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.navigation .mega-column a:hover {
    background: #f8fafc;

    color: var(--orange);
}


.mega-column a > span {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: #d3dfeb;
}


.mega-column a:hover > span {
    background: var(--orange);
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    /* ---------------------------------
       GENERAL
    --------------------------------- */

    .container {
        width: 100%;
        max-width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }


    .section {
        padding: 65px 0;
    }


    /* ---------------------------------
       TOPBAR
    --------------------------------- */

    .topbar {
        display: none;
    }


    /* ---------------------------------
       FIXED HEADER
    --------------------------------- */

    .header {
        position: fixed;

        top: 0;
        left: 0;
        right: 0;

        width: 100%;

        z-index: 9999;
    }


    .header-inner {
        min-height: 76px;
    }


    main {
        padding-top: 76px;
    }


    .logo-icon {
        width: 42px;
        height: 42px;

        border-radius: 10px;

        font-size: 19px;
    }


    .logo-text strong {
        font-size: 18px;
    }


    .logo-text span {
        font-size: 10px;
    }


    /* ---------------------------------
       MENU BUTTON
    --------------------------------- */

    .menu-toggle {
        display: flex;
    }


    /* ---------------------------------
       MOBILE NAVIGATION
    --------------------------------- */

    .navigation {
        position: fixed;

        top: 76px;
        left: 0;
        right: 0;

        width: 100%;

        height: calc(100dvh - 76px);

        padding: 24px 20px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        overflow-y: auto;

        background: var(--white);

        box-shadow:
            0 15px 35px
            rgba(0, 0, 0, 0.12);

        z-index: 9998;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;

        overscroll-behavior: contain;
    }


    .navigation.open {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    .navigation a {
        width: 100%;

        padding: 16px 4px;

        border-bottom:
            1px solid #edf0f3;

        color: var(--heading);

        font-size: 15px;
    }


    .navigation a.active {
        color: var(--orange);
    }


    .navigation .header-btn {
        margin-top: 16px;

        padding: 14px 20px;

        border: 0;

        border-radius: 7px;

        text-align: center;
    }


    /* ---------------------------------
       HERO
    --------------------------------- */

    .hero-container {
        min-height: auto;

        padding-top: 55px;
        padding-bottom: 55px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 40px;
    }


    .hero-content {
        width: 100%;
        min-width: 0;
    }


    .hero-badge {
        margin-bottom: 14px;

        font-size: 10px;

        line-height: 1.5;
    }


    .hero h1 {
        width: 100%;
        max-width: 100%;

        font-size: 42px;

        line-height: 1.05;

        letter-spacing: -2px;
    }


    .hero-content > p {
        width: 100%;
        max-width: 100%;

        margin-top: 20px;

        font-size: 15px;

        line-height: 1.7;
    }


    .hero-buttons {
        width: 100%;

        margin-top: 28px;

        flex-direction: column;
        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-points {
        margin-top: 25px;

        flex-direction: column;

        gap: 8px;
    }


    /* ---------------------------------
       HERO STATS
    --------------------------------- */

    .hero-stats {
        width: 100%;
        max-width: 100%;

        padding: 22px;

        border-radius: 14px;

        overflow: hidden;
    }


    .stats-label {
        margin-bottom: 16px;
    }


    .stats-grid {
        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .stats-grid div {
        min-width: 0;

        padding: 20px 12px;
    }


    .stats-grid strong {
        font-size: 24px;
    }


    .stats-grid span {
        font-size: 10px;

        overflow-wrap: break-word;
    }


    .stats-link {
        margin-top: 18px;
    }


    /* ---------------------------------
       QUICK STATS
    --------------------------------- */

    .quick-stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .quick-stats-grid > div {
        min-height: 90px;

        padding: 18px 14px;

        border-right:
            1px solid
            rgba(255, 255, 255, 0.15);

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.15);
    }


    /* ---------------------------------
       SECTION HEADINGS
    --------------------------------- */

    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading h2,
    .about-content h2,
    .courses-title h2 {
        font-size: 32px;

        line-height: 1.2;

        letter-spacing: -1px;
    }


    .section-heading p {
        font-size: 14px;
    }


    /* ---------------------------------
       BENEFITS
    --------------------------------- */

    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .benefit {
        padding: 24px;
    }


    .course-banner {
        padding: 24px;

        flex-direction: column;
        align-items: flex-start;
    }


    /* ---------------------------------
       ABOUT
    --------------------------------- */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-visual {
        min-height: 280px;
    }


    .about-shape {
        width: 260px;
        height: 260px;
    }


    .about-shape span {
        font-size: 48px;
    }


    /* ---------------------------------
       STEPS
    --------------------------------- */

    .steps {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .step-line {
        display: none;
    }


    /* ---------------------------------
       LEARNING
    --------------------------------- */

    .learning-options {
        grid-template-columns: 1fr;
    }


    .learning-options > div {
        padding: 30px 20px;

        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }


    .learning-options > div:last-child {
        border-bottom: 0;
    }


    /* ---------------------------------
       COURSES
    --------------------------------- */

    .courses-title {
        margin-bottom: 35px;

        flex-direction: column;
        align-items: flex-start;
    }


    .courses-grid {
        grid-template-columns: 1fr;
    }


    .courses-grid article {
        padding: 24px;
    }


    .courses-grid p {
        min-height: auto;
    }


    /* ---------------------------------
       TESTIMONIALS
    --------------------------------- */

    .testimonials {
        grid-template-columns: 1fr;
    }


    .testimonials blockquote {
        padding: 24px;
    }


    /* ---------------------------------
       CORPORATE
    --------------------------------- */

    .corporate-section {
        padding: 70px 0;
    }


    .corporate-content h2 {
        font-size: 32px;
    }


    /* ---------------------------------
       FOOTER
    --------------------------------- */

    .footer-grid {
        padding: 50px 20px;

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom {
        text-align: center;
    }


    /* COURSES MOBILE DROPDOWN */

.courses-nav-item {
    width: 100%;
}


.courses-menu-toggle {
    width: 100%;

    padding: 16px 4px;

    justify-content: space-between;

    border-bottom: 1px solid #edf0f3;

    font-size: 15px;
}


.courses-mega-menu {
    position: static;

    width: 100%;

    display: none;

    grid-template-columns: 1fr;

    margin: 0;

    border-radius: 0;

    box-shadow: none;

    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: none;

    transition: none;
}


.courses-mega-menu.open {
    display: grid;

    transform: none;
}


.mega-menu-info {
    display: none;
}


.mega-menu-links {
    padding: 0 0 10px 15px;

    grid-template-columns: 1fr;

    background: #f8fafc;
}


.navigation .mega-column a {
    min-height: auto;

    padding: 13px 10px;

    font-size: 13px;

    border-bottom: 1px solid #e8edf2;
}
}


/* =====================================
   VERY SMALL DEVICES
===================================== */

@media (max-width: 420px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    .hero-container {
        padding-top: 45px;
        padding-bottom: 45px;
    }


    .hero h1 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .hero-content > p {
        font-size: 14px;
    }


    .hero-stats {
        padding: 18px;
    }


    .stats-grid div {
        padding: 18px 10px;
    }


    .stats-grid strong {
        font-size: 22px;
    }


    .quick-stats-grid {
        grid-template-columns: 1fr 1fr;
    }


    .section-heading h2,
    .about-content h2,
    .courses-title h2 {
        font-size: 29px;
    }
}