@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap');

:root {
    --blue: #2563EB;
    --cyan: #06B6D4;
    --navy: #0A2540;
    --ink: #1E293B;
    --muted: #64748B;
    --line: #E2E8F0;
    --bg: #F8FAFC;
    --heading: "Poppins", sans-serif;
    --body: "Inter", sans-serif;
}

/* Global spacing utilities */
.m-0 { margin: 0 !important; }
.m-1 { margin: .25rem !important; }
.m-2 { margin: .5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: .25rem !important; }
.ms-2 { margin-left: .5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: .25rem !important; }
.me-2 { margin-right: .5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
.my-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.p-0 { padding: 0 !important; }
.p-1 { padding: .25rem !important; }
.p-2 { padding: .5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: .25rem !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: .25rem !important; }
.pb-2 { padding-bottom: .5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.px-0 { padding-right: 0 !important; padding-left: 0 !important; }
.px-1 { padding-right: .25rem !important; padding-left: .25rem !important; }
.px-2 { padding-right: .5rem !important; padding-left: .5rem !important; }
.px-3 { padding-right: 1rem !important; padding-left: 1rem !important; }
.px-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
.px-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.5;
}

body, h1, h2, h3, p, ul {
    padding: 0;
}

h1, h2, h3, p {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.btn-primary {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.btn-primary:hover {
    color: #fff;
    background: #0758bd;
}

.btn-outline {
    color: var(--blue);
    background: #fff;
    border-color: #c7d2df;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 78px;
    background: #fff;
    border-bottom: 1px solid #edf1f4;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 28px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    color: #0660cb;
    font: 800 19px var(--heading);
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 9px;
    font-size: 21px;
}

.brand-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
}

.site-nav a {
    padding: 10px 0;
    color: #1b2532;
    font-size: 12px;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    color: #1b2532;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--blue);
}

.nav-dropdown-toggle i {
    font-size: 12px;
    transition: transform .2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle > i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 12px);
    left: 50%;
    display: grid;
    width: 260px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(12, 40, 75, .14);
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-nav .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
}

.site-nav .nav-dropdown-menu a:hover {
    background: #f1f7ff;
}

.nav-dropdown-menu a i {
    display: grid;
    flex: 0 0 30px;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #087a89;
    background: #eaf4ff;
    border-radius: 7px;
    font-size: 17px;
}

.site-nav a.active {
    padding-inline: 15px;
    border-radius: 4px;
}

.header-cta {
    flex: 0 0 auto;
}

.nav-toggle {
    display: none;
    padding: 6px;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: var(--ink);
}

.service-detail-page {
    background: #fff;
}

.service-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 40%, rgba(31, 207, 239, .18), transparent 28%),
        linear-gradient(120deg, #fff 30%, #f1f9ff 100%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    min-height: 490px;
    gap: 70px;
}

.service-hero-copy h1 {
    max-width: 590px;
    margin: 20px 0 18px;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.35;
}

.service-hero-copy > p {
    max-width: 590px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.service-hero-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
}

.service-hero-art::before {
    position: absolute;
    
    content: "";
    
    transform: rotate(-8deg);
}

.service-hero-image {
    position: relative;
    z-index: 2;   
    transform: rotate(-2deg);
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transform: rotate(2deg) scale(1.04);
}

.service-hero-art > span {
    position: absolute;
    z-index: 3;
    bottom: 52px;
    padding: 9px 18px;
    color: #08729b;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #c9e8f2;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(22, 89, 122, .12);
    font: 700 12px var(--heading);
    text-transform: uppercase;
}

.service-orbit {
    position: absolute;
    z-index: 1;
    border: 1px dashed rgba(0, 119, 218, .28);
    border-radius: 50%;
}

.orbit-one {
    width: 335px;
    height: 335px;
}

.orbit-two {
    width: 430px;
    height: 285px;
    transform: rotate(25deg);
}

.service-overview {
    border-bottom: 1px solid #edf1f6;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 65px;
}

.service-overview-visual {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    background: linear-gradient(145deg, #061829, #0b334d);
    border-radius: 20px;
}

.service-overview-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    opacity: .9;
}

.service-overview-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
}

.service-overview-copy > p {
    color: var(--muted);
    line-height: 1.75;
}

.service-check-list {
    display: grid;
    gap: 18px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.service-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.service-check-list i {
    margin-top: 2px;
    color: var(--blue);
    font-size: 22px;
}

.service-check-list strong,
.service-check-list span {
    display: block;
}

.service-check-list span {
    color: var(--muted);
    line-height: 1.55;
}

.service-check-list strong {
    margin-bottom: 3px;
    color: var(--ink);
}

.service-capabilities,
.service-methodology {
    background: #f8fbff;
}

.service-detail-page .section-heading {
    margin-top: 0;
    margin-bottom: 0;
}

.service-detail-page .section-heading h2 {
    margin-bottom: 14px;
}

.service-detail-page .service-advantage-heading {
    margin-top: 90px;
    margin-bottom: 0;
}

.service-card-grid,
.service-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card-grid,
.service-advantage-grid,
.service-industry-grid,
.service-method-grid {
    margin-top: 0;
    padding-top: 46px;
}

.service-feature-card {
    min-height: 180px;
    padding: 26px;
    background: #fff;
    border: 1px solid #e6edf6;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(28, 67, 105, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-feature-card:hover {
    border-color: #b9def8;
    box-shadow: 0 18px 35px rgba(28, 101, 160, .12);
    transform: translateY(-6px);
}

.service-card-clickable {
    cursor: pointer;
}

.service-card-clickable:focus-visible {
    outline: 3px solid rgba(6, 96, 203, .3);
    outline-offset: 4px;
}

.contact-page {
    background: #f8fbff;
}

.contact-hero {
    overflow: hidden;
    background: radial-gradient(circle at 85% 45%, rgba(15, 196, 220, .18), transparent 26%), linear-gradient(125deg, #fff 30%, #eef8ff);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    min-height: 390px;
    gap: 60px;
}

.contact-hero h1 {
    max-width: 730px;
    margin: 20px 0 18px;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.06;
}

.contact-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.contact-hero-icon {
    display: grid;
    place-items: center;
    width: 245px;
    height: 245px;
    margin: auto;
    color: #fff;
    background: linear-gradient(145deg, #0867dd, #13c4de);
    border: 18px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    box-shadow: 0 30px 65px rgba(8, 103, 221, .24);
    font-size: 100px;
}

.contact-main-section {
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 70px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 30px;
}

.contact-info-panel,
.contact-form-card {
    padding: 38px;
    background: #fff;
    border: 1px solid #e1eaf3;
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(25, 63, 100, .08);
}

.contact-info-panel {
    color: #fff;
    background: radial-gradient(circle at 85% 10%, rgba(19, 196, 222, .24), transparent 28%), linear-gradient(150deg, #081a34, #0c3f68);
    border: 0;
}

.contact-info-panel h2 {
    margin: 18px 0 14px;
    font-size: 32px;
}

.contact-info-panel > p {
    color: #b8c9dc;
    font-size: 13px;
    line-height: 1.75;
}

.contact-info-list {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.contact-info-list > * {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    color: #eaf4ff;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    font-size: 12px;
}

.contact-info-list i {
    color: #2dd8e9;
    font-size: 22px;
}

.contact-info-list small,
.contact-info-list span {
    display: block;
}

.contact-info-list small {
    margin-bottom: 3px;
    color: #7fa6c5;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.contact-trust-note {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 22px;
    color: #9eb6ce;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
}

.contact-trust-note i {
    color: #2dd8e9;
    font-size: 25px;
}

.contact-trust-note strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
}

.contact-form-heading span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-heading h2 {
    margin: 8px 0 6px;
    font-size: 31px;
}

.contact-form-heading p {
    color: var(--muted);
    font-size: 11px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.contact-form-grid label {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-form-grid label > span {
    margin-bottom: 8px;
    color: #29384c;
    font-size: 12px;
    font-weight: 700;
}

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    padding: 13px 14px;
    color: #26364a;
    background: #fbfdff;
    border: 1px solid #d7e1eb;
    border-radius: 8px;
    outline: 0;
    font: 13px/1.5 var(--body);
    resize: vertical;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 103, 221, .09);
}

.contact-form-grid .has-error input,
.contact-form-grid .has-error textarea {
    border-color: #e25b66;
    background: #fffafa;
}

.contact-form-grid small {
    display: none;
    color: #c43d49;
    font-size: 11px;
    font-weight: 700;
}

.contact-form-grid .has-error small {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
}

.contact-form-grid .has-error small::before {
    content: "!";
    display: grid;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    place-items: center;
    color: #fff;
    background: #e25b66;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.contact-form-full {
    grid-column: 1 / -1;
}

.contact-submit {
    min-width: 180px;
    margin-top: 22px;
}

.contact-success-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(4, 18, 38, .68);
    backdrop-filter: blur(6px);
}

.contact-success-modal.open {
    display: grid;
}

.course-enquiry-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(4, 18, 38, .68);
    backdrop-filter: blur(6px);
}

.course-enquiry-modal.open {
    display: grid;
}

.course-enquiry-dialog {
    position: relative;
    width: min(640px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 34px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    animation: contactModalIn .25s ease;
}

.course-enquiry-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    color: #6d7a8c;
    background: transparent;
    font-size: 22px;
}

.course-enquiry-dialog .contact-form-heading {
    margin-bottom: 22px;
}

.course-enquiry-dialog .contact-form-heading p {
    margin-bottom: 0;
}

.contact-success-dialog {
    position: relative;
    width: min(440px, 100%);
    padding: 42px;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    animation: contactModalIn .25s ease;
}

.contact-success-dialog > button:first-child {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    color: #6d7a8c;
    background: transparent;
    font-size: 22px;
}

.contact-success-dialog > span {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    color: #fff;
    background: linear-gradient(135deg, #11b981, #15c6dd);
    border-radius: 50%;
    font-size: 38px;
}

.contact-success-dialog h2 {
    margin-bottom: 10px;
    font-size: 30px;
}

.contact-success-dialog p {
    margin-bottom: 25px;
    color: var(--muted);
    line-height: 1.7;
}

@keyframes contactModalIn {
    from { opacity: 0; transform: translateY(18px) scale(.97); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 850px) {
    .contact-hero-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero-grid {
        padding: 65px 0;
        text-align: center;
    }

    .contact-hero p {
        margin-inline: auto;
    }

    .contact-hero-icon {
        width: 180px;
        height: 180px;
        font-size: 75px;
    }
}

@media (max-width: 560px) {
    .contact-main-section {
        padding: 45px 0;
    }

    .contact-info-panel,
    .contact-form-card {
        padding: 26px 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-full {
        grid-column: auto;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-success-dialog {
        padding: 36px 24px;
    }
}

.service-feature-card > i {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 18px;
    color: var(--blue);
    background: #eaf4ff;
    border-radius: 10px;
    font-size: 23px;
}

.service-feature-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.service-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.service-card-grid .service-feature-card:last-child {
    grid-column: 1 / -1;
    min-height: 145px;
}

.service-matters {
    background: linear-gradient(180deg, #fff, #f6faff);
}

.service-risk-layout {
    display: grid;
    grid-template-columns: 1fr 270px 1fr;
    align-items: center;
    gap: 35px;
    margin-top: 48px;
}

.service-risk-column {
    display: grid;
    gap: 22px;
}

.service-risk-column article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #edf0f4;
    border-left: 3px solid #f05b66;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(44, 70, 96, .06);
}

.service-risk-column > article > i {
    color: #e64f5b;
    font-size: 22px;
}

.service-risk-column h3 {
    margin-bottom: 6px;
    font-size: 15px;
}

.service-risk-column p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.service-risk-shield {
    display: grid;
    place-items: center;
    width: 270px;
    height: 270px;
    background: radial-gradient(circle at 50% 42%, #0d6687, #051d31 65%);
    
    border-radius: 50%;
    box-shadow: 0 25px 50px rgba(4, 38, 65, .25);
    overflow: hidden;
}

.service-risk-shield img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.05);
}

.service-advantage-heading {
    margin-top: 90px;
}

.service-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-industry-grid article {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    gap: 12px;
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(28, 67, 105, .05);
    font: 700 14px var(--heading);
    transition: transform .22s ease, border-color .22s ease;
}

.service-industry-grid article:hover {
    border-color: #afd9f6;
    transform: translateY(-4px);
}

.service-industry-grid i {
    color: var(--blue);
    font-size: 24px;
}

.service-method-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.service-method-grid::before {
    position: absolute;
    top: 75px;
    right: 8%;
    left: 8%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.service-method-grid article {
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-method-grid article > span {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 17px;
    color: var(--blue);
    background: #fff;
    border: 2px solid var(--blue);
    border-radius: 50%;
    font: 800 13px var(--heading);
}

.service-method-grid h3 {
    margin-bottom: 7px;
    font-size: 16px;
}

.service-method-grid p {
    margin: auto;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.service-final-section {
    padding-top: 65px;
}

.service-final-section .final-cta p {
    margin: -7px auto 24px;
    color: #b7c8df;
}

@media (max-width: 991px) {
    .service-hero-grid,
    .service-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-grid {
        gap: 10px;
        padding-top: 70px;
        text-align: center;
    }

    .service-hero-copy > p {
        margin-inline: auto;
    }

    .service-hero-art {
        min-height: 360px;
    }

    .service-overview-grid {
        gap: 38px;
    }

    .service-card-grid,
    .service-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-risk-layout {
        grid-template-columns: 1fr;
    }

    .service-risk-shield {
        grid-row: 1;
        margin: auto;
    }

    .service-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-method-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .service-method-grid::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .service-hero-grid {
        min-height: auto;
        padding-top: 55px;
    }

    .service-hero-copy h1 {
        font-size: 28px;
    }

    .service-hero-art {
        min-height: 310px;
    }

    .service-hero-art::before {
        width: 270px;
        height: 205px;
    }

    .orbit-one {
        width: 260px;
        height: 260px;
    }

    .orbit-two {
        width: 320px;
        height: 220px;
    }

    .service-hero-image {
        width: 270px;
        height: 220px;
    }

    .service-overview-visual,
    .service-overview-visual img {
        min-height: 310px;
        height: 310px;
    }

    .service-card-grid,
    .service-advantage-grid,
    .service-industry-grid,
    .service-method-grid {
        grid-template-columns: 1fr;
    }

    .service-card-grid .service-feature-card:last-child {
        grid-column: auto;
    }

    .service-risk-shield {
        width: 220px;
        height: 220px;
        font-size: 90px;
    }

    .service-industry-grid article {
        min-height: 82px;
    }
}

.hero {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 53.36vw, 760px);
    overflow: hidden;
    background-color: #edf5fc;
    background-image: var(--hero-image);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 30px;
    /* min-height: clamp(520px, 53.36vw, 760px); */
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.soft-label {
    display: inline-block;
    padding: 6px 13px;
    color: #536171;
    background: #f2f4f6;
    border: 1px solid #d8e1e8;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.soft-label.teal {
    color: #087c8c !important;
    background: #e8f7f8;
    border-color: #bfe5e9; 
    margin-bottom: 20px;
}

.soft-label.dark {
    color: #57dcec;
    background: #173966;
    border-color: #2c527c;
   
}

.hero h1 {
    margin: 30px 0 20px;
    color: #050505;
    font: 600 clamp(35px, 4.3vw, 66px)/1.15 var(--heading);
    letter-spacing: -2.5px;
}

.hero-copy > p {
    max-width: 650px;
    margin-bottom: 45px;
    color: #4f5966;
    font-size: 17px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 32px;
}

.hero-art {
    min-height: 500px;
}

.digital-globe,
.hero-shield,
.hero-books,
.tech-dot {
    display: none;
}

.section {
    padding: 30px 0;
}
.section-heading {
   margin-top: 25px;
}
.section-heading h2 {
    margin-bottom: 18px;
    font: 600 34px/1.2 var(--heading);
    letter-spacing: -1.2px;
}

.section-heading h2 span {
    color: #3d7180;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.centered {
    text-align: center;
}

.centered .btn {
    margin-top: 18px;
}

.services {
    overflow: hidden;
}

.service-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 55px;
}

.service-grid::after {
    position: absolute;
    z-index: 1;
    content: "";
    width: 68%;
    height: 100%;
    right: 0;
    bottom: -12%;
    pointer-events: none;
    background-image:
        url("../images/frontend/services/services-glow.png"),
        radial-gradient(circle, rgba(15, 196, 220, .18), rgba(8, 103, 221, .05) 45%, transparent 72%);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: blur(.2px);
}

.service-card {
    position: relative;
    z-index: 1;
    min-height: 248px;
    padding: 34px 34px 20px;
    overflow: hidden;
    border: 1px solid rgba(219, 229, 237, .45);
    border-radius: 18px;
    background: linear-gradient(135deg, #fbfdff, #eef5fb);
    box-shadow: 0 9px 25px rgba(25, 66, 95, .07);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
}

.service-card::before {
    position: absolute;
    content: "";
    width: 170px;
    height: 170px;
    right: -80px;
    bottom: -95px;
    background: radial-gradient(circle, rgba(15, 196, 220, .2), transparent 68%);
    transition: transform .45s ease, opacity .45s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(15, 196, 220, .38);
    box-shadow: 0 22px 48px rgba(27, 79, 114, .15);
}

.service-card:hover::before {
    opacity: .9;
    transform: scale(1.35);
}

.service-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    color: #05888e;
    background: linear-gradient(145deg, #eaf0ff, #dfeaff);
    border: 1px solid rgba(8, 103, 221, .05);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(8, 103, 221, .08);
    transition: transform .35s ease, color .35s ease, background .35s ease;
}

.service-icon i {
    font-size: 31px;
}

.service-card:hover .service-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    transform: translateY(-3px) rotate(-3deg) scale(1.06);
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    font: 700 19px var(--heading);
}

.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.service-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link i {
    transition: transform .25s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

.btn i {
    margin: 0;
    font-size: 15px;
}

.header-cta i {
    font-size: 17px;
}

.tutorials {
    background: #f5fafc;
    border-top: 20px solid #edf6f7;
}

.tutorials-page {
    min-height: 80vh;
    padding-top: 30px;
}

.tutorials-page .section-heading h1 {
    margin: 12px 0;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.tutorial-library {
    row-gap: 28px;
}

.video-card {
    color: inherit;
    text-decoration: none;
}

.tutorial-detail-page {
    padding: 55px 0 75px;
    background: #fffafa;
}

.tutorial-detail-header h1 {
    max-width: 1100px;
    margin: 18px 0 36px;
    color: var(--navy);
    font: 700 clamp(38px, 5.5vw, 64px)/1.12 var(--heading);
    letter-spacing: -.025em;
}

.tutorial-detail-video {
    height: 560px;
    margin-top: 0;
    border-radius: 10px;
    box-shadow: 0 16px 45px rgba(22, 49, 76, .1);
}

.tutorial-detail-video .featured-video-overlay {
    right: 45px;
    left: 45px;
}

.tutorial-detail-video .featured-video-overlay p {
    margin-top: 315px;
    font-size: 22px;
}

.tutorial-duration {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(5, 21, 38, .72);
    border-radius: 15px;
    font-size: 11px;
}

.tutorial-detail-video.is-playing .tutorial-duration {
    opacity: 0;
}

.tutorial-detail-copy {
    padding: 75px 20px 55px;
}

.tutorial-detail-copy h2 {
    margin: 0 0 25px;
    color: var(--navy);
    font: 700 clamp(28px, 4vw, 38px)/1.2 var(--heading);
}

.tutorial-detail-copy p {
    margin: 0 0 25px;
    color: #596578;
    font-size: 16px;
    line-height: 1.85;
}

.related-tutorials {
    margin-bottom: 65px;
}

.tutorial-detail-page .final-cta {
    padding-top: 55px;
    padding-bottom: 55px;
}

.featured-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 455px;
    margin-top: 35px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(110deg, rgba(3, 27, 52, .78), rgba(4, 72, 120, .22)), radial-gradient(circle at 75% 40%, #37b6d4, #102945 55%);
    border-radius: 8px;
}

.featured-video.is-embed {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    max-height: 720px;
}

.tutorial-detail-video.is-embed {
    min-height: 380px;
}

.featured-video::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(3, 27, 52, .82), rgba(4, 72, 120, .18));
    transition: opacity .3s ease;
}

.featured-video video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #07182f;
}

.featured-video.is-playing::after,
.featured-video.is-embed.is-playing::after {
    opacity: 0;
}

.featured-video-overlay {
    position: absolute;
    z-index: 2;
    left: 60px;
    bottom: 35px;
    transition: opacity .3s ease, transform .3s ease;
}

.featured-video.is-playing .featured-video-overlay {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.featured-video h3 {
    margin: 10px 0;
    font: 800 44px/1 var(--heading);
}

.featured-video b {
    padding: 4px 12px;
    background: #0984a6;
    border-radius: 20px;
    font-size: 11px;
}

.featured-video p {
    margin: 70px 0 0;
    font-size: 18px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    color: #0787aa;
    background: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 5px 20px #0a3158;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity .25s ease, transform .25s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.featured-video.is-playing .video-play-button {
    top: auto;
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    opacity: .7;
    transform: none;
}

.featured-video.is-embed .video-embed-poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #07182f var(--video-poster) center/cover no-repeat;
}

.featured-video.is-embed .video-embed-frame {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.featured-video.is-embed .video-embed-frame[hidden] {
    display: none !important;
}

.featured-video.is-embed .video-embed-frame:not([hidden]) {
    display: block;
}

.featured-video.is-embed .video-embed-frame iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    border: 0;
}

.featured-video.is-embed.is-playing .video-embed-poster {
    opacity: 0;
    pointer-events: none;
}

.featured-video.is-embed.is-playing .video-play-button {
    opacity: 0;
    pointer-events: none;
}

.featured-video.is-playing:hover .video-play-button {
    opacity: 1;
    transform: scale(1.08);
}

.video-grid,
.course-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.video-card,
.course-card,
.mini-insight {
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
   
    box-shadow: 0 4px 12px rgba(0, 0, 0, .07);
}

.video-card {
    width: 100%;
    padding: 0;
    color: var(--ink);
    text-align: left;
    border: 0;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    display: block;
    height: 175px;
    overflow: hidden;
    background-image: linear-gradient(rgba(4, 30, 56, .12), rgba(4, 30, 56, .45)), var(--thumbnail);
    background-position: center;
    background-size: cover;
}

.video-thumbnail::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(8, 103, 221, .18));
    transition: background .3s ease;
}

.video-card:hover .video-thumbnail::after {
    background: rgba(8, 103, 221, .12);
}

.video-card-play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--blue);
    background: rgba(255, 255, 255, .94);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(4, 30, 56, .22);
    transform: translate(-50%, -50%);
    transition: transform .3s ease, color .3s ease, background .3s ease;
}

.video-card:hover .video-card-play {
    color: #fff;
    background: var(--blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail small {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    padding: 4px 7px;
    color: #fff;
    background: rgba(7, 24, 47, .82);
    border-radius: 9px;
    font-size: 8px;
}

.video-card-title {
    display: block;
    padding: 13px 15px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
}

.video-card-player {
    position: relative;
}

.video-card-player-media {
    background-image: linear-gradient(rgba(4, 30, 56, .12), rgba(4, 30, 56, .45)), var(--thumbnail);
}

.video-card-player-media video,
.video-card-player-media .video-embed-poster,
.video-card-player-media .video-embed-frame,
.video-card-player-media .video-embed-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-card-player-media video,
.video-card-player-media .video-embed-frame iframe {
    object-fit: cover;
    border: 0;
}

.video-card-player-media .video-embed-poster {
    background-image: linear-gradient(rgba(4, 30, 56, .12), rgba(4, 30, 56, .45)), var(--video-poster);
    background-position: center;
    background-size: cover;
}

.video-card-player-media .video-embed-frame[hidden] {
    display: none;
}

.video-card-player.is-playing .video-card-play {
    opacity: 1;
    pointer-events: auto;
    color: #fff;
    background: var(--blue);
}

.video-card-player.is-playing .video-thumbnail::after {
    background: transparent;
}

.video-card-player .video-status-message {
    left: 12px;
    right: 12px;
    bottom: 48px;
    width: auto;
}

.visual-card {
    position: relative;
    display: grid;
    place-items: center;
    height: 175px;
    color: #5be3e9;
    background: radial-gradient(circle, #168caa, #071f3c 70%);
    font: 800 24px var(--heading);
    letter-spacing: 3px;
}

.visual-api {
    background: radial-gradient(circle, #087989, #07182f 70%);
}

.visual-ai {
    background: radial-gradient(circle, #287cc6, #0b1830 70%);
}

.visual-app {
    background: radial-gradient(circle, #52a8b9, #122a3a 70%);
}

.visual-card small {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 7px;
    color: #fff;
    background: #182332;
    border-radius: 9px;
    font: 8px var(--body);
}

.video-card p {
    margin: 0;
    padding: 12px 15px;
    font-size: 11px;
}

.split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.split > a {
    color: var(--blue);
    font-size: 11px;
}

.course-card {
    border: 1px solid var(--line);
}

.course-image {
    position: relative;
    height: 175px;
    overflow: hidden;
    background-color: #073858;
    background-image: linear-gradient(rgba(4, 30, 56, .08), rgba(4, 30, 56, .3)), var(--course-image), linear-gradient(135deg, #073858, #138aa0);
    background-position: center;
    background-size: cover;
    transition: transform .45s ease;
}

.course-image::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(135deg, transparent 45%, rgba(15, 196, 220, .12));
    transition: background .3s ease;
}

.course-image-crypto {
    background-color: #071a29;
}

.course-image-pentest {
    background-color: #06253a;
}

.course-card:hover .course-image {
    transform: scale(1.035);
}

.course-card:hover .course-image::after {
    background: rgba(8, 103, 221, .08);
}

.course-image > span {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    color: #08757d;
    background: #e8f8f8;
    border-radius: 3px;
    font-size: 8px;
}

.course-body {
    padding: 20px;
}

.course-body h3 {
    min-height: 23px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.15;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.course-body p {
    display: -webkit-box;
    min-height: 44px;
    margin-bottom: 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rating {
    padding-bottom: 15px;
    color: #075fd1;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
}

.course-body footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    color: var(--muted);
    font-size: 10px;
}

.course-body footer .btn {
    min-height: 32px;
    padding: 8px 14px;
}

.courses-page {
    padding-top: 10px;
    background: linear-gradient(#fffafb 0 20px, #fff 20px 72%, #fffafb 72%);
}

.courses-page-heading {
    margin-bottom: 42px;
}

.courses-page-heading h1 {
    margin: 0 0 12px;
    color: var(--navy);
    font: 800 clamp(32px, 4vw, 46px)/1.15 var(--heading);
}

.courses-page-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.courses-library {
    row-gap: 55px;
}

.courses-library .course-card {
    display: flex;
    min-height: 420px;
    flex-direction: column;
}

.courses-library .course-image {
    height: 225px;
}

.courses-library .course-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px 17pxx;
}

.courses-library .course-body h3 {
    min-height: 58px;
    font-size: 23px;
}

.courses-library .course-body p {
    min-height: 48px;
}

.courses-library .course-body footer {
    margin-top: auto;
}

.course-image span.level-advanced {
    color: #b32939;
    background: #ffe4e7;
}

.course-image span.level-intermediate {
    color: #087681;
    background: #e6fbfc;
}

.courses-page .final-cta {
    margin-top: 75px;
    padding-top: 55px;
    padding-bottom: 55px;
}

.insights {
    background: #f8fafc;
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 38px;
}

.insight-image {
    height: 390px;
    background: linear-gradient(rgba(5, 28, 48, .15), rgba(5, 28, 48, .45)), var(--insight-image) center/cover no-repeat;
    border-radius: 8px;
}

.main-insight > div:last-child {
    padding-top: 25px;
}

.main-insight small {
    margin-left: 12px;
    color: var(--muted);
    font-size: 10px;
}

.main-insight h3 {
    display: -webkit-box;
    /* min-height: 62px; */
    margin: 17px 0 8px;
    overflow: hidden;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    font-family: var(--heading);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.main-insight p {
    display: -webkit-box;
    min-height: 44px;
    margin-bottom: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.insight-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.mini-insight .visual-card {
    display: block;
    height: 195px;
}

.insight-card-image {
    background: linear-gradient(rgba(5, 28, 48, .05), rgba(5, 28, 48, .15)), var(--card-image) center/cover no-repeat;
}

.insights-page {
    min-height: 80vh;
    padding-top: 30px;
}

.insights-page .section-heading h1 {
    margin: 12px 0;
    color: var(--navy);
    font: 700 clamp(32px, 4vw, 48px)/1.15 var(--heading);
}

.insights-page .section-heading h1 span {
    color: #487080;
}

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

.blog-card-grid .mini-insight {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(20, 46, 74, .06);
}

.dynamic-insight-grid a,
.blog-card-grid a {
    color: inherit;
    text-decoration: none;
}

.blog-empty-state {
    margin: 50px 0;
    padding: 70px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5edf4;
    border-radius: 12px;
}

.frontend-pagination {
    margin-top: 32px;
}

.blog-detail {
    background: #f8fafc;
}

.blog-detail-container {
    max-width: 900px;
}

.blog-back-link {
    color: var(--blue);
    font-size: 13px;
}

.blog-detail-header {
    padding: 45px 0 30px;
    text-align: center;
}

.blog-detail-header h1 {
    margin: 18px 0;
    font: 800 clamp(36px, 5vw, 58px)/1.12 var(--heading);
}

.blog-detail-header p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.blog-detail-header small {
    color: #7d8998;
}

.blog-detail-image {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 14px;
}

.blog-detail-content {
    margin-top: 35px;
    padding: 38px;
    color: #435066;
    background: #fff;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.9;
}

.blog-article {
    background: #f7fafc;
}

.blog-top-navigation {
    padding-top: 22px;
    padding-bottom: 0;
}

.blog-top-navigation .blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 600;
}

.blog-article-hero {
    position: relative;
    min-height: 520px;
    padding: 70px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(4, 20, 43, .94), rgba(4, 31, 58, .74) 58%, rgba(4, 31, 58, .34)),
        var(--blog-hero) center/cover no-repeat;
}

.blog-article-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    content: "";
    background: linear-gradient(transparent, rgba(4, 20, 43, .4));
}

.blog-article-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-content {
    max-width: 850px;
    margin-top: 145px;
}

.blog-category-pill {
    display: inline-block;
    padding: 7px 12px;
    color: #51e6f1;
    background: rgba(30, 210, 228, .12);
    border: 1px solid rgba(81, 230, 241, .28);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.blog-hero-content h1 {
    margin: 22px 0;
    color: #fff;
    background: transparent;
    font: 800 clamp(36px, 4.6vw, 58px)/1.1 var(--heading);
    letter-spacing: -.02em;
}

.blog-hero-content > p {
    max-width: 760px;
    color: #d1dce8;
    font-size: 18px;
    line-height: 1.7;
}

.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
    color: #afc2d5;
    font-size: 12px;
}

.blog-hero-meta i {
    margin-right: 6px;
    color: #28d3e4;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 70px;
}

.blog-article-content {
    padding: 45px;
    background: #fff;
    border: 1px solid #e5edf4;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(24, 50, 78, .06);
}

.blog-lead {
    margin-bottom: 30px;
    padding: 22px 25px;
    color: #17395d;
    background: linear-gradient(90deg, #edf7ff, #f0fcfd);
    border-left: 4px solid var(--blue);
    border-radius: 7px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.blog-prose {
    color: #435166;
    font-size: 16px;
    line-height: 1.95;
}

.blog-prose h2,
.blog-prose h3 {
    margin: 32px 0 14px;
    color: #132b47;
    font-family: var(--heading);
}

.blog-prose h2 {
    font-size: 28px;
}

.blog-prose h3 {
    font-size: 22px;
}

.blog-prose p {
    margin: 0 0 20px;
}

.blog-prose ul,
.blog-prose ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.blog-prose a {
    color: var(--blue);
    text-decoration: underline;
}

.blog-share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e8edf3;
}

.blog-share-row > div {
    display: flex;
    gap: 9px;
}

.blog-share-row a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--blue);
    background: #eaf3ff;
    border-radius: 50%;
}

.blog-article-aside {
    position: sticky;
    top: 100px;
}

.blog-aside-card {
    padding: 28px;
    color: #fff;
    background: radial-gradient(circle at 100% 100%, #147a8e, #102856 65%);
    border-radius: 14px;
}

.blog-aside-card h3 {
    margin: 18px 0 12px;
    font: 700 24px/1.25 var(--heading);
}

.blog-aside-card p {
    margin-bottom: 22px;
    color: #c3d3e3;
    font-size: 13px;
    line-height: 1.7;
}

.blog-latest-card {
    padding: 25px;
    background: #fff;
    border: 1px solid #e3ebf3;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(23, 49, 77, .07);
}

.blog-latest-card > h3 {
    margin: 16px 0 20px;
    font: 700 21px/1.25 var(--heading);
}

.blog-latest-list {
    display: grid;
    gap: 17px;
}

.blog-latest-list a {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding-bottom: 17px;
    color: inherit;
    border-bottom: 1px solid #e9eef3;
    text-decoration: none;
}

.blog-latest-list a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-latest-list img {
    width: 88px;
    height: 70px;
    object-fit: cover;
    border-radius: 7px;
}

.blog-latest-list a > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.blog-latest-list small {
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
}

.blog-latest-list strong {
    display: -webkit-box;
    margin: 5px 0;
    overflow: hidden;
    font: 700 12px/1.35 var(--heading);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-latest-list em {
    color: #909baa;
    font-size: 9px;
    font-style: normal;
}

.related-blogs {
    background: #fff;
}

@media (max-width: 900px) {
    .blog-article-layout {
        grid-template-columns: 1fr;
    }

    .blog-article-aside {
        position: static;
    }
}

@media (max-width: 680px) {
    .tutorial-detail-page {
        padding-top: 35px;
    }

    .tutorial-detail-header h1 {
        margin-bottom: 25px;
        font-size: 36px;
    }

    .tutorial-detail-video {
        height: 330px;
    }

    .tutorial-detail-video .featured-video-overlay {
        right: 20px;
        left: 20px;
    }

    .tutorial-detail-video .featured-video-overlay p {
        margin-top: 150px;
        font-size: 15px;
    }

    .tutorial-detail-copy {
        padding: 48px 5px 35px;
    }

    .tutorial-detail-copy p {
        font-size: 14px;
    }

    .courses-page {
        padding-top: 55px;
    }

    .courses-page-heading p br {
        display: none;
    }

    .courses-library {
        row-gap: 25px;
    }

    .courses-library .course-card {
        min-height: 0;
    }

    .courses-library .course-image {
        height: 210px;
    }

    .blog-article-hero {
        min-height: 450px;
        padding: 45px 0;
    }

    .blog-hero-content {
        margin-top: 100px;
    }

    .blog-hero-content h1 {
        font-size: 40px;
    }

    .blog-hero-content > p {
        font-size: 15px;
    }

    .blog-article-content {
        padding: 25px 20px;
    }
}

.pill {
    display: inline-block;
    padding: 5px 8px;
    color: #0670d5;
    background: #eaf7ff;
    border-radius: 3px;
    font-size: 8px;
    letter-spacing: 0;
}

.mini-insight .pill {
    position: absolute;
    top: 10px;
    left: 10px;
}

.mini-insight h3 {
    display: -webkit-box;
    min-height: 81px;
    margin: 0;
    padding: 18px;
    overflow: hidden;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
    font-family: var(--heading);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.testimonials {
    background: #fffafb;
}

.testimonial-slider {
    position: relative;
    margin-top: 35px;
    padding: 0 52px;
}

.testimonial-slider .testimonial-grid {
    display: flex;
    gap: 22px;
    margin-top: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-slider .testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    padding: 23px;
    background: #f8fbff;
    border: 1px solid #b8d5ff;
    border-radius: 17px;
}

.testimonial > b {
    color: #f2a600;
}

.testimonial p {
    font-size: 12px;
}

.testimonial > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.testimonial > div > span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: #0d7485;
    border-radius: 50%;
}

.testimonial > div > img,
.testimonial-avatar {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial small {
    font-size: 9px;
}

.testimonial small strong {
    font-size: 10px;
}

.testimonial-slider-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #c9dcf8;
    color: #0b66d8;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(9, 55, 109, .12);
    transform: translateY(-50%);
}

.testimonial-slider-button:hover {
    color: #fff;
    background: #0b66d8;
}

.testimonial-slider-button[data-testimonial-prev] {
    left: 0;
}

.testimonial-slider-button[data-testimonial-next] {
    right: 0;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
    padding: 38px;
    color: #fff;
    text-align: center;
    background: radial-gradient(circle at 100% 100%, #147a8e, #102856 60%);
    border-radius: 18px;
}

.final-cta > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.final-cta h2 {
    margin: 25px 0;
    font: 700 36px/1.15 var(--heading);
}

.final-cta h2 span {
    color: #16d6e6;
}

.btn-gradient {
    color: #fff;
    background: linear-gradient(90deg, #177aff, #08c6df);
}

.btn-ghost {
    margin-left: 0;
    color: #000;
    border-color: #496080;
}

.site-footer {
    padding: 55px 0 20px;
    color: #fff;
    background: var(--navy);
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 2.3rem 0 1.5rem;
    background: radial-gradient(ellipse at 90% 55%, rgba(24, 213, 234, .055), transparent 34%), #fff;
}
.about-hero-copy{

    margin-top:55px;
}
.about-hero-grid,
.about-origin-grid,
.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* align-items: center; */
    gap: 30px;
}
.industry-grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    
    gap: 30px;
}
.about-hero-copy h1 {
    margin: 20px 0;
    color: var(--navy);
    font-weight: 800;
    font-size: 35px;
    line-height: 1.4;
    font-family: var(--heading);
}

.about-hero-copy > p,
.origin-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.about-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.about-text-link {
    color: var(--blue);
    background: #fff;
    box-shadow: 0 8px 25px rgba(28, 77, 125, .08);
}

.about-hero-visual {
    position: relative;
    isolation: isolate;
    padding: 18px;
    background: transparent;
    border-radius: 14px;
}

/* .about-hero-visual::before {
    position: absolute;
    z-index: -1;
    top: 59%;
    left: 50%;
    width: min(680px, 120%);
    height: 540px;
    content: "";
    background: linear-gradient(145deg, rgba(8, 124, 255, .08), rgba(23, 217, 231, .16));
    border: 2px solid rgba(8, 124, 255, .13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
} */

.about-hero-visual::after {
    position: absolute;
    z-index: -2;
    top: 12%;
    right: -18%;
    bottom: -28%;
    left: -12%;
    content: "";
    background: radial-gradient(ellipse, rgba(27, 201, 229, .07), transparent 70%);
}

.about-hero-visual img,
.origin-image img,
.industry-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-hero-visual img {
    min-height: 440px;
    filter: saturate(.45) brightness(.35);
}

.simulation-status {
    position: absolute;
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .94);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 8px 24px rgba(4, 34, 65, .14);
}
.module-status{
    position: absolute;
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 10px 14px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background: rgba(255, 255, 255, .94);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0 8px 24px rgba(4, 34, 65, .14);
}
.simulation-status {
    top: 35px;
    
}

.module-status {
    right: 17px;
    bottom: 42px;
}

.simulation-status i,
.module-status i {
    grid-row: span 2;
    align-self: center;
    margin-right: 9px;
    color: var(--blue);
    font-size: 21px;
}

.simulation-status small,
.module-status small {
    color: var(--muted);
    font-size: 8px;
    text-transform: uppercase;
}

.simulation-status b,
.module-status b {
    font-size: 11px;
}

.about-origin {
    background: #fff;
}

.origin-image {
    position: relative;
    isolation: isolate;
    height: 500px;
    padding: 14px;
    background: transparent;
    border-radius: 12px;
}

.origin-image::before {
    position: absolute;
    z-index: -1;
    inset: 4px 5px;
    content: "";
    background: linear-gradient(145deg, #dff5ff, #edfaff);
    
    border-radius: 20px;
    transform: rotate(-2deg);
}

.origin-image img {
    filter: saturate(.8);
    box-shadow: 0 18px 45px rgba(17, 76, 108, .12);
}
.origin-copy{
    margin-top: 67px;
}
.origin-copy h2,
.industry-copy h2 {
    margin: 0;
    font: 700 34px/1.2 var(--heading);
}

.title-line {
    display: block;
    width: 68px;
    height: 3px;
    margin: 18px 0 24px;
    background: var(--blue);
}

.founder {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.founder > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #14798a;
    border-radius: 50%;
}

.founder small {
    line-height: 1.5;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 65px;
}

.about-info-card {
    padding: 35px;
    background: #fff;
    border: 1px solid #edf2f8;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(20, 46, 74, .06);
}

.about-info-card > span,
.resource-card > span {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    color: var(--blue);
    background: #eaf2ff;
    border-radius: 8px;
    font-size: 21px;
}

.about-info-card h3 {
    margin: 22px 0 10px;
}

.about-info-card p,
.resource-card p,
.benefit-card p,
.industry-visual p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.resources-section {
    background: #fcfdff;
    padding:0px 0px 60px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.resource-card {
    padding: 25px;
    background: #fff;
    border: 0.5px solid #edf2f8;
    border-radius: 8px;
}

.resource-card h3 {
    margin: 18px 0 9px;
    font-size: 15px;
}

.expertise-path {
    padding: 50px 0;
    background: #f1f5fa;
}

.path-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 45px;
}

.path-track::before {
    position: absolute;
    top: 22px;
    right: 7%;
    left: 7%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--blue) 30%, #d8e1ed 30%);
}

.path-step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 13px;
    text-align: center;
}

.path-step span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #8290a7;
    background: #fff;
    border: 1px solid #d9e3ee;
    border-radius: 50%;
}

.path-step:first-child span,
.path-step:nth-child(2) span {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.path-step small {
    color: #69768a;
    font-weight: 600;
}

.industry-visual {
    position: relative;
    height: 510px;
    overflow: hidden;
    border-radius: 10px;
}

.industry-visual img {
    filter: saturate(.5) brightness(1.25);
}

.industry-visual > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 80px 28px 28px;
    background: linear-gradient(transparent, rgba(242, 248, 252, .98));
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}

.benefit-card {
    display: flex;
    gap: 12px;
    padding: 18px;
    border: 1px solid #e6edf5;
    border-radius: 8px;
}

.benefit-card > i {
    color: var(--blue);
    font-size: 20px;
}

.benefit-card h3 {
    margin: 0 0 6px;
    font-size: 13px;
}

.network-section {
    padding: 0px 0px 40px;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0 55px;
}

.stats-grid article {
    display: grid;
    gap: 8px;
    padding: 26px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e2e266;
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(23, 65, 105, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.stats-grid article:hover {
    border-color: rgba(11, 95, 255, .24);
    box-shadow: 0 18px 42px rgba(23, 65, 105, .12);
    transform: translateY(-6px);
}

.stats-grid strong {
    color: #0B5FFF;
    font: 800 35px/1 var(--heading);
}

.stats-grid small {
    color: #424656;
}

.network-map {
    position: relative;
    isolation: isolate;
    width: min(850px, 100%);
    height: 330px;
    margin: 0 auto 60px;
    overflow: hidden;
    background: #70767b;
    border-radius: 8px;
    box-shadow: 0 15px 38px rgba(24, 48, 72, .12);
}

.network-map::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(92, 98, 103, .36), rgba(92, 98, 103, .36)),
        url("../img/Global_Network.png") center/cover no-repeat;
    filter: grayscale(1);
}

.network-map > span {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 10px 15px;
    color: #334155;
    background: rgba(255, 255, 255, .93);
    border-radius: 20px;
    font-size: 11px;
    transform: translate(-50%, -50%);
}

.network-map .live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 95, 255, .38);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(11, 95, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 95, 255, 0);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr .8fr 1fr;
    gap: 100px;
    padding-bottom: 50px;
}

.brand-light {
    color: #fff;
}

.footer-about p {
    max-width: 340px;
    margin-top: 25px;
    color: #8290a7;
    font-size: 16px;
    line-height: 1.8;
}

.footer-grid h3 {
    margin-bottom: 22px;
    font-size: 20px;
    letter-spacing: 1px;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-grid a,
.footer-grid span {
    color: #8290a7;
    font-size: 16px;
    line-height: 1.6;
}

.footer-grid a i,
.footer-grid span i {
    width: 17px;
    color: var(--cyan);
    font-size: 14px;
}

.footer-contact {
    gap: 18px !important;
}

.footer-contact .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact .contact-icon {
    display: grid;
    flex: 0 0 38px;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--cyan);
    background: rgba(32, 207, 235, .09);
    border: 1px solid rgba(32, 207, 235, .16);
    border-radius: 10px;
}

.footer-contact .contact-icon i {
    width: auto;
    color: inherit;
    font-size: 22px;
}

.footer-contact .contact-text {
    padding-top: 5px;
    color: #8290a7;
    line-height: 1.55;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #9aacc1;
    border: 1px solid #263955;
    border-radius: 50%;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.social-links a i {
    width: auto;
    color: inherit;
    font-size: 22px;
}

.social-links a:hover {
    color: #fff;
    background: var(--blue);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: #66758d;
    border-top: 1px solid #263048;
    font-size: 15px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    color: #66758d;
}

.reveal {
    opacity: 0;
    transform: translateY(26px) scale(.985);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.service-grid .service-card:nth-child(2),
.video-grid > :nth-child(2),
.course-grid > :nth-child(2),
.testimonial-grid > :nth-child(2) {
    transition-delay: .08s;
}

.service-grid .service-card:nth-child(3),
.video-grid > :nth-child(3),
.course-grid > :nth-child(3),
.testimonial-grid > :nth-child(3) {
    transition-delay: .16s;
}

.service-grid .service-card:nth-child(4) {
    transition-delay: .08s;
}

.service-grid .service-card:nth-child(5) {
    transition-delay: .16s;
}

.service-grid .service-card:nth-child(6) {
    transition-delay: .24s;
}

.course-card,
.video-card,
.mini-insight,
.testimonial {
    transition: transform .3s ease, box-shadow .3s ease;
}

.course-card:hover,
.video-card:hover,
.mini-insight:hover,
.testimonial:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(24, 64, 92, .13);
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 17px;
    }

    .site-nav a {
        font-size: 11px;
    }
}

@media (max-width: 900px) {
    .about-hero-grid,
    .about-origin-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-visual,
    .origin-image,
    .industry-visual {
        width: min(620px, 100%);
        margin-inline: auto;
    }

    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .path-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 10px;
    }

    .path-track::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .site-header {
        height: 70px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 18px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a,
    .site-nav a.active {
        padding: 11px 10px;
        background: transparent;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 11px 10px;
        font-size: 12px;
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        width: auto;
        margin: 0 6px 7px;
        padding: 5px;
        visibility: visible;
        opacity: 1;
        background: #f7faff;
        border: 0;
        border-radius: 9px;
        box-shadow: none;
        transform: none;
        transition: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
        transform: none;
    }

    .site-nav .nav-dropdown-menu a {
        padding: 8px 9px;
    }

    .hero {
        min-height: 680px;
        background-position: center bottom;
        background-size: auto 100%;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-content: start;
        min-height: 680px;
    }

    .hero-copy {
        max-width: 570px;
        padding-top: 65px;
    }

    .hero-art {
        min-height: 230px;
    }

    .service-grid,
    .course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid::after {
        width: 80%;
    }

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

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 680px) {
    .about-hero {
        padding: 35px 0 65px;
    }

    .about-hero-copy h1 {
        font-size: 38px;
    }

    .about-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-hero-visual img {
        min-height: 300px;
    }

    .about-hero-visual::before {
        top: 60%;
        width: 116%;
        height: 360px;
    }

    .about-hero-visual::after {
        inset: -15px;
    }

    .simulation-status,
    .module-status {
        transform: scale(.85);
    }

    .simulation-status {
        left: -8px;
        transform-origin: left top;
    }

    .module-status {
        right: -8px;
        transform-origin: right bottom;
    }

    .origin-image,
    .industry-visual {
        height: 370px;
    }

    .mission-grid,
    .resource-grid,
    .benefit-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-info-card {
        padding: 26px;
    }

    .path-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-map {
        height: 240px;
    }

    .blog-card-grid {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 58px 0;
    }

    .hero {
        min-height: 650px;
        background-position: 62% bottom;
        background-size: auto 100%;
    }

    .hero-inner {
        min-height: 650px;
    }

    .hero-copy {
        padding-top: 45px;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -1.8px;
    }

    .hero-copy > p {
        max-width: 90%;
        font-size: 13px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .service-grid,
    .video-grid,
    .course-grid,
    .testimonial-grid,
    .insight-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        padding: 0 44px;
    }

    .testimonial-slider .testimonial {
        flex-basis: 100%;
    }

    .service-card {
        min-height: 230px;
    }

    .service-grid::after {
        width: 110%;
        right: -35%;
    }

    .service-link {
        opacity: 1;
        transform: none;
    }

    .featured-video {
        height: 360px;
    }

    .featured-video.is-embed {
        height: auto;
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }

    .featured-video-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .featured-video h3 {
        font-size: 30px;
    }

    .featured-video p {
        margin-top: 45px;
        font-size: 13px;
    }

    .split {
        display: block;
    }

    .split > a {
        display: inline-block;
        margin-top: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }

    .final-cta {
        padding: 30px 15px;
    }

    .final-cta h2 {
        font-size: 29px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.legal-hero {
    padding: 90px 0 75px;
    color: #fff;
    background: radial-gradient(circle at 85% 30%, rgba(15, 196, 220, .3), transparent 30%), linear-gradient(135deg, #09152b, #123d67);
}

.legal-hero h1 {
    margin: 20px 0 14px;
    font: 800 clamp(38px, 5vw, 58px)/1.1 var(--heading);
}

.legal-hero p {
    max-width: 720px;
    color: #c2d2df;
    font-size: 15px;
    line-height: 1.8;
}

.legal-updated {
    display: inline-block;
    margin-top: 10px;
    color: #86a4b9;
    font-size: 11px;
}

.legal-section {
    padding: 75px 0 100px;
    background: #f7fafc;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(24, 64, 92, .06);
}

.legal-nav strong {
    margin: 5px 10px 14px;
    font: 700 14px var(--heading);
}

.legal-nav a {
    padding: 11px 10px;
    color: var(--muted);
    border-radius: 7px;
    font-size: 12px;
}

.legal-nav a i {
    width: 22px;
    color: var(--blue);
    font-size: 17px;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--blue);
    background: #edf5ff;
}

.legal-content {
    padding: 42px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(24, 64, 92, .06);
}

.legal-content h2 {
    margin: 34px 0 12px;
    font: 700 21px/1.35 var(--heading);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.legal-content a {
    color: var(--blue);
    font-weight: 600;
}

@media (max-width: 800px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

    .legal-content {
        padding: 28px 22px;
    }
}

/* Course card alignment fixes */
.course-grid {
    align-items: stretch;
}

.course-grid .course-card {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
}

.course-grid .course-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.course-grid .course-body h3,
.courses-library .course-body h3 {
    min-height: 0;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
}

.course-grid .course-body p,
.courses-library .course-body p {
    display: block;
    min-height: 0;
    overflow: visible;
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
}

.course-grid .rating {
    margin-top: 6px;
}

.course-grid .course-body footer,
.courses-library .course-body footer {
    margin-top: auto;
    padding-top: 14px;
}

.courses-library .course-card {
    min-height: 420px;
}

@media (max-width: 900px) {
    .courses-library .course-card {
        min-height: 0;
    }
}

/* Blog card text and height fixes */
.main-insight h3 {
    display: block;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

.main-insight p {
    display: -webkit-box;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.main-insight,
.main-insight > div:last-child {
    min-width: 0;
}

.insight-cards,
.blog-card-grid {
    align-items: stretch;
}

.insight-cards .mini-insight,
.blog-card-grid .mini-insight {
    display: flex;
    height: 300px;
    min-height: 300px;
    flex-direction: column;
    overflow: hidden;
}

.insight-cards .mini-insight h3,
.blog-card-grid .mini-insight h3 {
    display: -webkit-box !important;
    flex: 0 0 auto;
    height: calc(2 * 1.28em);
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.28;
    font-family: var(--heading);
    text-overflow: ellipsis;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
}

.insight-cards .mini-insight,
.blog-card-grid .mini-insight {
    padding: 14px;
}

.insight-cards .mini-insight .visual-card,
.blog-card-grid .mini-insight .visual-card {
    margin: -14px -14px 14px;
    width: calc(100% + 28px);
}

.insight-cards .mini-insight .visual-card,
.blog-card-grid .mini-insight .visual-card {
    flex: 0 0 228px;
    height: 228px;
}

@media (max-width: 700px) {
    .main-insight h3 {
        display: -webkit-box;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .insight-cards .mini-insight,
    .blog-card-grid .mini-insight {
        height: 280px;
        min-height: 280px;
    }

    .insight-cards .mini-insight .visual-card,
    .blog-card-grid .mini-insight .visual-card {
        flex-basis: 205px;
        height: 205px;
    }
}
/* Course detail */
.course-body h3 a { color: inherit; }
.course-detail-page { background: #f6f9fc; }
.course-detail-hero {
    position: relative;
    display: flex;
    min-height: 560px;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(3,20,39,.92), rgba(3,20,39,.68) 50%, rgba(3,20,39,.16)), var(--course-detail-image);
    background-position: center;
    background-size: cover;
}
.course-detail-hero-content { padding-top: 110px; padding-bottom: 80px; }
.course-detail-hero-content h1 {
    max-width: 780px;
    margin: 18px 0;
    color: #fff;
    font-size: 52px;
    line-height: 1.12;
}
.course-detail-hero-content > p {
    max-width: 680px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.86);
    font-size: 18px;
    line-height: 1.7;
}
.course-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.course-detail-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.52); }
.course-detail-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -78px;
    margin-bottom: 70px;
    overflow: hidden;
    border: 1px solid #e1e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(5,31,55,.12);
}
.course-detail-facts > div {
    display: flex;
    min-height: 112px;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border-right: 1px solid #e8edf3;
}
.course-detail-facts > div:last-child { border-right: 0; }
.course-detail-facts i { color: #087c8c; font-size: 30px; }
.course-detail-facts span { color: #10263d; font-weight: 700; }
.course-detail-facts small {
    display: block;
    margin-bottom: 4px;
    color: #708196;
    font-size: 12px;
    font-weight: 500;
}
.course-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr);
    gap: 46px;
    align-items: start;
}
.course-detail-copy h2, .course-detail-enquiry h2 { margin: 14px 0; color: #082a4b; }
.course-detail-intro { color: #52667a; font-size: 18px; line-height: 1.75; }
.course-detail-description { color: #354b60; font-size: 16px; line-height: 1.8; }
.course-detail-description img { max-width: 100%; height: auto; }
.course-detail-enquiry {
    overflow: hidden;
    border: 1px solid #e0e8ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(5,31,55,.09);
}
.course-detail-enquiry img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.course-detail-enquiry > div { padding: 26px; }
.course-detail-enquiry > div > span { color: #087c8c; font-size: 13px; font-weight: 700; }
.course-detail-enquiry p { color: #627487; line-height: 1.65; }
.course-detail-enquiry .btn { width: 100%; }
.related-courses { margin-top: 90px; }

@media (max-width: 900px) {
    .course-detail-hero { min-height: 500px; }
    .course-detail-hero-content h1 { font-size: 40px; }
    .course-detail-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .course-detail-facts > div:nth-child(2) { border-right: 0; }
    .course-detail-facts > div:nth-child(-n+2) { border-bottom: 1px solid #e8edf3; }
    .course-detail-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .course-detail-hero {
        min-height: 520px;
        background-image: linear-gradient(rgba(3,20,39,.68), rgba(3,20,39,.94)), var(--course-detail-image);
    }
    .course-detail-hero-content { padding-top: 80px; padding-bottom: 65px; }
    .course-detail-hero-content h1 { font-size: 34px; }
    .course-detail-facts { grid-template-columns: 1fr; margin-top: -52px; }
    .course-detail-facts > div, .course-detail-facts > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #e8edf3;
    }
    .course-detail-facts > div:last-child { border-bottom: 0; }
}
