@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/Century Gothic/centurygothic.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/Century Gothic/centurygothic_bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'TT Trailers';
    src: url('../fonts/tt_trailers_1/TT Trailers Trial Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'TT Trailers';
    src: url('../fonts/tt_trailers_1/TT Trailers Trial Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PP Neue Machina/PPNeueMachina-PlainRegular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PP Neue Machina/PPNeueMachina-PlainMedium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PP Neue Machina/PPNeueMachina-PlainUltrabold.otf') format('opentype');
    font-style: normal;
    font-weight: 800;
}

:root {
    --brand-blue: #00a7ff;
    --brand-navy: #0f4eff;
    --brand-green: #00eb85;
    --brand-coral: #ff6d4f;
    --brand-black: #000000;
    --surface: rgba(255, 255, 255, 0.74);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --border: rgba(15, 78, 255, 0.12);
    --text: #07111f;
    --muted: rgba(7, 17, 31, 0.72);
    --shadow: 0 24px 80px rgba(15, 78, 255, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Century Gothic', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(0, 167, 255, 0.18), transparent 28%),
        radial-gradient(circle at right center, rgba(0, 235, 133, 0.16), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f5f8ff 45%, #eef4ff 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(7, 17, 31, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 17, 31, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
    opacity: 0.35;
}

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

a:hover {
    color: var(--brand-navy);
}

/* ─── Header ─────────────────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.site-header__inner {
    display: flex;
    align-items: stretch;
    height: 72px;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    overflow: hidden;
}

/* Logo */
.site-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 28px;
}

.site-brand__img {
    height: 40px;
    width: auto;
}

/* Primary nav */
.site-nav {
    display: flex;
    align-items: stretch;
    padding-left: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 0.93rem;
    color: #1a1a1a;
    position: relative;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nav-link:hover {
    color: var(--brand-navy);
}

.nav-link.is-active {
    color: var(--brand-navy);
    font-weight: 700;
}

.nav-link.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--brand-navy);
    border-radius: 2px 2px 0 0;
}

/* Spacer */
.header-spacer {
    flex: 1;
}

/* Microsoft Solutions Partner badge */
.header-partner {
    display: flex;
    align-items: center;
    padding: 0 20px;
    flex-shrink: 0;
}

.header-partner img {
    height: 62px;
    width: auto;
}

/* Vertical separators */
.header-sep {
    width: 1px;
    background: #e8e8e8;
    align-self: stretch;
}

/* Social icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 18px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #1a1a1a;
    transition: color 180ms ease, background 180ms ease;
}

.social-icon:hover {
    color: var(--brand-navy);
    background: rgba(15, 78, 255, 0.06);
}

/* Language selector */
.header-lang {
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    transition: color 180ms ease;
}

.header-lang:hover {
    color: var(--brand-navy);
}

/* Mobile promo bar (hidden on desktop) */
.header-promo {
    display: none;
}

/* External CTA button */
.header-cta {
    display: flex;
    align-items: center;
    padding: 0 30px;
    background: var(--brand-navy);
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 180ms ease;
    border-radius: 0;
}

.header-cta:hover {
    background: #00a7ff;
    color: #ffffff !important;
}

main {
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 64px;
}

/* ─── Keyframes ────────────────────────────────────────────── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ─── Hero ──────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 80px;
}

/* Video background */
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.541);
}

/* Centre content */
.hero__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 20px 48px;
    /* position: relative; */
    z-index: 1;
    animation: fadeUp 700ms ease-out both;
}

.hero__title {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 64px;
    ;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    max-width: none;
    color: #000;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1em;
    flex-wrap: wrap;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green);
    border-radius: 50%;
    aspect-ratio: 1;
    padding: 0 0.14em;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: -0.04em;
    color: #000;
}

.hero__sub {
    max-width: 617px;
    color: #000;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--brand-navy);
    color: #ffffff;
    font-size: 0.97rem;
    transition: background 180ms ease;
}

.hero__cta:hover {
    background: #00a7ff;
    color: #ffffff;
}

/* Bottom split panels */
.hero__panels {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(1200px, calc(100% - 320px));
    margin: 0 auto;
}

.hero__panel {
    display: block;
    color: #ffffff;
    transition: filter 200ms ease;
}

.hero__panel:hover {
    filter: brightness(1.08);
    color: #ffffff;
}

.hero__panel--companies {
    background: var(--brand-navy);
}

.hero__panel--individuals {
    background: var(--brand-blue);
}

.panel__inner {
    padding: 32px 48px 36px;
}

.panel__heading {
    color: #FFF;
    font-family: "PP Neue Machina";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.panel__sub {
    margin: 0 0 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.panel__link {
    color: #FFF;
    font-family: "PP Neue Machina";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.feature-card,
.contact-strip {
    animation: fadeUp 700ms ease-out both;
}

.eyebrow {
    margin: 0 0 14px;
    font-family: 'TT Trailers', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-navy);
    font-size: 0.95rem;
}

h1,
h2 {
    margin: 0;
    font-family: 'TT Trailers', sans-serif;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 8vw, 7rem);
}

.hero-copy,
.feature-card p,
.contact-strip p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    box-shadow: 0 16px 30px rgba(15, 78, 255, 0.22);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(7, 17, 31, 0.08);
}



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

.feature-card,
.contact-strip {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.feature-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-strip {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64));
}

.contact-strip h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 960px) {
    .hero__panels {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0;
    }

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

@media (max-width: 1024px) {

    .header-partner,
    .header-sep {
        display: none;
    }
}

@media (max-width: 720px) {
    .site-header__inner {
        padding-left: 16px;
        overflow: visible;
    }

    .site-nav,
    .header-sep,
    .header-cta {
        display: none;
    }

    /* Show the separator between .header-partner and .header-social */
    .header-partner+.header-sep {
        display: block;
    }

    /* Promo bar below header on mobile */
    .header-promo {
        display: block;
        background: var(--brand-blue);
        color: #ffffff;
        text-align: center;
        padding: 9px 16px;
        font-size: 0.88rem;
        letter-spacing: 0.02em;
    }

    .header-spacer {
        flex: 1;
    }

    .hero__video {
        object-position: center center;
    }

    .hero {
        min-height: unset;
        padding-bottom: 0;
    }

    .hero__title {
        font-size: clamp(3rem, 14vw, 5rem);
        gap: 0.08em;
    }

    .hero__sub {
        font-size: 0.95rem;
    }

    .hero__body {
        padding: 40px 20px 36px;
        min-height: 392px;
    }

    .hero__cta {
        width: 100%;
        max-width: 320px;
    }

    .hero__panels {
        width: 100%;
        margin: 0;
    }

    .panel__inner {
        padding: 24px 22px 28px;
    }

    h1 {
        max-width: 100%;
    }

}

/* ─── Why Semos ────────────────────────────────────────────── */

.why-semos {
    padding: 100px 0 140px;
    background: #ffffff;
}

.why-semos__inner {
    width: min(1100px, calc(100% - 64px));
    margin: 0 auto;
}

.why-semos__title {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 32px;
}

.why-semos__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
}

/* Staggered vertical cascade */
.why-card:nth-child(2) {
    margin-top: 80px;
}

.why-card:nth-child(3) {
    margin-top: 160px;
}

.why-card {
    width: 280px;
    flex-shrink: 0;
    perspective: 1200px;
}

.why-card__inner {
    width: 100%;
    height: 380px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.why-card:hover .why-card__inner {
    transform: rotateY(180deg);
}

.why-card__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    text-align: center;
}

.why-card__front {
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.why-card__back {
    background: var(--brand-navy);
    transform: rotateY(180deg);
}

.why-card__logo {
    height: 52px;
    width: auto;
    margin-bottom: 32px;
}

.why-card__sparkle {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
}

.why-card__number {
    display: block;
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.why-card__label {
    color: #000;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.why-card__back-text {
    color: #ffffff;
    text-align: center;
    font-family: "Century Gothic", "Gill Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.why-semos__hint {
    text-align: center;
    margin-top: 64px;
    font-size: 0.82rem;
    color: #aaa;
    font-style: italic;
}

@media (max-width: 768px) {
    .why-semos__title {
        font-size: 32px;
    }

    .why-semos__grid {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .why-card:nth-child(2),
    .why-card:nth-child(3) {
        margin-top: 0;
    }

    .why-card {
        width: min(280px, 100%);
    }
}

/* ─── Experience ─────────────────────────────────────────────── */

.experience {
    padding: 100px 0 80px;
    background: hsl(0, 0%, 93%, 0.3);
}

.experience__inner {
    width: min(1100px, calc(100% - 64px));
    margin: 0 auto;
}

.experience__title {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #000;
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.1;
}

.experience__sub {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 56px;
}

/* Tab bar */
.exp-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 56px;
    background: transparent;
}

.exp-tab {
    padding: 18px 20px;
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #555;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
    text-align: center;
    letter-spacing: 0.01em;
}

.exp-tab:hover:not(.is-active) {
    background: #00a7ff;
    color: #ffffff;
    border-color: transparent;
}

.exp-tab.is-active {
    background: var(--brand-navy);
    color: #ffffff;
    border-color: transparent;
}

/* Panels */
.exp-panel {
    display: none;
}

.exp-panel.is-active {
    display: block;
}

/* Items grid */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
}

.exp-item {
    padding: 32px 0;
}

.exp-item__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.exp-item__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.exp-item__title {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.exp-item__text {
    font-size: 0.87rem;
    line-height: 1.65;
    color: #000;
    margin: 0;
    padding-left: 32px;
}

.exp-item__line {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 28px 0 0;
}

/* Prev / Next pill */
.exp-nav {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.exp-nav__pill {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 999px;
    padding: 5px;
    gap: 2px;
}

.exp-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border-radius: 999px;
    transition: background 180ms ease;
}

.exp-nav__btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .experience {
        padding: 56px 0 60px;
    }

    .experience__inner {
        width: calc(100% - 32px);
    }

    .experience__sub {
        margin: 0 0 36px;
    }

    .exp-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin: 0 -16px 36px;
        width: calc(100% + 32px);
    }

    .exp-tab {
        padding: 14px 8px;
        font-size: 0.78rem;
        border: none;
    }

    .exp-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .exp-item__text {
        padding-left: 0;
    }
}

/* ─── Training Map ───────────────────────────────────────────── */

.training-map {
    padding: 100px 0 80px;
    background: #ffffff;
    overflow: hidden;
    max-height: 800px;
}

.training-map__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-left: max(32px, calc((100vw - 1200px) / 2));
}

.training-map__left {
    flex: 0 0 auto;
    width: min(520px, 46vw);
}

.training-map__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 8px;
    position: relative;
    background-image: url('../map/map-bkg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.training-map__img {
    width: 100%;
    margin-top: -100px;
}

/* Year tabs */
.year-tabs {
    display: flex;
    align-items: baseline;
    gap: 28px;
    margin-bottom: 16px;
}

.year-tab {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #c0c0c0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    letter-spacing: -0.03em;
    transition: color 200ms ease;
    text-decoration: none;
}

.year-tab.is-active {
    color: #000;
    font-family: "PP Neue Machina";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* Year panel */
.year-panel {
    display: block;
}

.year-panel[hidden] {
    display: none;
}

.training-map__sub {
    color: #000;
    font-family: "Century Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

/* Country 2×2 grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Country flip card */
.country-card {
    perspective: 900px;
}

.country-card__inner {
    position: relative;
    min-height: 220px;
    transform-style: preserve-3d;
    transition: transform 600ms cubic-bezier(0.4, 0.2, 0.2, 1);
}

.country-card:hover .country-card__inner {
    transform: rotateY(180deg);
}

.country-card__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
}

.country-card__front {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.country-card__back {
    background: var(--brand-navy);
    transform: rotateY(180deg);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.country-card__name {
    color: #000;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.country-card__stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.country-card__num {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1;
    display: block;
    letter-spacing: -0.02em;
}

.country-card__label {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.country-card__back-text {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: 1.45;
    margin: 0;
}

/* Mobile-only training-map elements (hidden on desktop) */
.training-map__mobile-sub,
.training-map__mobile-cards {
    display: none;
}

@media (max-width: 900px) {
    .training-map__inner {
        flex-direction: column;
    }

    .training-map__left {
        width: 100%;
    }

    .training-map__right {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .training-map {
        max-height: none;
        padding: 40px 0 60px;
    }

    .training-map__inner {
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px;
    }

    /* Hide desktop year-panels (subtitle+cards together) on mobile */
    .training-map__left .year-panel {
        display: none;
    }

    /* Show mobile-only sections */
    .training-map__mobile-sub,
    .training-map__mobile-cards {
        display: block;
        margin: 0 auto;
    }

    .training-map__mobile-sub .training-map__sub {
        margin-bottom: 8px;
    }

    .training-map__right {
        background-image: none;
        padding-top: 0;
    }

    .training-map__img {
        margin-top: 0;
    }

    /* Keep 2-column layout for mobile cards */
    .training-map__mobile-cards .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Disable 3D flip on mobile — render as flat static cards */
    .training-map__mobile-cards .country-card {
        perspective: none;
    }

    .training-map__mobile-cards .country-card__inner {
        transform-style: flat;
        transform: none !important;
        min-height: 0;
        box-shadow: none;
    }

    .training-map__mobile-cards .country-card__face {
        position: static;
        inset: auto;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
    }

    .training-map__mobile-cards .country-card__back {
        display: none;
    }

    .training-map__mobile-cards .country-card__front {
        padding: 20px 12px;
        gap: 16px;
    }
}

/* ─── AI Meaning ─────────────────────────────────────────────── */

.ai-meaning {
    padding: 100px 0 80px;
    background: #ffffff;
}

.ai-meaning__inner {
    width: min(1100px, calc(100% - 64px));
    margin: 0 auto;
}

.ai-meaning__title {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: #000;
    text-align: center;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    line-height: 1.15;
}

.ai-meaning__sub {
    text-align: center;
    font-size: 1rem;
    color: #444;
    margin: 0 0 72px;
    line-height: 1.6;
}

.ai-meaning__body {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ── Left visual ── */
.ai-meaning__visual-wrap {
    flex: 0 0 auto;
    width: 480px;
}

.ai-visual {
    position: relative;
    width: 480px;
    height: 420px;
}

.ai-img {
    position: absolute;
    display: block;
}

/* AI circle — centre of composition, static */
.ai-img--circle {
    width: 230px;
    top: 90px;
    left: 112px;
    z-index: 3;
}

/* Orbit @property — animatable angle per tool circle
   AI circle center (227, 205) | ellipse rx=160px ry=90px | period 13s
   Offsets from source: claude=313°  chatgpt=36°  perplexity=180° */
@property --op {
    syntax: '<angle>';
    initial-value: 180deg;
    inherits: false;
}

@property --oc {
    syntax: '<angle>';
    initial-value: 313deg;
    inherits: false;
}

@property --og {
    syntax: '<angle>';
    initial-value: 36deg;
    inherits: false;
}

/* Tool circles */
.ai-img--perplexity {
    width: 92px;
    left: calc(227px + 160px * cos(var(--op)) - 46px);
    top: calc(205px + 90px * sin(var(--op)) - 46px);
    scale: calc(0.90 + 0.16 * sin(var(--op)));
    animation: orbitP 13s linear infinite, zP 13s step-start infinite;
}

@keyframes orbitP {
    from {
        --op: 180deg;
    }

    to {
        --op: 540deg;
    }
}

@keyframes zP {
    0% {
        z-index: 1;
    }

    /* top half (sin<0) → behind */
    50% {
        z-index: 1;
    }

    /* bottom half (sin>0) → in front */
    100% {
        z-index: 5;
    }
}

.ai-img--claude {
    width: 80px;
    left: calc(227px + 160px * cos(var(--oc)) - 40px);
    top: calc(205px + 90px * sin(var(--oc)) - 40px);
    scale: calc(0.90 + 0.16 * sin(var(--oc)));
    animation: orbitC 13s linear infinite, zC 13s step-start infinite;
}

@keyframes orbitC {
    from {
        --oc: 313deg;
    }

    to {
        --oc: 673deg;
    }
}

@keyframes zC {
    0% {
        z-index: 1;
    }

    /* top half (313°→360°) → behind */
    13% {
        z-index: 1;
    }

    /* bottom half (360°→540°) → in front */
    63% {
        z-index: 5;
    }

    /* top half (540°→673°) → behind */
    100% {
        z-index: 1;
    }
}

.ai-img--chatgpt {
    width: 104px;
    left: calc(227px + 160px * cos(var(--og)) - 52px);
    top: calc(205px + 90px * sin(var(--og)) - 52px);
    scale: calc(0.90 + 0.16 * sin(var(--og)));
    animation: orbitG 13s linear infinite, zG 13s step-start infinite;
}

@keyframes orbitG {
    from {
        --og: 36deg;
    }

    to {
        --og: 396deg;
    }
}

@keyframes zG {
    0% {
        z-index: 5;
    }

    /* bottom half (36°→180°) → in front */
    40% {
        z-index: 5;
    }

    /* top half (180°→360°) → behind */
    90% {
        z-index: 1;
    }

    /* bottom half (360°→396°) → in front */
    100% {
        z-index: 5;
    }
}

/* Green bubbles cluster — symmetric sway matching source: -18px to +18px */
.ai-img--bubbles {
    width: 160px;
    top: 278px;
    left: 32px;
    z-index: 2;
    animation: bubbleSwing 3.8s ease-in-out infinite;
}

@keyframes bubbleSwing {

    0%,
    100% {
        transform: translateX(-18px);
    }

    50% {
        transform: translateX(18px);
    }
}

/* Cyan sparkle star — rotates around own center, ±6° + scale pulse */
.ai-img--star {
    width: 58px;
    top: 104px;
    left: 124px;
    z-index: 4;
    transform-origin: center;
    animation: starSpin 6s ease-in-out infinite;
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(6deg) scale(1.04);
    }

    50% {
        transform: rotate(0deg) scale(1);
    }

    75% {
        transform: rotate(-6deg) scale(1.04);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* ── Right bullet points ── */
.ai-meaning__points {
    flex: 1;
}

.ai-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
}

.ai-point__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.ai-point__text {
    font-size: 1rem;
    color: #111;
    margin: 0;
    line-height: 1.6;
}

.ai-point__divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

@media (max-width: 900px) {
    .ai-meaning__body {
        flex-direction: column;
        gap: 48px;
    }

    .ai-meaning__visual-wrap {
        width: 100%;
        align-items: center;
    }

    .ai-visual {
        width: min(440px, 100%);
    }
}

@media (max-width: 520px) {
    .ai-meaning {
        padding: 56px 0 56px;
    }

    .ai-meaning__inner {
        width: calc(100% - 32px);
    }

    .ai-meaning__title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        text-align: center;
    }

    .ai-meaning__sub {
        text-align: center;
        margin-bottom: 40px;
    }

    .ai-meaning__body {
        gap: 24px;
    }

    .ai-meaning__visual-wrap {
        overflow: hidden;
        display: flex;
        justify-content: flex-start;
    }

    /* Scale the entire fixed-size animation to fit mobile viewport */
    .ai-visual {
        transform: scale(0.72);
        transform-origin: top left;
        margin-bottom: -118px;
        /* 420 × (1 - 0.72) ≈ 118px removed from layout */
    }
}

/* ─── Audience Panels ─── */
.audience-panels {
    display: flex;
    width: 100%;
}

.aud-panel {
    flex: 1;
    min-height: 360px;
    display: flex;
    align-items: flex-start;
    padding: 56px 60px 52px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: filter 180ms ease;
}

.aud-panel:hover {
    filter: brightness(1.06);
}

.aud-panel--companies {
    background-color: #1040EE;
    background-image: url('../images/ai-companies.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.aud-panel--individuals {
    background-color: #0098E8;
    background-image: url('../images/ai-individuals.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.aud-panel__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 380px;
    position: relative;
    z-index: 1;
}

.aud-panel__icon {
    margin-bottom: 30px;
    flex-shrink: 0;
}

.aud-panel__title {
    font-family: 'PP Neue Machina', 'Century Gothic', sans-serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 22px;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.aud-panel__body {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 34px;
}

.aud-panel__link {
    color: #FFF;
    font-family: "PP Neue Machina";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.aud-panel:hover .aud-panel__link {
    color: #ffffff;
}

@media (max-width: 768px) {
    .audience-panels {
        flex-direction: column;
    }

    .aud-panel {
        padding: 44px 28px 40px;
        min-height: 300px;
    }

    /* .aud-panel--companies,
	.aud-panel--individuals {
		background-size: auto 70%;
	} */
}

/* ─── Microsoft Partners Scroller ─── */
.ms-scroller {
    overflow: hidden;
    padding: 64px 0;
    background: #ffffff;
}

.ms-scroller__track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: ms-scroll-ltr 35s linear infinite;
}

.ms-scroller__track:hover {
    animation-play-state: paused;
}

.ms-logo-item {
    flex-shrink: 0;
}

.ms-logo-item img {
    display: block;
    width: 220px;
    height: auto;
    filter: grayscale(1) opacity(0.6);
    transition: filter 300ms ease;
    cursor: pointer;
}

.ms-logo-item:hover img {
    filter: grayscale(0) opacity(1);
}

@keyframes ms-scroll-ltr {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* ─── Industries ─── */
.industries {
    background: hsl(0, 0%, 93%, 0.3);
    padding: 80px 0 90px;
}

.industries__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}

.industries__title {
    font-family: 'PP Neue Machina', 'Century Gothic', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #111111;
    text-align: center;
    margin: 0 0 48px;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.ind-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 118px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ind-card:hover {
    transform: scale(1.025);
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.ind-card::before {
    content: '';
    position: absolute;
    inset: 0;
}

.ind-card--finance {
    background-image: url('../images/finance.png');
}

.ind-card--it {
    background-image: url('../images/IT.png');
}


.ind-card--education {
    background-image: url('../images/education.png');
}

.ind-card--hr {
    background-image: url('../images/hr.png');
}

.ind-card__label {
    position: relative;
    z-index: 1;
    font-family: 'Century Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .ms-scroller__track {
        gap: 48px;
    }

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

    .ind-card {
        height: 170px;
    }
}

@media (max-width: 520px) {
    .industries {
        padding: 56px 46px 60px;
    }

    .industries__inner {
        width: calc(100% - 32px);
    }

    .industries__title {
        margin-bottom: 32px;
    }

    .industries__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ind-card {
        height: 160px;
    }
}

/* ─── AI Path ─── */
.ai-path {
    background: #ffffff;
    padding: 90px 0 100px;
}

.ai-path__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-path__title {
    font-family: 'PP Neue Machina', 'Century Gothic', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 400;
    color: #111111;
    text-align: center;
    margin: 0 0 56px;
}

.ai-path__panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: 56px;
}

.ai-path-panel {
    display: flex;
    flex-direction: column;
    padding: 36px 40px 36px;
    text-decoration: none;
    color: #ffffff;
    transition: filter 180ms ease;
}

.ai-path-panel:hover {
    filter: brightness(1.06);
    color: #ffffff;
}

.ai-path-panel--companies {
    background: #0f4eff;
}

.ai-path-panel--individuals {
    background: #00aaff;
}

.ai-path-panel__title {
    font-family: 'PP Neue Machina', 'Century Gothic', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 12px;
}

.ai-path-panel__tags {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
    line-height: 1.55;
}

.ai-path-panel__link {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
}

.ai-path__note {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.95rem;
    color: #444444;
    text-align: center;
    margin: 0 0 28px;
}

.ai-path__cta {
    display: inline-block;
    background: #1040ee;
    color: #ffffff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.9rem;
    padding: 14px 40px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 180ms ease;
}

.ai-path__cta:hover {
    background: #00a4ff;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ai-path__panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .ai-path {
        padding: 56px 0 60px;
    }

    .ai-path__inner {
        width: calc(100% - 32px);
    }

    .ai-path__title {
        margin-bottom: 36px;
    }

    /* Break panels out to full viewport width */
    .ai-path__panels {
        width: calc(100% + 32px);
        /* margin-left: -16px; */
        margin-bottom: 40px;
    }

    .ai-path-panel {
        padding: 28px 24px 32px;
    }

    .ai-path-panel__title {
        font-size: 1.2rem;
    }

    .experts {
        padding-top: 0px !important;
    }
}

/* ─── Experts ─── */
.experts {
    background: #ffffff;
    padding: 90px 0 100px;
}

.experts__inner {
    width: min(1100px, calc(100% - 64px));
    margin: 0 auto;
}

.experts__title {
    font-family: 'PP Neue Machina', 'Century Gothic', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 400;
    color: #111111;
    text-align: center;
    margin: 0 0 40px;
}

.experts__cta-wrap {
    text-align: center;
    margin-bottom: 64px;
}

.experts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 300px));
    justify-content: center;
    gap: 24px;
}

.expert-card {
    border: 1px solid #e0e0e0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 390px;
    padding: 36px 24px 32px;
    text-align: center;
    overflow: hidden;
    transition: background 320ms ease, border-color 320ms ease;
}

.expert-card:hover {
    background: #0f4eff;
    border-color: #0f4eff;
}

.expert-card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 320ms ease;
}

.expert-card:hover .expert-card__info {
    transform: translateY(-20px);
}

.expert-card__avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #3ed8f5;
    overflow: hidden;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: transform 320ms ease;
}

.expert-card:hover .expert-card__avatar {
    transform: scale(0.82);
}

.expert-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.expert-card__name {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.expert-card:hover .expert-card__name {
    color: #ffffff;
}

.expert-card__role {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #000;
    margin: 0;
    line-height: 1.4;
    transition: color 320ms ease;
}

.expert-card:hover .expert-card__role {
    color: rgba(255, 255, 255, 0.75);
}

.expert-card__social {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 280ms ease 60ms, transform 280ms ease 60ms;
}

.expert-card:hover .expert-card__social {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.expert-card__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.84);
    transition: color 150ms ease, transform 150ms ease;
}

.expert-card__social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .experts__grid {
        grid-template-columns: minmax(0, 300px);
        justify-content: center;
    }

    /* Always show blue card + social icons on mobile (no hover needed) */
    .expert-card {
        background: #0f4eff;
        border-color: #0f4eff;
    }

    .expert-card__info {
        transform: translateY(-20px);
    }

    .expert-card__avatar {
        transform: scale(0.82);
    }

    .expert-card__name {
        color: #ffffff;
    }

    .expert-card__role {
        color: rgba(255, 255, 255, 0.75);
    }

    .expert-card__social {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* ─── Company Hero ─── */

.company-hero {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 24px 64px;
    background: #d6d6d6;
}

.company-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #d6d6d6;
}

.company-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1) brightness(1.35) contrast(0.92) opacity(0.92);
}

.company-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(214, 214, 214, 0.38);
}

.company-hero__content {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 8px;
}

.company-hero__logo {
    width: 210px;
    height: auto;
    display: block;
}

.company-hero__title {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 845px !important;
}

.company-hero__sub {
    color: #000;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 720px !important;
}

.company-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    background: var(--brand-navy);
    color: #ffffff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    transition: background 180ms ease, transform 180ms ease;
    border-radius: 0;
}

.company-hero__cta:hover {
    background: #00a7ff;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .company-hero {
        padding: 40px 18px 52px;
    }

    .company-hero__content {
        gap: 24px;
    }

    .company-hero__logo {
        width: 180px;
    }

    .company-hero__title {
        font-size: clamp(2.9rem, 11vw, 4.4rem);
    }

    .company-hero__sub {
        font-size: 0.98rem;
    }
}

/* ─── Structured AI Path ─── */
.path-section {
    position: relative;
    background: hsl(0, 0%, 93%, 0.3);
}

.path-section__left {
    width: 60%;
    min-width: 0;
    padding: 80px 60px 80px max(32px, calc((100vw - 1200px) / 2 + 32px));
}

.path-section__right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
}

.path-section__road {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
}

.path-section__title {
    color: #000;
    font-family: "PP Neue Machina";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.path-accordion__item {
    position: relative;
}

.path-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
    color: inherit;
}

.path-accordion__num {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1;
    flex-shrink: 0;
    width: 46px;
    display: block;
}

.path-accordion__label {
    flex: 1;
    color: #000;
    font-family: "PP Neue Machina";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.path-accordion__icon {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #222222;
    transition: transform 280ms ease;
}

.path-accordion__item.is-open .path-accordion__icon {
    transform: rotate(45deg);
}

.path-accordion__item.is-open .path-accordion__trigger {
    padding-bottom: 6px;
}

.path-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
}

.path-accordion__item.is-open .path-accordion__panel {
    max-height: 300px;
}

.path-accordion__panel p {
    color: #000;
    font-family: "PP Neue Machina";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.path-accordion__panel p em {
    font-style: italic;
}

.path-accordion__divider {
    border: none;
    border-top: 1px solid #d8d8d8;
    margin: 0;
}

@media (max-width: 900px) {
    .path-section__left {
        width: 100%;
        padding: 64px 24px;
    }

    .path-section__right {
        position: static;
        width: 100%;
        height: 400px;
    }

    .path-section__road {
        object-fit: cover;
        object-position: center top;
    }
}

/* ─── VS Comparison ─── */
.vs-section {
    background: #ffffff;
    padding: 100px 0 110px;
}

.vs-section__inner {
    width: min(1100px, calc(100% - 64px));
    margin: 0 auto;
}

.vs-section__title {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.vs-table__vs-row {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 64px;
}

.vs-table__vs-line {
    flex: 1;
    height: 1px;
    background: #d0d0d0;

}

.vs-table__vs-label {
    color: #000;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 24px;
}

.vs-table__col-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 4px;
}

.vs-table__col-head {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
}

.vs-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vs-table__divider {
    border: none;
    height: 1px;
    margin: 0;
    background: linear-gradient(to right,
            #e8e8e8 0,
            #e8e8e8 calc(50% - 52px),
            transparent calc(50% - 52px),
            transparent calc(50% + 52px),
            #e8e8e8 calc(50% + 52px),
            #e8e8e8 100%);
}

.vs-table__cell {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-family: 'PP Neue Machina', sans-serif;
    font-size: 1rem;
    line-height: normal;
    color: #222222;
}

.vs-table__cell--bad {
    padding-right: 52px;
}

.vs-table__cell--good {
    padding-left: 52px;
}

.vs-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.vs-icon--star {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .vs-table__row {
        grid-template-columns: 1fr;
    }

    .vs-table__col-headers {
        grid-template-columns: 1fr;
    }

    .vs-table__col-head:last-child {
        margin-top: 16px;
    }

    .vs-table__cell--bad,
    .vs-table__cell--good {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ─── Business Use Cases ─── */
.usecases-section {
    background: #ffffff;
    padding: 90px 0 100px;
}

.usecases-section__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}

.usecases-section__title {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 72px;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.usecases-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-size: cover;
    background-position: center;
    width: 264px;
    height: 191px;
}

.usecases-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.usecases-card--finance {
    background-image: url('../for-companies/Group\ 32.png');
}

.usecases-card--decisions {
    background-image: url('../for-companies/Group\ 33.png');
}

.usecases-card--productivity {
    background-image: url('../for-companies/Group\ 34.png');
}

.usecases-card--hr {
    background-image: url('../for-companies/Group\ 35.png');
}

.usecases-card__text {
    color: #FFF;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 185px;
}

@media (max-width: 760px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 440px) {
    .usecases-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── What You Get (Results) ─── */
.results-section {
    background: hsl(0, 0%, 93%, 0.35);
    padding: 90px 0 100px;
}

.results-section__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}

.results-section__title {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.results-section__subtitle {
    color: #000;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 676px;
    margin: 0 auto;
    margin-top: 16px;
    margin-bottom: 64px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}

.results-item {
    padding: 28px 0 0;
}

.results-item__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.results-item__star {
    font-size: 1.1rem;
    color: var(--brand-navy);
    flex-shrink: 0;
    line-height: 1.4;
    margin-top: 1px;
}

.results-item__title {
    color: #000;
    font-family: "PP Neue Machina";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 4px;
}

.results-item__text {
    color: #000;
    font-family: "Century Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
}

.results-item__divider {
    border: none;
    border-top: 1px solid #d8d8d8;
    margin: 0;
}

@media (max-width: 700px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ─── Target Audience ─── */
.target-section {
    background: #ffffff;
    padding: 90px 0 100px;
}

.target-section__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}

.target-section__title {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 0 0 64px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.target-card {
    border: 1px solid #e4e4e4;
    background: #ffffff;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.target-card__icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--brand-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.target-card__icon {
    width: 48px;
    height: 48px;
    display: block;
}

.target-card__title {
    color: #000;
    font-family: "Century Gothic";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.target-card__text {
    color: #646464;
    font-family: "Century Gothic";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 900px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── AI Adoption Framework CTA ─── */
.framework-section {
    background: #f0f0f0;
    padding: 60px 0;
    overflow: hidden;
}

.framework-section__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.framework-section__content {
    max-width: 560px;
    z-index: 2;
}

.framework-section__title {
    font-family: 'PP Neue Machina', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: #000;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.framework-section__sub {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 28px;
}

.framework-section__form {
    display: flex;
    align-items: stretch;
    max-width: 480px;
}

.framework-section__input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #cccccc;
    border-right: none;
    background: #ffffff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #333;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.framework-section__input::placeholder {
    color: #aaa;
}

.framework-section__input:focus {
    border-color: var(--brand-navy);
}

.framework-section__btn {
    padding: 14px 28px;
    background: var(--brand-navy);
    color: #fff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 200ms ease;
}

.framework-section__btn:hover {
    background: #0a3dd4;
}

/* Decorative diamonds */
.framework-section__decor {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 340px;
    pointer-events: none;
}

.framework-decor__diamond {
    position: absolute;
    display: block;
    transform: rotate(45deg);
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.04);
}

.framework-decor__diamond--1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 40px;
    margin-top: -100px;
}

.framework-decor__diamond--2 {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 80px;
    margin-top: -130px;
}

.framework-decor__diamond--3 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 120px;
    margin-top: -160px;
}

@media (max-width: 700px) {
    .framework-section__decor {
        display: none;
    }

    .framework-section__form {
        flex-direction: column;
    }

    .framework-section__input {
        border-right: 1px solid #ccc;
        border-bottom: none;
    }

    .framework-section__btn {
        width: 100%;
    }
}

/* ─── Courses Listing ─── */
.courses-listing {
    background: #ffffff;
    padding: 60px 0 100px;
}

.courses-listing__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}

/* Controls bar */
.courses-listing__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.courses-listing__controls-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.courses-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid #ccc;
    background: #fff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    border-radius: 0;
}

.courses-filter-tag__x {
    color: #e02424;
    font-size: 1rem;
    line-height: 1;
}

.courses-clear-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #e02424;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.courses-sort {
    padding: 10px 36px 10px 16px;
    border: 1px solid #ccc;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

/* Course grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-card {
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: box-shadow 200ms ease;
}

.course-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.course-card[hidden] {
    display: none;
}

.course-card__inner {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.course-card__badge {
    display: inline-block;
    background: var(--brand-blue);
    color: #fff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    white-space: nowrap;
}

.course-card__title {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.35;
}

.course-card__desc {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #555;
    margin: 0 0 18px;
    line-height: 1.65;
    flex: 1;
}

.course-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.course-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-blue);
    color: #fff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.course-card__divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 0 0 20px;
}

.course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.course-card__cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--brand-navy);
    color: #fff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    transition: background 180ms ease;
}

.course-card__cta:hover {
    background: #0a3dd4;
}

.course-card__price {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

/* No results */
.courses-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    font-family: 'Century Gothic', sans-serif;
    color: #888;
    font-size: 1rem;
    display: none;
}

@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Courses Hero ─── */
.courses-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.courses-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.courses-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.courses-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 32px 70px;
    margin-top: -60px;
}

.courses-hero__logo {
    height: 52px;
    width: auto;
    display: block;
    margin: 0 auto 28px;
}

.courses-hero__title {
    color: #000;
    text-align: center;
    font-family: "PP Neue Machina";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.courses-hero__sub {
    color: #000;
    text-align: center;
    font-family: "Century Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Filter bar */
.courses-hero__filter-bar {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 32px 0;
}

.courses-hero__filter-inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(15, 78, 255, 0.8);
    padding: 24px 28px 28px;
}

.courses-hero__search {
    display: flex;
    align-items: stretch;
}

.courses-hero__search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: #ffffff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.courses-hero__search-input::placeholder {
    color: #aaa;
}

.courses-hero__search-btn {
    padding: 16px 36px;
    background: #0a3dd4;
    color: #ffffff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    border: none;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 180ms ease;
}

.courses-hero__search-btn:hover {
    background: #00a7ff;
}

.courses-hero__filters {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.courses-hero__filter {
    padding: 13px 36px 13px 16px;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    border: none;
    border-radius: 0;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.courses-hero__filter:focus {
    outline: 2px solid var(--brand-navy);
    outline-offset: -2px;
}

@media (max-width: 900px) {
    .courses-hero__filters {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 540px) {
    .courses-hero__filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-hero__content {
        padding-bottom: 280px;
    }
}

/* ─── Footer ─── */
.footer-main {
    background-color: #f5f5f5;
    background-image: url('../images/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 52px 0 52px;
}

.footer-main__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo__img {
    width: 150px;
    height: auto;
    display: block;
}

.footer-nav {
    display: flex;
    gap: 60px;
    flex-shrink: 0;
}

.footer-nav__title {
    color: #000;
    font-family: "PP Neue Machina";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0;
}

.footer-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav__list a {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.9rem;
    color: #444444;
    transition: color 150ms ease;
}

.footer-nav__list a:hover {
    color: var(--brand-navy);
}

.footer-newsletter {
    flex: 1;
    max-width: 500px;
}

.footer-newsletter__title {
    color: #000;
    font-family: "PP Neue Machina";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0;
}

.footer-newsletter__form {
    display: flex;
}

.footer-newsletter__input {
    flex: 1;
    min-width: 0;
    border: 1px solid #e0e0e0;
    border-right: none;
    padding: 13px 16px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    color: #333333;
    outline: none;
    background: #ffffff;
}

.footer-newsletter__input::placeholder {
    color: #aaaaaa;
}

.footer-newsletter__input:focus {
    border-color: var(--brand-navy);
}

.footer-newsletter__btn {
    background: var(--brand-navy);
    color: #ffffff;
    border: none;
    padding: 13px 24px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 180ms ease;
}

.footer-newsletter__btn:hover {
    background: #00a7ff;
}

.footer-bar {
    background: var(--brand-navy);
    padding: 14px 0;
}

.footer-bar__inner {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bar__copy {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bar__links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bar__links a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 150ms ease;
}

.footer-bar__links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-main__inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-main__inner {
        width: calc(100% - 32px);
    }

    .footer-nav {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .footer-newsletter {
        width: 100%;
    }

    .footer-newsletter__form {
        flex-direction: column;
        /* gap: 10px; */
    }

    .footer-newsletter__input {
        border-right: 1px solid #e0e0e0;
        width: 100%;
    }

    .footer-newsletter__btn {
        width: 100%;
        padding: 14px 24px;
    }

    .footer-bar__inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}