/* =========================================================
   1. GLOBAL RESET + VARIABLES
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #11162a;
    --dark-soft: #1d2542;
    --dark-deep: #07111f;

    --primary: #5865f2;
    --primary-dark: #4653df;
    --primary-soft: rgba(88, 101, 242, 0.14);

    --accent: #f2a84b;
    --light-bg: #eef1ff;
    --white: #ffffff;
    --soft-card: #f7f8ff;

    --text: #080a14;
    --muted: #60677f;
    --light-text: #aeb7c7;

    --shadow: 0 18px 45px rgba(20, 25, 50, 0.12);
    --shadow-hover: 0 25px 65px rgba(20, 25, 50, 0.18);

    --radius: 26px;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--light-bg);
    color: var(--text);
    line-height: 1.5;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   2. SHARED BUTTONS
========================================================= */

.get-started-btn,
.register-btn,
.register-form button,
.primary-hero-btn,
.secondary-hero-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 800;
}
.primary-hero-btn {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.primary-hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.10);
}

.get-started-btn,
.register-btn,
.register-form button {
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(88, 101, 242, 0.35);
}

.get-started-btn:hover,
.register-btn:hover,
.register-form button:hover,
.primary-hero-btn:hover,
.secondary-hero-btn:hover {
    transform: translateY(-3px);
}

.get-started-btn:hover,
.register-btn:hover,
.register-form button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.get-started-btn {
    padding: 15px 32px;
    border-radius: 999px;
    font-size: 18px;
    letter-spacing: 1.5px;
}

.register-btn {
    padding: 17px 42px;
    border-radius: 999px;
    font-size: 20px;
    margin-top: 24px;
}

.primary-hero-btn,
.secondary-hero-btn {
    padding: 18px 38px;
    border-radius: 12px;
    font-size: 18px;
}

.secondary-hero-btn {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background-color: rgba(255, 255, 255, 0.06);
}

/* =========================================================
   3. HEADER + NAVIGATION
========================================================= */

.site-header {
    width: 100%;
    min-height: 118px;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    position: relative;
    z-index: 20;
}

.logo img {
    width: 150px;
    height: auto;
    cursor: pointer;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.navbar a {
    color: var(--white);
    font-size: 18px;
    letter-spacing: 1.3px;
    position: relative;
    padding: 8px 0;
    transition: 0.3s ease;
}

.navbar a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}


/* STUDENT HEADER STYLE */
.student-header {
    background: rgba(7, 17, 31, 0.96);
    min-height: 96px;
    padding: 18px 6%;
    border-bottom: 1px solid rgba(88, 101, 242, 0.25);
}

.student-navbar a {
    font-size: 17px;
    letter-spacing: 1px;
}

.student-cta {
    background: linear-gradient(135deg, #f2a84b, #e29355);
    box-shadow: 0 14px 34px rgba(242, 168, 75, 0.28);
}

.student-cta:hover {
    background: linear-gradient(135deg, #e29355, #f2a84b);
}
/* =========================================================
   4. FOOTER
========================================================= */

.site-footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 28px 6%;
    font-size: 16px;
}

/* =========================================================
   5. MAIN LANDING PAGE
========================================================= */

.new-hero-section {
    min-height: 780px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.25), transparent 35%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 90px 8% 70px;
}

.hero-badge,
.student-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border: 1px solid rgba(88, 101, 242, 0.6);
    border-radius: 999px;
    background-color: rgba(88, 101, 242, 0.16);
    color: #b8b7ff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 42px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.new-hero-section h1 {
    font-size: clamp(58px, 8vw, 108px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -4px;
    color: #f4f1ee;
    margin-bottom: 40px;
}

.new-hero-section h1 span,
.students-hero h1 span {
    background: linear-gradient(90deg, #7c6cff, #e29355, #f2b244);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-hero-section > p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stats {
    margin: 80px auto 0;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-stats div {
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:last-child {
    border-right: none;
}

.hero-stats h3 {
    font-size: clamp(42px, 5vw, 62px);
    color: #e8edf5;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-stats p {
    margin-top: 12px;
    color: #8f9aac;
    font-size: 14px;
    letter-spacing: 1.8px;
}

/* =========================================================
   6. STUDENTS HOME PAGE
========================================================= */

.students-hero {
    min-height: 760px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.28), transparent 38%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 8% 80px;
}

.students-hero h1 {
    font-size: clamp(52px, 7vw, 94px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 35px;
}

.students-hero p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}

.student-buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.student-intro,
.student-pathway {
    padding: 90px 8%;
    text-align: center;
}

.student-intro {
    background-color: var(--light-bg);
}

.student-pathway {
    background-color: var(--white);
}

.student-intro h2,
.student-pathway h2 {
    font-size: clamp(36px, 4vw, 54px);
    margin-bottom: 45px;
    letter-spacing: -1px;
}

.student-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: auto;
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: auto;
}

/* =========================================================
   7. CORPORATE PAGE
========================================================= */

.corporate-home {
    min-height: 650px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.22), transparent 35%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 130px 10%;
}

.corporate-home h1 {
    font-size: clamp(54px, 7vw, 96px);
    margin-bottom: 30px;
}

.corporate-home p {
    max-width: 850px;
    margin: 0 auto 45px;
    font-size: 22px;
    line-height: 1.7;
    color: var(--light-text);
}

/* =========================================================
   8. SERVICES PAGE HERO
========================================================= */

.services-hero,
.form-section {
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.18), transparent 35%),
        linear-gradient(180deg, #f3f5ff 0%, var(--light-bg) 100%);
    text-align: center;
    padding: 100px 10% 85px;
}

.services-hero h1,
.form-section h1 {
    font-size: clamp(34px, 4vw, 52px);
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.services-hero h2 {
    font-size: clamp(46px, 5.5vw, 72px);
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.services-hero p,
.form-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
   9. CARDS + COMMON BOXES
========================================================= */

.edge-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 80px 8%;
    background-color: var(--white);
}

.edge-card,
.service-box,
.agenda-box,
.student-card,
.pathway-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-card) 100%);
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
    transition: 0.3s ease;
}

.edge-card:hover,
.service-box:hover,
.agenda-box:hover,
.student-card:hover,
.pathway-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.edge-card h3,
.service-box h3,
.agenda-box h3,
.student-card h3,
.pathway-card h3 {
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 24px;
}

.edge-card p,
.service-box p,
.agenda-box p,
.student-card p,
.pathway-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

.pathway-card h4,
.service-box h4,
.agenda-box h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.featured-pathway {
    border: 2px solid rgba(88, 101, 242, 0.45);
}

/* =========================================================
   10. SERVICES LIST + AGENDA
========================================================= */

.services-list,
.agenda-section {
    padding: 90px 8%;
    background-color: var(--light-bg);
}

.services-list h2,
.agenda-section h2,
.comparison-section h2,
.register-cta h2 {
    text-align: center;
    font-size: clamp(36px, 4vw, 54px);
    margin-bottom: 45px;
    color: var(--text);
    letter-spacing: -1px;
}

.service-box,
.agenda-box {
    max-width: 1050px;
    margin: 0 auto 38px;
}

.service-box ul,
.agenda-box ul,
.agenda-box ol {
    margin-top: 22px;
    padding-left: 24px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
}

.service-box li,
.agenda-box li {
    margin-bottom: 8px;
}

/* =========================================================
   11. COMPARISON SECTION
========================================================= */

.comparison-section {
    padding: 90px 8%;
    background-color: var(--white);
    text-align: center;
}

.comparison-intro {
    max-width: 900px;
    margin: -20px auto 45px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
}

.comparison-table {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow-x: auto;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    background-color: var(--white);
    border-bottom: 1px solid #e2e5f6;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row div {
    padding: 22px;
    font-size: 17px;
    line-height: 1.5;
    text-align: left;
    color: var(--muted);
}

.comparison-row div:nth-child(2),
.comparison-row div:nth-child(3) {
    text-align: center;
    font-weight: 700;
}

.comparison-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-soft));
}

.comparison-header div {
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
}

.comparison-row:not(.comparison-header):hover {
    background-color: var(--soft-card);
}

/* =========================================================
   12. REGISTER CTA + FORM
========================================================= */

.register-cta {
    text-align: center;
    padding: 90px 8%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--white);
}

.register-cta h2 {
    color: var(--white);
}

.register-form {
    max-width: 760px;
    margin: 45px auto 0;
    text-align: left;
    background-color: var(--white);
    padding: 45px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.register-form label {
    display: block;
    margin-top: 22px;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--dark);
}

.register-form input,
.register-form textarea,
.register-form select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d7daf0;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    background-color: #fbfcff;
    transition: 0.3s ease;
}

.register-form input:focus,
.register-form textarea:focus,
.register-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.12);
    background-color: var(--white);
}

.register-form textarea {
    min-height: 115px;
    resize: vertical;
}

.register-form button {
    margin-top: 32px;
    width: 100%;
    padding: 18px 44px;
    border-radius: 999px;
    font-size: 21px;
}

/* =========================================================
   13. FLOATING CHAT BUTTON
========================================================= */

.chat-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: var(--white);
    border: none;
    padding: 18px 32px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
    transition: 0.3s ease;
    z-index: 50;
}

.chat-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* =========================================================
   14. RESPONSIVE DESIGN
========================================================= */

@media screen and (max-width: 1100px) {
    .site-header {
        flex-direction: column;
        gap: 24px;
        padding: 28px 5%;
    }

    .navbar {
        gap: 22px;
    }

    .edge-section,
    .student-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .pathway-grid,
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats div:nth-child(2) {
        border-right: none;
    }
}

@media screen and (max-width: 700px) {
    .site-header {
        min-height: auto;
    }

    .navbar {
        flex-direction: column;
        gap: 12px;
    }

    .navbar a {
        font-size: 17px;
    }

    .get-started-btn {
        font-size: 17px;
        padding: 14px 26px;
    }

    .new-hero-section,
    .students-hero,
    .corporate-home {
        padding: 70px 6% 55px;
    }

    .new-hero-section h1,
    .students-hero h1 {
        letter-spacing: -2px;
    }

    .hero-stats,
    .edge-section,
    .student-card-grid,
    .pathway-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stats div:last-child {
        border-bottom: none;
    }

    .services-hero,
    .form-section,
    .services-list,
    .agenda-section,
    .comparison-section,
    .register-cta,
    .student-intro,
    .student-pathway {
        padding-left: 6%;
        padding-right: 6%;
    }

    .comparison-row {
        min-width: 760px;
    }

    .register-form {
        padding: 30px 22px;
    }

    .chat-btn {
        right: 18px;
        bottom: 18px;
        padding: 15px 22px;
        font-size: 17px;
    }
}


/* =========================================================
   CAREER PATHWAYS PAGE
========================================================= */

.pathways-hero {
    min-height: 620px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.28), transparent 38%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 95px 8% 75px;
}

.pathways-hero h1 {
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.pathways-hero p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}

.pathways-section {
    padding: 90px 8%;
    background-color: var(--light-bg);
    text-align: center;
}

.pathways-section h2,
.pathways-process h2 {
    font-size: clamp(36px, 4vw, 54px);
    margin-bottom: 45px;
    letter-spacing: -1px;
}

.pathways-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: auto;
}

.pathway-info-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-card) 100%);
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
    text-align: left;
    transition: 0.3s ease;
}

.pathway-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pathway-info-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 14px;
}

.pathway-info-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.pathway-info-card ul {
    padding-left: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.pathways-process {
    padding: 90px 8%;
    background-color: var(--white);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: auto;
}

.process-grid div {
    background-color: var(--soft-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(88, 101, 242, 0.12);
    text-align: left;
}

.process-grid span {
    display: inline-block;
    color: var(--accent);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.process-grid h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 12px;
}

.process-grid p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

@media screen and (max-width: 1000px) {
    .pathways-card-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .pathways-card-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .pathways-hero,
    .pathways-section,
    .pathways-process {
        padding-left: 6%;
        padding-right: 6%;
    }
}

/* =========================================================
   PROJECTS PAGE
========================================================= */

.projects-hero {
    min-height: 620px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.28), transparent 38%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 95px 8% 75px;
}

.projects-hero h1 {
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 30px;
    color: #f4f1ee;
}

.projects-hero h1 span {
    background: linear-gradient(90deg, #7c6cff, #e29355, #f2b244);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-hero p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}

.projects-section,
.sprint-section,
.project-outcomes {
    padding: 90px 8%;
    text-align: center;
}

.projects-section,
.project-outcomes {
    background-color: var(--light-bg);
}

.sprint-section {
    background-color: var(--white);
}

.projects-section h2,
.sprint-section h2,
.project-outcomes h2 {
    font-size: clamp(36px, 4vw, 54px);
    margin-bottom: 45px;
    letter-spacing: -1px;
}

.projects-card-grid,
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: auto;
}

.outcomes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.project-card,
.outcome-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-card) 100%);
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
    text-align: left;
    transition: 0.3s ease;
}

.project-card:hover,
.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.project-card h3,
.outcome-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 14px;
}

.project-card p,
.outcome-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.sprint-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: auto;
}

.sprint-grid div {
    background-color: var(--soft-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(88, 101, 242, 0.12);
    text-align: left;
}

.sprint-grid span {
    display: inline-block;
    color: var(--accent);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.sprint-grid h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 12px;
}

.sprint-grid p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

@media screen and (max-width: 1000px) {
    .projects-card-grid,
    .outcomes-grid,
    .sprint-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .projects-card-grid,
    .outcomes-grid,
    .sprint-grid {
        grid-template-columns: 1fr;
    }

    .projects-hero,
    .projects-section,
    .sprint-section,
    .project-outcomes {
        padding-left: 6%;
        padding-right: 6%;
    }
}


/* =========================================================
   PREMIUM BOOTCAMPS PAGE
========================================================= */

.bootcamp-hero {
    min-height: 650px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.3), transparent 40%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 8% 80px;
}

.bootcamp-hero h1 {
    font-size: clamp(48px, 6vw, 90px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 32px;
}

.bootcamp-hero h1 span {
    background: linear-gradient(90deg, #7c6cff, #e29355, #f2b244);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bootcamp-hero p {
    max-width: 880px;
    margin: auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}

.bootcamp-hero-actions {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.bootcamp-section {
    padding: 95px 8%;
    background-color: var(--light-bg);
    text-align: center;
}

.bootcamp-section h2 {
    font-size: clamp(38px, 4vw, 56px);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-intro {
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
}

.bootcamp-card-grid {
    max-width: var(--max-width);
    margin: 0 auto 45px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.bootcamp-choice {
    border: 1px solid rgba(88, 101, 242, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, var(--soft-card) 100%);
    padding: 38px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: left;
    cursor: pointer;
    transition: 0.3s ease;
}

.bootcamp-choice:hover,
.bootcamp-choice.active {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(88, 101, 242, 0.55);
}

.bootcamp-tag {
    display: inline-block;
    background-color: var(--primary-soft);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.advanced-tag {
    background-color: rgba(242, 168, 75, 0.16);
    color: var(--accent);
}

.bootcamp-choice h3 {
    font-size: 30px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 18px;
}

.bootcamp-choice p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.bootcamp-choice ul {
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.9;
    font-size: 17px;
}

.detail-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 38px;
}

.detail-heading span {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.detail-heading h3 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.detail-heading p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.agenda-day {
    background-color: var(--soft-card);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.agenda-day h4 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 18px;
}

.agenda-day ol {
    padding-left: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.sprint-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.sprint-timeline div {
    background-color: var(--soft-card);
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.sprint-timeline span {
    color: var(--accent);
    font-size: 32px;
    font-weight: 900;
}

.sprint-timeline h4 {
    font-size: 22px;
    color: var(--dark);
    margin: 16px 0 10px;
}

.sprint-timeline p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.advanced-includes {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.advanced-includes div {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(242, 168, 75, 0.12));
    padding: 20px;
    border-radius: 18px;
    color: var(--dark);
    font-weight: 800;
    text-align: center;
}

/* Premium comparison */
.premium-comparison {
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
}

.premium-table {
    max-width: 1120px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.premium-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background-color: var(--white);
    border-bottom: 1px solid #e3e6f5;
}

.premium-row:last-child {
    border-bottom: none;
}

.premium-row div {
    padding: 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.premium-row div:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--dark);
}

.premium-row div:nth-child(2),
.premium-row div:nth-child(3) {
    text-align: center;
}

.premium-head {
    background: linear-gradient(135deg, var(--dark), var(--dark-soft));
}

.premium-head div {
    color: var(--white) !important;
    font-size: 19px;
    font-weight: 900;
}

.highlighted-row {
    background-color: #f7f8ff;
}

.yes {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: rgba(88, 101, 242, 0.14);
    color: var(--primary);
    font-weight: 900;
}

.no {
    color: #a1a6ba;
    font-size: 24px;
    font-weight: 900;
}

@media screen and (max-width: 1000px) {
    .bootcamp-card-grid,
    .agenda-grid,
    .sprint-timeline,
    .advanced-includes {
        grid-template-columns: 1fr;
    }

    .premium-table {
        overflow-x: auto;
    }

    .premium-row {
        min-width: 760px;
    }
}

@media screen and (max-width: 700px) {
    .bootcamp-hero,
    .bootcamp-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .bootcamp-choice,
    .bootcamp-detail {
        padding: 28px;
    }
}

/* PREMIUM EDGE SECTION */
.premium-edge-section {
    display: block;
    padding: 95px 8%;
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
}

.edge-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.edge-heading span {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.edge-heading h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.edge-heading p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: auto;
}

.premium-edge-section .edge-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 38px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
}

.premium-edge-section .edge-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -55px;
    top: -55px;
    background: rgba(88, 101, 242, 0.10);
    border-radius: 50%;
}

.premium-edge-section .edge-card:hover::before {
    background: rgba(242, 168, 75, 0.16);
}

.edge-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 24px;
    box-shadow: 0 12px 28px rgba(88, 101, 242, 0.28);
}

.premium-edge-section .edge-card h3 {
    position: relative;
    z-index: 1;
    font-size: 25px;
}

.premium-edge-section .edge-card p {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1000px) {
    .edge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .premium-edge-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .edge-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   VISUAL CAREER PATHWAYS PAGE
========================================================= */

.visual-pathways-hero {
    min-height: 650px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.32), transparent 38%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 105px 8% 80px;
    overflow: hidden;
}

.visual-pathways-hero h1 {
    font-size: clamp(58px, 8vw, 108px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -4px;
    margin-bottom: 32px;
}

.visual-pathways-hero h1 span {
    background: linear-gradient(90deg, #7c6cff, #e29355, #f2b244);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visual-pathways-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 22px;
    line-height: 1.7;
}

.pathway-hero-tags {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pathway-hero-tags span {
    padding: 12px 22px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #d9deec;
    font-weight: 800;
    letter-spacing: 1px;
}

.visual-pathways-section {
    padding: 95px 8%;
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
    text-align: center;
}

.visual-pathways-section h2,
.pathway-match-section h2 {
    font-size: clamp(38px, 4vw, 58px);
    margin-bottom: 55px;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.visual-pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: auto;
}

.visual-path-card {
    min-height: 260px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
    border-radius: 30px;
    padding: 36px;
    text-align: left;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.visual-path-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    background-color: rgba(88, 101, 242, 0.10);
}

.visual-path-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.visual-path-card:hover::before {
    background-color: rgba(242, 168, 75, 0.16);
}

.path-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 26px;
    box-shadow: 0 12px 28px rgba(88, 101, 242, 0.28);
}

.visual-path-card h3 {
    position: relative;
    z-index: 1;
    color: var(--dark);
    font-size: 25px;
    margin-bottom: 12px;
}

.visual-path-card p {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.pathway-match-section {
    padding: 95px 8%;
    background-color: var(--light-bg);
    text-align: center;
}

.match-flow {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
    align-items: center;
}

.match-step {
    background: white;
    border-radius: 28px;
    padding: 34px 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.match-step span {
    color: var(--accent);
    font-size: 34px;
    font-weight: 900;
}

.match-step h3 {
    margin-top: 12px;
    color: var(--dark);
    font-size: 23px;
}

.flow-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
}

.pathway-outcome-section {
    padding: 90px 8%;
    background: white;
}

.outcome-panel {
    max-width: var(--max-width);
    margin: auto;
    background:
        radial-gradient(circle at top right, rgba(242, 168, 75, 0.20), transparent 30%),
        linear-gradient(135deg, var(--dark), var(--dark-soft));
    color: white;
    padding: 58px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.outcome-panel span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
}

.outcome-panel h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;
    margin-top: 12px;
    max-width: 650px;
}

@media screen and (max-width: 1000px) {
    .visual-pathway-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .match-flow {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .flow-line {
        width: 3px;
        height: 40px;
        margin: auto;
    }

    .outcome-panel {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 700px) {
    .visual-pathway-grid {
        grid-template-columns: 1fr;
    }

    .visual-pathways-hero,
    .visual-pathways-section,
    .pathway-match-section,
    .pathway-outcome-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .visual-pathways-hero h1 {
        letter-spacing: -2px;
    }

    .outcome-panel {
        padding: 36px 24px;
    }
}

/* BOOTCAMP DETAILS BUTTON */
.choice-link {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(88, 101, 242, 0.32);
    transition: 0.3s ease;
}

.choice-link span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bootcamp-choice:hover .choice-link,
.bootcamp-choice.active .choice-link {
    background: linear-gradient(135deg, var(--accent), #e29355);
    transform: translateY(-3px);
}

/* BOOTCAMP DETAILS PANEL */
.bootcamp-detail {
    display: none;
    max-width: var(--max-width);
    margin: 35px auto 0;
    background: #fff;
    border-radius: 34px;
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.14);
    text-align: left;
    opacity: 0;
    transform: translateY(22px);
}

.bootcamp-detail.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: detailFade 0.4s ease;
}

@keyframes detailFade {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CORPORATE REDESIGN */
.corporate-hero-new {
    min-height: 720px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.28), transparent 38%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: white;
    text-align: center;
    padding: 110px 8% 85px;
}

.corporate-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.16);
    border: 1px solid rgba(88, 101, 242, 0.55);
    color: #b8b7ff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 38px;
}

.corporate-hero-new h1 {
    font-size: clamp(54px, 7vw, 100px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -4px;
    margin-bottom: 32px;
}

.corporate-hero-new p {
    max-width: 850px;
    margin: auto;
    color: var(--light-text);
    font-size: 22px;
    line-height: 1.7;
}

.corporate-actions {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.corporate-solutions {
    padding: 95px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
    text-align: center;
}

.corporate-solutions h2,
.corporate-contact h2 {
    font-size: clamp(38px, 4vw, 56px);
    margin-bottom: 50px;
    color: var(--dark);
}

.corporate-grid {
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.corporate-card {
    background: white;
    padding: 38px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
    text-align: left;
    transition: 0.3s ease;
}

.corporate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.corporate-card span {
    color: var(--accent);
    font-size: 34px;
    font-weight: 900;
}

.corporate-card h3 {
    margin: 18px 0 12px;
    font-size: 25px;
    color: var(--dark);
}

.corporate-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.corporate-contact {
    padding: 90px 8%;
    background: linear-gradient(135deg, var(--dark), var(--dark-soft));
    text-align: center;
}

.corporate-contact h2 {
    color: white;
}

@media screen and (max-width: 900px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .corporate-hero-new h1 {
        letter-spacing: -2px;
    }
}


.corporate-landing{

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 8%;

    background:#eef0ff;

}

.corporate-mini{

    font-size:14px;

    letter-spacing:4px;

    font-weight:700;

    color:#666;

    margin-bottom:40px;

}

.corporate-landing h1{

    max-width:1200px;

    font-size:clamp(56px,7vw,94px);

    line-height:1.05;

    font-weight:900;

    color:#050505;

}

.corporate-landing h2{

    margin-top:12px;

    font-size:clamp(48px,6vw,82px);

    font-weight:900;

    color:#5660ff;

}

.corporate-landing p{

    max-width:900px;

    margin-top:55px;

    font-size:28px;

    line-height:1.5;

    color:#2c2c2c;

}

.corporate-btn{

    margin-top:65px;

    display:inline-block;

    padding:22px 70px;

    background:#0b1220;

    color:white;

    border-radius:12px;

    font-size:24px;

    font-weight:700;

    transition:.35s;

}

.corporate-btn:hover{

    transform:translateY(-5px);

    background:#5660ff;

}
.corporate-image-section {
    width: 100%;
    background: #eef0ff;
}

.corporate-image-section img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
}


.corporate-approach-section {
    background: #eef0ff;
    padding: 0 0 90px;
}

.corporate-approach-content {
    background: #ffffff;
    border-radius: 70px 70px 0 0;
    padding: 120px 8% 80px;
}

.corporate-approach-content h2 {
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.05;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 35px;
}

.corporate-approach-content > p {
    max-width: 820px;
    font-size: 28px;
    line-height: 1.45;
    color: #1f2433;
    margin-bottom: 42px;
}

.approach-link {
    display: inline-block;
    color: #07111f;
    font-size: 24px;
    letter-spacing: 4px;
    padding: 0 16px 18px;
    border-bottom: 3px solid #07111f;
    border-radius: 0 0 18px 18px;
    margin-bottom: 90px;
}
.approach-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7%;
}

.approach-card {
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    background: #f8f9ff;
    min-height: 620px;
    box-shadow: 0 18px 45px rgba(20, 25, 50, 0.08);
}

.approach-card-top {
    background: #4f5ae8;
    padding: 42px 30px;
    text-align: center;
}

.approach-card-top h3 {
    color: white;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
}

.approach-card-body {
    padding: 60px 45px;
}

.approach-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 48px;
}

.approach-item:last-child {
    margin-bottom: 0;
}

.approach-icon {
    width: 58px;
    height: 58px;
    border: 1px solid #e0e2ea;
    border-radius: 8px;
    background: white;
    color: #4f5ae8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}

.approach-item p {
    font-size: clamp(24px, 2.4vw, 40px);
    line-height: 1.18;
    color: #0b111f;
}

@media screen and (max-width: 900px) {
    .approach-card-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .approach-card {
        min-height: auto;
    }

    .approach-card-body {
        padding: 38px 26px;
    }

    .approach-item {
        grid-template-columns: 58px 1fr;
        gap: 18px;
        margin-bottom: 32px;
    }

    .approach-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}
.corporate-capabilities-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
    padding: 110px 8%;
    background: #ffffff;
}

.capability-pill {
    display: inline-block;
    background: #eef0ff;
    color: #4f5ae8;
    padding: 8px 34px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 28px;
}

.capabilities-left h2 {
    font-size: clamp(52px, 6vw, 86px);
    line-height: 0.95;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 40px;
}

.capabilities-left h2 span {
    color: #4f5ae8;
}

.capabilities-left p {
    max-width: 760px;
    font-size: 30px;
    line-height: 1.45;
    color: #252a3a;
    margin-bottom: 75px;
}

.capability-btn {
    display: inline-block;
    background: #07111f;
    color: white;
    padding: 20px 34px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    transition: 0.3s ease;
}

.capability-btn:hover {
    background: #4f5ae8;
    transform: translateY(-4px);
}

.capability-feature-card {
    background: #1d2236;
    color: white;
    padding: 80px 70px;
    border-radius: 14px;
    min-height: 430px;
}

.capability-icon {
    width: 92px;
    height: 92px;
    background: #4f5ae8;
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    margin-bottom: 42px;
}

.capability-feature-card h3 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.1;
    margin-bottom: 30px;
}

.capability-feature-card p {
    font-size: 28px;
    line-height: 1.35;
    color: #f0f2ff;
}

@media screen and (max-width: 950px) {
    .corporate-capabilities-section {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 80px 6%;
    }

    .capabilities-left p {
        font-size: 22px;
        margin-bottom: 45px;
    }

    .capability-feature-card {
        padding: 50px 32px;
    }

    .capability-feature-card p {
        font-size: 21px;
    }
}
.capabilities-right {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.capability-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.capability-mini-card,
.capability-wide-card {
    background: #f0f2ff;
    border-radius: 14px;
    padding: 34px;
}

.capability-mini-card h3,
.capability-wide-card h3 {
    color: #07111f;
    font-size: 30px;
    margin: 20px 0 12px;
}

.capability-mini-card p,
.capability-wide-card p {
    color: #252a3a;
    font-size: 22px;
    line-height: 1.25;
}

.mini-icon {
    width: 72px;
    height: 72px;
    background: #4f5ae8;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
}

.capability-wide-card {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: center;
    background: #f8f9ff;
}

.capability-wide-card h3 {
    margin-top: 0;
}

@media screen and (max-width: 950px) {
    .capability-mini-grid {
        grid-template-columns: 1fr;
    }

    .capability-wide-card {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

.corporate-testimonial-section {
    background: #f7f8ff;
    padding: 95px 8%;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 85px;
}

.testimonial-heading span {
    display: inline-block;
    background: #050b14;
    color: white;
    padding: 9px 32px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 35px;
}

.testimonial-heading h2 {
    font-size: clamp(52px, 6vw, 86px);
    line-height: 1;
    color: #050b14;
    font-weight: 900;
}

.testimonial-heading strong {
    color: #4f5ae8;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    max-width: 1500px;
    margin: auto;
}

.main-testimonial-card {
    background: #1d2236;
    color: white;
    border-radius: 14px;
    padding: 75px 70px;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ecd66f;
    font-size: 36px;
    letter-spacing: 4px;
}

.main-testimonial-card h3 {
    font-size: clamp(44px, 5vw, 78px);
    line-height: 1.08;
    font-weight: 900;
}

.testimonial-divider {
    height: 1px;
    background: rgba(255,255,255,0.28);
    width: 100%;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 22px;
}

.testimonial-person img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person h4 {
    font-size: 26px;
    color: inherit;
}

.testimonial-person p {
    font-size: 19px;
    color: #6d87ff;
    font-weight: 800;
}

.testimonial-side {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.small-testimonial-card {
    background: white;
    border-radius: 14px;
    padding: 55px 60px;
}

.small-testimonial-card .stars {
    font-size: 28px;
    margin-bottom: 35px;
}

.small-testimonial-card > p {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 900;
    font-style: italic;
    color: #050b14;
    margin-bottom: 45px;
}

.confidence-card {
    background: #4f5ae8;
    color: white;
    text-align: center;
    border-radius: 12px;
    padding: 45px;
}

.confidence-card h3 {
    font-size: 76px;
    line-height: 1;
}

.confidence-card p {
    font-size: 28px;
    font-weight: 900;
}

@media screen and (max-width: 1000px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
    }

    .main-testimonial-card {
        min-height: auto;
        gap: 45px;
    }
}

@media screen and (max-width: 700px) {
    .corporate-testimonial-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .main-testimonial-card,
    .small-testimonial-card {
        padding: 38px 26px;
    }

    .small-testimonial-card > p {
        font-size: 23px;
    }

    .testimonial-person img {
        width: 60px;
        height: 60px;
    }
}


.corporate-footer {
    background: #1d2236;
    color: white;
    padding: 90px 6% 45px;
}

.corporate-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
    gap: 70px;
    max-width: 1600px;
    margin: auto;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.footer-brand img {
    width: 180px;
    margin-bottom: 35px;
}

.footer-brand p {
    max-width: 420px;
    font-size: 24px;
    line-height: 1.4;
}

.footer-column h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.footer-column a {
    display: block;
    color: white;
    font-size: 24px;
    margin-bottom: 22px;
}

.footer-column a:hover {
    color: #5865f2;
}

.linkedin-icon {
    color: #5865f2 !important;
    font-size: 54px !important;
    font-weight: 900;
    line-height: 1;
}

.corporate-footer-bottom {
    max-width: 1600px;
    margin: auto;
    padding-top: 42px;
    text-align: center;
}

.corporate-footer-bottom p {
    color: #d5d7e2;
    font-size: 21px;
}

@media screen and (max-width: 900px) {
    .corporate-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand p,
    .footer-column a {
        font-size: 20px;
    }
}




/*==================================================
ABOUT HERO
==================================================*/

.about-hero{
    background:#e9edff;
    padding:140px 8% 120px;
}

.about-hero-content{
    max-width:1450px;
    margin:auto;
    text-align:center;
}

.about-hero h1{
    font-size:clamp(60px,5vw,96px);
    line-height:.95;
    font-weight:900;
    color:#070b18;
    letter-spacing:-3px;
    margin-bottom:55px;
}

.about-hero h1 span{
    color:#5662f3;
}

.about-hero p{
    max-width:1350px;
    margin:auto;
    font-size:30px;
    line-height:1.45;
    color:#161b2b;
    margin-bottom:70px;
}

.about-hero-btn{
    display:inline-block;
    background:white;
    color:#050b14;
    text-decoration:none;
    padding:24px 48px;
    border-radius:10px;
    font-size:22px;
    font-weight:900;
    letter-spacing:3px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.about-hero-btn:hover{
    transform:translateY(-5px);
    background:#5865f2;
    color:white;
}

@media(max-width:900px){

    .about-hero{
        padding:90px 6%;
    }

    .about-hero h1{
        line-height:1.05;
        letter-spacing:-1px;
    }

    .about-hero p{
        font-size:21px;
    }

    .about-hero-btn{
        width:100%;
        text-align:center;
        font-size:18px;
    }

}



/* CORPORATE ABOUT PAGE - WORK SECTION */
.about-work-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
    padding: 110px 6%;
    background: #ffffff;
}

.about-work-left h2,
.about-engine-left h2 {
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1.18;
    font-weight: 900;
    color: #050b14;
    margin-bottom: 38px;
}

.about-work-left p,
.about-engine-left p {
    font-size: 28px;
    line-height: 1.42;
    color: #171c2b;
    margin-bottom: 38px;
}

.about-work-right {
    min-height: 600px;
    background: #f6f8ff;
    border-radius: 32px;
    padding: 70px 50px;
    position: relative;
    box-shadow: inset 0 0 25px rgba(88, 101, 242, 0.08);
}

.work-feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    box-shadow: 0 12px 35px rgba(20, 25, 50, 0.10);
    max-width: 680px;
    position: absolute;
}

.feature-one {
    top: 70px;
    left: 70px;
    right: 70px;
}

.feature-two {
    top: 245px;
    left: 130px;
    right: 70px;
}

.feature-three {
    top: 420px;
    left: 70px;
    right: 70px;
}

.work-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #eef0ff;
    color: #4f5ae8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    flex-shrink: 0;
}

.green-icon {
    color: #4ba564;
    background: #edf9f0;
}

.work-feature-card h3 {
    color: #171c2b;
    font-size: 22px;
    margin-bottom: 8px;
}

.work-feature-card p {
    color: #747989;
    font-size: 18px;
    line-height: 1.35;
}

/* CORPORATE ABOUT PAGE - ENGINE SECTION */
.about-engine-section {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
    padding: 100px 6% 120px;
    background: #ffffff;
}

.about-engine-card {
    background: #1d2236;
    color: white;
    border-radius: 18px;
    padding: 75px 70px;
    min-height: 430px;
}

.engine-icon {
    width: 96px;
    height: 96px;
    background: #4f5ae8;
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    margin-bottom: 45px;
}

.about-engine-card h3 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    margin-bottom: 32px;
}

.about-engine-card p {
    font-size: 30px;
    line-height: 1.35;
    color: #f0f2ff;
}

@media screen and (max-width: 1000px) {
    .about-work-section,
    .about-engine-section {
        grid-template-columns: 1fr;
        padding: 80px 6%;
    }

    .about-work-right {
        min-height: auto;
        padding: 35px;
    }

    .work-feature-card {
        position: static;
        max-width: none;
        margin-bottom: 24px;
    }

    .work-feature-card:last-child {
        margin-bottom: 0;
    }

    .about-work-left p,
    .about-engine-left p,
    .about-engine-card p {
        font-size: 21px;
    }

    .about-engine-card {
        padding: 45px 32px;
    }
}

/* CORPORATE ABOUT - BUSINESS SECTION */
.about-business-section {
    background: #f8f9ff;
    padding: 125px 5% 90px;
}

.about-business-content {
    max-width: 1720px;
    margin: 0 auto;
    text-align: center;
}

.about-business-content h2 {
    color: #050b14;
    font-size: clamp(48px, 5.2vw, 86px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2.5px;
    margin-bottom: 72px;
}

.about-business-content > p {
    max-width: 1220px;
    margin: 0 auto 95px;
    color: #252a3a;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.42;
}

.business-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.business-card {
    background: #ffffff;
    border: 1px solid #e5e7ef;
    border-radius: 14px;
    min-height: 200px;
    padding: 30px 28px;
    text-align: left;
    box-shadow: 0 3px 8px rgba(10, 15, 30, 0.16);
}

.business-icon {
    color: #4f5ae8;
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 24px;
}

.business-card h3 {
    color: #050b14;
    font-size: clamp(24px, 1.7vw, 32px);
    line-height: 1.28;
    font-weight: 900;
}

@media screen and (max-width: 1100px) {
    .business-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .about-business-section {
        padding: 80px 6%;
    }

    .about-business-content h2 {
        letter-spacing: -1px;
        margin-bottom: 40px;
    }

    .about-business-content > p {
        margin-bottom: 55px;
    }

    .business-card-grid {
        grid-template-columns: 1fr;
    }
}


.about-promise-block {
    margin-top: 120px;
    text-align: center;
}

.about-promise-block > span {
    display: inline-block;
    background: #050b14;
    color: white;
    padding: 8px 34px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 35px;
}

.about-promise-block > h2 {
    font-size: clamp(48px, 5vw, 78px);
    line-height: 1;
    font-weight: 900;
    color: #050b14;
    margin-bottom: 60px;
}

.promise-card {
    max-width: 1420px;
    margin: auto;
    background: #1d2236;
    color: white;
    border-radius: 14px;
    padding: 85px 70px;
    text-align: left;
}

.promise-card h3 {
    max-width: 1250px;
    font-size: clamp(36px, 4vw, 60px);
    line-height: 1.22;
    font-weight: 900;
    margin-bottom: 48px;
}

.promise-card p {
    color: #5865f2;
    font-size: clamp(24px, 2.6vw, 40px);
    line-height: 1.35;
}

@media screen and (max-width: 700px) {
    .about-promise-block {
        margin-top: 70px;
    }

    .promise-card {
        padding: 42px 28px;
    }
}


/* CORPORATE ROLE PAGE */
.role-hero {
    background: #e9edff;
    text-align: center;
    padding: 140px 8% 120px;
}

.role-hero span {
    display: inline-block;
    color: #4f5ae8;
    border: 2px solid white;
    border-radius: 999px;
    padding: 9px 90px;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 45px;
}

.role-hero h1 {
    font-size: clamp(70px, 8vw, 130px);
    line-height: 0.92;
    font-weight: 900;
    color: #050b14;
    margin-bottom: 65px;
}

.role-hero h1 strong {
    color: #4f5ae8;
}

.role-hero p {
    max-width: 1250px;
    margin: auto;
    font-size: clamp(28px, 2.5vw, 42px);
    line-height: 1.35;
    color: #050b14;
}

.role-catalogue-section {
    background: #eef2ff;
    padding: 0 4.5% 120px;
}

.role-catalogue-section h2 {
    font-size: clamp(58px, 6vw, 92px);
    line-height: 0.95;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 60px;
}

.role-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 110px;
}

.role-card {
    background: white;
    min-height: 420px;
}

.role-card h3 {
    background: #4f5ae8;
    color: white;
    font-size: clamp(28px, 2vw, 38px);
    padding: 38px 38px;
    font-weight: 900;
}

.role-card p {
    padding: 45px 38px;
    font-size: clamp(24px, 1.8vw, 32px);
    line-height: 1.28;
    color: #050b14;
}

.industry-title {
    margin-top: 150px;
}

.role-cta-section {
    background: white;
    text-align: center;
    padding: 130px 8% 160px;
}

.role-cta-section h2 {
    font-size: clamp(70px, 7vw, 112px);
    line-height: 0.95;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 40px;
}

.role-cta-section h2 span {
    color: #4f5ae8;
    font-style: italic;
}

.role-cta-section p {
    max-width: 900px;
    margin: 0 auto 55px;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.35;
    color: #252a3a;
}

.role-cta-btn {
    display: inline-block;
    background: #07111f;
    color: white;
    padding: 24px 60px;
    border-radius: 8px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
}

.role-cta-btn:hover {
    background: #4f5ae8;
}

@media screen and (max-width: 1000px) {
    .role-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .role-card-grid {
        grid-template-columns: 1fr;
    }

    .role-hero span {
        padding: 9px 35px;
    }
}


/* CORPORATE APPROACH PAGE */
.approach-page-hero {
    background: #e9edff;
    text-align: center;
    padding: 170px 8% 145px;
}

.approach-page-hero span {
    display: inline-block;
    color: #4f5ae8;
    border: 2px solid white;
    border-radius: 999px;
    padding: 9px 90px;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 45px;
}

.approach-page-hero h1 {
    font-size: clamp(72px, 8vw, 130px);
    line-height: 0.95;
    font-weight: 900;
    color: #050b14;
    margin-bottom: 65px;
}

.approach-page-hero h1 strong {
    color: #4f5ae8;
}

.approach-page-hero p {
    max-width: 1000px;
    margin: auto;
    font-size: clamp(28px, 2.3vw, 42px);
    line-height: 1.35;
    color: #050b14;
}

/* CORE FUNCTIONS */
.core-functions-section {
    background: white;
    padding: 110px 4.5% 120px;
}

.core-functions-section h2 {
    font-size: clamp(60px, 6vw, 92px);
    line-height: 1;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 35px;
}

.core-functions-section > p {
    font-size: 28px;
    color: #050b14;
    margin-bottom: 70px;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
}

.core-card {
    background: #f7f8ff;
    border-radius: 28px;
    min-height: 360px;
    padding: 78px 48px;
}

.core-icon {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    background: #f3e5e7;
    color: #4f5ae8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 45px;
}

.core-card h3 {
    font-size: clamp(30px, 2.5vw, 42px);
    color: #07111f;
    margin-bottom: 25px;
}

.core-card p {
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.3;
    color: #101522;
}

/* TRANSFORMATION */
.transformation-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 110px 4.5%;
    background: #f7f8ff;
}

.transformation-left h2 {
    font-size: clamp(58px, 6vw, 92px);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 40px;
}

.transformation-left h2 span {
    color: #4f5ae8;
}

.transformation-left p {
    max-width: 700px;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.35;
    margin-bottom: 42px;
}

.transformation-list div {
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.transformation-list span {
    width: 48px;
    height: 48px;
    background: #4f5ae8;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.transformation-image img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 42px;
}

/* PROBLEM VS WAY */
.problem-way-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    padding: 100px 4.5%;
    background: white;
}

.problem-column h2,
.way-column h2 {
    font-size: clamp(38px, 4vw, 56px);
    margin-bottom: 70px;
}

.problem-column h2 {
    color: #a6492d;
}

.way-column h2 {
    color: #4f5ae8;
}

.problem-column h2 span,
.way-column h2 span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 4px solid currentColor;
    font-size: 26px;
    margin-right: 18px;
}

.problem-way-section h3 {
    font-size: clamp(30px, 3vw, 42px);
    color: #07111f;
    margin-bottom: 8px;
}

.problem-way-section p {
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.3;
    margin-bottom: 54px;
    color: #050b14;
}

/* FINAL CTA */
.approach-final-cta {
    background: #f7f8ff;
    border-radius: 80px 80px 0 0;
    text-align: center;
    padding: 150px 8% 170px;
}

.approach-final-cta h2 {
    font-size: clamp(64px, 7vw, 110px);
    line-height: 0.95;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 40px;
}

.approach-final-cta h2 span {
    color: #4f5ae8;
    font-style: italic;
}

.approach-final-cta p {
    max-width: 920px;
    margin: 0 auto 55px;
    font-size: clamp(25px, 2.3vw, 36px);
    line-height: 1.3;
    color: #252a3a;
}

.approach-cta-btn {
    display: inline-block;
    background: #07111f;
    color: white;
    padding: 24px 70px;
    border-radius: 8px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
}

.approach-cta-btn:hover {
    background: #4f5ae8;
}

@media screen and (max-width: 1000px) {
    .core-grid,
    .transformation-section,
    .problem-way-section {
        grid-template-columns: 1fr;
    }

    .transformation-image img {
        height: 420px;
    }
}

@media screen and (max-width: 700px) {
    .approach-page-hero span {
        padding: 9px 35px;
    }

    .core-card {
        padding: 45px 28px;
    }

    .approach-final-cta {
        border-radius: 42px 42px 0 0;
    }
}


/* CORPORATE DELIVERY PAGE */
.delivery-hero {
    background: #e9edff;
    text-align: center;
    padding: 210px 8% 155px;
}

.delivery-hero h1 {
    font-size: clamp(90px, 9vw, 150px);
    line-height: 0.92;
    font-weight: 900;
    color: #050b14;
    margin-bottom: 75px;
}

.delivery-hero p {
    max-width: 900px;
    margin: auto;
    font-size: clamp(30px, 2.5vw, 42px);
    line-height: 1.35;
    color: #050b14;
}

.delivery-options-section {
    background: #ffffff;
    padding: 90px 4.5% 130px;
}

.delivery-options-heading {
    margin-bottom: 120px;
}

.delivery-options-heading h2 {
    font-size: clamp(56px, 6vw, 92px);
    line-height: 1;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 38px;
}

.delivery-options-heading p {
    max-width: 720px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.35;
    color: #050b14;
}

.delivery-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
    margin-bottom: 95px;
}

.delivery-row.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.delivery-text h3 {
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 36px;
}

.delivery-text p {
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.22;
    color: #050b14;
    max-width: 760px;
    margin-bottom: 26px;
}

.delivery-text .bold-text {
    font-weight: 900;
}

.delivery-image-card {
    border: 1px solid #d9d9d9;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.18);
    background: white;
}

.delivery-image-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px;
}

.trainers-section {
    text-align: center;
    padding-top: 70px;
}

.trainers-section h2 {
    font-size: clamp(60px, 6vw, 92px);
    line-height: 1;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 35px;
}

.trainers-section > p {
    max-width: 900px;
    margin: 0 auto 110px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.35;
    color: #050b14;
}

.trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
    max-width: 1300px;
    margin: auto;
}

.trainer-card {
    text-align: center;
}

.trainer-card img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    margin: 0 auto 45px;
}

.trainer-card h3 {
    font-size: 30px;
    font-style: italic;
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 35px;
}

.trainer-card a {
    display: block;
    color: #999;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 40px;
}

.trainer-card p {
    max-width: 300px;
    margin: auto;
    font-size: 22px;
    line-height: 1.25;
    color: #111;
}

.delivery-final-cta {
    background: #f7f8ff;
    text-align: center;
    padding: 150px 8% 170px;
}

.delivery-final-cta h2 {
    font-size: clamp(64px, 7vw, 110px);
    line-height: 0.95;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 40px;
}

.delivery-final-cta h2 span {
    color: #4f5ae8;
    font-style: italic;
}

.delivery-final-cta p {
    max-width: 920px;
    margin: 0 auto 55px;
    font-size: clamp(25px, 2.3vw, 36px);
    line-height: 1.3;
    color: #252a3a;
}

.delivery-cta-btn {
    display: inline-block;
    background: #07111f;
    color: white;
    padding: 24px 70px;
    border-radius: 8px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
}

.delivery-cta-btn:hover {
    background: #4f5ae8;
}

@media screen and (max-width: 1000px) {
    .delivery-row,
    .delivery-row.reverse,
    .trainer-grid {
        grid-template-columns: 1fr;
    }

    .delivery-image-card img {
        height: 350px;
    }
}


/* CORPORATE PLATFORM PAGE */
.platform-page-section {
    background: #e9edff;
    padding: 95px 8% 120px;
}

.platform-hero {
    text-align: center;
    max-width: 1150px;
    margin: 0 auto 85px;
}

.platform-hero h1 {
    font-size: clamp(82px, 8vw, 142px);
    line-height: 0.88;
    font-weight: 900;
    color: #050b14;
    margin-bottom: 48px;
}

.platform-hero h1 span {
    color: #4f5ae8;
}

.platform-hero p {
    max-width: 1050px;
    margin: auto;
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.28;
    color: #050b14;
}

.platform-card-grid {
    max-width: 1520px;
    margin: 0 auto 95px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.platform-card {
    min-height: 320px;
    background: white;
    border-radius: 12px;
    padding: 42px 34px;
    position: relative;
}

.platform-icon {
    color: #4f5ae8;
    font-size: 58px;
    line-height: 1;
    margin-bottom: 42px;
}

.platform-card span {
    position: absolute;
    top: 34px;
    right: 36px;
    color: #c5c5c5;
    font-size: 76px;
    line-height: 1;
    font-weight: 900;
}

.platform-card h3 {
    max-width: 390px;
    color: #050b14;
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: 1.22;
    font-weight: 400;
}

.platform-image-wrap {
    max-width: 1520px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #c8c8c8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.platform-image-wrap img {
    width: 100%;
    height: 740px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.platform-demo-section {
    min-height: 620px;
    background: #1d2236;
    color: white;
    text-align: center;
    padding: 150px 8%;
}

.platform-demo-section h2 {
    font-size: clamp(72px, 7vw, 116px);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 42px;
}

.platform-demo-section p {
    max-width: 980px;
    margin: 0 auto 60px;
    font-size: clamp(28px, 2.5vw, 42px);
    line-height: 1.35;
    color: white;
}

.platform-demo-btn {
    display: inline-block;
    background: #4f5ae8;
    color: white;
    padding: 28px 105px;
    border-radius: 8px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 5px;
}

.platform-demo-btn:hover {
    background: #07111f;
}

@media screen and (max-width: 1000px) {
    .platform-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-image-wrap img {
        height: 500px;
    }
}

@media screen and (max-width: 700px) {
    .platform-page-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .platform-card-grid {
        grid-template-columns: 1fr;
    }

    .platform-image-wrap img {
        height: 330px;
    }

    .platform-demo-btn {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* CORPORATE FAQ PAGE */
.faq-page-section {
    background: #e9edff;
    padding: 70px 8% 95px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 70px;
}

.faq-heading h1 {
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 900;
    color: #050b14;
    margin-bottom: 28px;
}

.faq-heading p {
    font-size: clamp(22px, 2vw, 32px);
    color: #050b14;
}

.faq-box {
    max-width: 1450px;
    margin: 0 auto 95px;
    background: white;
    padding: 36px 50px 0;
}

.faq-item {
    border-bottom: 1px solid #bfc1c8;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    color: #050b14;
}

.faq-question span {
    font-size: 34px;
    font-weight: 400;
    transition: 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 80px 34px 0;
}

.faq-answer p {
    font-size: 22px;
    line-height: 1.5;
    color: #252a3a;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-cta {
    max-width: 1450px;
    margin: auto;
    background: #4f5ae8;
    color: white;
    border-radius: 30px;
    text-align: center;
    padding: 105px 8%;
}

.faq-cta h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    margin-bottom: 32px;
}

.faq-cta p {
    font-size: clamp(22px, 2vw, 30px);
    margin-bottom: 35px;
}

.faq-cta-btn {
    display: inline-block;
    background: white;
    color: #4f5ae8;
    padding: 16px 45px;
    border-radius: 8px;
    font-size: 28px;
    letter-spacing: 5px;
}

@media screen and (max-width: 700px) {
    .faq-page-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .faq-box {
        padding: 24px 24px 0;
    }

    .faq-answer {
        padding-right: 0;
    }
}




/* CORPORATE CONTACT PAGE */
.corporate-contact-page {
    background: #e9edff;
    padding: 130px 8% 120px;
}

.contact-hero {
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(72px, 8vw, 132px);
    line-height: 0.95;
    font-weight: 900;
    color: #050b14;
    margin-bottom: 80px;
}

.contact-hero h1 span {
    color: #4f5ae8;
}

.contact-hero > p {
    max-width: 1120px;
    margin: 0 auto 70px;
    font-size: clamp(28px, 2.5vw, 42px);
    line-height: 1.35;
    color: #050b14;
}

.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 140px;
    margin-bottom: 80px;
}

.contact-info-row > div {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.contact-info-row span {
    color: #4f5ae8;
    font-size: 44px;
}

.contact-info-row h3 {
    font-size: 28px;
    color: #050b14;
}

.contact-info-row p {
    font-size: 22px;
    color: #050b14;
}

.contact-process {
    text-align: center;
    margin-bottom: 90px;
}

.contact-process h2 {
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    color: #252a3a;
    margin-bottom: 70px;
}

.process-row {
    max-width: 1450px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.process-row div {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 900;
    color: #050b14;
}

.process-row span {
    width: 54px;
    height: 54px;
    background: #4f5ae8;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.corporate-contact-form {
    max-width: 1100px;
    margin: auto;
    background: white;
    border: 2px solid #9aa2ff;
    border-radius: 28px;
    padding: 42px;
}

.corporate-contact-form label {
    display: block;
    font-size: 22px;
    color: #050b14;
    margin-bottom: 16px;
    margin-top: 28px;
}

.corporate-contact-form label:first-child {
    margin-top: 0;
}

.corporate-contact-form input,
.corporate-contact-form select,
.corporate-contact-form textarea {
    width: 100%;
    height: 64px;
    border: 2px solid #9aa2ff;
    border-radius: 28px;
    padding: 0 22px;
    font-size: 22px;
    outline: none;
}

.corporate-contact-form textarea {
    height: 130px;
    padding-top: 20px;
    resize: vertical;
}

.corporate-contact-form input::placeholder,
.corporate-contact-form textarea::placeholder {
    color: #b7b7b7;
}

.corporate-contact-form button {
    width: 100%;
    margin-top: 36px;
    background: #4f5ae8;
    color: white;
    border: none;
    border-radius: 28px;
    padding: 20px;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
}

.corporate-contact-form button:hover {
    background: #07111f;
}

@media screen and (max-width: 900px) {
    .contact-info-row,
    .process-row {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .corporate-contact-form {
        padding: 28px;
    }
}

.register-cta-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.register-cta-btn {
  display: inline-block;
  padding: 18px 38px;
  background: linear-gradient(135deg, #5865f2, #6d77ff);
  color: #ffffff;
  font-family: inherit;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(88, 101, 242, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.register-cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #4653df, #5865f2);
}

.register-cta-btn:active {
  transform: translateY(-1px);
}
/* =========================================================
   CORPORATE OPTIMISATION OVERRIDES
   Paste-safe: these rules only target corporate pages/components.
   Student pages are intentionally left untouched.
========================================================= */

:root {
    --corp-primary: #2f5bff;
    --corp-primary-dark: #203fd4;
    --corp-light: #eef1ff;
    --corp-soft: #f7f8ff;
    --corp-text: #050b14;
    --corp-muted: #303747;
    --corp-dark: #1d2236;
}

/* -----------------------------
   Corporate header
------------------------------ */
.corporate-header {
    min-height: 88px;
    padding: 14px 5.5%;
    background: var(--corp-dark);
}

.corporate-header .logo img {
    width: 128px;
}

.corporate-navbar {
    gap: 22px;
}

.corporate-navbar a {
    font-size: 15px;
    letter-spacing: 0.7px;
    color: #ffffff;
}

.corporate-navbar a::after {
    background: var(--corp-primary);
}

.corporate-navbar a:hover,
.corporate-navbar a.active {
    color: var(--corp-primary);
}

.corporate-header .get-started-btn {
    padding: 12px 24px;
    font-size: 15px;
    letter-spacing: 0.8px;
    background: var(--corp-primary);
    box-shadow: 0 10px 24px rgba(47, 91, 255, 0.25);
}

.corporate-header .get-started-btn:hover {
    background: var(--corp-primary-dark);
}

/* -----------------------------
   Corporate shared buttons
------------------------------ */
.corporate-btn,
.about-hero-btn,
.capability-btn,
.role-cta-btn,
.approach-cta-btn,
.delivery-cta-btn,
.platform-demo-btn,
.faq-cta-btn,
.corporate-contact-form button {
    background: #07111f;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-weight: 800;
    transition: 0.3s ease;
}

.corporate-btn:hover,
.about-hero-btn:hover,
.capability-btn:hover,
.role-cta-btn:hover,
.approach-cta-btn:hover,
.delivery-cta-btn:hover,
.platform-demo-btn:hover,
.faq-cta-btn:hover,
.corporate-contact-form button:hover {
    background: var(--corp-primary);
    transform: translateY(-3px);
}

/* -----------------------------
   Corporate common page rhythm
------------------------------ */
.corporate-landing,
.about-hero,
.role-hero,
.approach-page-hero,
.delivery-hero,
.platform-page-section,
.faq-page-section,
.corporate-contact-page {
    background: var(--corp-light);
}

.corporate-landing,
.about-hero,
.role-hero,
.approach-page-hero,
.delivery-hero,
.corporate-contact-page {
    padding-left: 7%;
    padding-right: 7%;
}

/* =========================================================
   CORPORATE HOME PAGE
========================================================= */
.corporate-landing {
    min-height: calc(100vh - 88px);
    padding-top: 90px;
    padding-bottom: 92px;
}

.corporate-landing h1 {
    max-width: 1040px;
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: 1.06;
    letter-spacing: -1.8px;
    color: var(--corp-text);
}

.corporate-landing h2 {
    margin-top: 10px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.2px;
    color: var(--corp-primary);
}

.corporate-landing p {
    max-width: 760px;
    margin-top: 36px;
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.48;
    color: var(--corp-muted);
}

.corporate-btn {
    margin-top: 44px;
    padding: 17px 48px;
    font-size: 18px;
}

.corporate-image-section {
    background: var(--corp-light);
}

.corporate-image-section img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
}

.corporate-approach-section {
    background: var(--corp-light);
    padding-bottom: 70px;
}

.corporate-approach-content {
    border-radius: 56px 56px 0 0;
    padding: 86px 7% 74px;
}

.corporate-approach-content h2 {
    font-size: clamp(36px, 4.3vw, 58px);
    line-height: 1.07;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
}

.corporate-approach-content > p {
    max-width: 720px;
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.45;
    margin-bottom: 34px;
    color: var(--corp-muted);
}

.approach-link {
    font-size: clamp(15px, 1.2vw, 19px);
    letter-spacing: 3px;
    padding-bottom: 13px;
    margin-bottom: 60px;
}

.approach-card-grid {
    gap: 42px;
}

.approach-card {
    min-height: 500px;
    border-radius: 12px 12px 0 0;
}

.approach-card-top {
    background: var(--corp-primary);
    padding: 30px 24px;
}

.approach-card-top h3 {
    font-size: clamp(28px, 3vw, 42px);
}

.approach-card-body {
    padding: 42px 34px;
}

.approach-item {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    margin-bottom: 34px;
}

.approach-icon {
    width: 48px;
    height: 48px;
    color: var(--corp-primary);
    font-size: 24px;
}

.approach-item p {
    font-size: clamp(19px, 1.8vw, 28px);
    line-height: 1.22;
}

/* Home capabilities: supports both current HTML and corrected nested HTML */
.corporate-capabilities-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 54px;
    align-items: start;
    padding: 86px 7%;
    background: #ffffff;
}

.corporate-capabilities-section > .capabilities-left {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.corporate-capabilities-section > .capabilities-right {
    grid-column: 2;
    grid-row: 1;
}

.corporate-capabilities-section > .capability-mini-grid {
    grid-column: 2;
    grid-row: 2;
}

.capability-pill {
    background: var(--corp-light);
    color: var(--corp-primary);
    padding: 7px 24px;
    font-size: 15px;
    margin-bottom: 20px;
}

.capabilities-left h2 {
    font-size: clamp(38px, 4.7vw, 62px);
    line-height: 1;
    letter-spacing: -1.3px;
    margin-bottom: 28px;
}

.capabilities-left h2 span {
    color: var(--corp-primary);
}

.capabilities-left p {
    max-width: 620px;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.48;
    margin-bottom: 42px;
    color: var(--corp-muted);
}

.capability-btn {
    padding: 16px 28px;
    font-size: 17px;
    letter-spacing: 2px;
}

.capabilities-right {
    gap: 24px;
}

.capability-feature-card {
    background: var(--corp-dark);
    padding: 52px 46px;
    border-radius: 14px;
    min-height: 320px;
}

.capability-icon {
    width: 68px;
    height: 68px;
    background: var(--corp-primary);
    font-size: 38px;
    margin-bottom: 28px;
}

.capability-feature-card h3 {
    font-size: clamp(28px, 3.3vw, 44px);
    line-height: 1.12;
    margin-bottom: 20px;
}

.capability-feature-card p {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.4;
}

.capability-mini-grid {
    gap: 18px;
}

.capability-mini-card,
.capability-wide-card {
    border-radius: 14px;
    padding: 26px;
}

.mini-icon {
    width: 56px;
    height: 56px;
    background: var(--corp-primary);
    font-size: 28px;
}

.capability-mini-card h3,
.capability-wide-card h3 {
    font-size: 22px;
    margin: 16px 0 8px;
}

.capability-mini-card p,
.capability-wide-card p {
    font-size: 17px;
    line-height: 1.38;
}

.capability-wide-card {
    grid-column: 1 / 3;
    grid-template-columns: 72px 1fr;
    gap: 20px;
}

.corporate-testimonial-section {
    padding: 78px 7%;
}

.testimonial-heading {
    margin-bottom: 58px;
}

.testimonial-heading span {
    font-size: 14px;
    padding: 8px 24px;
    margin-bottom: 24px;
}

.testimonial-heading h2 {
    font-size: clamp(38px, 4.8vw, 64px);
}

.testimonial-heading strong {
    color: var(--corp-primary);
}

.testimonial-layout {
    gap: 42px;
}

.main-testimonial-card {
    border-radius: 14px;
    padding: 52px 48px;
    min-height: 520px;
}

.stars {
    font-size: 26px;
}

.main-testimonial-card h3 {
    font-size: clamp(30px, 3.8vw, 50px);
}

.small-testimonial-card {
    border-radius: 14px;
    padding: 38px 42px;
}

.small-testimonial-card > p {
    font-size: clamp(20px, 1.9vw, 25px);
    margin-bottom: 30px;
}

.testimonial-person img {
    width: 62px;
    height: 62px;
}

.testimonial-person h4 {
    font-size: 20px;
}

.testimonial-person p {
    font-size: 15px;
}

.confidence-card {
    background: var(--corp-primary);
    padding: 34px;
}

.confidence-card h3 {
    font-size: 56px;
}

.confidence-card p {
    font-size: 22px;
}

/* =========================================================
   CORPORATE ABOUT PAGE
========================================================= */
.about-hero {
    padding-top: 104px;
    padding-bottom: 92px;
}

.about-hero h1 {
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 36px;
}

.about-hero h1 span {
    color: var(--corp-primary);
}

.about-hero p {
    max-width: 1080px;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.48;
    margin-bottom: 44px;
}

.about-hero-btn {
    padding: 17px 34px;
    font-size: 16px;
    letter-spacing: 2px;
}

.about-work-section,
.about-engine-section {
    gap: 58px;
    padding: 82px 6%;
}

.about-work-left h2,
.about-engine-left h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    margin-bottom: 26px;
}

.about-work-left p,
.about-engine-left p {
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.5;
    margin-bottom: 24px;
}

.about-work-right {
    min-height: 470px;
    border-radius: 26px;
    padding: 52px 38px;
}

.work-feature-card {
    padding: 20px 24px;
    gap: 20px;
}

.feature-one {
    top: 52px;
    left: 52px;
    right: 52px;
}

.feature-two {
    top: 192px;
    left: 92px;
    right: 52px;
}

.feature-three {
    top: 332px;
    left: 52px;
    right: 52px;
}

.work-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    color: var(--corp-primary);
}

.work-feature-card h3 {
    font-size: 19px;
}

.work-feature-card p {
    font-size: 15px;
}

.about-engine-card {
    padding: 52px 48px;
    min-height: 320px;
    border-radius: 16px;
}

.engine-icon {
    width: 70px;
    height: 70px;
    background: var(--corp-primary);
    font-size: 40px;
    margin-bottom: 28px;
}

.about-engine-card h3 {
    font-size: clamp(28px, 3.2vw, 42px);
    margin-bottom: 22px;
}

.about-engine-card p {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.4;
}

.about-business-section {
    padding: 86px 5% 72px;
}

.about-business-content h2,
.about-promise-block > h2 {
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.04;
    letter-spacing: -1.3px;
    margin-bottom: 42px;
}

.about-business-content > p {
    max-width: 980px;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.48;
    margin-bottom: 64px;
}

.business-card {
    min-height: 168px;
    padding: 24px;
}

.business-icon {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--corp-primary);
}

.business-card h3 {
    font-size: clamp(18px, 1.45vw, 23px);
}

.about-promise-block {
    margin-top: 84px;
}

.about-promise-block > span {
    font-size: 14px;
    padding: 8px 24px;
    margin-bottom: 24px;
}

.promise-card {
    border-radius: 14px;
    padding: 56px 52px;
}

.promise-card h3 {
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.25;
    margin-bottom: 30px;
}

.promise-card p {
    color: #8da0ff;
    font-size: clamp(20px, 2vw, 30px);
}

/* =========================================================
   CORPORATE ROLE PAGE
========================================================= */
.role-hero {
    padding-top: 106px;
    padding-bottom: 90px;
}

.role-hero span,
.approach-page-hero span {
    color: var(--corp-primary);
    padding: 8px 54px;
    font-size: 16px;
    margin-bottom: 34px;
}

.role-hero h1,
.approach-page-hero h1 {
    font-size: clamp(48px, 6vw, 86px);
    line-height: 0.97;
    letter-spacing: -1.5px;
    margin-bottom: 42px;
}

.role-hero h1 strong,
.approach-page-hero h1 strong {
    color: var(--corp-primary);
}

.role-hero p,
.approach-page-hero p {
    max-width: 980px;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.38;
}

.role-catalogue-section {
    background: var(--corp-light);
    padding: 20px 4.5% 84px;
}

.role-catalogue-section h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -1.2px;
    margin-bottom: 42px;
}

.role-card-grid {
    gap: 26px;
    margin-bottom: 78px;
}

.role-card {
    min-height: 320px;
    border: 1px solid rgba(47, 91, 255, 0.1);
}

.role-card h3 {
    background: var(--corp-primary);
    font-size: clamp(22px, 1.75vw, 28px);
    line-height: 1.2;
    padding: 26px;
}

.role-card p {
    padding: 30px 26px;
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.38;
}

.industry-title {
    margin-top: 88px;
}

.role-cta-section,
.approach-final-cta,
.delivery-final-cta {
    padding: 86px 7% 96px;
}

.role-cta-section h2,
.approach-final-cta h2,
.delivery-final-cta h2 {
    font-size: clamp(46px, 5.8vw, 78px);
    line-height: 0.98;
    margin-bottom: 28px;
}

.role-cta-section h2 span,
.approach-final-cta h2 span,
.delivery-final-cta h2 span {
    color: var(--corp-primary);
}

.role-cta-section p,
.approach-final-cta p,
.delivery-final-cta p {
    max-width: 760px;
    font-size: clamp(18px, 1.65vw, 24px);
    line-height: 1.42;
    margin-bottom: 38px;
}

.role-cta-btn,
.approach-cta-btn,
.delivery-cta-btn {
    padding: 18px 42px;
    font-size: 19px;
    letter-spacing: 3px;
}

/* =========================================================
   CORPORATE APPROACH PAGE
========================================================= */
.approach-page-hero {
    padding-top: 112px;
    padding-bottom: 94px;
}

.core-functions-section,
.problem-way-section {
    padding: 82px 4.5% 90px;
}

.core-functions-section h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1;
    margin-bottom: 24px;
}

.core-functions-section > p {
    font-size: clamp(18px, 1.6vw, 23px);
    margin-bottom: 46px;
}

.core-grid {
    gap: 30px;
}

.core-card {
    min-height: 280px;
    border-radius: 22px;
    padding: 46px 34px;
}

.core-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
    color: var(--corp-primary);
    margin-bottom: 28px;
}

.core-card h3 {
    font-size: clamp(24px, 2.1vw, 32px);
    margin-bottom: 16px;
}

.core-card p {
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.38;
}

.transformation-section {
    gap: 58px;
    padding: 82px 4.5%;
}

.transformation-left h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1;
    margin-bottom: 28px;
}

.transformation-left h2 span {
    color: var(--corp-primary);
}

.transformation-left p {
    font-size: clamp(18px, 1.65vw, 24px);
    line-height: 1.42;
    margin-bottom: 30px;
}

.transformation-list div {
    font-size: clamp(17px, 1.55vw, 23px);
    margin-bottom: 18px;
    gap: 18px;
}

.transformation-list span {
    width: 40px;
    height: 40px;
    background: var(--corp-primary);
}

.transformation-image img {
    height: 470px;
    border-radius: 32px;
}

.problem-way-section {
    gap: 60px;
}

.problem-column h2,
.way-column h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    margin-bottom: 46px;
}

.way-column h2 {
    color: var(--corp-primary);
}

.problem-column h2 span,
.way-column h2 span {
    width: 34px;
    height: 34px;
    font-size: 20px;
    border-width: 3px;
}

.problem-way-section h3 {
    font-size: clamp(24px, 2.5vw, 34px);
}

.problem-way-section p {
    font-size: clamp(17px, 1.55vw, 23px);
    line-height: 1.38;
    margin-bottom: 36px;
}

.approach-final-cta {
    background: var(--corp-soft);
    border-radius: 56px 56px 0 0;
}

/* =========================================================
   CORPORATE DELIVERY PAGE
========================================================= */
.delivery-hero {
    padding-top: 130px;
    padding-bottom: 96px;
}

.delivery-hero h1 {
    font-size: clamp(54px, 6.8vw, 96px);
    line-height: 0.98;
    margin-bottom: 44px;
}

.delivery-hero p {
    max-width: 760px;
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.38;
}

.delivery-options-section {
    padding: 74px 4.5% 92px;
}

.delivery-options-heading {
    margin-bottom: 78px;
}

.delivery-options-heading h2,
.trainers-section h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1;
    margin-bottom: 24px;
}

.delivery-options-heading p,
.trainers-section > p {
    max-width: 760px;
    font-size: clamp(17px, 1.6vw, 23px);
    line-height: 1.42;
}

.delivery-row,
.delivery-row.reverse {
    gap: 58px;
    margin-bottom: 76px;
}

.delivery-text h3 {
    font-size: clamp(30px, 3.6vw, 44px);
    margin-bottom: 24px;
}

.delivery-text p {
    font-size: clamp(17px, 1.6vw, 23px);
    line-height: 1.42;
    margin-bottom: 18px;
}

.delivery-image-card {
    border-radius: 22px;
    padding: 20px;
}

.delivery-image-card img {
    height: 340px;
    border-radius: 14px;
}

.trainers-section {
    padding-top: 46px;
}

.trainers-section > p {
    margin-bottom: 72px;
}

.trainer-grid {
    gap: 58px;
}

.trainer-card img {
    width: 235px;
    height: 235px;
    margin-bottom: 30px;
}

.trainer-card h3 {
    font-size: 24px;
    margin-bottom: 22px;
}

.trainer-card a {
    font-size: 42px;
    margin-bottom: 26px;
}

.trainer-card p {
    font-size: 17px;
    line-height: 1.35;
}

.delivery-final-cta {
    background: var(--corp-soft);
}

/* =========================================================
   CORPORATE PLATFORM PAGE
========================================================= */
.platform-page-section {
    padding: 78px 7% 90px;
}

.platform-hero {
    max-width: 920px;
    margin-bottom: 60px;
}

.platform-hero h1 {
    font-size: clamp(52px, 6.5vw, 92px);
    line-height: 0.94;
    margin-bottom: 32px;
}

.platform-hero h1 span {
    color: var(--corp-primary);
}

.platform-hero p {
    max-width: 820px;
    font-size: clamp(19px, 1.9vw, 28px);
    line-height: 1.38;
}

.platform-card-grid {
    margin-bottom: 62px;
    gap: 16px;
}

.platform-card {
    min-height: 230px;
    border-radius: 10px;
    padding: 30px 26px;
}

.platform-icon {
    color: var(--corp-primary);
    font-size: 42px;
    margin-bottom: 26px;
}

.platform-card span {
    top: 24px;
    right: 26px;
    font-size: 54px;
}

.platform-card h3 {
    font-size: clamp(22px, 2.1vw, 32px);
    line-height: 1.24;
}

.platform-image-wrap {
    border-radius: 22px;
}

.platform-image-wrap img {
    height: 560px;
}

.platform-demo-section {
    min-height: 470px;
    padding: 98px 7%;
}

.platform-demo-section h2 {
    font-size: clamp(48px, 6vw, 78px);
    margin-bottom: 30px;
}

.platform-demo-section p {
    max-width: 820px;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.4;
    margin-bottom: 40px;
}

.platform-demo-btn {
    background: var(--corp-primary);
    padding: 20px 70px;
    font-size: 21px;
    letter-spacing: 4px;
}

/* =========================================================
   CORPORATE FAQ PAGE
========================================================= */
.faq-page-section {
    padding: 68px 7% 78px;
}

.faq-heading {
    margin-bottom: 48px;
}

.faq-heading h1 {
    font-size: clamp(36px, 4.6vw, 58px);
    margin-bottom: 18px;
}

.faq-heading p {
    font-size: clamp(17px, 1.7vw, 23px);
}

.faq-box {
    max-width: 1180px;
    margin-bottom: 66px;
    padding: 26px 38px 0;
}

.faq-question {
    padding: 24px 0;
    font-size: clamp(18px, 1.6vw, 24px);
}

.faq-question span {
    font-size: 28px;
}

.faq-answer {
    padding: 0 60px 26px 0;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.5;
}

.faq-cta {
    max-width: 1180px;
    border-radius: 24px;
    padding: 72px 7%;
    background: var(--corp-primary);
}

.faq-cta h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    margin-bottom: 22px;
}

.faq-cta p {
    font-size: clamp(17px, 1.7vw, 23px);
    margin-bottom: 28px;
}

.faq-cta-btn {
    background: #ffffff;
    color: var(--corp-primary);
    padding: 14px 34px;
    font-size: 20px;
    letter-spacing: 3px;
}

/* =========================================================
   CORPORATE CONTACT PAGE
========================================================= */
.corporate-contact-page {
    padding-top: 96px;
    padding-bottom: 92px;
}

.contact-hero h1 {
    font-size: clamp(46px, 6vw, 82px);
    line-height: 0.98;
    margin-bottom: 48px;
}

.contact-hero h1 span {
    color: var(--corp-primary);
}

.contact-hero > p {
    max-width: 880px;
    font-size: clamp(19px, 1.9vw, 28px);
    line-height: 1.4;
    margin-bottom: 46px;
}

.contact-info-row {
    gap: 92px;
    margin-bottom: 58px;
}

.contact-info-row span {
    color: var(--corp-primary);
    font-size: 34px;
}

.contact-info-row h3 {
    font-size: 22px;
}

.contact-info-row p {
    font-size: 17px;
}

.contact-process {
    margin-bottom: 62px;
}

.contact-process h2 {
    font-size: clamp(34px, 4.4vw, 56px);
    margin-bottom: 44px;
}

.process-row {
    max-width: 1060px;
    gap: 42px;
}

.process-row div {
    gap: 18px;
    font-size: clamp(20px, 2vw, 28px);
}

.process-row span {
    width: 44px;
    height: 44px;
    background: var(--corp-primary);
    font-size: 20px;
}

.corporate-contact-form {
    max-width: 860px;
    border: 2px solid rgba(47, 91, 255, 0.45);
    border-radius: 22px;
    padding: 34px;
}

.corporate-contact-form label {
    font-size: 17px;
    margin: 22px 0 10px;
}

.corporate-contact-form input,
.corporate-contact-form select,
.corporate-contact-form textarea {
    height: 52px;
    border: 2px solid rgba(47, 91, 255, 0.45);
    border-radius: 20px;
    padding: 0 18px;
    font-size: 17px;
}

.corporate-contact-form textarea {
    height: 112px;
    padding-top: 16px;
}

.corporate-contact-form button {
    margin-top: 28px;
    background: var(--corp-primary);
    border-radius: 20px;
    padding: 16px;
    font-size: 21px;
}

/* =========================================================
   CORPORATE FOOTER
========================================================= */
.corporate-footer {
    background: var(--corp-dark);
    padding: 62px 6% 34px;
}

.corporate-footer-top {
    gap: 50px;
    padding-bottom: 48px;
}

.footer-brand img {
    width: 138px;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 360px;
    font-size: 17px;
    line-height: 1.45;
}

.footer-column h3 {
    font-size: 21px;
    margin-bottom: 22px;
}

.footer-column a {
    font-size: 17px;
    margin-bottom: 14px;
}

.footer-column a:hover,
.linkedin-icon {
    color: var(--corp-primary) !important;
}

.linkedin-icon {
    font-size: 40px !important;
}

.corporate-footer-bottom {
    padding-top: 30px;
}

.corporate-footer-bottom p {
    font-size: 15px;
}

/* =========================================================
   CORPORATE RESPONSIVE OPTIMISATION
========================================================= */
@media screen and (max-width: 1150px) {
    .corporate-header {
        padding: 18px 5%;
    }

    .corporate-navbar {
        gap: 16px;
    }

    .corporate-capabilities-section,
    .about-work-section,
    .about-engine-section,
    .transformation-section,
    .delivery-row,
    .delivery-row.reverse,
    .testimonial-layout,
    .problem-way-section {
        grid-template-columns: 1fr;
    }

    .corporate-capabilities-section > .capabilities-left,
    .corporate-capabilities-section > .capabilities-right,
    .corporate-capabilities-section > .capability-mini-grid {
        grid-column: auto;
        grid-row: auto;
    }

    .role-card-grid,
    .platform-card-grid,
    .business-card-grid,
    .trainer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .corporate-header {
        min-height: auto;
    }

    .corporate-header .logo img {
        width: 118px;
    }

    .corporate-image-section img {
        height: 360px;
    }

    .approach-card-grid,
    .core-grid,
    .process-row,
    .capability-mini-grid {
        grid-template-columns: 1fr;
    }

    .capability-wide-card {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .work-feature-card {
        position: static;
        margin-bottom: 18px;
    }

    .about-work-right {
        min-height: auto;
    }

    .platform-image-wrap img {
        height: 420px;
    }

    .delivery-image-card img,
    .transformation-image img {
        height: 320px;
    }

    .contact-info-row {
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }

    .corporate-footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media screen and (max-width: 700px) {
    .corporate-landing,
    .about-hero,
    .role-hero,
    .approach-page-hero,
    .delivery-hero,
    .platform-page-section,
    .faq-page-section,
    .corporate-contact-page {
        padding-left: 6%;
        padding-right: 6%;
    }

    .corporate-landing h1,
    .about-hero h1,
    .role-hero h1,
    .approach-page-hero h1,
    .delivery-hero h1,
    .platform-hero h1,
    .contact-hero h1 {
        letter-spacing: -0.8px;
    }

    .role-card-grid,
    .platform-card-grid,
    .business-card-grid,
    .trainer-grid {
        grid-template-columns: 1fr;
    }

    .main-testimonial-card,
    .small-testimonial-card,
    .promise-card,
    .about-engine-card,
    .capability-feature-card,
    .corporate-contact-form {
        padding: 28px 22px;
    }

    .role-hero span,
    .approach-page-hero span {
        padding: 8px 28px;
    }

    .platform-demo-btn,
    .role-cta-btn,
    .approach-cta-btn,
    .delivery-cta-btn,
    .faq-cta-btn,
    .corporate-btn {
        width: 100%;
        text-align: center;
        padding-left: 18px;
        padding-right: 18px;
    }

    .faq-box {
        padding: 20px 22px 0;
    }

    .faq-answer {
        padding-right: 0;
    }

    .platform-image-wrap img,
    .corporate-image-section img {
        height: 300px;
    }

    .trainer-card img {
        width: 210px;
        height: 210px;
    }
}
/* =========================================================
   STUDENT CONTACT PAGE
========================================================= */

.contact-hero {
    min-height: 620px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.3), transparent 40%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 8% 80px;
}

.contact-hero h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 32px;
    color: var(--white);
}

.contact-hero h1 span {
    background: linear-gradient(90deg, #7c6cff, #e29355, #f2b244);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero p {
    max-width: 850px;
    margin: auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}

.student-contact-section {
    padding: 95px 8%;
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.contact-info-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
    border-radius: 34px;
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.contact-label {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.contact-info-panel h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.contact-info-panel > p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-detail-card {
    background: var(--white);
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(88, 101, 242, 0.12);
    box-shadow: 0 10px 24px rgba(20, 25, 50, 0.08);
}

.contact-detail-card span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.contact-detail-card h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-detail-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

.student-contact-form {
    background: var(--white);
    border-radius: 34px;
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.student-contact-form label {
    display: block;
    margin-bottom: 8px;
    margin-top: 22px;
    font-weight: 900;
    color: var(--dark);
}

.student-contact-form label:first-child {
    margin-top: 0;
}

.student-contact-form input,
.student-contact-form textarea,
.student-contact-form select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d7daf0;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    background-color: #fbfcff;
    transition: 0.3s ease;
}

.student-contact-form input:focus,
.student-contact-form textarea:focus,
.student-contact-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.12);
    background-color: var(--white);
}

.student-contact-form textarea {
    min-height: 145px;
    resize: vertical;
}

.student-contact-form button {
    width: 100%;
    margin-top: 32px;
    border: none;
    cursor: pointer;
    padding: 18px 44px;
    border-radius: 999px;
    font-size: 21px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: white;
    box-shadow: 0 14px 34px rgba(88, 101, 242, 0.35);
    transition: 0.3s ease;
}

.student-contact-form button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

@media screen and (max-width: 950px) {
    .student-contact-section {
        grid-template-columns: 1fr;
        padding-left: 6%;
        padding-right: 6%;
    }
}

@media screen and (max-width: 700px) {
    .contact-hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .contact-hero h1 {
        letter-spacing: -2px;
    }

    .contact-info-panel,
    .student-contact-form {
        padding: 32px 24px;
    }
}

/* =========================================================
   FREE TASTER SESSION PAGE
========================================================= */

.taster-hero {
    min-height: 700px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.32), transparent 40%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 105px 8% 85px;
}

.taster-hero h1 {
    font-size: clamp(50px, 7vw, 94px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 32px;
    color: #f4f1ee;
}

.taster-hero h1 span {
    background: linear-gradient(90deg, #7c6cff, #e29355, #f2b244);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.taster-hero p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}
/* =========================================================
   FREE TASTER SESSION PAGE
========================================================= */

.taster-hero {
    min-height: 700px;
    background:
        radial-gradient(circle at top center, rgba(88, 101, 242, 0.32), transparent 40%),
        linear-gradient(135deg, var(--dark-deep) 0%, #141936 55%, #07141f 100%);
    color: var(--white);
    text-align: center;
    padding: 105px 8% 85px;
}

.taster-hero h1 {
    font-size: clamp(50px, 7vw, 94px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 32px;
    color: #f4f1ee;
}

.taster-hero h1 span {
    background: linear-gradient(90deg, #7c6cff, #e29355, #f2b244);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.taster-hero p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 21px;
    line-height: 1.7;
}

.taster-hero-details {
    max-width: 1120px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.taster-hero-details div {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 26px 20px;
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.taster-hero-details span {
    display: block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.taster-hero-details strong {
    display: block;
    color: var(--white);
    font-size: 21px;
    line-height: 1.35;
}

/* ABOUT SECTION */

.taster-about-section {
    padding: 95px 8%;
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.taster-about-left h2,
.taster-signup-left h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -1.5px;
    margin-bottom: 26px;
}

.taster-about-left p,
.taster-signup-left p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.taster-about-card,
.taster-signup-left {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
    border-radius: 34px;
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.12);
}

.taster-about-card h3 {
    color: var(--dark);
    font-size: 32px;
    margin-bottom: 24px;
}

.taster-about-card ul {
    padding-left: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.taster-about-card li {
    margin-bottom: 8px;
}

/* LEARNING + AGENDA SECTIONS */

.taster-learning-section,
.taster-agenda-section {
    padding: 90px 8%;
    text-align: center;
}

.taster-learning-section {
    background-color: var(--light-bg);
}

.taster-agenda-section {
    background-color: var(--white);
}

.taster-learning-section h2,
.taster-agenda-section h2 {
    font-size: clamp(36px, 4vw, 54px);
    margin-bottom: 45px;
    letter-spacing: -1px;
    color: var(--dark);
}

/* SIGNUP SECTION */

.taster-signup-section {
    padding: 95px 8%;
    background:
        radial-gradient(circle at top right, rgba(242, 168, 75, 0.14), transparent 30%),
        linear-gradient(180deg, #f3f5ff 0%, #ffffff 100%);
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.deadline-alert {
    margin: 26px 0 32px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(242, 168, 75, 0.14);
    border: 1px solid rgba(242, 168, 75, 0.35);
    color: var(--dark);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

.deadline-alert strong {
    color: #d88220;
}

/* =========================================================
   STUDENT OPPORTUNITY SECTION
========================================================= */

.student-opportunity-section {
    padding: 95px 8%;
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
    text-align: center;
}

.opportunity-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.opportunity-heading span {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.opportunity-heading h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.opportunity-heading p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.opportunity-stack {
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.opportunity-card {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 34px;
    align-items: center;
    text-align: left;
    padding: 42px;
    border-radius: 34px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88, 101, 242, 0.14);
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(88, 101, 242, 0.10);
}

.taster-card {
    background:
        radial-gradient(circle at top right, rgba(88, 101, 242, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
}

.intake-card {
    background:
        radial-gradient(circle at top right, rgba(242, 168, 75, 0.18), transparent 34%),
        linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--white);
}

.opportunity-content,
.opportunity-action {
    position: relative;
    z-index: 1;
}

.opportunity-tag {
    display: inline-block;
    background-color: var(--primary-soft);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.intake-tag {
    background-color: rgba(242, 168, 75, 0.16);
    color: var(--accent);
}

.opportunity-content h3 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.intake-card .opportunity-content h3 {
    color: var(--white);
}

.opportunity-content p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.intake-card .opportunity-content p {
    color: var(--light-text);
}

.opportunity-content ul {
    padding-left: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.intake-card .opportunity-content ul {
    color: #d7ddea;
}

.opportunity-action {
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.14);
    border-radius: 26px;
    padding: 32px;
    text-align: center;
}

.intake-card .opportunity-action {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.opportunity-action h4 {
    color: var(--dark);
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 24px;
}

.intake-card .opportunity-action h4 {
    color: var(--white);
}

.opportunity-btn {
    display: inline-block;
    width: 100%;
    padding: 17px 26px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 900;
    text-align: center;
    transition: 0.3s ease;
}

.primary-opportunity-btn {
    background: linear-gradient(135deg, var(--primary), #6d77ff);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(88, 101, 242, 0.30);
}

.secondary-opportunity-btn {
    background: linear-gradient(135deg, var(--accent), #e29355);
    color: #07111f;
    box-shadow: 0 14px 34px rgba(242, 168, 75, 0.28);
}

.opportunity-btn:hover {
    transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE FIXES FOR TASTER + OPPORTUNITY SECTIONS
========================================================= */

@media screen and (max-width: 1100px) {
    .taster-hero-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .opportunity-card {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 950px) {
    .taster-about-section,
    .taster-signup-section {
        grid-template-columns: 1fr;
        padding-left: 6%;
        padding-right: 6%;
    }
}

@media screen and (max-width: 700px) {
    .taster-hero,
    .taster-learning-section,
    .taster-agenda-section,
    .student-opportunity-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .taster-hero h1 {
        letter-spacing: -2px;
    }

    .taster-hero-details {
        grid-template-columns: 1fr;
    }

    .taster-hero-details div,
    .taster-about-card,
    .taster-signup-left {
        padding: 30px 24px;
    }

    .opportunity-card {
        padding: 30px 24px;
    }

    .opportunity-action {
        padding: 26px 20px;
    }

    .opportunity-btn {
        font-size: 16px;
    }
}
.bootcamp-price {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.12);
    border: 1px solid rgba(88, 101, 242, 0.22);
}

.bootcamp-price span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.bootcamp-price strong {
    color: var(--dark);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.advanced-price {
    background: rgba(242, 168, 75, 0.14);
    border-color: rgba(242, 168, 75, 0.32);
}

.advanced-price span {
    color: var(--accent);
}/* =========================================================
   MOBILE HEADER / HAMBURGER MENU
   Add this at the VERY BOTTOM of style.css
   Desktop view remains unchanged.
========================================================= */

.mobile-menu-toggle,
.mobile-menu-panel,
.mobile-menu-backdrop {
    display: none;
}

/* Keep header horizontal on tablet sizes.
   This overrides the older responsive rule that stacked the header at 1100px. */
@media screen and (max-width: 1100px) {
    .site-header,
    .student-header,
    .corporate-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-height: 90px;
        padding: 16px 6%;
    }

    .navbar {
        flex-direction: row;
        gap: 20px;
    }
}

@media screen and (max-width: 900px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .site-header,
    .student-header,
    .corporate-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        min-height: 82px;
        padding: 14px 6%;
        background: rgba(7, 17, 31, 0.98);
        border-bottom: 1px solid rgba(88, 101, 242, 0.25);
    }

    .logo img {
        width: 128px;
    }

    .site-header > .navbar,
    .site-header > .get-started-btn {
        display: none;
    }

    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.06);
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        transition: 0.3s ease;
        position: relative;
        z-index: 1002;
    }

    .mobile-menu-toggle:hover {
        background: rgba(88, 101, 242, 0.18);
        border-color: rgba(88, 101, 242, 0.55);
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        border-radius: 999px;
        background: var(--white);
        transition: 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 998;
        display: block;
        background: rgba(3, 8, 20, 0.62);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        backdrop-filter: blur(6px);
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 999;
        display: flex;
        flex-direction: column;
        width: min(86vw, 390px);
        height: 100vh;
        padding: 105px 24px 30px;
        background:
            radial-gradient(circle at top right, rgba(88, 101, 242, 0.24), transparent 36%),
            linear-gradient(180deg, #07111f 0%, #11162a 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -24px 0 70px rgba(0, 0, 0, 0.35);
        transition: right 0.35s ease;
        overflow-y: auto;
    }

    .mobile-menu-panel.active {
        right: 0;
    }

    .mobile-menu-panel .navbar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .mobile-menu-panel .navbar a {
        width: 100%;
        padding: 15px 18px;
        border-radius: 16px;
        color: #e8edf7;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 0.6px;
    }

    .mobile-menu-panel .navbar a::after {
        display: none;
    }

    .mobile-menu-panel .navbar a:hover,
    .mobile-menu-panel .navbar a.active {
        color: var(--white);
        background: linear-gradient(135deg, rgba(88, 101, 242, 0.34), rgba(242, 168, 75, 0.16));
        border-color: rgba(88, 101, 242, 0.45);
        transform: translateX(4px);
    }

    .mobile-menu-panel .get-started-btn {
        display: block;
        width: 100%;
        margin-top: 18px;
        padding: 17px 24px;
        text-align: center;
        border-radius: 999px;
        font-size: 17px;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 520px) {
    .site-header,
    .student-header,
    .corporate-header {
        min-height: 76px;
        padding: 12px 5%;
    }

    .logo img {
        width: 118px;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .mobile-menu-panel {
        width: 88vw;
        padding: 96px 20px 28px;
    }

    .mobile-menu-panel .navbar a {
        padding: 14px 16px;
        font-size: 16px;
    }
}
/* =========================================================
   FINAL MOBILE MENU FIX - SAME ORIGINAL COLOURS
========================================================= */

.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-menu-panel {
    display: none;
}

@media screen and (max-width: 900px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .site-header,
    .student-header,
    .corporate-header {
        min-height: 82px !important;
        height: 82px !important;
        padding: 14px 6% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        position: relative !important;
        z-index: 5000 !important;
    }

    .site-header .logo,
    .student-header .logo,
    .corporate-header .logo {
        display: flex !important;
        align-items: center !important;
    }

    .site-header .logo img,
    .student-header .logo img,
    .corporate-header .logo img {
        width: 132px !important;
        height: auto !important;
    }

    .site-header > .navbar,
    .student-header > .navbar,
    .corporate-header > .navbar,
    .site-header > .get-started-btn,
    .student-header > .get-started-btn,
    .corporate-header > .get-started-btn {
        display: none !important;
    }

    .mobile-menu-toggle {
        width: 52px;
        height: 52px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.06);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        position: relative;
        z-index: 6000;
        transition: 0.3s ease;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 999px;
        transition: 0.3s ease;
    }

    .mobile-menu-toggle.active {
        background: rgba(255, 255, 255, 0.10);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.3s ease;
        z-index: 4000;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-panel {
        display: block !important;
        position: fixed;
        top: 82px;
        right: -100%;
        width: min(88%, 390px);
        height: calc(100vh - 82px);
        padding: 28px 24px 36px;
        background: var(--dark);
        box-shadow: -20px 0 55px rgba(0, 0, 0, 0.28);
        border-top-left-radius: 28px;
        overflow-y: auto;
        z-index: 4500;
        transition: 0.35s ease;
    }

    .mobile-menu-panel.active {
        right: 0;
    }

    .mobile-menu-panel .navbar {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .mobile-menu-panel .navbar a {
        display: block !important;
        width: 100% !important;
        padding: 16px 18px !important;
        border-radius: 16px !important;
        color: var(--white) !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        font-size: 17px !important;
        font-weight: 800 !important;
        letter-spacing: 1px !important;
        text-align: left !important;
    }

    .mobile-menu-panel .navbar a::after {
        display: none !important;
    }

    .mobile-menu-panel .navbar a:hover,
    .mobile-menu-panel .navbar a.active {
        color: var(--primary) !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border-color: rgba(88, 101, 242, 0.55) !important;
    }

    .mobile-menu-panel .get-started-btn {
        display: block !important;
        width: 100% !important;
        margin-top: 22px !important;
        padding: 17px 22px !important;
        border-radius: 999px !important;
        text-align: center !important;
        font-size: 18px !important;
        font-weight: 900 !important;
    }
}

@media screen and (max-width: 480px) {
    .site-header,
    .student-header,
    .corporate-header {
        min-height: 78px !important;
        height: 78px !important;
        padding: 13px 5% !important;
    }

    .site-header .logo img,
    .student-header .logo img,
    .corporate-header .logo img {
        width: 122px !important;
    }

    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .mobile-menu-panel {
        top: 78px;
        height: calc(100vh - 78px);
        width: 90%;
        padding: 24px 20px 34px;
    }
}
/* Shared enquiry form feedback and spam protection */
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-help,
.form-status {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-help {
    color: #66736d;
    margin-top: -8px;
}

.form-status:empty {
    display: none;
}

.form-status {
    padding: 12px 14px;
    border-radius: 8px;
    background: #edf2f0;
    color: #243c33;
}

.form-status-success {
    background: #e5f6ee;
    color: #12633f;
    border: 1px solid #a9dec5;
}

.form-status-error {
    background: #fff0f0;
    color: #9d2727;
    border: 1px solid #efb5b5;
}

.student-contact-form button:disabled,
.corporate-contact-form button:disabled,
.register-form button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}
