/**
 * IDEALAB redesign
 * Hero + Impact in Numbers
 *
 * Застосовується лише до сторінок редизайну:
 * 2942 — українська;
 * 2943 — англійська.
 */

/* ==========================================================
   BASE RESET
   ========================================================== */

body.page-id-2942,
body.page-id-2943 {
    margin: 0;
    background: #071426;
    color: #ffffff;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body.page-id-2942 *,
body.page-id-2943 * {
    box-sizing: border-box;
}

body.page-id-2942 .elementor,
body.page-id-2943 .elementor,
body.page-id-2942 .elementor-section,
body.page-id-2943 .elementor-section,
body.page-id-2942 .elementor-container,
body.page-id-2943 .elementor-container,
body.page-id-2942 .elementor-column,
body.page-id-2943 .elementor-column,
body.page-id-2942 .elementor-widget-wrap,
body.page-id-2943 .elementor-widget-wrap {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

body.page-id-2942 .elementor-widget-html,
body.page-id-2943 .elementor-widget-html,
body.page-id-2942 .elementor-widget-container,
body.page-id-2943 .elementor-widget-container {
    width: 100%;
}

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

.idealab-home {
    --idealab-navy: #061426;
    --idealab-blue: #4e91f9;
    --idealab-blue-light: #73aaff;
    --idealab-white: #ffffff;
    --idealab-muted: rgba(255, 255, 255, 0.78);
    --idealab-border: rgba(255, 255, 255, 0.22);
}

.idealab-hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;

    background-color: var(--idealab-navy);
    background-image:
        linear-gradient(
            90deg,
            rgba(3, 15, 33, 0.98) 0%,
            rgba(3, 15, 33, 0.92) 26%,
            rgba(3, 15, 33, 0.62) 53%,
            rgba(3, 15, 33, 0.18) 78%,
            rgba(3, 15, 33, 0.22) 100%
        ),
        url("https://webproject.lnu.edu.ua/wp-content/uploads/2026/07/idealab.png");

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.idealab-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 220px;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(4, 17, 35, 0) 0%,
            rgba(4, 17, 35, 0.78) 100%
        );
}

.idealab-shell {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}

/* ==========================================================
   HEADER
   ========================================================== */

.idealab-header {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    align-items: center;
    gap: 36px;

    min-height: 132px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.idealab-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    color: #ffffff;
    text-decoration: none;
}

.idealab-brand__mark {
    position: relative;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
}

.idealab-brand__mark span {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: #ffffff;

    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateY(-29px);
}

.idealab-brand__mark::before,
.idealab-brand__mark::after {
    content: "";
    position: absolute;
    inset: 12px;

    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
}

.idealab-brand__mark::after {
    inset: 23px;
    background: #ffffff;
    border: 0;
}

.idealab-brand__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.36;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.idealab-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2vw, 38px);
}

.idealab-nav a,
.idealab-language {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.idealab-nav a:hover,
.idealab-nav a:focus,
.idealab-language:hover,
.idealab-language:focus {
    color: var(--idealab-blue-light);
}

.idealab-language {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.idealab-language svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================
   HERO CONTENT
   ========================================================== */

.idealab-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    min-height: 585px;
    max-width: 670px;

    padding: 76px 0 96px;
}

.idealab-eyebrow {
    margin: 0 0 20px;

    color: var(--idealab-blue-light);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-hero h1 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.idealab-accent-line {
    width: 208px;
    height: 4px;
    margin: 28px 0 24px;

    background: var(--idealab-blue);
    border-radius: 999px;
}

.idealab-hero__description {
    max-width: 650px;
    margin: 0;

    color: var(--idealab-muted);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.58;
}

.idealab-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 34px;
}

.idealab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 62px;
    padding: 15px 34px;

    border: 1px solid transparent;
    border-radius: 18px;

    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.idealab-button:hover,
.idealab-button:focus {
    color: #ffffff;
    transform: translateY(-2px);
}

.idealab-button--primary {
    background:
        linear-gradient(
            135deg,
            #397fdc 0%,
            #62a3ff 100%
        );

    box-shadow:
        0 16px 34px rgba(44, 118, 220, 0.28);
}

.idealab-button--primary:hover,
.idealab-button--primary:focus {
    background:
        linear-gradient(
            135deg,
            #4a8dea 0%,
            #74adff 100%
        );
}

.idealab-button--secondary {
    background: rgba(3, 15, 32, 0.34);
    border-color: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(8px);
}

.idealab-button--secondary:hover,
.idealab-button--secondary:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
}

.idealab-button svg {
    width: 19px;
    height: 19px;
}

/* ==========================================================
   IMPACT NUMBERS
   ========================================================== */

.idealab-impact {
    position: relative;
    z-index: 3;

    margin-top: -1px;
    padding: 40px 0 52px;

    background:
        linear-gradient(
            90deg,
            rgba(5, 21, 42, 0.98),
            rgba(7, 28, 55, 0.96)
        );

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.idealab-impact__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px;
}

.idealab-stat {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 16px;

    min-width: 0;
}

.idealab-stat__icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 4px;
    color: var(--idealab-blue);
}

.idealab-stat__icon svg {
    width: 38px;
    height: 38px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-stat__number {
    display: block;

    color: var(--idealab-blue);
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.idealab-stat__label {
    display: block;
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.42;
}

/* ==========================================================
   MOBILE NAV
   ========================================================== */

.idealab-menu-toggle {
    display: none;
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1199px) {

    .idealab-shell {
        width: min(100% - 48px, 1100px);
    }

    .idealab-header {
        grid-template-columns: 250px 1fr auto;
        gap: 20px;
    }

    .idealab-nav {
        gap: 18px;
    }

    .idealab-nav a {
        font-size: 14px;
    }

    .idealab-brand__text {
        font-size: 17px;
    }

    .idealab-impact__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 40px;
    }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

    .idealab-hero {
        min-height: auto;

        background-image:
            linear-gradient(
                180deg,
                rgba(3, 15, 33, 0.78) 0%,
                rgba(3, 15, 33, 0.92) 62%,
                rgba(3, 15, 33, 0.98) 100%
            ),
            url("https://webproject.lnu.edu.ua/wp-content/uploads/2026/07/idealab.png");

        background-position: 68% center;
    }

    .idealab-shell {
        width: min(100% - 34px, 760px);
    }

    .idealab-header {
        grid-template-columns: 1fr auto;
        min-height: 92px;
    }

    .idealab-brand__mark {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .idealab-brand__mark span {
        width: 7px;
        height: 7px;

        transform:
            translate(-50%, -50%)
            rotate(var(--angle))
            translateY(-21px);
    }

    .idealab-brand__mark::before {
        inset: 9px;
    }

    .idealab-brand__mark::after {
        inset: 17px;
    }

    .idealab-brand__text {
        font-size: 15px;
    }

    .idealab-nav,
    .idealab-language {
        display: none;
    }

    .idealab-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        width: 46px;
        height: 46px;
        padding: 11px;

        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
    }

    .idealab-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;

        background: #ffffff;
        border-radius: 999px;
    }

    .idealab-hero__content {
        min-height: 610px;
        max-width: 620px;

        padding: 68px 0 82px;
    }

    .idealab-hero h1 {
        font-size: clamp(42px, 9vw, 64px);
    }

    .idealab-hero__description {
        font-size: 18px;
    }

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

@media (max-width: 560px) {

    .idealab-shell {
        width: min(100% - 28px, 520px);
    }

    .idealab-header {
        min-height: 82px;
    }

    .idealab-brand {
        gap: 11px;
    }

    .idealab-brand__mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .idealab-brand__mark span {
        width: 6px;
        height: 6px;

        transform:
            translate(-50%, -50%)
            rotate(var(--angle))
            translateY(-18px);
    }

    .idealab-brand__text {
        font-size: 13px;
    }

    .idealab-hero__content {
        min-height: 560px;
        padding: 58px 0 68px;
    }

    .idealab-eyebrow {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .idealab-hero h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1.06;
    }

    .idealab-accent-line {
        width: 130px;
        margin: 22px 0 20px;
    }

    .idealab-hero__description {
        font-size: 16px;
        line-height: 1.55;
    }

    .idealab-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 28px;
    }

    .idealab-button {
        width: 100%;
        min-height: 56px;
        padding: 14px 22px;
        border-radius: 14px;
    }

    .idealab-impact {
        padding: 34px 0 42px;
    }

    .idealab-impact__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .idealab-stat {
        grid-template-columns: 44px 1fr;
        padding-bottom: 24px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .idealab-stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .idealab-stat__number {
        font-size: 40px;
    }

    .idealab-stat__label {
        margin-top: 8px;
        font-size: 16px;
    }
}


/* IDEALAB HERO V1.1 START */

/**
 * Hero refinements:
 * - modern sans-serif heading;
 * - neutral white brand and language switcher;
 * - slightly reduced desktop hero height;
 * - improved first-screen composition.
 */

body.page-id-2942 .idealab-brand,
body.page-id-2943 .idealab-brand,
body.page-id-2942 .idealab-brand:visited,
body.page-id-2943 .idealab-brand:visited {
    color: #ffffff !important;
}

body.page-id-2942 .idealab-brand__text,
body.page-id-2943 .idealab-brand__text {
    color: #ffffff !important;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    font-weight: 500 !important;
}

body.page-id-2942 .idealab-language,
body.page-id-2943 .idealab-language,
body.page-id-2942 .idealab-language:visited,
body.page-id-2943 .idealab-language:visited {
    color: rgba(255, 255, 255, 0.92) !important;
}

body.page-id-2942 .idealab-nav a,
body.page-id-2943 .idealab-nav a,
body.page-id-2942 .idealab-nav a:visited,
body.page-id-2943 .idealab-nav a:visited {
    color: rgba(255, 255, 255, 0.92) !important;
}

body.page-id-2942 .idealab-nav a:hover,
body.page-id-2943 .idealab-nav a:hover,
body.page-id-2942 .idealab-language:hover,
body.page-id-2943 .idealab-language:hover {
    color: #73aaff !important;
}

body.page-id-2942 .idealab-hero h1,
body.page-id-2943 .idealab-hero h1 {
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(52px, 4.5vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
    text-transform: none !important;
}

body.page-id-2942 .idealab-hero,
body.page-id-2943 .idealab-hero {
    min-height: 730px;
}

body.page-id-2942 .idealab-header,
body.page-id-2943 .idealab-header {
    min-height: 112px;
}

body.page-id-2942 .idealab-hero__content,
body.page-id-2943 .idealab-hero__content {
    min-height: 560px;
    padding-top: 58px;
    padding-bottom: 76px;
}

body.page-id-2942 .idealab-eyebrow,
body.page-id-2943 .idealab-eyebrow {
    color: #73aaff !important;
}

body.page-id-2942 .idealab-button,
body.page-id-2943 .idealab-button,
body.page-id-2942 .idealab-button:visited,
body.page-id-2943 .idealab-button:visited {
    color: #ffffff !important;
}

@media (max-width: 1199px) {

    body.page-id-2942 .idealab-hero,
    body.page-id-2943 .idealab-hero {
        min-height: 700px;
    }

    body.page-id-2942 .idealab-header,
    body.page-id-2943 .idealab-header {
        min-height: 102px;
    }

    body.page-id-2942 .idealab-hero__content,
    body.page-id-2943 .idealab-hero__content {
        min-height: 540px;
        padding-top: 52px;
        padding-bottom: 70px;
    }
}

@media (max-width: 900px) {

    body.page-id-2942 .idealab-hero,
    body.page-id-2943 .idealab-hero {
        min-height: auto;
    }

    body.page-id-2942 .idealab-hero h1,
    body.page-id-2943 .idealab-hero h1 {
        font-size: clamp(40px, 9vw, 58px) !important;
        line-height: 1.08 !important;
    }
}

@media (max-width: 560px) {

    body.page-id-2942 .idealab-hero h1,
    body.page-id-2943 .idealab-hero h1 {
        font-size: clamp(36px, 10.5vw, 46px) !important;
        letter-spacing: -0.035em !important;
    }
}

/* IDEALAB HERO V1.1 END */


/* IDEALAB WHAT WE DO V1 START */

/* ==========================================================
   WHAT WE DO
   ========================================================== */

.idealab-what-we-do {
    position: relative;
    overflow: hidden;

    padding: 108px 0 118px;

    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(78, 145, 249, 0.12),
            transparent 30%
        ),
        #f5f8fc;

    color: #12243c;
}

.idealab-what-we-do::before {
    content: "";
    position: absolute;
    top: 72px;
    right: -110px;

    width: 330px;
    height: 330px;

    border: 1px solid rgba(67, 133, 226, 0.14);
    border-radius: 50%;
}

.idealab-section-heading {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto 58px;

    text-align: center;
}

.idealab-section-heading__eyebrow {
    margin: 0 0 16px;

    color: #367fdc;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-section-heading h2 {
    margin: 0;

    color: #10233d;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.idealab-section-heading p {
    max-width: 780px;
    margin: 22px auto 0;

    color: #607089;
    font-size: 19px;
    line-height: 1.65;
}

.idealab-services-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.idealab-service-card {
    position: relative;
    overflow: hidden;

    min-height: 300px;
    padding: 38px 34px 34px;

    background: #ffffff;
    border: 1px solid rgba(25, 70, 128, 0.08);
    border-radius: 24px;

    box-shadow:
        0 18px 48px rgba(19, 48, 86, 0.08);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.idealab-service-card::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -82px;

    width: 180px;
    height: 180px;

    border-radius: 50%;
    background: rgba(78, 145, 249, 0.065);

    transition:
        transform 260ms ease,
        background-color 260ms ease;
}

.idealab-service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(54, 127, 220, 0.2);

    box-shadow:
        0 26px 62px rgba(19, 48, 86, 0.14);
}

.idealab-service-card:hover::after {
    transform: scale(1.2);
    background: rgba(78, 145, 249, 0.1);
}

.idealab-service-card__icon {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;
    margin-bottom: 26px;

    color: #367fdc;
    background:
        linear-gradient(
            135deg,
            rgba(78, 145, 249, 0.16),
            rgba(107, 180, 255, 0.08)
        );

    border-radius: 18px;
}

.idealab-service-card__icon svg {
    width: 32px;
    height: 32px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-service-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 15px;

    color: #10233d;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.018em;
}

.idealab-service-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

.idealab-service-card__number {
    position: absolute;
    top: 28px;
    right: 30px;
    z-index: 1;

    color: rgba(40, 105, 195, 0.09);
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 1100px) {

    .idealab-what-we-do {
        padding: 88px 0 96px;
    }

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

@media (max-width: 680px) {

    .idealab-what-we-do {
        padding: 70px 0 76px;
    }

    .idealab-section-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .idealab-section-heading h2 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .idealab-section-heading p {
        margin-top: 18px;
        font-size: 17px;
    }

    .idealab-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .idealab-service-card {
        min-height: 0;
        padding: 30px 26px 28px;
        border-radius: 20px;
    }

    .idealab-service-card__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
    }

    .idealab-service-card h3 {
        font-size: 21px;
    }
}

/* IDEALAB WHAT WE DO V1 END */


/* IDEALAB MOBILE UX V1 START */

/* ==========================================================
   MOBILE MENU
   ========================================================== */

@media (max-width: 900px) {

    body.idealab-mobile-menu-open {
        overflow: hidden;
    }

    .idealab-header {
        position: relative;
        z-index: 20;
    }

    .idealab-menu-toggle {
        position: relative;
        z-index: 24;

        cursor: pointer;
        appearance: none;

        transition:
            background-color 180ms ease,
            border-color 180ms ease;
    }

    .idealab-menu-toggle:hover,
    .idealab-menu-toggle:focus {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.32);
    }

    .idealab-menu-toggle span {
        transition:
            transform 180ms ease,
            opacity 180ms ease;
        transform-origin: center;
    }

    .idealab-header--menu-open
    .idealab-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .idealab-header--menu-open
    .idealab-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .idealab-header--menu-open
    .idealab-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .idealab-header--menu-open .idealab-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 22;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;

        padding: 18px;

        background:
            linear-gradient(
                180deg,
                rgba(5, 20, 39, 0.99),
                rgba(5, 23, 46, 0.99)
            );

        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 0;
        border-radius: 0 0 18px 18px;

        box-shadow:
            0 24px 48px rgba(0, 0, 0, 0.32);

        backdrop-filter: blur(16px);
    }

    .idealab-header--menu-open .idealab-nav a {
        display: flex;
        align-items: center;

        min-height: 50px;
        padding: 10px 14px;

        color: rgba(255, 255, 255, 0.94) !important;
        font-size: 16px;
        font-weight: 600;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .idealab-header--menu-open .idealab-nav a:last-child {
        border-bottom: 0;
    }

    .idealab-header--menu-open .idealab-nav a:hover,
    .idealab-header--menu-open .idealab-nav a:focus {
        color: #73aaff !important;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .idealab-header--menu-open .idealab-language {
        position: absolute;
        top: calc(100% + 384px);
        right: 18px;
        z-index: 23;

        display: inline-flex;

        min-height: 42px;
        padding: 9px 14px;

        color: #ffffff !important;
        background: rgba(78, 145, 249, 0.18);

        border: 1px solid rgba(115, 170, 255, 0.32);
        border-radius: 11px;
    }
}

/* ==========================================================
   MOBILE IMPACT CARDS
   ========================================================== */

@media (max-width: 560px) {

    .idealab-impact {
        padding: 30px 0 34px;
    }

    .idealab-impact__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .idealab-stat {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;

        min-height: 154px;
        padding: 20px 17px;

        background:
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.055),
                rgba(255, 255, 255, 0.015)
            );

        border:
            1px solid rgba(115, 170, 255, 0.12);
        border-radius: 16px;
    }

    .idealab-stat:last-child {
        grid-column: 1 / -1;

        min-height: 124px;

        display: grid;
        grid-template-columns: 48px 1fr;
        align-items: center;
        column-gap: 17px;

        padding: 20px 22px;
    }

    .idealab-stat__icon {
        padding-top: 0;
    }

    .idealab-stat__icon svg {
        width: 31px;
        height: 31px;
    }

    .idealab-stat__number {
        font-size: 36px;
        letter-spacing: -0.035em;
    }

    .idealab-stat__label {
        margin-top: 7px;

        font-size: 14px;
        line-height: 1.35;
    }

    .idealab-stat:last-child .idealab-stat__number {
        font-size: 39px;
    }
}

@media (max-width: 370px) {

    .idealab-impact__grid {
        grid-template-columns: 1fr;
    }

    .idealab-stat,
    .idealab-stat:last-child {
        grid-column: auto;

        display: grid;
        grid-template-columns: 43px 1fr;
        align-items: center;
        gap: 14px;

        min-height: 112px;
    }
}

/* IDEALAB MOBILE UX V1 END */


/* IDEALAB EXPERTISE V1 START */

/* ==========================================================
   EXPERTISE
   ========================================================== */

.idealab-expertise {
    position: relative;
    overflow: hidden;

    padding: 112px 0 120px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(66, 137, 238, 0.17),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(58, 116, 204, 0.13),
            transparent 28%
        ),
        #07182d;

    color: #ffffff;
}

.idealab-expertise::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;

    width: 460px;
    height: 460px;

    border: 1px solid rgba(112, 171, 255, 0.12);
    border-radius: 50%;
}

.idealab-expertise__heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: end;
    gap: 64px;

    margin-bottom: 62px;
}

.idealab-expertise__heading-main p {
    margin: 0 0 16px;

    color: #73aaff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-expertise__heading h2 {
    margin: 0;

    color: #ffffff;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(42px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.idealab-expertise__intro {
    margin: 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: 19px;
    line-height: 1.65;
}

.idealab-expertise-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.idealab-expertise-card {
    position: relative;
    overflow: hidden;

    min-height: 248px;
    padding: 28px 26px 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid rgba(125, 177, 255, 0.14);
    border-radius: 22px;

    backdrop-filter: blur(8px);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease;
}

.idealab-expertise-card:hover {
    transform: translateY(-7px);

    border-color: rgba(115, 170, 255, 0.4);

    background:
        linear-gradient(
            145deg,
            rgba(78, 145, 249, 0.18),
            rgba(255, 255, 255, 0.035)
        );
}

.idealab-expertise-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 30px;
}

.idealab-expertise-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    color: #73aaff;
    background: rgba(78, 145, 249, 0.13);

    border: 1px solid rgba(115, 170, 255, 0.18);
    border-radius: 16px;
}

.idealab-expertise-card__icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-expertise-card__index {
    color: rgba(255, 255, 255, 0.2);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.idealab-expertise-card h3 {
    margin: 0 0 13px;

    color: #ffffff;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.018em;
}

.idealab-expertise-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.58;
}

@media (max-width: 1199px) {

    .idealab-expertise {
        padding: 94px 0 102px;
    }

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

@media (max-width: 760px) {

    .idealab-expertise {
        padding: 72px 0 78px;
    }

    .idealab-expertise__heading {
        grid-template-columns: 1fr;
        gap: 22px;

        margin-bottom: 42px;
    }

    .idealab-expertise__heading h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .idealab-expertise__intro {
        font-size: 17px;
    }
}

@media (max-width: 560px) {

    .idealab-expertise-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .idealab-expertise-card {
        min-height: 0;
        padding: 24px 22px 23px;
        border-radius: 18px;
    }

    .idealab-expertise-card__top {
        margin-bottom: 22px;
    }

    .idealab-expertise-card__icon {
        width: 52px;
        height: 52px;
    }

    .idealab-expertise-card h3 {
        font-size: 20px;
    }
}

/* IDEALAB EXPERTISE V1 END */


/* IDEALAB PROJECTS V1 START */

/* ==========================================================
   FEATURED PROJECTS
   ========================================================== */

.idealab-projects {
    position: relative;
    overflow: hidden;

    padding: 112px 0 122px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(78, 145, 249, 0.13),
            transparent 30%
        ),
        #f5f8fc;

    color: #10233d;
}

.idealab-projects::before {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -220px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(54, 127, 220, 0.11);
    border-radius: 50%;
}

.idealab-projects__heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    align-items: end;
    gap: 70px;

    margin-bottom: 60px;
}

.idealab-projects__heading-main p {
    margin: 0 0 16px;

    color: #367fdc;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-projects__heading h2 {
    margin: 0;

    color: #10233d;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(42px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.idealab-projects__intro {
    margin: 0;

    color: #64748b;
    font-size: 19px;
    line-height: 1.65;
}

.idealab-projects-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.idealab-project-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-height: 430px;

    background: #ffffff;
    border: 1px solid rgba(28, 76, 139, 0.09);
    border-radius: 25px;

    box-shadow:
        0 20px 54px rgba(18, 52, 95, 0.09);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.idealab-project-card:hover {
    transform: translateY(-8px);

    border-color: rgba(54, 127, 220, 0.22);

    box-shadow:
        0 28px 66px rgba(18, 52, 95, 0.15);
}

.idealab-project-card__visual {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 180px;
    padding: 26px 28px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0b2b55 0%,
            #164b87 54%,
            #347fd9 100%
        );
}

.idealab-project-card:nth-child(2)
.idealab-project-card__visual {
    background:
        linear-gradient(
            135deg,
            #122a56,
            #2955a0,
            #4e91f9
        );
}

.idealab-project-card:nth-child(3)
.idealab-project-card__visual {
    background:
        linear-gradient(
            135deg,
            #092d44,
            #12637a,
            #35a8b4
        );
}

.idealab-project-card:nth-child(4)
.idealab-project-card__visual {
    background:
        linear-gradient(
            135deg,
            #31245d,
            #574398,
            #8572dd
        );
}

.idealab-project-card:nth-child(5)
.idealab-project-card__visual {
    background:
        linear-gradient(
            135deg,
            #17354a,
            #28657d,
            #4aa6bd
        );
}

.idealab-project-card:nth-child(6)
.idealab-project-card__visual {
    background:
        linear-gradient(
            135deg,
            #233246,
            #445b78,
            #6c88a7
        );
}

.idealab-project-card__visual::before {
    content: "";
    position: absolute;
    top: -72px;
    right: -62px;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.idealab-project-card__visual::after {
    content: "";
    position: absolute;
    right: 36px;
    bottom: -55px;

    width: 120px;
    height: 120px;

    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.idealab-project-card__meta {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.idealab-project-card__programme {
    display: inline-flex;
    align-items: center;

    min-height: 32px;
    padding: 7px 12px;

    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.11);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.idealab-project-card__years {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
}

.idealab-project-card__code {
    position: relative;
    z-index: 2;

    display: block;

    margin-top: 30px;

    color: #ffffff;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(35px, 3vw, 48px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
}

.idealab-project-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 29px 28px 28px;
}

.idealab-project-card h3 {
    margin: 0 0 15px;

    color: #10233d;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: 21px;
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: -0.02em;
}

.idealab-project-card__description {
    margin: 0;

    color: #64748b;
    font-size: 15px;
    line-height: 1.62;
}

.idealab-project-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: auto;
    padding-top: 26px;
}

.idealab-project-card__role {
    color: #367fdc;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.idealab-project-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    color: #367fdc;
    background: rgba(54, 127, 220, 0.09);

    border-radius: 50%;

    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.idealab-project-card:hover
.idealab-project-card__arrow {
    transform: translateX(3px);
    background: rgba(54, 127, 220, 0.16);
}

.idealab-project-card__arrow svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-projects__actions {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;

    margin-top: 48px;
}

.idealab-projects__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 58px;
    padding: 15px 30px;

    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            #367fdc,
            #5a9cf6
        );

    border-radius: 16px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow:
        0 16px 32px rgba(54, 127, 220, 0.2);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.idealab-projects__button:hover {
    color: #ffffff !important;
    transform: translateY(-2px);

    box-shadow:
        0 20px 38px rgba(54, 127, 220, 0.28);
}

.idealab-projects__button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {

    .idealab-projects {
        padding: 94px 0 102px;
    }

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

@media (max-width: 760px) {

    .idealab-projects {
        padding: 72px 0 80px;
    }

    .idealab-projects__heading {
        grid-template-columns: 1fr;
        gap: 22px;

        margin-bottom: 42px;
    }

    .idealab-projects__heading h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .idealab-projects__intro {
        font-size: 17px;
    }
}

@media (max-width: 620px) {

    .idealab-projects-grid {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .idealab-project-card {
        min-height: 0;
        border-radius: 20px;
    }

    .idealab-project-card__visual {
        min-height: 158px;
        padding: 22px 23px;
    }

    .idealab-project-card__code {
        margin-top: 25px;
        font-size: 38px;
    }

    .idealab-project-card__body {
        padding: 25px 23px 24px;
    }

    .idealab-project-card h3 {
        font-size: 20px;
    }

    .idealab-projects__actions {
        margin-top: 34px;
    }

    .idealab-projects__button {
        width: 100%;
    }
}

/* IDEALAB PROJECTS V1 END */


/* IDEALAB PARTNERS V1 START */

/* ==========================================================
   PARTNERS & NETWORKS
   ========================================================== */

.idealab-partners {
    position: relative;
    overflow: hidden;

    padding: 106px 0 112px;

    background: #ffffff;
    color: #10233d;
}

.idealab-partners::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -170px;

    width: 420px;
    height: 420px;

    background:
        radial-gradient(
            circle,
            rgba(78, 145, 249, 0.11),
            transparent 68%
        );

    border-radius: 50%;
}

.idealab-partners__heading {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto 58px;

    text-align: center;
}

.idealab-partners__eyebrow {
    margin: 0 0 16px;

    color: #367fdc;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-partners__heading h2 {
    margin: 0;

    color: #10233d;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(42px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.idealab-partners__intro {
    max-width: 760px;
    margin: 22px auto 0;

    color: #64748b;
    font-size: 18px;
    line-height: 1.68;
}

.idealab-partners-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.idealab-partner {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 20px;

    min-height: 126px;
    padding: 25px 26px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7faff
        );

    border: 1px solid rgba(29, 78, 140, 0.09);
    border-radius: 20px;

    box-shadow:
        0 14px 38px rgba(20, 54, 96, 0.065);

    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease;
}

.idealab-partner:hover {
    transform: translateY(-5px);

    border-color: rgba(54, 127, 220, 0.23);

    box-shadow:
        0 22px 48px rgba(20, 54, 96, 0.12);
}

.idealab-partner__mark {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
    flex: 0 0 62px;

    color: #367fdc;
    background:
        linear-gradient(
            145deg,
            rgba(78, 145, 249, 0.16),
            rgba(78, 145, 249, 0.06)
        );

    border: 1px solid rgba(54, 127, 220, 0.13);
    border-radius: 17px;

    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.idealab-partner__mark--eu {
    color: #2547a8;
}

.idealab-partner__mark--network {
    font-size: 21px;
}

.idealab-partner__content {
    min-width: 0;
}

.idealab-partner h3 {
    margin: 0 0 7px;

    color: #10233d;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.idealab-partner p {
    margin: 0;

    color: #718096;
    font-size: 14px;
    line-height: 1.45;
}

.idealab-partners__statement {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(0, 0.75fr);
    align-items: center;
    gap: 44px;

    margin-top: 52px;
    padding: 42px 46px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #092647,
            #164c86 58%,
            #357fd8
        );

    border-radius: 26px;

    box-shadow:
        0 24px 60px rgba(14, 54, 102, 0.18);
}

.idealab-partners__statement::after {
    content: "";
    position: absolute;
    top: -58px;
    right: 40px;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.idealab-partners__statement-content {
    position: relative;
    z-index: 2;
}

.idealab-partners__statement h3 {
    margin: 0 0 13px;

    color: #ffffff;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(27px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.idealab-partners__statement p {
    max-width: 720px;
    margin: 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.62;
}

.idealab-partners__button-wrap {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: flex-end;
}

.idealab-partners__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;
    padding: 15px 25px;

    color: #0d3767 !important;
    background: #ffffff;

    border-radius: 15px;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.16);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.idealab-partners__button:hover {
    color: #0d3767 !important;
    transform: translateY(-2px);

    box-shadow:
        0 20px 38px rgba(0, 0, 0, 0.22);
}

.idealab-partners__button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1000px) {

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

    .idealab-partners__statement {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .idealab-partners__button-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {

    .idealab-partners {
        padding: 72px 0 78px;
    }

    .idealab-partners__heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .idealab-partners__heading h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .idealab-partners__intro {
        margin-top: 18px;
        font-size: 17px;
    }

    .idealab-partners-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .idealab-partner {
        min-height: 105px;
        padding: 20px;

        border-radius: 17px;
    }

    .idealab-partner__mark {
        width: 55px;
        height: 55px;
        flex-basis: 55px;

        border-radius: 15px;
    }

    .idealab-partners__statement {
        margin-top: 36px;
        padding: 31px 26px;

        border-radius: 21px;
    }

    .idealab-partners__button {
        width: 100%;
    }
}

/* IDEALAB PARTNERS V1 END */


/* IDEALAB CONTACT FOOTER V1 START */

/* ==========================================================
   CONTACT
   ========================================================== */

.idealab-contact {
    position: relative;
    overflow: hidden;

    padding: 112px 0 118px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(78, 145, 249, 0.2),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 88%,
            rgba(48, 126, 220, 0.15),
            transparent 30%
        ),
        #06172c;

    color: #ffffff;
}

.idealab-contact::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -170px;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(114, 170, 255, 0.13);
    border-radius: 50%;
}

.idealab-contact__layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(340px, 0.95fr);

    align-items: stretch;
    gap: 72px;
}

.idealab-contact__eyebrow {
    margin: 0 0 18px;

    color: #73aaff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-contact h2 {
    max-width: 720px;
    margin: 0;

    color: #ffffff;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(43px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.idealab-contact__intro {
    max-width: 720px;
    margin: 27px 0 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: 19px;
    line-height: 1.68;
}

.idealab-contact__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 36px;
}

.idealab-contact__topic {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 39px;
    padding: 9px 14px;

    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(117, 171, 255, 0.14);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.idealab-contact__topic::before {
    content: "";

    width: 7px;
    height: 7px;

    background: #73aaff;
    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(115, 170, 255, 0.1);
}

.idealab-contact-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 390px;
    padding: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(129, 181, 255, 0.18);
    border-radius: 28px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.24);

    backdrop-filter: blur(12px);
}

.idealab-contact-card::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;

    width: 230px;
    height: 230px;

    background: rgba(78, 145, 249, 0.09);
    border-radius: 50%;
}

.idealab-contact-card__icon {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 66px;
    height: 66px;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #367fdc,
            #69a8ff
        );

    border-radius: 19px;

    box-shadow:
        0 16px 32px rgba(54, 127, 220, 0.28);
}

.idealab-contact-card__icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-contact-card__content {
    position: relative;
    z-index: 2;

    margin-top: 38px;
}

.idealab-contact-card__label {
    display: block;

    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.idealab-contact-card__email {
    display: inline-block;

    max-width: 100%;

    color: #ffffff !important;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(21px, 2.1vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    text-decoration: none;

    overflow-wrap: anywhere;
}

.idealab-contact-card__email:hover {
    color: #91bdff !important;
}

.idealab-contact-card__note {
    margin: 16px 0 0;

    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.55;
}

.idealab-contact-card__button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    width: 100%;
    min-height: 58px;
    margin-top: 34px;
    padding: 15px 24px;

    color: #0d3767 !important;
    background: #ffffff;

    border-radius: 16px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.18);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.idealab-contact-card__button:hover {
    color: #0d3767 !important;
    transform: translateY(-2px);

    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.25);
}

.idealab-contact-card__button svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.idealab-footer {
    position: relative;

    background: #03101f;
    color: #ffffff;

    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.idealab-footer__main {
    display: grid;
    grid-template-columns:
        minmax(250px, 1.15fr)
        minmax(150px, 0.55fr)
        minmax(180px, 0.65fr)
        minmax(220px, 0.8fr);

    gap: 52px;

    padding-top: 70px;
    padding-bottom: 58px;
}

.idealab-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    color: #ffffff !important;
    text-decoration: none;
}

.idealab-footer__brand-mark {
    position: relative;

    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.idealab-footer__brand-mark span {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 23px;
    height: 5px;

    background: #ffffff;
    border-radius: 999px;

    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateX(10px);
    transform-origin: 0 50%;
}

.idealab-footer__brand-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.idealab-footer__description {
    max-width: 350px;
    margin: 23px 0 0;

    color: rgba(255, 255, 255, 0.56);
    font-size: 15px;
    line-height: 1.65;
}

.idealab-footer h3 {
    margin: 0 0 21px;

    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.idealab-footer__links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.idealab-footer__links a {
    color: rgba(255, 255, 255, 0.61) !important;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

.idealab-footer__links a:hover {
    color: #8bb9ff !important;
    transform: translateX(3px);
}

.idealab-footer__email {
    display: inline-block;

    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 15px;
    line-height: 1.55;
    text-decoration: none;

    overflow-wrap: anywhere;
}

.idealab-footer__email:hover {
    color: #8bb9ff !important;
}

.idealab-footer__small-text {
    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    line-height: 1.55;
}

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

    padding-top: 24px;
    padding-bottom: 27px;

    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.idealab-footer__copyright,
.idealab-footer__tagline {
    margin: 0;

    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    line-height: 1.5;
}

.idealab-footer__tagline {
    text-align: right;
}

@media (max-width: 1060px) {

    .idealab-contact__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .idealab-contact-card {
        min-height: 0;
    }

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

@media (max-width: 680px) {

    .idealab-contact {
        padding: 74px 0 78px;
    }

    .idealab-contact__layout {
        gap: 38px;
    }

    .idealab-contact h2 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .idealab-contact__intro {
        margin-top: 21px;
        font-size: 17px;
    }

    .idealab-contact__topics {
        margin-top: 28px;
    }

    .idealab-contact-card {
        padding: 29px 25px;

        border-radius: 22px;
    }

    .idealab-contact-card__icon {
        width: 58px;
        height: 58px;

        border-radius: 17px;
    }

    .idealab-contact-card__content {
        margin-top: 30px;
    }

    .idealab-contact-card__email {
        font-size: 22px;
    }

    .idealab-footer__main {
        grid-template-columns: 1fr;
        gap: 38px;

        padding-top: 54px;
        padding-bottom: 45px;
    }

    .idealab-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .idealab-footer__tagline {
        text-align: left;
    }
}

/* IDEALAB CONTACT FOOTER V1 END */


/* IDEALAB INNOVATION SERVICES V1 START */

/* ==========================================================
   INNOVATION SERVICES
   ========================================================== */

.idealab-innovation-services {
    position: relative;
    overflow: hidden;

    padding: 112px 0 120px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(32, 196, 176, 0.18),
            transparent 29%
        ),
        radial-gradient(
            circle at 92% 92%,
            rgba(240, 145, 61, 0.15),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #071b32 0%,
            #0b2d50 52%,
            #123f6c 100%
        );
}

.idealab-innovation-services::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -150px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.idealab-innovation-services::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -170px;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(47, 204, 186, 0.11);
    border-radius: 50%;
}

.idealab-innovation-services__heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    align-items: end;
    gap: 72px;

    margin-bottom: 58px;
}

.idealab-innovation-services__eyebrow {
    margin: 0 0 17px;

    color: #55d7c8;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-innovation-services h2 {
    margin: 0;

    color: #ffffff;

    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(42px, 4.2vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.idealab-innovation-services__intro {
    max-width: 720px;
    margin: 0;

    color: rgba(255, 255, 255, 0.69);
    font-size: 18px;
    line-height: 1.7;
}

.idealab-innovation-services__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.idealab-innovation-service {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-height: 330px;
    padding: 31px 30px 29px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.105),
            rgba(255, 255, 255, 0.045)
        );

    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 24px;

    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.16);

    backdrop-filter: blur(10px);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease;
}

.idealab-innovation-service:nth-child(1),
.idealab-innovation-service:nth-child(2) {
    grid-column: span 3;
}

.idealab-innovation-service:nth-child(n + 3) {
    grid-column: span 2;
}

.idealab-innovation-service:hover {
    transform: translateY(-7px);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.06)
        );

    border-color: rgba(85, 215, 200, 0.32);

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.24);
}

.idealab-innovation-service::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -66px;

    width: 160px;
    height: 160px;

    background: rgba(85, 215, 200, 0.055);
    border-radius: 50%;

    transition:
        transform 240ms ease,
        background-color 240ms ease;
}

.idealab-innovation-service:nth-child(2)::after,
.idealab-innovation-service:nth-child(5)::after {
    background: rgba(240, 145, 61, 0.07);
}

.idealab-innovation-service:hover::after {
    transform: scale(1.14);
}

.idealab-innovation-service__top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.idealab-innovation-service__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
    flex: 0 0 62px;

    color: #65dfd1;

    background:
        linear-gradient(
            145deg,
            rgba(85, 215, 200, 0.19),
            rgba(85, 215, 200, 0.06)
        );

    border: 1px solid rgba(85, 215, 200, 0.22);
    border-radius: 18px;
}

.idealab-innovation-service:nth-child(2)
.idealab-innovation-service__icon,
.idealab-innovation-service:nth-child(5)
.idealab-innovation-service__icon {
    color: #ffad65;

    background:
        linear-gradient(
            145deg,
            rgba(240, 145, 61, 0.2),
            rgba(240, 145, 61, 0.06)
        );

    border-color: rgba(240, 145, 61, 0.22);
}

.idealab-innovation-service__icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-innovation-service__number {
    color: rgba(255, 255, 255, 0.22);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
}

.idealab-innovation-service__content {
    position: relative;
    z-index: 2;

    display: flex;
    flex: 1;
    flex-direction: column;

    margin-top: 31px;
}

.idealab-innovation-service h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.025em;
}

.idealab-innovation-service p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.66;
}

.idealab-innovation-service__tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;

    margin-top: auto;
    padding-top: 25px;

    color: #65dfd1;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.idealab-innovation-service:nth-child(2)
.idealab-innovation-service__tag,
.idealab-innovation-service:nth-child(5)
.idealab-innovation-service__tag {
    color: #ffad65;
}

.idealab-innovation-service__tag::before {
    content: "";

    width: 18px;
    height: 1px;

    background: currentColor;
}

.idealab-innovation-services__cta {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;

    margin-top: 44px;
    padding: 28px 31px;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.idealab-innovation-services__cta p {
    max-width: 760px;
    margin: 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.idealab-innovation-services__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 54px;
    padding: 14px 24px;
    flex: 0 0 auto;

    color: #07334b !important;
    background:
        linear-gradient(
            135deg,
            #55d7c8,
            #8de9dd
        );

    border-radius: 15px;

    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;

    box-shadow:
        0 15px 32px rgba(37, 190, 173, 0.18);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.idealab-innovation-services__button:hover {
    color: #07334b !important;
    transform: translateY(-2px);

    box-shadow:
        0 20px 38px rgba(37, 190, 173, 0.26);
}

.idealab-innovation-services__button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1050px) {

    .idealab-innovation-services {
        padding: 94px 0 102px;
    }

    .idealab-innovation-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .idealab-innovation-service:nth-child(n) {
        grid-column: span 1;
    }

    .idealab-innovation-service:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {

    .idealab-innovation-services {
        padding: 74px 0 80px;
    }

    .idealab-innovation-services__heading {
        grid-template-columns: 1fr;
        gap: 22px;

        margin-bottom: 40px;
    }

    .idealab-innovation-services h2 {
        font-size: clamp(37px, 10.5vw, 49px);
    }

    .idealab-innovation-services__intro {
        font-size: 17px;
    }

    .idealab-innovation-services__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {

    .idealab-innovation-services__grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .idealab-innovation-service:nth-child(n),
    .idealab-innovation-service:last-child {
        grid-column: auto;
    }

    .idealab-innovation-service {
        min-height: 0;
        padding: 25px 23px 24px;

        border-radius: 20px;
    }

    .idealab-innovation-service__icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;

        border-radius: 16px;
    }

    .idealab-innovation-service__content {
        margin-top: 25px;
    }

    .idealab-innovation-service h3 {
        font-size: 20px;
    }

    .idealab-innovation-services__cta {
        margin-top: 30px;
        padding: 25px 23px;

        border-radius: 18px;
    }

    .idealab-innovation-services__button {
        width: 100%;
    }
}

/* IDEALAB INNOVATION SERVICES V1 END */


/* IDEALAB INNOVATION ECOSYSTEM V1 START */

/* ==========================================================
   INNOVATION ECOSYSTEM
   ========================================================== */

.idealab-ecosystem {
    position: relative;
    overflow: hidden;

    padding: 112px 0 122px;

    background:
        radial-gradient(
            circle at 50% 44%,
            rgba(69, 145, 238, 0.09),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 100%
        );
}

.idealab-ecosystem::before {
    content: "";
    position: absolute;
    top: 70px;
    left: -150px;

    width: 360px;
    height: 360px;

    background: rgba(69, 145, 238, 0.045);
    border-radius: 50%;
}

.idealab-ecosystem::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -130px;

    width: 390px;
    height: 390px;

    background: rgba(39, 190, 170, 0.045);
    border-radius: 50%;
}

.idealab-ecosystem__heading {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto 68px;

    text-align: center;
}

.idealab-ecosystem__eyebrow {
    margin: 0 0 16px;

    color: #257a9c;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.idealab-ecosystem h2 {
    margin: 0;

    color: #09243f;

    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;

    font-size: clamp(42px, 4.4vw, 64px);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.idealab-ecosystem__intro {
    max-width: 760px;
    margin: 24px auto 0;

    color: #597088;
    font-size: 18px;
    line-height: 1.72;
}

.idealab-ecosystem__map {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-areas:
        ". universities ."
        "research centre business"
        "government . society";
    grid-template-columns:
        minmax(230px, 1fr)
        minmax(300px, 1.15fr)
        minmax(230px, 1fr);
    align-items: center;
    gap: 38px 48px;

    min-height: 680px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 32px;
}

.idealab-ecosystem__connections {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.idealab-ecosystem__connections line {
    stroke: rgba(42, 117, 166, 0.24);
    stroke-width: 1.4;
    stroke-dasharray: 5 6;
}

.idealab-ecosystem__connections circle {
    fill: #2f9db3;
    opacity: 0.72;
}

.idealab-ecosystem__node,
.idealab-ecosystem__centre {
    position: relative;
    z-index: 2;
}

.idealab-ecosystem__node {
    min-height: 190px;
    padding: 26px 25px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(20, 75, 119, 0.11);
    border-radius: 23px;

    box-shadow:
        0 20px 50px rgba(18, 63, 101, 0.1);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.idealab-ecosystem__node:hover {
    transform: translateY(-6px);

    border-color: rgba(42, 151, 177, 0.27);

    box-shadow:
        0 28px 62px rgba(18, 63, 101, 0.15);
}

.idealab-ecosystem__node--universities {
    grid-area: universities;
}

.idealab-ecosystem__node--research {
    grid-area: research;
}

.idealab-ecosystem__node--business {
    grid-area: business;
}

.idealab-ecosystem__node--government {
    grid-area: government;
}

.idealab-ecosystem__node--society {
    grid-area: society;
}

.idealab-ecosystem__node-top {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 18px;
}

.idealab-ecosystem__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    color: #287e9c;

    background:
        linear-gradient(
            145deg,
            rgba(46, 159, 179, 0.14),
            rgba(69, 145, 238, 0.07)
        );

    border: 1px solid rgba(46, 159, 179, 0.18);
    border-radius: 16px;
}

.idealab-ecosystem__node--business
.idealab-ecosystem__icon {
    color: #dc7c2c;

    background:
        linear-gradient(
            145deg,
            rgba(240, 145, 61, 0.16),
            rgba(240, 145, 61, 0.055)
        );

    border-color: rgba(240, 145, 61, 0.19);
}

.idealab-ecosystem__node--government
.idealab-ecosystem__icon {
    color: #396fba;
}

.idealab-ecosystem__node--society
.idealab-ecosystem__icon {
    color: #178f82;
}

.idealab-ecosystem__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-ecosystem__node h3 {
    margin: 0;

    color: #0c2c49;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.idealab-ecosystem__node p {
    margin: 0;

    color: #60778d;
    font-size: 15px;
    line-height: 1.65;
}

.idealab-ecosystem__centre {
    grid-area: centre;

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

    min-height: 305px;
}

.idealab-ecosystem__centre-card {
    position: relative;
    overflow: hidden;

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

    width: 292px;
    height: 292px;
    padding: 34px;

    color: #ffffff;
    text-align: center;

    background:
        radial-gradient(
            circle at 34% 22%,
            rgba(92, 179, 255, 0.3),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #071b32,
            #0b355d 60%,
            #104d73
        );

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;

    box-shadow:
        0 34px 75px rgba(8, 44, 77, 0.29),
        0 0 0 15px rgba(37, 130, 163, 0.055),
        0 0 0 31px rgba(37, 130, 163, 0.028);
}

.idealab-ecosystem__centre-card::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 35px;

    width: 65px;
    height: 65px;

    border: 1px solid rgba(102, 220, 207, 0.23);
    border-radius: 50%;
}

.idealab-ecosystem__centre-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 74px;
    height: 74px;
    margin-bottom: 21px;

    color: #75e3d5;

    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.idealab-ecosystem__centre-mark svg {
    width: 38px;
    height: 38px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.idealab-ecosystem__centre-card strong {
    display: block;

    max-width: 210px;

    font-size: 28px;
    font-weight: 760;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.idealab-ecosystem__centre-card span {
    display: block;

    margin-top: 13px;

    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.idealab-ecosystem__footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;

    max-width: 1040px;
    margin: 55px auto 0;
    padding: 29px 31px;

    background: #0a2947;
    border-radius: 21px;

    box-shadow:
        0 22px 55px rgba(9, 42, 73, 0.16);
}

.idealab-ecosystem__footer p {
    max-width: 730px;
    margin: 0;

    color: rgba(255, 255, 255, 0.73);
    font-size: 16px;
    line-height: 1.65;
}

.idealab-ecosystem__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 52px;
    padding: 14px 23px;
    flex: 0 0 auto;

    color: #082d42 !important;
    background:
        linear-gradient(
            135deg,
            #58d9ca,
            #98ecdf
        );

    border-radius: 14px;

    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.idealab-ecosystem__button:hover {
    color: #082d42 !important;

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(39, 190, 170, 0.22);
}

.idealab-ecosystem__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1080px) {

    .idealab-ecosystem {
        padding: 94px 0 102px;
    }

    .idealab-ecosystem__map {
        grid-template-areas:
            "universities universities"
            "research business"
            "centre centre"
            "government society";
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 22px;

        min-height: auto;
        padding: 0;
    }

    .idealab-ecosystem__connections {
        display: none;
    }

    .idealab-ecosystem__node {
        min-height: 185px;
    }

    .idealab-ecosystem__centre {
        min-height: 340px;
    }
}

@media (max-width: 720px) {

    .idealab-ecosystem {
        padding: 74px 0 82px;
    }

    .idealab-ecosystem__heading {
        margin-bottom: 44px;

        text-align: left;
    }

    .idealab-ecosystem h2 {
        font-size: clamp(37px, 10vw, 49px);
    }

    .idealab-ecosystem__intro {
        margin-left: 0;
        margin-right: 0;

        font-size: 17px;
    }

    .idealab-ecosystem__map {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .idealab-ecosystem__centre {
        order: -1;

        width: 100%;
        min-height: auto;
        padding: 17px 0 27px;
    }

    .idealab-ecosystem__centre-card {
        width: 248px;
        height: 248px;
        padding: 29px;
    }

    .idealab-ecosystem__centre-card strong {
        font-size: 24px;
    }

    .idealab-ecosystem__node {
        width: 100%;
        min-height: 0;
        padding: 24px 22px;

        border-radius: 19px;
    }

    .idealab-ecosystem__footer {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 32px;
        padding: 25px 23px;
    }

    .idealab-ecosystem__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .idealab-ecosystem__node,
    .idealab-ecosystem__button {
        transition: none;
    }

    .idealab-ecosystem__node:hover,
    .idealab-ecosystem__button:hover {
        transform: none;
    }
}

/* IDEALAB INNOVATION ECOSYSTEM V1 END */

/* IDEALAB DRAFT HERO PARITY V1 START */

/*
 * Draft-only visual parity for Elementor previews:
 * 2957 — Ukrainian draft;
 * 2958 — English draft.
 *
 * Public pages 2942/2943 are intentionally excluded.
 */

body.page-id-2957 .idealab-hero,
body.page-id-2958 .idealab-hero {
    position: relative;
    min-height: 730px;
    overflow: hidden;
    background-color: var(--idealab-navy);
    background-image:
        linear-gradient(
            90deg,
            rgba(3, 15, 33, 0.98) 0%,
            rgba(3, 15, 33, 0.92) 26%,
            rgba(3, 15, 33, 0.62) 53%,
            rgba(3, 15, 33, 0.18) 78%,
            rgba(3, 15, 33, 0.22) 100%
        ),
        url("https://webproject.lnu.edu.ua/wp-content/uploads/2026/07/idealab.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

body.page-id-2957 .idealab-header,
body.page-id-2958 .idealab-header {
    min-height: 112px;
}

body.page-id-2957 .idealab-hero__content,
body.page-id-2958 .idealab-hero__content {
    min-height: 560px;
    max-width: 670px;
    padding-top: 58px;
    padding-bottom: 76px;
}

body.page-id-2957 .idealab-hero h1,
body.page-id-2958 .idealab-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family:
        Inter,
        Urbanist,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    font-size: clamp(52px, 4.5vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
    text-transform: none !important;
}

@media (max-width: 980px) {
    body.page-id-2957 .idealab-hero,
    body.page-id-2958 .idealab-hero {
        min-height: auto;
        background-image:
            linear-gradient(
                180deg,
                rgba(3, 15, 33, 0.78) 0%,
                rgba(3, 15, 33, 0.92) 62%,
                rgba(3, 15, 33, 0.98) 100%
            ),
            url("https://webproject.lnu.edu.ua/wp-content/uploads/2026/07/idealab.png") !important;
        background-position: 68% center !important;
    }

    body.page-id-2957 .idealab-hero h1,
    body.page-id-2958 .idealab-hero h1 {
        font-size: clamp(40px, 9vw, 58px) !important;
        line-height: 1.08 !important;
    }
}

@media (max-width: 600px) {
    body.page-id-2957 .idealab-hero h1,
    body.page-id-2958 .idealab-hero h1 {
        font-size: clamp(36px, 10.5vw, 46px) !important;
        letter-spacing: -0.035em !important;
    }
}

/* IDEALAB DRAFT HERO PARITY V1 END */

/* IDEALAB DRAFT HTML WIDGET GAPS V1 START */

/*
 * Draft pages contain ten separate Elementor HTML widgets.
 * Their visual sections already control their own spacing.
 * Disable Elementor wrapper spacing only on draft pages.
 */

body.page-id-2957 .elementor-widget-html,
body.page-id-2958 .elementor-widget-html {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.page-id-2957 .elementor-widget-html > .elementor-widget-container,
body.page-id-2958 .elementor-widget-html > .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

body.page-id-2957 .elementor-widget-html + .elementor-widget-html,
body.page-id-2958 .elementor-widget-html + .elementor-widget-html {
    margin-top: 0 !important;
}

body.page-id-2957 .elementor-element-populated > .elementor-widget-html,
body.page-id-2958 .elementor-element-populated > .elementor-widget-html {
    --kit-widget-spacing: 0px;
    --widgets-spacing: 0px;
    --widget-spacing: 0px;
}

/* IDEALAB DRAFT HTML WIDGET GAPS V1 END */


/* IDEALAB NATIVE ELEMENTOR BRIDGE START */
/*
 * Temporary scoped compatibility layer for draft pages 2962/2963.
 * It will be removed after the final Native PHP template replaces
 * the temporary Elementor containers.
 */

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-hero.elementor-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-hero.elementor-section
> .elementor-container {
    width: 100%;
    max-width: none;
    min-height: inherit;
    margin: 0;
    padding: 0;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-hero
.idealab-native-shell.elementor-column {
    width: 100%;
    max-width: none;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-hero
.idealab-native-shell
> .elementor-widget-wrap {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-hero
.idealab-native-shell
> .elementor-widget-wrap
> .elementor-element {
    width: 100%;
    max-width: none;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-hero
.elementor-widget-container {
    margin: 0;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-actions.elementor-inner-section {
    width: auto;
    margin: 0;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-actions
> .elementor-container {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-button-column.elementor-column {
    width: auto;
}

:is(body.page-id-2962, body.page-id-2963)
.idealab-native-button-column
> .elementor-widget-wrap {
    padding: 0;
}

/* IDEALAB NATIVE ELEMENTOR BRIDGE END */

/* IDEALAB NATIVE ECOSYSTEM IMAGE 5D START */

.idealab-ecosystem__image {
    width: min(100%, 1180px);
    margin: clamp(32px, 5vw, 58px) auto 0;
    overflow: hidden;
    border: 1px solid rgba(19, 65, 108, 0.1);
    border-radius: clamp(18px, 2.4vw, 30px);
    background: #f4f8fd;
    box-shadow:
        0 24px 70px rgba(19, 65, 108, 0.12),
        0 8px 24px rgba(19, 65, 108, 0.08);
}

.idealab-ecosystem__image-element {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

@media (max-width: 767px) {
    .idealab-ecosystem__image {
        margin-top: 28px;
        border-radius: 18px;
    }
}

/* IDEALAB NATIVE ECOSYSTEM IMAGE 5D END */
