/* COMMON STYLE */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    --accent: rgb(76, 198, 255);
}

ul{
    padding: 0;
    margin: 0;
}

.wrapper{
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.general-title {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: #07142f;
    position: relative;
}

.general-title.gts-2{
    font-size: 48px;
}

.general-title.gts-center{
    text-align: center;
    margin: 0 auto;
}

.general-title span {
    color: var(--accent);
}

.general-eyebrow{
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.75;
}



/* WINDOW 1 */
.full-window{
    width: 100%;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-window:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #f4f6fd, rgba(255, 255, 255, 0));
}

.hero__container{
    position: absolute;
    z-index: 1;
    opacity: 0;
    transform: translateY(100px);
    visibility: hidden;
    will-change: transform, opacity;
}

.hero__content{
    max-width: 800px;
}

.hero__title{
    font-weight: 300;
    font-size: 50px;
    text-transform: uppercase;
}

.hero__subtitle{
    max-width: 600px;
    margin-top: 15px;
    color: gray;
}

#hero-canvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;

    opacity: 0;
    visibility: hidden;
    will-change: opacity;
}

/* =========================================================
   UAI LABS | HEADER + MAX MEGA MENU
   Замінює попередні стилі Max Mega Menu повністю
   ========================================================= */

/* ---------- HEADER BASE ---------- */

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
    opacity: 0;
    transform: translateY(-70px);
    visibility: hidden;
    will-change: transform, opacity;
    transition: all .3s ease;
}

.site-header.active {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
    padding: 10px 0;
}

.site-header__container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
}

.site-header__details {
    display: flex;
    gap: 45px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.site-header__nav {
    position: static;
}

.site-header__brand {
    display: table;
    position: relative;
}

.site-header__brand svg,
.site-header__brand img {
    width: 100px;
}

/* ---------- MAX MEGA MENU RESET ---------- */

.site-header__nav .mega-menu-wrap {
    position: static !important;
    width: auto !important;
    background: transparent !important;
}

.site-header__nav .mega-menu-wrap .mega-menu-toggle {
    display: none !important;
}

.site-header__nav .mega-menu-wrap ul.mega-menu,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    background: transparent !important;
    width: auto !important;
}

.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item {
    position: static !important;
    list-style: none !important;
    margin: 0 !important;
}

.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item > a.mega-menu-link,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    background: transparent !important;
    border: 0 !important;
    height: auto !important;
    line-height: 1.2 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    color: #8d8d8d !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    transition: all .3s ease !important;
    box-shadow: none !important;
}

.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item > a.mega-menu-link:hover,
.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:hover,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
    color: var(--accent) !important;
    background: transparent !important;
}

.site-header.active .site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item > a.mega-menu-link,
.site-header.active .site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    color: #3f3737 !important;
}

.site-header.active .site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item > a.mega-menu-link:hover,
.site-header.active .site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
.site-header.active .site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:hover,
.site-header.active .site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    color: var(--accent) !important;
}

/* ---------- TOP LEVEL ARROWS ---------- */

.site-header__nav .mega-menu-wrap .mega-indicator {
    margin-left: 6px !important;
    font-size: 10px !important;
    line-height: 1 !important;
}

/* ---------- FULL WIDTH MEGA PANEL ---------- */

.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu {
    position: fixed !important;
    left: 50% !important;
    transform: translate3d(-50%, 0, 0) !important;
    top: 95px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;

    padding: 28px 32px !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;

    background-color: rgba(245, 247, 251, 0.97) !important;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    z-index: 9999 !important;
    isolation: isolate !important;
    will-change: transform, backdrop-filter !important;
    transition: all .3s ease !important;
}

.site-header__nav .mega-menu-wrap ul.mega-menu .mega-block-title{
    color: #555;
    font-size: 12px !important;
    position: relative;
    padding-bottom: 5px !important;
    margin-bottom: 5px !important;
}

.site-header__nav .mega-menu-wrap ul.mega-menu .mega-block-title:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    border-bottom: 1px solid #d7d7d7;
}

/* active header state for mega panel */
.site-header.active .site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu,
.site-header.active .site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu {
    top: 75px !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08) !important;
}

/* ---------- FLYOUT SUBMENU (if any simple dropdown remains) ---------- */

.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-flyout > ul.mega-sub-menu,
.site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-flyout > ul.mega-sub-menu {
    margin-top: 35px !important;
    padding: 16px 18px !important;
    min-width: 240px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    background-color: rgba(245, 247, 251, 0.97) !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06) !important;
    transition: all .3s ease !important;
}

.site-header.active .site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-flyout > ul.mega-sub-menu,
.site-header.active .site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-flyout > ul.mega-sub-menu {
    margin-top: 30px !important;
}

/* ---------- MEGA GRID COLUMNS ---------- */

.site-header__nav .mega-menu-wrap .mega-sub-menu > li.mega-menu-column {
    padding: 0 14px !important;
    box-sizing: border-box !important;
}

.site-header__nav .mega-menu-wrap .mega-sub-menu > li.mega-menu-column:first-child {
    padding-left: 0 !important;
}

.site-header__nav .mega-menu-wrap .mega-sub-menu > li.mega-menu-column:last-child {
    padding-right: 0 !important;
}

/* ---------- WIDGET / COLUMN TITLES ---------- */

.site-header__nav .mega-menu-wrap .mega-sub-menu .widget,
.site-header__nav .mega-menu-wrap .mega-sub-menu .textwidget {
    color: #3f3737 !important;
}



.site-header__nav .mega-menu-wrap .mega-sub-menu .widget h4,
.site-header__nav .mega-menu-wrap .mega-sub-menu .widgettitle,
.site-header__nav .mega-menu-wrap .mega-sub-menu .textwidget strong,
.site-header__nav .mega-menu-wrap .mega-sub-menu .textwidget p strong {
    display: block !important;
    margin: 0 0 18px 0 !important;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.08em !important;
    text-transform: none !important;
    font-weight: 400 !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item{
    padding: 0 15px !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    text-transform: none !important;
    font-weight: 400 !important;
}

/* ---------- MEGA MENU LINKS ---------- */

.site-header__nav .mega-menu-wrap .mega-sub-menu .mega-menu-link {
    background: transparent !important;
    border: 0 !important;
    color: #3f3737 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    padding: 8px 0 !important;
    height: auto !important;
    white-space: normal !important;
    transition: all .3s ease !important;
}

.site-header__nav .mega-menu-wrap .mega-sub-menu .mega-menu-link:hover {
    color: var(--accent) !important;
    background: transparent !important;
}

.site-header__nav .mega-menu-wrap .mega-sub-menu .mega-menu-item {
    margin-bottom: 4px !important;
}

/* ---------- PROMO BLOCK / IMAGE ---------- */

.site-header__nav .mega-menu-wrap .mega-sub-menu .widget_media_image,
.site-header__nav .mega-menu-wrap .mega-sub-menu .widget_text:first-child {
    padding-right: 20px !important;
}

.site-header__nav .mega-menu-wrap .mega-sub-menu img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
}

/* ---------- REMOVE DARK DEFAULTS FROM MAX MEGA MENU THEME ---------- */

.site-header__nav .mega-menu-wrap,
.site-header__nav .mega-menu-wrap *,
.site-header__nav .mega-menu-wrap *::before,
.site-header__nav .mega-menu-wrap *::after {
    box-sizing: border-box !important;
}

.site-header__nav .mega-menu-wrap .mega-menu-row,
.site-header__nav .mega-menu-wrap .mega-menu-column,
.site-header__nav .mega-menu-wrap .mega-sub-menu,
.site-header__nav .mega-menu-wrap .mega-sub-menu li {
    background: transparent !important;
}

/* ---------- SPACING FIXES ---------- */

.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item {
    padding: 0 !important;
}

.site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item:not(:last-child) {
    margin-right: 0 !important;
}

/* ---------- MOBILE ---------- */

@media (max-width: 991px) {
    .site-header__nav .mega-menu-wrap .mega-menu-toggle {
        display: flex !important;
    }

    .site-header__nav .mega-menu-wrap ul.mega-menu,
    .site-header__nav .mega-menu-wrap #mega-menu-menu-1 {
        gap: 0 !important;
    }

    .site-header__nav .mega-menu-wrap ul.mega-menu > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu,
    .site-header__nav .mega-menu-wrap #mega-menu-menu-1 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        padding: 16px 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .site-header__nav .mega-menu-wrap .mega-sub-menu .mega-menu-link {
        font-size: 16px !important;
        padding: 8px 0 !important;
    }

    .site-header__nav .mega-menu-wrap .mega-sub-menu > li.mega-menu-column {
        padding: 0 !important;
    }
}

/* Defs */
@property --angle-1 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -75deg;
}

@property --angle-2 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -45deg;
}

:root {
    --global--size: clamp(2rem, 4vw, 5rem);
    --anim--hover-time: 400ms;
    --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Styles */
/* ========== BUTTON ========== */

/* ========== BUTTON BASE STYLES ========== */

.glass-button {
    --border-width: clamp(1px, 0.0625em, 4px);
    all: unset;
    display: table;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(
            -75deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.05)
    );
    border-radius: 999vw;
    /*box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
      inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
      0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
      0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 1);*/
    backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    -webkit-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    -moz-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    -ms-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

.glass-button:hover {
    transform: scale(0.975);
    backdrop-filter: blur(0.01em);
    -webkit-backdrop-filter: blur(0.01em);
    -moz-backdrop-filter: blur(0.01em);
    -ms-backdrop-filter: blur(0.01em);
    /*box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
      inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
      0 0.15em 0.05em -0.1em rgba(0, 0, 0, 0.25),
      0 0 0.05em 0.1em inset rgba(255, 255, 255, 0.5),
      0 0 0 0 rgba(255, 255, 255, 1);*/
}

/* Button Text */
.glass-button span {
    position: relative;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    letter-spacing: -0.05em;
    font-weight: 450;
    font-size: 1em;
    color: #696969;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0em 0.25em 0.05em rgba(0, 0, 0, 0.1);
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    padding-inline: 1.5em;
    padding-block: 0.875em;
    text-align: center;
}

.glass-button:hover span {
    text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.12);
}

/* Text */
.glass-button span::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: calc(100% - var(--border-width)); /* Prevent overlapping border */
    height: calc(100% - var(--border-width));
    top: calc(0% + var(--border-width) / 2);
    left: calc(0% + var(--border-width) / 2);
    box-sizing: border-box;
    border-radius: 999vw;
    overflow: clip;
    background: linear-gradient(
            var(--angle-2),
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 40% 50%,
            rgba(255, 255, 255, 0) 55%
    );
    z-index: 3;
    mix-blend-mode: screen;
    pointer-events: none;
    background-size: 200% 200%;
    background-position: 0% 50%;
    background-repeat: no-repeat;
    transition: background-position calc(var(--anim--hover-time) * 1.25)
    var(--anim--hover-ease),
    --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
}

.glass-button:hover span::after {
    background-position: 25% 50%;
}

.glass-button:active span::after {
    background-position: 50% 15%;
    --angle-2: -15deg;
}



/* ========== BUTTON OUTLINE ========== */

/* Outline */
.glass-button::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: 5px;
    width: calc(100% + var(--border-width));
    height: calc(100% + var(--border-width));
    top: calc(0% - var(--border-width) / 2);
    left: calc(0% - var(--border-width) / 2);
    padding: var(--border-width);
    box-sizing: border-box;
    background: conic-gradient(
            from var(--angle-1) at 50% 50%,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0) 5% 40%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 60% 95%,
            rgba(0, 0, 0, 0.5)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: all var(--anim--hover-time) var(--anim--hover-ease),
    --angle-1 500ms ease;
    box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
}

.glass-button:hover::after {
    --angle-1: -125deg;
}

.glass-button:active::after {
    --angle-1: -75deg;
}



@keyframes floatBG {
    0%,
    100% {
        background-position: center center;
    }
    25% {
        background-position: 30% 70%;
    }
    50% {
        background-position: 70% 30%;
    }
    75% {
        background-position: 40% 60%;
    }
}

.glass-button {
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 100%
    );

    backdrop-filter: url(#glass);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.glass-button span {
    color: #696969;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}


/* --------------------------------------------------------------------------
   Open / Close buttons
   -------------------------------------------------------------------------- */

.menu-trigger,
.close-trigger {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    padding: 0;
    margin: 0;

    width: 42px;
    height: 42px;

    cursor: pointer;
    display: none;
}

.menu-trigger {
    position: relative;
    z-index: 1005;
    flex: 0 0 42px;
}

.close-trigger {
    position: fixed;
    top: 42px;
    right: 24px;
    z-index: 1010;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Open button bars */
.menu-trigger-bar {
    display: block;
    height: 4px;
    margin-bottom: 6px;

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

    position: relative;
    transform: rotate(-45deg);
    overflow: hidden;
}

.menu-trigger-bar::before {
    content: "";
    position: absolute;
    inset: 0;

    width: 0;
    height: 100%;

    background-color: rgba(76, 198, 255, 0.65);
    transition: width 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.menu-trigger:hover .menu-trigger-bar::before {
    width: 100%;
}

.menu-trigger-bar.top {
    width: 50%;
}

.menu-trigger-bar.middle {
    width: 100%;
}

.menu-trigger-bar.middle::before {
    left: auto;
    right: 0;
}

.menu-trigger-bar.bottom {
    width: 50%;
    margin-left: 50%;
    margin-bottom: 0;
}

/* Close button bars */
.close-trigger-bar {
    display: block;
    width: 42px;
    height: 4px;

    background-color: #111111;
    border-radius: 999px;

    position: absolute;
    top: 19px;
    left: 0;

    overflow: hidden;
}

.close-trigger-bar::before {
    content: "";
    position: absolute;
    inset: 0;

    width: 0;
    height: 100%;

    background-color: rgba(76, 198, 255, 0.65);
    transition: width 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.close-trigger:hover .close-trigger-bar::before {
    width: 100%;
}

.close-trigger-bar.left {
    transform: rotate(-45deg);
}

.close-trigger-bar.right {
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   Overlay container
   -------------------------------------------------------------------------- */

.inner-container {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: 1000;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Dark glass layer */
.menu-overlay {
    position: absolute;
    inset: 0;

    z-index: 1000;

    background:
            radial-gradient(circle at 20% 10%, rgba(76, 198, 255, 0.16), transparent 32%),
            radial-gradient(circle at 80% 90%, rgba(76, 198, 255, 0.1), transparent 30%),
            rgba(0, 0, 0, 0.48);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
}

/* --------------------------------------------------------------------------
   Animated white diagonal panels
   -------------------------------------------------------------------------- */

.menu-bg {
    position: absolute;
    display: block;

    width: 200%;
    height: 40%;

    background-color: #ffffff;

    z-index: 1001;
    pointer-events: none;
    will-change: transform, opacity;
}

.menu-bg.top {
    top: 0;
    left: -34%;
    transform: rotate(-45deg) translateY(-152%);
}

.menu-bg.middle {
    top: 29%;
    left: -53%;
    transform: rotate(-45deg) scaleY(0);
    transform-origin: 50% 50%;
}

.menu-bg.bottom {
    top: 105%;
    left: -20%;
    transform: rotate(-45deg) translateY(25%);
}

/* --------------------------------------------------------------------------
   Menu content
   -------------------------------------------------------------------------- */

.menu-container {
    position: absolute;
    inset: 0;

    z-index: 1003;

    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
}

.inner-container .menu {
    display: block;

    width: 100%;
    max-width: 1320px;

    padding: 12vw 14vw;
    margin: 0;

    list-style: none;
}

.inner-container .menu li {
    display: block;
    text-align: left;

    padding: 10px 0;
    margin: 0;

    list-style: none;
}

.inner-container .menu a {
    display: inline-block;
    position: relative;

    padding: 8px 0;

    color: #111111;
    text-decoration: none;

    font-size: clamp(38px, 7vw, 92px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.065em;

    transition:
            color 0.25s ease,
            transform 0.25s ease;
}

.inner-container .menu a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    display: block;

    width: 24px;
    height: 4px;

    background-color: #111111;
    border-radius: 999px;

    opacity: 0;
    transform: translateX(80px);

    transition:
            opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1),
            transform 0.3s cubic-bezier(0.55, 0, 0.1, 1),
            width 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.inner-container .menu a:hover {
    color: #000000;
    transform: translateX(8px);
}

.inner-container .menu a:hover::before {
    opacity: 1;
    width: 44px;
    transform: translateX(0);
}

/* Active / current WordPress menu item */
.inner-container .menu .current-menu-item > a,
.inner-container .menu .current_page_item > a,
.inner-container .menu .current-menu-ancestor > a {
    color: #000000;
}

.inner-container .menu .current-menu-item > a::before,
.inner-container .menu .current_page_item > a::before,
.inner-container .menu .current-menu-ancestor > a::before {
    opacity: 1;
    transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Dropdown / submenu support inside overlay
   -------------------------------------------------------------------------- */

.inner-container .menu .sub-menu {
    list-style: none;
    margin: 14px 0 0;
    padding: 0 0 0 28px;
}

.inner-container .menu .sub-menu li {
    padding: 4px 0;
}

.inner-container .menu .sub-menu a {
    font-size: clamp(18px, 2.4vw, 32px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.035em;

    opacity: 0.72;
}

.inner-container .menu .sub-menu a:hover {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Optional logo classes from previous CSS
   -------------------------------------------------------------------------- */

.logo {
    display: block;

    width: 64px;
    height: 64px;

    position: absolute;
    top: 50%;
    left: 50%;

    margin-top: -52px;
    margin-left: -32px;

    text-align: center;
    z-index: 1004;
}

.logo span {
    display: block;

    text-align: center;
    line-height: 62px;

    font-size: 72px;
    color: #ffffff;
}

.logo-title {
    position: absolute;
    top: 10px;
    left: 0;

    width: 100%;
    height: 100%;

    color: #222222;
    font-size: 32px;
    line-height: 82px;
}

.logo-badge {
    position: absolute;
    display: block;

    width: 24px;
    height: 24px;

    top: 6px;
    right: -6px;

    border-radius: 100%;
    background-color: #4cc6ff;

    font-size: 12px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Body lock helper if later you add class via JS
   -------------------------------------------------------------------------- */

body.menu-is-open {
    overflow: hidden;
}

.inner-container .mobile-overlay-menu {
    display: block;
    width: 100%;
    max-width: 1320px;
    padding: 30px 14vw;
    margin: 0;
    list-style: none;
}

.inner-container .mobile-overlay-menu li {
    display: block;
    text-align: left;
    padding: 0px;
    margin: 0;
    list-style: none;
}

.inner-container .mobile-overlay-menu a {
    display: inline-block;
    position: relative;
    padding: 3px 0;
    color: #111111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.inner-container .mobile-overlay-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    display: block;
    width: 24px;
    height: 4px;
    background-color: #111111;
    border-radius: 999px;
    opacity: 0;
    transform: translateX(80px);
    transition:
            opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1),
            transform 0.3s cubic-bezier(0.55, 0, 0.1, 1),
            width 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.inner-container .mobile-overlay-menu a:hover {
    color: #000000;
    transform: translateX(8px);
}

.inner-container .mobile-overlay-menu a:hover::before {
    opacity: 1;
    width: 44px;
    transform: translateX(0);
}

.inner-container .mobile-overlay-menu .sub-menu {
    list-style: none;
    margin: 14px 0 0;
    padding: 0 0 0 28px;
}

.inner-container .mobile-overlay-menu .sub-menu li {
    padding: 4px 0;
}

.inner-container .mobile-overlay-menu .sub-menu a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.035em;
    opacity: 0.72;
}

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .close-trigger {
        top: 34px;
        right: 22px;
    }

    .inner-container .menu {
        padding: 16vw 10vw;
    }

    .inner-container .menu a {
        font-size: clamp(42px, 10vw, 82px);
    }

    .menu-bg {
        width: 230%;
        height: 42%;
    }

    .menu-bg.top {
        left: -52%;
    }

    .menu-bg.middle {
        left: -66%;
    }

    .menu-bg.bottom {
        left: -46%;
    }
}

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .menu-trigger,
    .close-trigger {
        width: 38px;
        height: 38px;
    }

    .menu-trigger-bar {
        height: 3px;
        margin-bottom: 6px;
    }

    .close-trigger {
        top: 26px;
        right: 20px;
    }

    .close-trigger-bar {
        width: 38px;
        height: 3px;
        top: 18px;
    }

    .inner-container .menu {
        padding: 22vw 8vw 14vw;
    }

    .inner-container .menu li {
        padding: 8px 0;
    }

    .inner-container .menu a {
        font-size: clamp(38px, 13vw, 62px);
        line-height: 0.95;
        letter-spacing: -0.07em;
    }

    .inner-container .menu .sub-menu {
        padding-left: 18px;
        margin-top: 10px;
    }

    .inner-container .menu .sub-menu a {
        font-size: clamp(17px, 5vw, 24px);
        line-height: 1.15;
        letter-spacing: -0.035em;
    }

    .menu-bg {
        width: 260%;
        height: 44%;
    }

    .menu-bg.top {
        top: -4%;
        left: -80%;
    }

    .menu-bg.middle {
        top: 29%;
        left: -84%;
    }

    .menu-bg.bottom {
        top: 103%;
        left: -70%;
    }
}

/* --------------------------------------------------------------------------
   Small mobile
   -------------------------------------------------------------------------- */

@media (max-width: 420px) {
    .inner-container .menu {
        padding: 28vw 7vw 14vw;
    }

    .inner-container .menu a {
        font-size: clamp(34px, 14vw, 54px);
    }

    .close-trigger {
        top: 22px;
        right: 18px;
    }
}


/* social */
.hero__social{
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    position: absolute;
    bottom: 30px;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    visibility: hidden;
    will-change: transform, opacity;
}

.footer__social{
    max-width: 1250px;
    width: 100%;
    margin: 15px auto 0;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    z-index: 1;
    align-items: flex-end;
    will-change: transform, opacity;
}

.footer__social .hero__social-list{
    justify-content: center;
    text-align: center;
}

.footer__social .hero__social-name{
    color: #465876;
}

.hero__social-list{
    display: flex;
    align-items: center;
    grid-gap: 30px;
    padding: 0;
    margin: 0;
}

.hero__social-item{
    list-style-type: none;
}

.hero__social-link{
    font-size: 12px;
    color: #465876;
    text-decoration: none;
    display: flex;
    align-items: center;
    grid-gap: 7px;
    transition: all .3s ease;
}

.hero__social-link:hover .hero__social-name{
    color: var(--accent);
}

.hero__social-icon{
    transform: translateY(1px);
}

.hero__social-icon svg{
    width: 17px;
    height: 17px;
    fill: gray;
}

.hero__social-name{
    color: gray;
    transition: all .3s ease;
    white-space: nowrap;
}







/* BEACON Section */
.beacon-diagnose {
    --bd-bg: #f3f5f7;
    --bd-white: #ffffff;
    --bd-panel: #eef2f5;
    --bd-border: #4698ff;
    --bd-border-soft: rgba(70, 152, 255, 0.18);
    --bd-text: #111a2f;
    --bd-text-soft: #536887;
    --bd-accent: #49b8ff;
    --bd-accent-dark: #3a7dff;
    --bd-shadow: 0 18px 45px rgba(24, 45, 78, 0.06);

    position: relative;
    padding: 100px 0 60px;
    background: var(--bd-bg);
    overflow: hidden;
}

.beacon-diagnose__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.beacon-diagnose__title {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 300;
    position: relative;
    left: -5px;
}

.beacon-diagnose__title-accent {
    color: var(--bd-accent);
}

.beacon-diagnose__subtitle {
    max-width: 700px;
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #465876;
}

.beacon-diagnose__body {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 44px;
    align-items: start;
}

.beacon-diagnose__cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.beacon-diagnose__connector {
    width: 2px;
    height: 31px;
    background: linear-gradient(
            180deg,
            rgba(70, 152, 255, 0.65) 0%,
            rgba(70, 152, 255, 0.95) 50%,
            rgba(70, 152, 255, 0.45) 100%
    );
    margin: 7px auto;
    border-radius: 999px;
}

.beacon-diagnose-card {
    position: relative;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    background: rgba(255, 255, 255, 0.22);
    border-radius: 15px;
    box-shadow: var(--bd-shadow);
    overflow: hidden;
}

.beacon-diagnose-card__graph {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 22px;
    border-right: 1px solid rgba(70, 152, 255, 0.16);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
}

.beacon-diagnose-card__graph-svg {
    width: 100%;
    height: auto;
    display: block;
}

.graph-axis-muted {
    stroke: rgba(83, 104, 135, 0.22);
    stroke-width: 2;
}

.graph-line-primary {
    fill: none;
    stroke: #4589ff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.graph-line-secondary {
    fill: none;
    stroke: #7fd2ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.graph-bar-light {
    fill: #6c98f0;
}

.graph-bar-mid {
    fill: #82afea;
}

.graph-bar-strong {
    fill: #5f8ef1;
}

.graph-bar-soft {
    fill: #7cc8e8;
}

.graph-node {
    fill: #4589ff;
}

.beacon-diagnose-card__content {
    padding: 28px 26px 24px;
}

.beacon-diagnose-card__title {
    margin: 0;
    color: var(--bd-text);
    font-size: 16px;
    line-height: 1.18;
    font-weight: 700;
}

.beacon-diagnose-card__text {
    margin: 14px 0 0;
    color: var(--bd-text-soft);
    font-size: 15px;
    line-height: 1.45;
}

.beacon-diagnose-card__list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--bd-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.beacon-diagnose-card__list--two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
}

.beacon-diagnose-card__details {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    border: 1px solid rgba(70, 152, 255, 0.45);
    background: transparent;
    color: var(--bd-text);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(6px);
}

.beacon-diagnose-card__details:hover {
    transform: translateY(-1px);
    border-color: var(--bd-border);
    background: rgba(255, 255, 255, 0.94);
}

.beacon-diagnose-panel {
    background: var(--bd-panel);
    border-radius: 18px;
    padding: 34px 34px 30px;
    min-height: 100%;
}

.beacon-diagnose-panel__title {
    margin: 0 0 28px;
    color: var(--bd-text);
    font-size: 24px;
    line-height: 1.6;
    font-weight: 700;
}

.beacon-diagnose-panel__item + .beacon-diagnose-panel__item {
    margin-top: 26px;
}

.beacon-diagnose-panel__item h4 {
    margin: 0 0 10px;
    color: var(--bd-text);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
}

.beacon-diagnose-panel__item p {
    margin: 0;
    color: var(--bd-text-soft);
    font-size: 16px;
    line-height: 1.45;
}

.beacon-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.beacon-modal.is-open {
    display: block;
}

.beacon-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 34, 0.54);
    backdrop-filter: blur(6px);
}

.beacon-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    margin: 16px auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(6, 15, 28, 0.28);
}

.beacon-modal__header {
    padding: 20px 64px 18px 24px;
    border-bottom: 1px solid rgba(83, 104, 135, 0.16);
}

.beacon-modal__title {
    margin: 0;
    color: var(--bd-text);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 300;
}

.beacon-modal__body {
    padding: 18px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    background: #f6f8fb;
}

.beacon-modal__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #fff;
}

.beacon-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 5px;
    background: rgba(17, 26, 47, 0.08);
    color: var(--bd-text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.beacon-modal__close:hover {
    background: rgba(17, 26, 47, 0.14);
}

body.beacon-modal-open {
    overflow: hidden;
}

@media (max-width: 1180px) {
    .beacon-diagnose__body {
        grid-template-columns: 1fr;
    }

    .beacon-diagnose-panel {
        min-height: auto;
    }
}

@media (max-width: 820px) {
    .beacon-diagnose__head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 28px;
    }

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

    .beacon-diagnose-card__graph {
        min-height: 110px;
        border-right: 0;
        border-bottom: 1px solid rgba(70, 152, 255, 0.16);
        padding-top: 24px;
        padding-bottom: 16px;
    }

    .beacon-diagnose-card__content {
        padding-top: 20px;
    }

    .beacon-diagnose-card__list--two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .beacon-diagnose-panel {
        padding: 24px 20px;
    }

    .beacon-diagnose-panel__item p {
        font-size: 15px;
    }
}



/* REQUEST MODAL */
.request-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.request-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    opacity: 0;
}

.request-modal__bg {
    position: absolute;
    left: 50%;
    width: 180vmax;
    height: 46vmax;
    margin-left: -90vmax;
    border-radius: 36px;
    transform: rotate(-45deg);
    background: linear-gradient(
            180deg,
            rgba(255,255,255,0.72) 0%,
            rgba(255,255,255,0.48) 100%
    );
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.56),
            inset 0 -1px 0 rgba(255,255,255,0.18);
    backdrop-filter: blur(24px) saturate(125%);
    -webkit-backdrop-filter: blur(24px) saturate(125%);
    opacity: 0;
}

.request-modal__bg.top { top: -28vmax; }
.request-modal__bg.middle { top: 26vmax; transform: rotate(-45deg) scaleY(0); }
.request-modal__bg.bottom { top: 80vmax; }

.request-modal__container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 30px 40px;
}

.request-modal__content {
    width: 100%;
    max-width: 560px;
    padding: 36px;
    opacity: 0;
    transform: translateY(30px);
}

.request-modal__head {
    margin-bottom: 24px;
}

.request-modal__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4cc6ff;
}

.request-modal__title {
    margin-top: 10px;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.05;
    color: #112342;
}

.request-modal__text {
    margin-top: 12px;
    color: #6e7480;
    max-width: 540px;
}

.request-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.request-form__field {
    display: block;
    margin-bottom: 16px;
}

.request-form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #112342;
}

.request-form__input,
.request-form__textarea {
    width: 100%;
    border: 1px solid rgba(17,35,66,0.12);
    background: rgba(255,255,255,0.72);
    border-radius: 5px;
    padding: 14px 16px;
    font-size: 15px;
    color: #112342;
    outline: none;
    resize: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    box-sizing: border-box;
}

.request-form__input:focus,
.request-form__textarea:focus {
    border-color: rgba(76,198,255,0.48);
    box-shadow: 0 0 0 4px rgba(76,198,255,0.08);
    background: rgba(255,255,255,0.90);
}

.request-form__textarea {
    min-height: 150px;
    resize: none;
}

.request-form__recaptcha {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #112342;
}

.request-form__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}



.request-form__submit:disabled {
    opacity: .65;
    cursor: default;
    transform: none;
}

.request-form__status {
    margin-top: 14px;
    min-height: 20px;
    font-size: 14px;
    color: #b42318;
}

.request-success {
    text-align: center;
    padding: 24px 0 10px;
}

.request-success__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(76,198,255,0.14);
    color: #112342;
    font-size: 28px;
    font-weight: 700;
}

.request-success__title {
    font-size: 30px;
    font-weight: 300;
    color: #112342;
}

.request-success__text {
    margin-top: 12px;
    color: #6e7480;
}

.request-modal__close {
    position: fixed;
    top: 34px;
    right: 30px;
    width: 34px;
    height: 24px;
    z-index: 3;
    border: none;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.request-modal__close-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    border-radius: 2px;
    background: rgba(17,35,66,0.9);
    transform-origin: 50% 50%;
}

.request-modal__close-line.left { transform: rotate(45deg); }
.request-modal__close-line.right { transform: rotate(-45deg); }



.section {
    position: relative;
    padding: 120px 0;
}

.section--hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.reveal,
.reveal-card {
    opacity: 0;
    transform: translateY(32px);
    will-change: transform, opacity;
}



.section-challenge {
    position: relative;
    padding: 140px 0 40px;
    background: #f5f7fb;
}

.section-challenge:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, #f4f6fd, #f5f7fb);
}

.section-challenge:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f5f7fb;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.section-challenge__head {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-bottom: 56px;
}

.section-challenge__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.75;
}

.section-challenge__title {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: #07142f;
    position: relative;
    left: -5px;
}

.section-challenge__title span {
    color: var(--accent);
}

.section-challenge__subtitle {
    max-width: 740px;
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: #334f73;
    font-weight: 400;
}

.challenge-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 15px;
}

.challenge-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.58);
    border-right: 1px solid rgba(17, 35, 66, 0.08);
    border-bottom: 1px solid rgba(17, 35, 66, 0.08);
    overflow: hidden;
    transition:
            transform 0.35s ease,
            background 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
}

.challenge-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.04) 45%, rgba(76,198,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.challenge-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 40px rgba(17, 35, 66, 0.07);
}

.challenge-card:hover::before {
    opacity: 1;
}

.challenge-card__number {
    font-size: clamp(58px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 700;
    color: rgba(17, 35, 66, 0.05);
    pointer-events: none;
    margin-bottom: 30px;
}

.challenge-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
}

.challenge-card__icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: rgba(17, 35, 66, 0.04);
    color: #07142f;
}

.challenge-card__icon svg {
    width: 24px;
    height: 24px;
}

.challenge-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: #07142f;
}

.challenge-card__text {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 30px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #3b5578;
}



/* portfolio */
.section-portfolio-model {
    position: relative;
    padding: 150px 0 0;
    overflow: hidden;
}

.section-portfolio-model::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 18% 20%, rgba(76, 198, 255, 0.06), transparent 28%),
            radial-gradient(circle at 80% 70%, rgba(17, 35, 66, 0.04), transparent 26%);
    pointer-events: none;
}

.section-portfolio-model__head {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin-bottom: 56px;
}

.section-portfolio-model__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.72;
}

.section-portfolio-model__title {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 300;
    color: #07142f;
    position: relative;
    left: -5px;
}

.section-portfolio-model__title span {
    color: var(--accent);
}

.section-portfolio-model__subtitle {
    max-width: 760px;
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: #3e587a;
}

.section-portfolio-model__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 60px;
    align-items: start;
}

#portfolio-orbit-canvas {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateY(-60px);
}

.section-portfolio-model__visual {
    position: relative;
    width: 100%;
}



.section-portfolio-model__content {
    display: grid;
    gap: 30px;
}

.portfolio-feature {
    position: relative;
    border-radius: 22px;
    transition:
            transform 0.32s ease,
            box-shadow 0.32s ease,
            background 0.32s ease,
            border-color 0.32s ease;
}

.portfolio-feature:nth-child(1){
    left: -70px;
}

.portfolio-feature:nth-child(4){
    left: -70px;
}

.portfolio-feature__title {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: #07142f;
}

.portfolio-feature__list {
    margin: 0;
    padding-left: 18px;
    color: #334f73;
}

.portfolio-feature__list li {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.5;
}

/* portfolio figure */
.voyager-orbit-flat {
    --vo-text: #182b57;
    --vo-blue: #27afe3;
    --vo-blue-soft: rgba(83, 199, 241, 0.20);
    --vo-blue-soft-2: rgba(83, 199, 241, 0.34);
    --vo-core-bg: #f4f8fb;
    --vo-core-border: rgba(68, 191, 237, 0.82);

    --vo-core-shadow:
            0 34px 80px rgba(137, 160, 181, 0.16),
            0 10px 28px rgba(137, 160, 181, 0.10),
            inset 0 1px 0 rgba(255, 255, 255, 0.92);

    --vo-node-shadow:
            0 24px 44px rgba(39, 175, 227, 0.18),
            0 8px 18px rgba(39, 175, 227, 0.10),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);

    position: relative;
    width: 100%;
}

.voyager-orbit-flat__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 340px;
    overflow: visible;
}

.voyager-orbit-flat__stage::before {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(171, 197, 216, 0.16) 0%,
            rgba(171, 197, 216, 0.08) 38%,
            rgba(171, 197, 216, 0.00) 74%
    );
    filter: blur(16px);
    pointer-events: none;
}

.voyager-orbit-flat__orbit,
.voyager-orbit-flat__core,
.voyager-orbit-flat__track {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.voyager-orbit-flat__orbit {
    pointer-events: none;
}

.voyager-orbit-flat__orbit--solid {
    width: 72%;
    height: 72%;
    border: 1px solid var(--vo-blue-soft-2);
    box-shadow:
            inset 0 0 0 1px rgba(76, 198, 255, 0.12),
            0 20px 50px rgba(76, 198, 255, 0.10);
}

.voyager-orbit-flat__orbit--dashed {
    width: 88%;
    height: 88%;
    border: 1px dashed var(--vo-blue-soft);
    box-shadow:
            inset 0 0 0 1px rgba(76, 198, 255, 0.12),
            0 20px 50px rgba(76, 198, 255, 0.10);
}

.voyager-orbit-flat__core {
    width: 280px;
    height: 280px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 251, 255, 0.96));
    box-shadow:
            inset 0 0 0 1px rgba(76, 198, 255, 0.12),
            0 20px 50px rgba(76, 198, 255, 0.10);
    border: 1px dashed var(--vo-blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.voyager-orbit-flat__title {
    color: var(--vo-text);
    font-size: 30px;
    line-height: 1.14;
    letter-spacing: 0.01em;
    font-weight: 400;
    max-width: 78%;
}

.voyager-orbit-flat__track {
    width: 88%;
    height: 88%;
    z-index: 3;
}

.voyager-orbit-flat__node {
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    /*background:*/
    /*        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 251, 255, 0.96));*/
    box-shadow:
            inset 0 0 0 1px rgba(76, 198, 255, 0.12),
            0 20px 50px rgba(76, 198, 255, 0.10);
    border: 1px solid var(--vo-blue-soft);
    transform: translate(52%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.voyager-orbit-flat__node-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.01em;
    will-change: transform;
}

@media (max-width: 991px) {
    .voyager-orbit-flat__stage {
        min-height: 290px;
    }

    .voyager-orbit-flat__title {
        font-size: 16px;
        max-width: 82%;
    }

    .voyager-orbit-flat__node {
        width: 50px;
        height: 50px;
    }

    .voyager-orbit-flat__node-label{
        font-size: 16px;
    }

    .voyager-orbit-flat__core {
        width: 50%;
        height: 50%;
    }

    .voyager-orbit-flat__orbit--solid {
        width: 74%;
        height: 74%;
    }

    .voyager-orbit-flat__orbit--dashed,
    .voyager-orbit-flat__track {
        width: 90%;
        height: 90%;
    }
}

@media (max-width: 640px) {
    .voyager-orbit-flat__stage {
        min-height: 240px;
    }
}


/* SECTION BEACON */
.framework-model {
    padding: 150px 0 96px;
    background: #f5f6f8;
    color: #08122b;
    overflow: clip;
    position: relative;
}
.framework-model:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}


.framework-model__container {
    width: min(100% - 48px, 1280px);
    margin: 0 auto;
}

.framework-model__head {
    max-width: 820px;
    margin-bottom: 56px;
}

.framework-model__title {
    margin: 0;
    font-size: 60px;
    line-height: 0.96;
    letter-spacing: -0.04em;
    font-weight: 300;
    position: relative;
    left: -5px;
}

.framework-model__title-line {
    display: block;
    overflow: hidden;
}

.framework-model .accent {
    color: var(--accent);
}

.framework-model__subtitle {
    max-width: 700px;
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #465876;
}

.framework-model__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 30px 60px;
}

.framework-model__item {
    position: relative;
    border-bottom: 1px solid rgba(8, 18, 43, 0.10);
}

.framework-model__item-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: flex-end;
    padding: 34px 0;
}

.framework-model__content {
    max-width: 860px;
}

.framework-model__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border: 1px solid rgba(8, 18, 43, 0.15);
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #53637d;
    margin-bottom: 16px;
}

.framework-model__item-title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.framework-model__item-text {
    margin: 0;
    max-width: 900px;
    font-size: 16px;
    line-height: 1.36;
    letter-spacing: -0.02em;
    color: #465876;
}

.framework-model__action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.framework-model__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.framework-model__link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: var(--accent);
}

.framework-model__link:hover {
    opacity: 0.7;
    transform: translateX(4px);
}



/* footer */
.site-footer {
    position: relative;
    background: #f7fafe;
    color: #08122b;
    overflow: clip;
    padding: 120px 0 60px;
}

.site-footer:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(300px, 1.45fr) repeat(4, minmax(140px, 1fr));
    gap: 48px 44px;
    align-items: start;
}

.site-footer__brand {
    max-width: 420px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #08122b;
}

.site-footer__logo svg {
    width: 100px;
    position: relative;
    left: -10px;
}

.site-footer__logo img {
    width: 100px;
    position: relative;
}

.site-footer__description {
    margin: 34px 0 0;
    max-width: 390px;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #4b5c79;
}

.site-footer__social {
    width: 54px;
    height: 54px;
    background: #e9edf2;
    color: #4b5c79;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.site-footer__social:hover {
    transform: translateY(-2px);
    background: #08122b;
    color: #ffffff;
}

.site-footer__social svg {
    width: 22px;
    height: 22px;
}

.site-footer__heading {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #08122b;
}

.site-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__list li + li {
    margin-top: 18px;
}

.site-footer__list a {
    text-decoration: none;
    color: #4b5c79;
    font-size: 16px;
    line-height: 1.35;
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    display: inline-flex;
}

.site-footer__list a:hover {
    color: #08122b;
    transform: translateX(4px);
}

.site-footer__bottom {
    margin-top: 60px;
    padding-top: 34px;
    border-top: 1px solid rgba(8, 18, 43, 0.12);
    text-align: center;
}

.site-footer__copyright {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #5d6d88;
}


/* section 3s */
.compass-mining {
    position: relative;
    overflow: hidden;
    padding: 120px 0 70px;
    background: #17a0df;
    color: #ffffff;
}

.compass-mining:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f5f6f8;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.compass-mining__container {
    position: relative;
    z-index: 2;
}

.compass-mining__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.compass-mining__particle {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: #fff;
    width: 2px;
    height: 2px;
    will-change: transform, opacity;
}

.compass-mining__intro {
    max-width: 760px;
    margin-bottom: 56px;
}

.compass-mining__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.compass-mining__title {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.04em;
    position: relative;
    left: -5px;
}

.compass-mining__title span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.82);
}

.compass-mining__text {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.compass-mining__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 15px;
}

.compass-mining__card {
    position: relative;
    min-height: 410px;
    padding: 34px 32px 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.compass-mining__card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.10);
}

.compass-mining__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #4cc6ff;
}

.compass-mining__icon svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.compass-mining__card-title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.compass-mining__card-text {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 16px;
    line-height: 1.6;
}

.compass-mining__divider {
    width: 100%;
    height: 1px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.20);
}

.compass-mining__list {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: none;
}

.compass-mining__list li {
    position: relative;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 15px;
    line-height: 1.45;
}

.compass-mining__list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: -16px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
}

/* SECTION NAVIGATOR */
.navigator-delivery {
    --nd-bg: #f7fafe;
    --nd-surface: rgba(255, 255, 255, 0.78);
    --nd-surface-border: rgba(76, 198, 255, 0.18);
    --nd-accent: #4cc6ff;
    --nd-accent-strong: #1fa9f2;
    --nd-text: #0e1730;
    --nd-text-soft: #55657f;
    --nd-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    --nd-radius: 24px;
    --nd-card-gap: 30px;
    --nd-layout-gap: 26px;
    --nd-ring-size: 500px;
    --nd-core-size: 280px;

    position: relative;
    overflow: hidden;
    padding: 160px 0 70px;
    background: #f7fafe;
    background-size: auto, auto, 18px 18px, auto;
    background-position: center, center, 0 0, center;
}

.navigator-delivery:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #17a0df;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.navigator-delivery__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.navigator-delivery__particle {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(76, 198, 255, 0.18);
    box-shadow: 0 0 12px rgba(76, 198, 255, 0.12);
    will-change: transform, opacity;
}

.navigator-delivery__glow {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(72px);
    opacity: 0.45;
    animation: ndFloat 8s ease-in-out infinite;
}

.navigator-delivery__glow--1 {
    width: 360px;
    height: 360px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: rgba(76, 198, 255, 0.18);
}

.navigator-delivery__glow--2 {
    width: 260px;
    height: 260px;
    right: 12%;
    top: 18%;
    background: rgba(76, 198, 255, 0.08);
    animation-duration: 10s;
}

.navigator-delivery__container {
    position: relative;
    z-index: 2;
}

.navigator-delivery__intro {
    max-width: 820px;
    margin-bottom: 42px;
}

.navigator-delivery__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.72;
}

.navigator-delivery__title {
    margin: 0 0 14px;
    color: var(--nd-text);
    font-size: 60px;
    line-height: 1.2;
    position: relative;
    left: -5px;
    font-weight: 300;
    letter-spacing: -0.05em;
}

.navigator-delivery__title span {
    color: var(--nd-accent);
}

.navigator-delivery__subtitle {
    max-width: 760px;
    margin: 0;
    color: var(--nd-text-soft);
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.navigator-delivery__layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(360px, 540px) minmax(280px, 360px);
    gap: var(--nd-layout-gap);
    align-items: center;
}

.navigator-delivery__col {
    display: flex;
    flex-direction: column;
    gap: var(--nd-card-gap);
}

.navigator-delivery__col--left {
    align-items: flex-end;
}

.navigator-delivery__col--right {
    align-items: flex-start;
}

.navigator-delivery__card {
    position: relative;
    width: 100%;
    min-height: 292px;
    padding: 24px 24px 22px;
    border: 1px solid var(--nd-surface-border);
    border-radius: 10px;
    background: var(--nd-surface);
    box-shadow: var(--nd-shadow);
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.navigator-delivery__card:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 198, 255, 0.32);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.11);
}

.navigator-delivery__badge {
    position: absolute;
    top: -12px;
    left: -12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(76, 198, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--nd-accent-strong);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.navigator-delivery__card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    color: rgba(76, 198, 255, 0.9);
}

.navigator-delivery__card-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--nd-text);
    opacity: .4;
}

.navigator-delivery__card-title {
    margin: 0 0 18px;
    padding-right: 38px;
    color: var(--nd-text);
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.navigator-delivery__item-label {
    position: relative;
    margin-bottom: 8px;
    padding-left: 12px;
    color: #2a3348;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.navigator-delivery__item-label::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--nd-accent);
}

.navigator-delivery__item p {
    margin: 0;
    color: #5d6d88;
    font-size: 14px;
    line-height: 1.5;
}

.navigator-delivery__divider {
    height: 1px;
    margin: 14px 0;
    background: rgba(76, 198, 255, 0.12);
}

.navigator-delivery__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigator-delivery__orbit {
    position: relative;
    width: min(100%, var(--nd-ring-size));
    aspect-ratio: 1 / 1;
}

.navigator-delivery__ring {
    position: absolute;
    border-radius: 50%;
}

.navigator-delivery__ring--outer {
    inset: 24px;
    border: 1.5px solid rgba(76, 198, 255, 0.16);
    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.45),
            0 18px 46px rgba(76, 198, 255, 0.08);
}

.navigator-delivery__ring--inner {
    inset: 82px;
    border: 1px dashed rgba(76, 198, 255, 0.30);
}

.navigator-delivery__orbit-track {
    position: absolute;
    inset: 0;
    animation: ndOrbitSpin 24s linear infinite;
}

.navigator-delivery__arrow {
    position: absolute;
    width: 26px;
    height: 26px;
    color: var(--nd-accent);
    opacity: 0.95;
}

.navigator-delivery__arrow svg {
    width: 100%;
    height: 100%;
}

.navigator-delivery__arrow--top {
    top: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.navigator-delivery__arrow--right {
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(90deg);
}

.navigator-delivery__arrow--bottom {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.navigator-delivery__arrow--left {
    top: 50%;
    left: 10px;
    transform: translateY(-50%) rotate(270deg);
}

.navigator-delivery__core {
    position: absolute;
    inset: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--nd-core-size);
    height: var(--nd-core-size);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    box-shadow:
            inset 0 0 0 1px rgba(76, 198, 255, 0.12),
            0 20px 50px rgba(76, 198, 255, 0.10);
    text-align: center;
}

.navigator-delivery__core p {
    max-width: 210px;
    margin: 0;
    color: var(--nd-text);
    font-size: 24px;
    line-height: 1.28;
    font-weight: 300;
}

@keyframes ndOrbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ndFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-16px);
    }
}


/* section voyager */
.voyager-sustain {
    --vs-bg: #f7fafe;
    --vs-accent: #4cc6ff;
    --vs-accent-strong: #1aa9f2;
    --vs-text: #0d1730;
    --vs-text-soft: #596983;
    --vs-line: rgba(76, 198, 255, 0.18);
    --vs-line-soft: rgba(76, 198, 255, 0.11);
    --vs-surface: rgba(255, 255, 255, 0.78);
    --vs-shadow: 0 18px 48px rgba(12, 22, 48, 0.08);
    --vs-radius: 24px;

    position: relative;
    overflow: hidden;
    padding: 112px 0 88px;
    background-size: auto, auto, 18px 18px, auto;
}

.voyager-sustain:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f7fafe;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.voyager-sustain__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.voyager-sustain__particle {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(76, 198, 255, 0.14);
    box-shadow: 0 0 10px rgba(76, 198, 255, 0.10);
    will-change: transform, opacity;
}

.voyager-sustain__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

.voyager-sustain__glow--1 {
    width: 360px;
    height: 360px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    background: rgba(76, 198, 255, 0.13);
}

.voyager-sustain__glow--2 {
    width: 240px;
    height: 240px;
    left: 56%;
    top: 62%;
    transform: translate(-50%, -50%);
    background: rgba(76, 198, 255, 0.08);
}

.voyager-sustain__container {
    position: relative;
    z-index: 2;
}

.voyager-sustain__intro {
    max-width: 980px;
    margin: 0 auto 46px;
    text-align: center;
}

.voyager-sustain__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.72;
    text-align: center;
}

.voyager-sustain__title {
    margin: 0 0 16px;
    color: var(--vs-text);
    font-size: 60px;
    line-height: 1.2;
    font-weight: 300;
}

.voyager-sustain__title span {
    color: var(--vs-accent);
}

.voyager-sustain__subtitle {
    max-width: 550px;
    margin: 0 auto;
    color: var(--vs-text-soft);
    font-size: 16px;
    line-height: 1.38;
    letter-spacing: -0.02em;
}

.voyager-sustain__hero {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(420px, 1fr) minmax(240px, 280px);
    gap: 28px;
    align-items: center;
    margin-bottom: 44px;
}

.voyager-sustain__side-card {
    position: relative;
    border: 1px solid var(--rp-line);
    border-radius: 15px;
    box-shadow: var(--vs-shadow);
    backdrop-filter: blur(14px);
}

.voyager-sustain__side-card--input {
    padding: 22px 22px 18px;
    background: rgba(255, 255, 255, 0.82);
}

.voyager-sustain__side-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.voyager-sustain__side-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--accent);
}

.voyager-sustain__side-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.voyager-sustain__side-title {
    color: var(--vs-text);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.voyager-sustain__input-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.voyager-sustain__input-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 16px;
    color: var(--vs-text-soft);
    font-size: 15px;
    line-height: 1.45;
}

.voyager-sustain__input-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--vs-accent);
}

.voyager-sustain__side-card--quote {
    overflow: hidden;
    padding: 28px 26px 24px;
    color: #fff;
    background:
            radial-gradient(circle at 100% 0%, rgba(255,255,255,0.12) 0, rgba(255,255,255,0.12) 16%, transparent 16%),
            linear-gradient(135deg, #53c6fb 0%, #1bb6e9 100%);
    border-color: rgba(76, 198, 255, 0.28);
}

.voyager-sustain__quote-arrow {
    width: 34px;
    height: 34px;
    margin-bottom: 30px;
}

.voyager-sustain__quote-arrow svg {
    width: 100%;
    height: 100%;
}

.voyager-sustain__quote {
    margin: 0;
    font-size: 20px;
    line-height: 1.52;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.voyager-sustain__quote-divider {
    width: 100%;
    height: 1px;
    margin: 18px 0 16px;
    background: rgba(255, 255, 255, 0.34);
}

.voyager-sustain__quote-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.voyager-sustain__center-wrap {
    display: grid;
    grid-template-columns: 40px minmax(420px, 680px) 40px;
    align-items: center;
}

.voyager-sustain__flow-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-accent);
    opacity: 0.9;
}

.voyager-sustain__flow-arrow svg {
    width: 22px;
    height: 22px;
}

.voyager-sustain__flow-arrow--left svg {
    transform: rotate(180deg);
}

.voyager-sustain__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.voyager-sustain__orbit {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1 / 1;
}

.voyager-sustain__orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.voyager-sustain__orbit-ring {
    fill: none;
    transform-origin: 300px 300px;
}

.voyager-sustain__orbit-ring--outer {
    stroke: rgba(76, 198, 255, 0.18);
    stroke-width: 1.5;
}

.voyager-sustain__orbit-ring--middle {
    stroke: rgba(76, 198, 255, 0.32);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 26 22 80 18;
    animation: vsDashMoveA 11s linear infinite;
}

.voyager-sustain__orbit-ring--inner {
    stroke: rgba(76, 198, 255, 0.22);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 18 18 64 20;
    animation: vsDashMoveB 8s linear infinite reverse;
}

.voyager-sustain__core {
    position: absolute;
    inset: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.90), rgba(248,251,255,0.98));
    box-shadow:
            inset 0 0 0 1px rgba(76, 198, 255, 0.12),
            0 22px 56px rgba(12, 22, 48, 0.09);
    text-align: center;
}

.voyager-sustain__core-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, #55cbff, #21b4ef);
    box-shadow: 0 12px 28px rgba(76, 198, 255, 0.28);
}

.voyager-sustain__core-badge svg {
    width: 24px;
    height: 24px;
}

.voyager-sustain__core-title {
    margin: 0 0 8px;
    color: var(--vs-text);
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.voyager-sustain__core-text {
    max-width: 170px;
    margin: 0;
    color: var(--vs-text-soft);
    font-size: 14px;
    line-height: 1.45;
}

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

.voyager-sustain__feature {
    min-height: 100%;
    padding: 20px 20px 18px;
    border: 1px solid var(--rp-line);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 34px rgba(12, 22, 48, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.voyager-sustain__feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(12, 22, 48, 0.08);
}

.voyager-sustain__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: var(--vs-text);
    background: rgba(248, 251, 255, 0.95);
}

.voyager-sustain__feature-icon svg {
    width: 20px;
    height: 20px;
}

.voyager-sustain__feature-title {
    margin: 0 0 14px;
    color: var(--vs-text);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.voyager-sustain__feature-text {
    margin: 0;
    color: var(--vs-text-soft);
    font-size: 16px;
    line-height: 1.55;
}

/* statistics */
.results-proof {
    --rp-bg: #ffffff;
    --rp-text: #07122b;
    --rp-text-soft: #55657f;
    --rp-accent: #13bff4;
    --rp-line: #dbe4ef;
    --rp-surface: #ffffff;
    --rp-shadow: 0 18px 48px rgba(11, 23, 48, 0.06);
    --rp-radius: 24px;
    background: #f7fafe;
    padding: 120px 0 70px;
    position: relative;
}

.results-proof:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.results-proof__container {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.results-proof__intro {
    max-width: 860px;
    margin-bottom: 56px;
}

.results-proof__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.72;
}

.results-proof__title {
    margin: 0 0 16px;
    color: var(--rp-text);
    font-size: 60px;
    position: relative;
    left: -5px;
    line-height: 1.2;
    font-weight: 300;
}

.results-proof__title span {
    color: var(--rp-accent);
}

.results-proof__subtitle {
    max-width: 760px;
    margin: 0;
    color: var(--rp-text-soft);
    font-size: 16px;
    line-height: 1.42;
    letter-spacing: -0.02em;
}

.results-proof__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--rp-line);
    border-bottom: 1px solid var(--rp-line);
    margin-bottom: 34px;
}

.results-proof__summary-card {
    padding: 30px 15px;
    border-right: 1px solid var(--rp-line);
}

.results-proof__summary-card:last-child {
    border-right: none;
}

.results-proof__summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    color: #ffffff;
    background: #f5f6f8;
}

.results-proof__summary-icon svg {
    width: 22px;
    height: 22px;
    fill: #b1b1b1;
}

.results-proof__summary-value {
    margin-bottom: 12px;
    color: var(--rp-text);
    font-size: 24px;
    line-height: 0.95;
    font-weight: 700;
}

.results-proof__summary-value--text {
    font-size: 24px;
}

.results-proof__summary-heading {
    margin-bottom: 26px;
    color: var(--rp-text-soft);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.results-proof__summary-text {
    max-width: 340px;
    margin: 0;
    color: var(--rp-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.results-proof__cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.results-proof__case-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px 32px 28px;
    border: 1px solid var(--rp-line);
    border-radius: 15px;
    box-shadow: var(--rp-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.results-proof__case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(11, 23, 48, 0.09);
}

.results-proof__case-meta {
    margin-bottom: 12px;
    color: #7e8899;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.results-proof__case-title {
    margin: 0 0 28px;
    color: var(--rp-text);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.results-proof__case-value {
    margin-bottom: 8px;
    color: var(--rp-accent);
    font-size: 40px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.results-proof__case-subvalue {
    margin-bottom: 26px;
    color: var(--rp-text-soft);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.results-proof__case-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 22px;
    background: var(--rp-line);
}

.results-proof__case-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.results-proof__case-list li {
    position: relative;
    padding-left: 16px;
    color: var(--rp-text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.results-proof__case-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rp-accent);
}

/* first 12 */
.first12 {
    --first12-bg: #ffffff;
    --first12-text: #071133;
    --first12-muted: #5e6c84;
    --first12-line: #dbe4ee;
    --first12-accent: #10a6df;
    --first12-accent-dark: #0c94c7;
    --first12-icon-bg: #061033;

    position: relative;
    padding: 110px 0 60px;
    background: var(--first12-bg);
    overflow: clip;
}

.first12:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f7fafe;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.first12__container {
    margin: 0 auto;
}

.first12__head {
    max-width: 920px;
    margin-bottom: 56px;
}

.first12__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.72;
}

.first12__title {
    margin: 0;
    font-size: 60px;
    line-height: 0.96;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: var(--first12-text);
    position: relative;
    left: -5px;
}

.first12__title span {
    color: var(--first12-accent);
}

.first12__subtitle {
    max-width: 920px;
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.4;
    color: #4c5f7d;
}

.first12__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 30px 60px;
}

.first12-card {
    transition:
            box-shadow 0.35s ease,
            background-color 0.35s ease;
    transform: translate3d(0, 0, 0);
}

.first12-card__week {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.11em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--first12-accent-dark);
}

.first12-card__title {
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--first12-text);
}

.first12-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-gap: 5px;
}

.first12-card__list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--first12-muted);
}

.first12-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--first12-accent);
}

@media (max-width: 1280px) {
    .first12-card {
        padding: 15px 0 30px;
        min-height: auto;
    }

    .first12-card__list li {
        font-size: 17px;
    }
}

@media (max-width: 991px) {

    .first12__head {
        margin-bottom: 38px;
    }

    .first12__subtitle {
        margin-top: 22px;
    }

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

    .first12-card:nth-child(2n) {
        border-right: none;
    }

    .first12-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--first12-line);
    }
    .first12 {
        padding: 100px 0 30px;
    }
}

@media (max-width: 640px) {


    .first12__container {
        width: min(100% - 20px, 1680px);
    }

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

    .first12-card {
        min-height: auto;
        border-right: none !important;
        border-bottom: 1px solid var(--first12-line);
    }

    .first12-card:last-child {
        border-bottom: none;
    }

    .first12-card__title {
        margin-bottom: 20px;
    }

    .first12-card__list li {
        font-size: 16px;
        line-height: 1.5;
    }

    .first12-card__list li::before {
        top: 10px;
    }
}

@media (max-width: 1100px) {
    .results-proof__cases {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .results-proof {
        padding: 100px 0 60px;
    }

    .results-proof__container {
        width: min(100%, calc(100% - 32px));
    }

    .results-proof__summary {
        grid-template-columns: 1fr;
    }

    .results-proof__summary-card {
        border-right: none;
        border-bottom: 1px solid var(--rp-line);
    }

    .results-proof__summary-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {


    .results-proof__summary-card:last-child{
        border-bottom: none;
        padding-bottom: 0;
    }

    .results-proof__summary{
        border-bottom: none;
    }

    .results-proof__intro {
        margin-bottom: 38px;
    }

    .results-proof__title {
        max-width: 320px;
    }

    .results-proof__case-card {
        padding-left: 15px;
        padding-right: 15px;
    }

    .results-proof__summary-card {
        padding-left: 0;
        padding-right: 0;
    }


}

@keyframes vsDashMoveA {
    from {
        stroke-dashoffset: 0;
        transform: rotate(0deg);
    }
    to {
        stroke-dashoffset: -260;
        transform: rotate(360deg);
    }
}

@keyframes vsDashMoveB {
    from {
        stroke-dashoffset: 0;
        transform: rotate(0deg);
    }
    to {
        stroke-dashoffset: 220;
        transform: rotate(-360deg);
    }
}

@media (max-width: 1240px) {
    .voyager-sustain__hero {
        grid-template-columns: 240px minmax(360px, 1fr) 240px;
        gap: 18px;
    }

    .voyager-sustain__center-wrap {
        grid-template-columns: 28px minmax(360px, 1fr) 28px;
    }

    .voyager-sustain__orbit {
        width: min(100%, 500px);
    }

    .voyager-sustain__core {
        width: 226px;
        height: 226px;
    }

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

@media (max-width: 991px) {
    .voyager-sustain {
        padding: 88px 0 74px;
    }

    .voyager-sustain__hero {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 30px;
    }

    .voyager-sustain__center-wrap {
        grid-template-columns: 1fr;
    }

    .voyager-sustain__flow-arrow {
        display: none;
    }

    .voyager-sustain__side-card--input {
        order: 2;
    }

    .voyager-sustain__center-wrap {
        order: 1;
    }

    .voyager-sustain__side-card--quote {
        order: 3;
    }
}

@media (max-width: 767px) {
    .voyager-sustain {
        padding: 78px 0 66px;
    }

    .voyager-sustain__title {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .voyager-sustain__orbit {
        width: min(100%, 360px);
    }

    .voyager-sustain__core {
        width: 182px;
        height: 182px;
    }

    .voyager-sustain__core-badge {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .voyager-sustain__core-title {
        font-size: 22px;
    }

    .voyager-sustain__core-text {
        font-size: 13px;
        max-width: 130px;
    }

    .voyager-sustain__grid {
        grid-template-columns: 1fr;
    }

    .voyager-sustain__feature-title {
        font-size: 18px;
    }

    .voyager-sustain__feature-text,
    .voyager-sustain__input-list li {
        font-size: 15px;
    }

    .voyager-sustain__quote {
        font-size: 20px;
    }
}

@media (max-width: 1279px) {
    .navigator-delivery {
        --nd-ring-size: 450px;
        --nd-core-size: 250px;
    }

    .navigator-delivery__layout {
        grid-template-columns: minmax(260px, 340px) minmax(320px, 460px) minmax(260px, 340px);
        gap: 18px;
    }

    .navigator-delivery__card {
        min-height: 278px;
        padding: 22px 22px 20px;
    }
}

@media (max-width: 1099px) {
    .navigator-delivery {
        --nd-ring-size: 430px;
        --nd-core-size: 235px;
    }

    .navigator-delivery__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .navigator-delivery__center {
        order: 1;
    }

    .navigator-delivery__col--left {
        order: 2;
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .navigator-delivery__col--right {
        order: 3;
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .navigator-delivery {
        --nd-ring-size: 330px;
        --nd-core-size: 190px;
        padding: 100px 0 60px;
    }

    .navigator-delivery__intro {
        margin-bottom: 30px;
    }

    .navigator-delivery__title {
        max-width: 340px;
    }

    .navigator-delivery__orbit {
        margin: 0 auto;
    }

    .navigator-delivery__col--left,
    .navigator-delivery__col--right {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .navigator-delivery__card {
        min-height: auto;
    }

    .navigator-delivery__badge {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .navigator-delivery__item p {
        font-size: 14px;
    }
}

/* ERROR PAGE */
.error-page-explanation__inner{
    max-width: 760px;
}

.error-page-explanation__eyebrow{
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.error-page-explanation__title{
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 300;
    color: #0b0b0b;
}

.error-page-explanation__text{
    margin: 0 0 28px;
    max-width: 680px;
    font-size: 17px;
    line-height: 1.7;
    color: #6f6f6f;
}

.error-page-explanation__steps{
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 14px;
}

.error-page-explanation__step{
    font-size: 16px;
    line-height: 1.7;
    color: #3f3737;
}

.error-page-explanation__step a{
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(76, 198, 255, 0.45);
    transition: all .3s ease;
}

.error-page-explanation__step a:hover{
    color: var(--accent);
    border-color: var(--accent);
}

/* ==========================================================
   BLOG
   ========================================================== */

.insights-archive {
    position: relative;
    overflow: clip;
}

.insights-archive__hero {
    padding-top: 190px;
    padding-bottom: 50px;
    background-image: url('../assets/images/blog.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.insights-archive__hero-container {
    position: relative;
}

.insights-archive__breadcrumbs {
    margin-bottom: 26px;
}

.insights-archive__hero-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insights-archive__title {
    margin: 0;
    font-size: 60px;
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: #07142f;
    position: relative;
}

.insights-archive__subtitle {
    max-width: 560px;
    margin: 25px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.insights-archive__subtitle .site-breadcrumb{
    margin-bottom: 0;
}

.insights-archive__filters {
    margin-top: 44px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.insights-archive__filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #e8ebed;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #6f6f6f;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease;
}

.insights-archive__filter:hover,
.insights-archive__filter--active {
    color: #fff !important;
    background: var(--accent);
}

.insights-archive__filter:visited {
    color: #6f6f6f;
}

.insights-archive__content {
    padding-top: 20px;
    padding-bottom: 100px;
}

.insights-archive__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.insights-archive__main {
    min-width: 0;
}

.insights-featured-card {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(0, 1fr);
    margin-bottom: 34px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.insights-featured-card__media {
    display: block;
    min-height: 100%;
}

.insights-featured-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.insights-featured-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 34px 28px;
}

.insights-featured-card__meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.insights-featured-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(76, 198, 255, 0.16);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insights-featured-card__category {
    color: #7d7d7d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.insights-featured-card__title {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.insights-featured-card__title a {
    color: #0b0b0b;
    text-decoration: none;
    transition: color .3s ease;
}

.insights-featured-card__title a:hover {
    color: var(--accent);
}

.insights-featured-card__excerpt {
    margin: 0 0 26px;
    font-size: 17px;
    line-height: 1.75;
    color: #6f6f6f;
}

.insights-featured-card__meta-bottom {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #8b8b8b;
    font-size: 13px;
}

.insights-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.insights-post-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.insights-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 198, 255, 0.32);
}

.insights-post-card__media {
    display: block;
    aspect-ratio: 1.1 / 0.8;
    overflow: hidden;
}

.insights-post-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.insights-post-card:hover .insights-post-card__image {
    transform: scale(1.04);
}

.insights-post-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
}

.insights-post-card__category {
    display: inline-block;
    margin-bottom: 14px;
    color: #7d7d7d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.insights-post-card__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.insights-post-card__title a {
    color: #0b0b0b;
    text-decoration: none;
    transition: color .3s ease;
}

.insights-post-card__title a:hover {
    color: var(--accent);
}

.insights-post-card__excerpt {
    margin: 0 0 18px;
    color: #6f6f6f;
    font-size: 15px;
    line-height: 1.75;
}

.insights-post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
    color: #8b8b8b;
    font-size: 12px;
}

.insights-post-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.insights-post-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #767676;
    background: #f4f6f8;
    border: 1px solid #f4f6f8;
    font-size: 12px;
    text-decoration: none;
    transition: all .3s ease;
}

.insights-post-card__tag:hover {
    color: var(--accent);
    border-color: rgba(76, 198, 255, 0.35);
}

.insights-sidebar {
    min-width: 0;
}

.insights-sidebar__sticky {
    position: sticky;
    top: 0;
    display: grid;
    gap: 20px;
}

.insights-sidebar__card {
    padding: 24px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.insights-sidebar__title {
    margin: 0 0 18px;
    color: #6f6f6f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insights-sidebar__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.insights-sidebar__list li a {
    color: #0b0b0b;
    text-decoration: none;
    line-height: 1.5;
    transition: color .3s ease;
}

.insights-sidebar__list li a:hover {
    color: var(--accent);
}

.insights-sidebar__list li time {
    display: block;
    margin-top: 4px;
    color: #8b8b8b;
    font-size: 12px;
}

.insights-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.insights-sidebar__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #707070;
    text-decoration: none;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.34);
    transition: all .3s ease;
}

.insights-sidebar__tag:hover {
    color: var(--accent);
    border-color: rgba(76, 198, 255, 0.34);
}

.insights-archive__pagination {
    margin-top: 38px;
}

.insights-archive__pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.insights-archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #6f6f6f;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.34);
    transition: all .3s ease;
}

.insights-archive__pagination .page-numbers:hover,
.insights-archive__pagination .page-numbers.current {
    color: #0b0b0b;
    border-color: rgba(76, 198, 255, 0.34);
    background: rgba(76, 198, 255, 0.14);
}

.insights-archive__empty {
    padding: 50px 32px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

/* statistics */
.results-proof {
    --rp-bg: #ffffff;
    --rp-text: #07122b;
    --rp-text-soft: #55657f;
    --rp-accent: #13bff4;
    --rp-line: #dbe4ef;
    --rp-surface: #ffffff;
    --rp-shadow: 0 18px 48px rgba(11, 23, 48, 0.06);
    --rp-radius: 24px;
    background: #f7fafe;
    padding: 120px 0 70px;
    position: relative;
}

.results-proof:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.results-proof__container {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.results-proof__intro {
    max-width: 860px;
    margin-bottom: 56px;
}

.results-proof__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.72;
}

.results-proof__title {
    margin: 0 0 16px;
    color: var(--rp-text);
    font-size: 60px;
    position: relative;
    left: -5px;
    line-height: 1.4;
    font-weight: 300;
}

.results-proof__title span {
    color: var(--rp-accent);
}

.results-proof__subtitle {
    max-width: 760px;
    margin: 0;
    color: var(--rp-text-soft);
    font-size: 16px;
    line-height: 1.42;
    letter-spacing: -0.02em;
}

.results-proof__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--rp-line);
    border-bottom: 1px solid var(--rp-line);
    margin-bottom: 34px;
}

.results-proof__summary-card {
    padding: 30px 15px;
    border-right: 1px solid var(--rp-line);
}

.results-proof__summary-card:last-child {
    border-right: none;
}

.results-proof__summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    color: #ffffff;
    background: #f5f6f8;
}

.results-proof__summary-icon svg {
    width: 22px;
    height: 22px;
    fill: #b1b1b1;
}

.results-proof__summary-value {
    margin-bottom: 12px;
    color: var(--rp-text);
    font-size: 24px;
    line-height: 0.95;
    font-weight: 700;
}

.results-proof__summary-value--text {
    font-size: 24px;
}

.results-proof__summary-heading {
    margin-bottom: 26px;
    color: var(--rp-text-soft);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.results-proof__summary-text {
    max-width: 340px;
    margin: 0;
    color: var(--rp-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.results-proof__cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.results-proof__case-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px 32px 28px;
    border: 1px solid var(--rp-line);
    border-radius: 15px;
    box-shadow: var(--rp-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.results-proof__case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(11, 23, 48, 0.09);
}

.results-proof__case-meta {
    margin-bottom: 12px;
    color: #7e8899;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.results-proof__case-title {
    margin: 0 0 28px;
    color: var(--rp-text);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.results-proof__case-value {
    margin-bottom: 8px;
    color: var(--rp-accent);
    font-size: 40px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.results-proof__case-subvalue {
    margin-bottom: 26px;
    color: var(--rp-text-soft);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.results-proof__case-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 22px;
    background: var(--rp-line);
}

.results-proof__case-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.results-proof__case-list li {
    position: relative;
    padding-left: 16px;
    color: var(--rp-text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.results-proof__case-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rp-accent);
}

.results-proof__case-link_wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.results-proof__case-link {
    display: table;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: var(--accent);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    text-decoration: none;
    text-align: right;
}

.results-proof__case-link:hover {
    text-decoration: underline;
    color: var(--accent);
}

.results-proof__case-link:visited {
    color: var(--accent);
}

/* first 12 */
.first12 {
    --first12-bg: #ffffff;
    --first12-text: #071133;
    --first12-muted: #5e6c84;
    --first12-line: #dbe4ee;
    --first12-accent: #10a6df;
    --first12-accent-dark: #0c94c7;
    --first12-icon-bg: #061033;

    position: relative;
    padding: 110px 0 60px;
    background: var(--first12-bg);
    overflow: clip;
}

.first12:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -55px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f7fafe;
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.first12__container {
    margin: 0 auto;
}

.first12__head {
    max-width: 920px;
    margin-bottom: 56px;
}

.first12__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #112342;
    opacity: 0.72;
}

.first12__title {
    margin: 0;
    font-size: 60px;
    line-height: 0.96;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: var(--first12-text);
    position: relative;
    left: -5px;
}

.first12__title span {
    color: var(--first12-accent);
}

.first12__subtitle {
    max-width: 920px;
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.4;
    color: #4c5f7d;
}

.first12__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 30px 60px;
}

.first12-card {
    transition:
            box-shadow 0.35s ease,
            background-color 0.35s ease;
    transform: translate3d(0, 0, 0);
}

.first12-card__week {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.11em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--first12-accent-dark);
}

.first12-card__title {
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--first12-text);
}

.first12-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-gap: 5px;
}

.first12-card__list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--first12-muted);
}

.first12-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--first12-accent);
}

@media (max-width: 1280px) {
    .first12-card {
        padding: 15px 0 30px;
        min-height: auto;
    }

    .first12-card__list li {
        font-size: 17px;
    }
}

@media (max-width: 991px) {

    .first12__head {
        margin-bottom: 38px;
    }

    .first12__subtitle {
        margin-top: 22px;
    }

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

    .first12-card:nth-child(2n) {
        border-right: none;
    }

    .first12-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--first12-line);
    }
    .first12 {
        padding: 100px 0 30px;
    }
}

@media (max-width: 640px) {


    .first12__container {
        width: min(100% - 20px, 1680px);
    }

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

    .first12-card {
        min-height: auto;
        border-right: none !important;
        border-bottom: 1px solid var(--first12-line);
    }

    .first12-card:last-child {
        border-bottom: none;
    }

    .first12-card__title {
        margin-bottom: 20px;
    }

    .first12-card__list li {
        font-size: 16px;
        line-height: 1.5;
    }

    .first12-card__list li::before {
        top: 10px;
    }
}

@media (max-width: 1100px) {
    .results-proof__cases {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .results-proof {
        padding: 100px 0 60px;
    }

    .results-proof__container {
        width: min(100%, calc(100% - 32px));
    }

    .results-proof__summary {
        grid-template-columns: 1fr;
    }

    .results-proof__summary-card {
        border-right: none;
        border-bottom: 1px solid var(--rp-line);
    }

    .results-proof__summary-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .results-proof__summary-value--text,.results-proof__summary-value{
        font-size: 36px;
    }

    .results-proof__summary-card:last-child{
        border-bottom: none;
        padding-bottom: 0;
    }

    .results-proof__summary{
        border-bottom: none;
    }

    .results-proof__intro {
        margin-bottom: 38px;
    }

    .results-proof__title {
        max-width: 320px;
    }

    .results-proof__case-card {
        padding-left: 15px;
        padding-right: 15px;
    }

    .results-proof__summary-card {
        padding-left: 0;
        padding-right: 0;
    }

    .results-proof__case-value {
        font-size: 46px;
    }
}

@keyframes vsDashMoveA {
    from {
        stroke-dashoffset: 0;
        transform: rotate(0deg);
    }
    to {
        stroke-dashoffset: -260;
        transform: rotate(360deg);
    }
}

@keyframes vsDashMoveB {
    from {
        stroke-dashoffset: 0;
        transform: rotate(0deg);
    }
    to {
        stroke-dashoffset: 220;
        transform: rotate(-360deg);
    }
}

@media (max-width: 1240px) {
    .voyager-sustain__hero {
        grid-template-columns: 240px minmax(360px, 1fr) 240px;
        gap: 18px;
    }

    .voyager-sustain__center-wrap {
        grid-template-columns: 28px minmax(360px, 1fr) 28px;
    }

    .voyager-sustain__orbit {
        width: min(100%, 500px);
    }

    .voyager-sustain__core {
        width: 226px;
        height: 226px;
    }

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

@media (max-width: 991px) {
    .voyager-sustain {
        padding: 88px 0 74px;
    }

    .voyager-sustain__hero {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 30px;
    }

    .voyager-sustain__center-wrap {
        grid-template-columns: 1fr;
    }

    .voyager-sustain__flow-arrow {
        display: none;
    }

    .voyager-sustain__side-card--input {
        order: 2;
    }

    .voyager-sustain__center-wrap {
        order: 1;
    }

    .voyager-sustain__side-card--quote {
        order: 3;
    }
}

@media (max-width: 767px) {
    .voyager-sustain {
        padding: 78px 0 66px;
    }

    .voyager-sustain__title {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .voyager-sustain__orbit {
        width: min(100%, 360px);
    }

    .voyager-sustain__core {
        width: 182px;
        height: 182px;
    }

    .voyager-sustain__core-badge {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .voyager-sustain__core-title {
        font-size: 22px;
    }

    .voyager-sustain__core-text {
        font-size: 13px;
        max-width: 130px;
    }

    .voyager-sustain__grid {
        grid-template-columns: 1fr;
    }

    .voyager-sustain__feature-title {
        font-size: 18px;
    }

    .voyager-sustain__feature-text,
    .voyager-sustain__input-list li {
        font-size: 15px;
    }

    .voyager-sustain__quote {
        font-size: 20px;
    }
}

@media (max-width: 1279px) {
    .navigator-delivery {
        --nd-ring-size: 450px;
        --nd-core-size: 250px;
    }

    .navigator-delivery__layout {
        grid-template-columns: minmax(260px, 340px) minmax(320px, 460px) minmax(260px, 340px);
        gap: 18px;
    }

    .navigator-delivery__card {
        min-height: 278px;
        padding: 22px 22px 20px;
    }
}

@media (max-width: 1099px) {
    .navigator-delivery {
        --nd-ring-size: 430px;
        --nd-core-size: 235px;
    }

    .navigator-delivery__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .navigator-delivery__center {
        order: 1;
    }

    .navigator-delivery__col--left {
        order: 2;
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .navigator-delivery__col--right {
        order: 3;
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .navigator-delivery {
        --nd-ring-size: 330px;
        --nd-core-size: 190px;
        padding: 100px 0 60px;
    }

    .navigator-delivery__intro {
        margin-bottom: 30px;
    }

    .navigator-delivery__title {
        max-width: 340px;
    }

    .navigator-delivery__orbit {
        margin: 0 auto;
    }

    .navigator-delivery__col--left,
    .navigator-delivery__col--right {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .navigator-delivery__card {
        min-height: auto;
    }

    .navigator-delivery__badge {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .navigator-delivery__item p {
        font-size: 14px;
    }
}

/* Blog internal page */
.insights-single{
    position: relative;
    background-image: url('../assets/images/blog.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.insights-single__hero{
    padding-top: 180px;
    padding-bottom: 46px;
}

.insights-single__hero-container{
    position: relative;
}

.insights-single__breadcrumbs{
    margin-bottom: 30px;
}

.insights-single__hero-layout{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 48px;
    align-items: start;
}

.insights-single__hero-main{
    max-width: 780px;
}

.insights-single__category-wrap{
    margin-bottom: 18px;
}

.insights-single__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: #fff;
    background: var(--accent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease;
}

.insights-single__category:hover,
.insights-single__category--active {
    color: #6f6f6f !important;
    border: 1px solid #f4f6f8;
    background: transparent;
}

.insights-single__category:visited {
    color: #6f6f6f;
}

.insights-single__title{
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 300;
    color: #0b0b0b;
}

.insights-single__excerpt{
    margin: 0 0 24px;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.75;
    color: #6f6f6f;
}

.insights-single__meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.insights-single__meta-item{
    font-size: 14px;
    line-height: 1.5;
    color: #5c5c5c;
}

.insights-single__meta-separator{
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(63, 55, 55, 0.22);
}

.insights-single__tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.insights-single__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #767676;
    background: #f4f6f8;
    border: 1px solid #f4f6f8;
    font-size: 12px;
    text-decoration: none;
    transition: all .3s ease;
}

.insights-single__tag:hover {
    color: var(--accent);
    border-color: rgba(76, 198, 255, 0.35);
}

.insights-single__hero-media{
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.22);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.insights-single__image{
    display: block;
    width: 100%;
    height: auto;
}

.insights-single__content{
    padding-top: 12px;
    padding-bottom: 100px;
}

.insights-single__layout{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
    align-items: start;
}

.insights-single__main{
    min-width: 0;
}

.insights-single__prose{
    color: #3f3737;
}

.insights-single__prose > *:first-child{
    margin-top: 0;
}

.insights-single__prose h2,
.insights-single__prose h3,
.insights-single__prose h4{
    margin: 52px 0 18px;
    color: #0b0b0b;
    line-height: 1.08;
    font-weight: 400;
}

.insights-single__prose h2{
    font-size: clamp(30px, 3.2vw, 44px);
}

.insights-single__prose h3{
    font-size: clamp(24px, 2.4vw, 34px);
}

.insights-single__prose p,
.insights-single__prose ul,
.insights-single__prose ol{
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.85;
    color: #4b4b4b;
}

.insights-single__prose ul,
.insights-single__prose ol{
    padding-left: 24px;
}

.insights-single__prose li{
    margin-bottom: 10px;
}

.insights-single__prose a{
    color: #1f1f1f;
    text-decoration: none;
    border-bottom: 1px solid rgba(76, 198, 255, 0.38);
    transition: all .3s ease;
}

.insights-single__prose a:hover{
    color: var(--accent);
    border-color: var(--accent);
}

.insights-single__prose blockquote{
    margin: 34px 0;
    padding: 26px 28px;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,0.28);
    border-radius: 0 20px 20px 0;
    color: #2f2f2f;
}

.insights-single__prose img{
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 34px 0;
}

.insights-single__post-nav{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 54px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.insights-single__post-nav-item a{
    display: table;
    background: transparent;
    color: #1f1f1f;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 14px;
}

.insights-single__post-nav-item a:hover{
    color: var(--accent);
}

.insights-single__post-nav-item--next{
    display: flex;
    justify-content: flex-end;
}

.insights-single-sidebar{
    position: relative;
}

.insights-single-sidebar__sticky{
    display: grid;
    gap: 18px;
}

.insights-single-sidebar__card{
    padding: 22px 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.24);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.32);
    transition: transform .3s ease, box-shadow .3s ease;
}

.insights-single-sidebar__title{
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
}

.insights-single-sidebar__meta-list,
.insights-single-sidebar__related-list{
    margin: 0;
    padding: 0;
    list-style: none;
}

.insights-single-sidebar__meta-list li{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.insights-single-sidebar__meta-list li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}

.insights-single-sidebar__meta-list span{
    font-size: 13px;
    color: #7a7a7a;
}

.insights-single-sidebar__meta-list strong{
    font-size: 15px;
    font-weight: 500;
    color: #232323;
}

.insights-single-sidebar__related-list li + li{
    margin-top: 14px;
}

.insights-single-sidebar__related-list a{
    color: #232323;
    line-height: 1.55;
    text-decoration: none;
    transition: color .3s ease;
}

.insights-single-sidebar__related-list a:hover{
    color: var(--accent);
}

.insights-single-sidebar__text{
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #5e5e5e;
}

.insights-single-sidebar__cta__wrapper{
    display: flex;
    justify-content: flex-end;
}

.insights-single-sidebar__cta{
    display: table;
    border: none;
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
    transition: all .3s ease;
}

.insights-single-sidebar__cta:visited{
    color: var(--accent);
}

.insights-single-sidebar__cta:hover{
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(76, 198, 255, 0.08);
}

/* Contact US */
.contact-page {
    position: relative;
    padding: 90px 0 120px;
    overflow: hidden;

    background-image: url('../assets/images/blog.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    column-gap: 64px;
    margin-bottom: 72px;
}

.contact-hero-copy {
    max-width: 760px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #f4f6f8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff !important;
    background: var(--accent);
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease;
    margin-bottom: 30px;
}

.contact-title {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 300;
    color: #07142f;
    position: relative;
}

.contact-subtitle {
    margin: 34px 0 0;
    max-width: 820px;
    font-size: 16px;
    line-height: 1.6;
    color: #677083;
}

.contact-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 420px;
}

.contact-blob-wrap {
    position: relative;
    width: 100%;
    height: 500px; /* Важливо, щоб була висота */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

#contactBlobCanvas {
    width: 100%;
    height: 100%;
}

.contact-blob-img {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    user-select: none;
}
.contact-main {
    min-width: 0;
}

.contact-section-head {
    margin-bottom: 28px;
}

.contact-section-head h2 {
    margin: 0 0 8px;
}

.contact-section-head p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px 15px;
}

.contact-card {
    appearance: none;
    text-align: left;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(17, 24, 45, 0.06);
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(17, 24, 45, 0.06);
    border-color: rgba(106, 184, 255, 0.35);
}

.contact-card.active {
    border-color: rgba(106, 184, 255, 0.6);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 24px 60px rgba(17, 24, 45, 0.07);
}

.contact-card__icon {
    font-size: 24px;
    margin-bottom: 18px;
}

.contact-card__icon svg{
    width: 25px;
    height: 25px;
    fill: var(--accent);
}

.contact-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
    color: #11182d;
}

.contact-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #556072;
}

.contact-side {
    position: relative;
}

.contact-info-card {
    padding: 30px 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(17, 24, 45, 0.06);
    box-shadow: 0 18px 55px rgba(17, 24, 45, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-info-card h3 {
    margin: 0 0 28px;
    font-size: 20px;
    color: #11182d;
}

.contact-info-item + .contact-info-item {
    margin-top: 22px;
}

.contact-info-item span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #8a93a5;
    text-transform: uppercase;
}

.contact-info-item p {
    margin: 0;
    font-size: 18px;
    color: #11182d;
    line-height: 1.5;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
}

.contact-info-card small {
    display: block;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.7;
    color: #6f7788;
}

@media (max-width: 1199px) {


    .contact-hero-visual {
        justify-content: flex-start;
    }

    .contact-blob-wrap {
        width: min(100%, 520px);
    }

    .contact-info-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding: 64px 0 90px;
    }

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

    .contact-card {
        padding: 22px;
    }
}

@media (max-width: 1199px) {

    .contact-blob-wrap {
        max-width: 520px;
        height: 340px;
    }
}

/* Page About */
:root {
    --uai-blue: #4cc6ff;
    --uai-blue-soft: rgba(76, 198, 255, .12);
    --uai-blue-border: rgba(76, 198, 255, .32);
    --uai-navy: #071933;
    --uai-text: #63708a;
    --uai-bg: #f5f9fd;
    --uai-card: #ffffff;
    --uai-line: #dceef8;
}

.uai-about-page {
    font-family: "Montserrat", sans-serif;
    color: var(--uai-navy);
    background: #fff;
}

.about-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.about-section-head h2 {
    margin: 0 0 20px;
}

.about-section-head p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--uai-text);
}

/* HERO */
.about-hero {
    position: relative;
    min-height: 880px;
    padding: 190px 0 110px;
    background-image: url(../assets/images/blog.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.about-hero__content {
    max-width: 980px;
    position: relative;
    z-index: 2;
}

.about-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.about-hero__tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #e8ebed;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #6f6f6f;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease;
}

.about-hero__title {
    max-width: 780px;
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: #07142f;
    position: relative;
}

.about-hero__title span {
    color: var(--uai-blue);
}

.about-hero__text {
    max-width: 600px;
    margin-top: 25px;
    color: #7d7d7d;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 60px;
}

.about-btn {
    display: table;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
    text-align: center;
}

.about-btn--primary {
    color: #fff;
    background: var(--uai-blue);
    box-shadow: 0 18px 34px rgba(76, 198, 255, .25);
}

.about-btn--secondary {
    color: var(--uai-navy);
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--uai-blue-border);
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-btn--primary:visited {
    color: #fff;
}

.about-btn--secondary:visited {
    color: var(--uai-navy);
}
.about-hero__visual {
    position: absolute;
    right: 100px;
    top: 235px;
    z-index: 1;
    font-size: clamp(180px, 29vw, 470px);
    line-height: 1;
    font-weight: 900;
    pointer-events: none;
}

.about-hero__visual span {
    color: white;
    text-shadow: -1px -1px 0 rgb(170 152 152 / 15%), 1px -1px 0 rgb(170 152 152 / 15%), -1px 1px 0 rgb(170 152 152 / 15%), 1px 1px 0 rgb(170 152 152 / 15%);
}

/* MISSION + WHO */
.about-mission-who {
    padding: 110px 0 0px;
    background:
            radial-gradient(circle at 50% 35%, rgba(76, 198, 255, .08), transparent 32%),
            #fff;
}

.about-mission {
    max-width: 1120px;
    margin: 0 auto 160px;
    text-align: center;
}

.about-who__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-who-card {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    transition: .3s ease;
    box-shadow: 0 18px 48px rgba(12, 22, 48, 0.08);
}

.about-who-card__icon,
.about-glance-inline-item__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 5px;
    background: var(--uai-blue-soft);
    border: 1px solid var(--uai-blue-border);
    flex: 0 0 auto;
}

.about-who-card__icon svg,
.about-glance-inline-item__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--uai-blue);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-who-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.about-who-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--uai-text);
}

.about-who-card__num {
    position: absolute;
    right: 26px;
    top: 18px;
    font-size: 76px;
    line-height: 1;
    font-weight: 700;
    color: rgba(76, 198, 255, .07);
}

/* CEO */
.about-ceo {
    padding: 125px 0;
    background: #fff;
}

.about-ceo__title {
    margin: 0 auto 70px;
    text-align: center;
}

.about-ceo__layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 76px;
    align-items: start;
}

.about-ceo__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: var(--uai-bg);
    border: 1px solid var(--uai-line);
}

.about-ceo__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-ceo__profile h3 {
    margin: 28px 0 8px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
}

.about-ceo__profile p {
    margin: 0;
    font-size: 14px;
    color: var(--uai-blue);
}

.about-ceo__content {
    max-width: 980px;
}

.about-ceo__content p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.75;
    color: #53627d;
}

.about-ceo__content p:last-child{
    margin-bottom: 0;
}

.about-ceo__content p span {
    color: var(--uai-blue);
}

/* IDENTITY */
.about-identity {
    padding: 80px 0 100px;
    background: var(--uai-bg);
}

.about-identity__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.about-identity-card {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    transition: .3s ease;
    position: relative;
    box-shadow: 0 18px 48px rgba(12, 22, 48, 0.08);
}

.about-identity-card span {
    display: block;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--uai-blue);
}

.about-identity-card h3 {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}

.about-identity-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--uai-text);
}

.about-identity__statement {
    margin: 90px auto 0;
    text-align: center;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -.05em;
}

.about-identity__statement span {
    color: var(--uai-blue);
}

/* UPDATED LEADERSHIP TEAM */
.about-team {
    padding: 125px 0;
    background: #fff;
}

.about-team--horizontal .about-section-head {
    margin-bottom: 64px;
}

.about-team-horizontal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-team-horizontal-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 28px;
    align-items: start;
    min-height: 245px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 18px 48px rgba(12, 22, 48, 0.08);
    transition: .35s ease;
}

.about-team-horizontal-card__photo {
    width: 150px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--uai-bg);
}

.about-team-horizontal-card__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-team-horizontal-card__content span {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--uai-blue);
}

.about-team-horizontal-card__content h3 {
    margin: 0 0 18px;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -.025em;
    color: var(--uai-navy);
}

.about-team-horizontal-card__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--uai-text);
}

/* UPDATED GLANCE */
.about-glance-values {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--uai-bg) 0%, #fff 100%);
}

.about-glance--inline .about-section-head {
    margin-bottom: 60px;
}

.about-glance-inline__grid {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-glance-inline-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
}

.about-glance-inline-item__icon {
    width: 58px;
    height: 58px;
    border-radius: 5px;
}

.about-glance-inline-item__icon svg {
    width: 28px;
    height: 28px;
}

.about-glance-inline-item span {
    display: block;
    margin-bottom: 9px;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--uai-blue);
}

.about-glance-inline-item strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 300;
    color: var(--uai-navy);
}

/* VALUES */
.about-values__list {
    display: grid;
    grid-gap: 0 30px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
}

.about-value-row {
    display: grid;
    grid-template-columns: 48px 48px 1fr;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid var(--uai-line);
}

.about-value-row span,
.about-value-row i {
    font-size: 20px;
    font-style: normal;
    color: rgba(76, 198, 255, .62);
}

.about-value-row i{
    position: relative;
    top: -2px;
}

.about-value-row strong {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
    color: var(--uai-navy);
}

/* CTA */
.about-final-cta {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    padding: 110px 0;
    background: var(--uai-blue);
    overflow: hidden;
}

.about-final-cta__bg__curve{
    width: 100%;
    position: relative;
}

.about-final-cta__bg__curve:before {
    content: "";
    position: absolute;
    z-index: 5;
    bottom: -46px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--uai-blue);
    background-position: bottom center;
    clip-path: ellipse(60% 100% at 50% 0);
}

.about-final-cta__bg {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: clamp(210px, 34vw, 520px);
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, .12);
    pointer-events: none;
}

.about-final-cta__particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
}

.about-final-cta__particles span:nth-child(1) { left: 8%; top: 18%; }
.about-final-cta__particles span:nth-child(2) { right: 11%; top: 24%; width: 16px; height: 16px; }
.about-final-cta__particles span:nth-child(3) { left: 24%; bottom: 18%; width: 12px; height: 12px; }
.about-final-cta__particles span:nth-child(4) { right: 30%; bottom: 28%; width: 18px; height: 18px; }
.about-final-cta__particles span:nth-child(5) { right: 5%; top: 47%; }

.about-final-cta h2{
    color: #fff;
}

.about-final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    text-align: center;
    color: #fff;
}

.about-final-cta p {
    max-width: 800px;
    margin: 45px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .92);
}

.about-final-cta__btn {
    display: table;
    align-items: center;
    justify-content: center;
    margin: 48px auto 0;
    padding: 15px 30px;
    background: #fff;
    color: var(--accent);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 24px 50px rgba(7, 25, 51, .12);
    transition: .3s ease;
}

.about-final-cta__btn:hover {
    transform: translateY(-4px);
}

.about-final-cta__btn:visited {
    color: var(--accent);
}

/* GSAP initial states */
.about-reveal,
.about-stagger > * {
    will-change: transform, opacity;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .about-hero {
        min-height: auto;
    }

    .about-ceo__layout {
        grid-template-columns: 300px 1fr;
        gap: 44px;
    }

    .about-team-horizontal__grid {
        grid-template-columns: 1fr;
    }

    .about-glance-inline__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 860px) {
    .about-hero {
        overflow: hidden;
    }

    .about-hero {
        padding: 115px 0 80px;
    }

    .about-hero__text {
        margin-top: 34px;
    }

    .about-hero__visual {
        top: 360px;
        right: 15px;
        opacity: .7;
    }



    .about-who__grid,
    .about-identity__grid {
        grid-template-columns: 1fr;
    }

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

    .about-ceo__layout {
        grid-template-columns: 1fr;
    }



    .about-team-horizontal-card {
        grid-template-columns: 125px 1fr;
        gap: 22px;
    }

    .about-team-horizontal-card__photo {
        width: 125px;
        height: 125px;
    }

    .about-team-horizontal-card__content p {
        font-size: 16px;
    }

    .about-value-row {
        grid-template-columns: 34px 34px 1fr;
    }

    .about-final-cta {
        min-height: 430px;
    }

    .about-final-cta p {
        font-size: 19px;
    }
}

@media (max-width: 620px) {
    .about-team-horizontal-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .about-team-horizontal-card__photo {
        width: 132px;
        height: 132px;
    }

    .about-glance-inline-item {
        grid-template-columns: 54px 1fr;
    }

}

@media (max-width: 540px) {
    .about-btn,
    .about-final-cta__btn {
        width: 100%;
    }

    .about-identity-card,
    .about-who-card {
        padding: 26px;
    }
}

/* Use Cases */
:root {
    --accent: #4cc6ff;
    --navy: #071431;
    --muted: #5f6f86;
    --soft: #f7fbfe;
    --line: rgba(7, 20, 49, 0.08);
    --accent-soft: rgba(76, 198, 255, 0.12);
}

.usecase-page {
    position: relative;
    overflow: hidden;
    color: var(--navy);
    background-image: url(../assets/images/blog.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.usecase-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
            repeating-radial-gradient(
                    ellipse at 20% 20%,
                    rgba(7, 20, 49, 0.035) 0,
                    rgba(7, 20, 49, 0.035) 1px,
                    transparent 1px,
                    transparent 18px
            );
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    z-index: 0;
}

.usecase-page > section {
    position: relative;
    z-index: 1;
}

.usecase-hero {
    padding: 190px 0 110px;
}

.usecase-hero__grid {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.usecase-hero__content .usecase-breadcrumb{
    justify-content: center;
}

.usecase-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 42px;
    font-size: 14px;
    color: var(--muted);
}

.usecase-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.usecase-breadcrumb a:hover {
    color: var(--accent);
}

.usecase-breadcrumb span:last-child {
    color: var(--navy);
}

.usecase-hero__title {
    max-width: 720px;
    margin: 0 auto;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: var(--navy);
}

.usecase-hero__text {
    max-width: 660px;
    margin: 32px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: #7d7d7d;
}

.usecase-hero__text strong {
    color: var(--accent);
    font-weight: 500;
}

.usecase-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
    justify-content: center;
}

.usecase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.usecase-btn--primary {
    color: #fff;
    background: var(--accent);
}

.usecase-btn--primary.usecase-btn:visited {
    color: #fff;
}

.usecase-btn--secondary {
    color: var(--uai-navy);
    border: 1px solid var(--uai-blue-border);
    background: rgba(255, 255, 255, 0.5);
}

.usecase-btn--secondary.usecase-btn:visited {
    color: var(--uai-navy);
}

.usecase-btn--secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.usecase-hero__visual {
    display: flex;
    justify-content: center;
}

.usecase-metrics {
    padding: 34px 0 94px;
}

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

.usecase-context-card,
.usecase-simple-card,
.usecase-achievement-card {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 60px rgba(7, 20, 49, 0.035);
}

.usecase-simple-card{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 30px;
    align-items: center;
}

.usecase-metric-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: 35px;
    line-height: 1;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.usecase-metric-card span {
    color: var(--muted);
    font-size: 14px;
}

.usecase-overview {
    padding: 30px 0 30px;
}

.usecase-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
    gap: clamp(44px, 7vw, 110px);
    align-items: start;
}

.usecase-section-text h2,
.usecase-section-head h2,
.usecase-approach h2,
.usecase-achievements h2 {
    margin: 0 0 28px;
}

.usecase-section-text p,
.usecase-section-head p {
    max-width: 800px;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #7d7d7d;
}

.usecase-context-card {
    padding: 36px 42px;
}

.usecase-context-card h3 {
    margin: 0 0 22px;
    font-size: 16px;
    text-transform: uppercase;
}

.usecase-context-card dl {
    margin: 0;
}

.usecase-context-card div {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 24px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(7, 20, 49, 0.06);
}

.usecase-context-card div:last-child {
    border-bottom: 0;
}

.usecase-context-card dt {
    color: #8390a4;
    font-size: 14px;
    font-weight: 400;
}

.usecase-context-card dd {
    margin: 0;
    color: var(--navy);
    font-weight: 400;
    text-align: right;
    font-size: 14px;
}

.usecase-challenge {
    padding: 64px 0 118px;
}

.usecase-challenge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 58px;
}

.usecase-simple-card {
    padding: 30px;
}

.usecase-simple-card span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(76, 198, 255, 0.12);
}

.usecase-simple-card span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.usecase-simple-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.usecase-approach {
    padding: 92px 0 104px;
    background: linear-gradient(180deg, rgba(247, 251, 254, 0.65), rgba(255, 255, 255, 0));
}

.usecase-approach__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-top: 68px;
}

.usecase-step {
    position: relative;
}

.usecase-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px;
    right: -28px;
    width: 42px;
    height: 1px;
    background: rgba(76, 198, 255, 0.42);
}

.usecase-step__number {
    margin-bottom: 28px;
    font-size: clamp(54px, 5vw, 76px);
    line-height: 1;
    color: rgba(76, 198, 255, 0.24);
    font-weight: 300;
    letter-spacing: -0.07em;
}

.usecase-step h3 {
    margin: 0 0 18px;
    font-size: 16px;
    text-transform: uppercase;
}

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

.usecase-achievements {
    padding: 64px 0 112px;
}

.usecase-achievements__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.usecase-achievement-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 30px;
}

.usecase-achievement-card span {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}

.usecase-achievement-card p {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.45;
}

.usecase-cta {
    padding: 60px 0 80px;
}

.usecase-cta__box {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 64px 40px;
    border-radius: 34px;
    background:
            linear-gradient(135deg, rgba(76, 198, 255, 0.11), rgba(255, 255, 255, 0.72)),
            repeating-linear-gradient(
                    0deg,
                    rgba(76, 198, 255, 0.07) 0,
                    rgba(76, 198, 255, 0.07) 1px,
                    transparent 1px,
                    transparent 20px
            );
}

.usecase-cta__box h2 {
    max-width: 900px;
}

.usecase-cta__box p {
    max-width: 840px;
    margin: 24px auto 34px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .usecase-overview__grid {
        grid-template-columns: 1fr;
    }

    .usecase-hero__visual {
        justify-content: flex-start;
    }

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

    .usecase-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .usecase-breadcrumb {
        margin-bottom: 28px;
        font-size: 13px;
    }

    .usecase-hero__title {
        font-size: 30px;
    }

    .usecase-challenge__grid,
    .usecase-approach__grid,
    .usecase-achievements__grid {
        grid-template-columns: 1fr;
    }

    .usecase-context-card {
        padding: 28px 24px;
    }

    .usecase-context-card div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .usecase-context-card dd {
        text-align: left;
    }

    .usecase-achievement-card {
        align-items: flex-start;
        padding: 26px 24px;
    }

    .usecase-cta__box {
        min-height: auto;
        padding: 54px 22px;
        border-radius: 24px;
    }
}


.site-breadcrumb,
.usecase-breadcrumb,
.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 42px;
    font-size: 14px;
    color: var(--muted);
}

.site-breadcrumb a,
.usecase-breadcrumb a,
.blog-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-breadcrumb a:hover,
.usecase-breadcrumb a:hover,
.blog-breadcrumb a:hover {
    color: var(--accent);
}

.site-breadcrumb span[aria-current="page"],
.usecase-breadcrumb span[aria-current="page"],
.blog-breadcrumb span[aria-current="page"] {
    color: var(--navy);
}

.site-breadcrumb__separator,
.usecase-breadcrumb__separator,
.blog-breadcrumb__separator {
    color: rgba(7, 20, 49, 0.35);
}


.usecase-comms-challenge {
    padding: 64px 0 96px;
}

.usecase-section-head--left {
    max-width: 900px;
}

.usecase-section-head--center {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.usecase-section-head h2 {
    margin: 0;
}

.usecase-section-head p {
    max-width: 860px;
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.usecase-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.usecase-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 58px;
}

.usecase-problem-card {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
    box-shadow:
            0 18px 60px rgba(7, 20, 49, 0.045),
            inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    overflow: hidden;
    display: grid;
    grid-gap: 30px;
    align-items: center;
    grid-template-columns: auto 1fr;
}

.usecase-problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 12% 18%, rgba(76, 198, 255, 0.11), transparent 32%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.usecase-problem-card:hover::before {
    opacity: 1;
}

.usecase-problem-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    color: var(--accent);
    background: rgba(76, 198, 255, 0.11);
    box-shadow: 0 12px 28px rgba(76, 198, 255, 0.12);
}

.usecase-problem-card__icon svg {
    width: 22px;
    height: 22px;
}

.usecase-problem-card__icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.usecase-problem-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: var(--navy);
}

.usecase-diagnostic-model {
    padding: 74px 0 118px;
}

.usecase-diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.usecase-diagnostic-card {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
    box-shadow:
            0 22px 70px rgba(7, 20, 49, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.usecase-diagnostic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 18% 18%, rgba(76, 198, 255, 0.13), transparent 30%),
            linear-gradient(135deg, rgba(76, 198, 255, 0.05), transparent 48%);
    opacity: 0.65;
    pointer-events: none;
}

.usecase-diagnostic-card__ghost {
    position: absolute;
    right: 36px;
    bottom: 15px;
    z-index: 0;
    font-size: 128px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.08em;
    color: rgba(76, 198, 255, 0.07);
    pointer-events: none;
}

.usecase-diagnostic-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
}

.usecase-diagnostic-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.usecase-problem-card,
.usecase-diagnostic-card {
    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
}

.usecase-problem-card:hover,
.usecase-diagnostic-card:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 198, 255, 0.22);
    box-shadow:
            0 26px 80px rgba(7, 20, 49, 0.07),
            0 18px 44px rgba(76, 198, 255, 0.07);
}

@media (max-width: 1100px) {
    .usecase-problem-grid,
    .usecase-diagnostic-grid {
        grid-template-columns: 1fr;
    }

    .usecase-diagnostic-card {
        min-height: auto;
    }

    .usecase-diagnostic-card p {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .usecase-comms-challenge {
        padding: 42px 0 70px;
    }



    .usecase-problem-grid,
    .usecase-diagnostic-grid {
        gap: 18px;
        margin-top: 38px;
    }

    .usecase-problem-card,
    .usecase-diagnostic-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .usecase-diagnostic-card__ghost {
        right: 24px;
        top: 20px;
        font-size: 96px;
    }
}

.usecase-impact {
    position: relative;
    padding: 84px 0 112px;
}

.usecase-impact__grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    align-items: center;
    gap: 30px;
}

.usecase-impact__content {
    max-width: 720px;
}

.usecase-impact__content h2 {
    margin: 0;
}

.usecase-impact__content p {
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.usecase-impact-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.usecase-impact-step {
    position: relative;
    min-height: 186px;
    padding: 15px;
    border-radius: 15px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
            radial-gradient(circle at 18% 16%, rgba(76, 198, 255, 0.1), transparent 34%);
    box-shadow:
            0 18px 56px rgba(7, 20, 49, 0.045),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
}

.usecase-impact-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -27px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background: var(--accent);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    opacity: 0.9;
}

.usecase-impact-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -35px;
    width: 34px;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(76, 198, 255, 0.18), rgba(76, 198, 255, 0.72));
}

.usecase-impact-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 26px;
    border-radius: 5px;
    background: rgba(76, 198, 255, 0.11);
    border: 1px solid rgba(76, 198, 255, 0.26);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.usecase-impact-step h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--navy);
}

.usecase-impact-step p {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.62;
    color: var(--muted);
}

.usecase-impact-step {
    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
}

.usecase-impact-step:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 198, 255, 0.55);
    box-shadow:
            0 26px 80px rgba(7, 20, 49, 0.07),
            0 18px 44px rgba(76, 198, 255, 0.08);
}

@media (max-width: 1200px) {
    .usecase-impact__grid {
        grid-template-columns: 1fr;
    }

    .usecase-impact-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usecase-impact-step:not(:last-child)::before,
    .usecase-impact-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 760px) {


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

    .usecase-impact-step {
        min-height: auto;
        padding: 26px 24px;
    }

    .usecase-impact-step:not(:last-child)::before {
        display: block;
        left: 45px;
        right: auto;
        top: auto;
        bottom: -18px;
        width: 1px;
        height: 18px;
        transform: none;
        background: linear-gradient(180deg, rgba(76, 198, 255, 0.65), rgba(76, 198, 255, 0.08));
    }
}

:root {
    --beacon-navy: #10162d;
    --beacon-text: #667292;
    --beacon-muted: #98a4bc;
    --beacon-line: #dfe8f4;
    --beacon-blue: #8fc6ff;
    --beacon-blue-strong: #74b8ff;
    --beacon-bg: #f6f9fd;
    --beacon-card: #ffffff;
}

.beacon-action {
    position: relative;
    padding: 92px 0 112px;
    overflow: hidden;
}

.beacon-action__head {
    max-width: 860px;
    margin: 0 auto 86px;
    text-align: center;
}

.beacon-action__head h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.065em;
    font-weight: 300;
    color: var(--navy);
}

.beacon-action__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(48px, 7vw, 110px);
}

.beacon-action__steps::before {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    top: 45px;
    height: 1px;
    background: rgba(76, 198, 255, 0.22);
    z-index: 0;
}

.beacon-action-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.beacon-action-step__marker {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(76, 198, 255, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
            0 18px 48px rgba(76, 198, 255, 0.12),
            inset 0 0 0 12px rgba(76, 198, 255, 0.07);
    backdrop-filter: blur(14px);
}

.beacon-action-step__marker::before {
    content: "";
    position: absolute;
    inset: -11px;
    border: 1px solid rgba(76, 198, 255, 0.16);
    border-radius: 50%;
}

.beacon-action-step__marker::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 13px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(76, 198, 255, 0.65);
}

.beacon-action-step__marker span {
    position: relative;
    z-index: 1;
    font-size: 21px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.beacon-action-step h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--navy);
}

.beacon-action-step p {
    max-width: 440px;
    margin: 26px auto 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.beacon-action-step {
    transition: transform 0.35s ease;
}

.beacon-action-step:hover {
    transform: translateY(-6px);
}

.beacon-action-step:hover .beacon-action-step__marker {
    border-color: rgba(76, 198, 255, 0.72);
    box-shadow:
            0 24px 66px rgba(76, 198, 255, 0.18),
            inset 0 0 0 12px rgba(76, 198, 255, 0.1);
}

@media (max-width: 980px) {
    .beacon-action__steps {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .beacon-action__steps::before {
        display: none;
    }

    .beacon-action-step p {
        max-width: 620px;
    }
}

@media (max-width: 760px) {


    .beacon-action__head {
        margin-bottom: 58px;
    }

    .beacon-action-step__marker {
        width: 78px;
        height: 78px;
        margin-bottom: 26px;
    }

    .beacon-action-step__marker span {
        font-size: 18px;
    }
}

.beacon-fw-page {
    background: #fff;
    color: var(--beacon-navy);
    overflow: hidden;
}

.beacon-fw-page *,
.beacon-fw-page *::before,
.beacon-fw-page *::after {
    box-sizing: border-box;
}

.beacon-fw-page svg {
    width: 17px;
    height: 17px;
    fill: var(--accent);
    margin-top: 5px;
}

.beacon-fw-page section {
    position: relative;
    padding: 80px 0 80px;
}

.beacon-fw-framework,
.beacon-fw-method,
.beacon-fw-delivery,
.beacon-fw-cta {
    background: var(--beacon-bg);
}

.beacon-fw-section-head {
    max-width: 980px;
    margin-bottom: clamp(38px, 5vw, 72px);
}

.beacon-fw-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.beacon-fw-section-head p {
    max-width: 900px;
    margin: 30px auto 0;
    color: var(--beacon-text);
    font-size: 16px;
    line-height: 1.6;
}

.beacon-fw-btn {
    display: table;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

.beacon-fw-btn:hover {
    transform: translateY(-3px);
}

.beacon-fw-btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 16px 34px rgba(16, 22, 45, 0.14);
}

.beacon-fw-btn--primary:visited {
    color: #fff;
}

.beacon-fw-btn--secondary {
    color: var(--uai-navy);
    background: transparent;
    border: 1px solid var(--uai-blue-border);
}

.beacon-fw-btn--secondary:hover {
    transform: translateY(-3px);
}

.about-btn--secondary:visited {
    color: var(--uai-navy);
}

/* HERO */

.beacon-fw-hero {
    min-height: 900px;
    display: flex;
    align-items: center;
    background-image: url(../assets/images/blog.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.beacon-fw-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(640px, 1.1fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
}

.beacon-fw-hero__content {
    max-width: 720px;
}

.beacon-fw-hero__content .site-breadcrumb {
    margin-bottom: 28px;
}

.beacon-fw-hero__title {
    margin: 42px 0 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 300;
    color: #07142f;
}

.beacon-fw-hero__title span {
    display: block;
    color: var(--accent);
}

.beacon-fw-hero__lead {
    max-width: 700px;
    margin: 42px 0 0;
    color: var(--beacon-text);
    font-size: 16px;
    text-transform: uppercase;
}

.beacon-fw-hero__text {
    max-width: 720px;
    margin: 34px 0 0;
    color: #7d7d7d;
    font-size: 16px;
}

.beacon-fw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 58px;
}

/* HERO VISUAL — UPDATED */

.beacon-fw-hero__visual {
    position: relative;
    width: min(760px, 100%);
    min-height: 640px;
    margin: 0 auto;
    isolation: isolate;
}

.beacon-fw-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(300px, 48%, 365px);
    height: clamp(300px, 48%, 365px);
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(143, 198, 255, 0.55);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.beacon-fw-orbit::before,
.beacon-fw-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--beacon-blue);
    opacity: 0.5;
}

.beacon-fw-orbit::before {
    top: -5px;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translateX(-50%);
}

.beacon-fw-orbit::after {
    top: 50%;
    right: -5px;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
}

.beacon-fw-output-card,
.beacon-fw-mini-card,
.beacon-fw-signal-card,
.beacon-fw-info-card,
.beacon-fw-framework-card,
.beacon-fw-phase-card,
.beacon-fw-method-card,
.beacon-fw-deliver-card,
.beacon-fw-delivery-card,
.beacon-fw-proof-card,
.beacon-fw-cta__box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 16px 35px rgba(16, 22, 45, 0.06);
}

.beacon-fw-output-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(240px, 32%);
    min-width: 210px;
    min-height: 220px;
    transform: translate(-50%, -50%);
    z-index: 2;

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

    border-color: rgba(143, 198, 255, 0.8);
    border-radius: 18px;
    background: linear-gradient(
            180deg,
            rgba(236, 247, 255, 0.96),
            rgba(255, 255, 255, 0.92)
    );
    text-align: center;
    box-shadow: 0 22px 48px rgba(84, 160, 236, 0.18);
}

.beacon-fw-output-card span {
    color: #6b7894;
    font-size: 12px;
    font-weight: 600;
}

.beacon-fw-output-card strong {
    max-width: 130px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
}

.beacon-fw-output-card small,
.beacon-fw-mini-card small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    color: var(--beacon-blue-strong);
    font-size: 12px;
}

.beacon-fw-output-card i,
.beacon-fw-mini-card i,
.beacon-fw-framework__note i,
.beacon-fw-delivery__badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--beacon-blue);
    display: inline-block;
}

.beacon-fw-mini-card {
    position: absolute;
    width: min(245px, 31%);
    min-width: 190px;
    padding: 18px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 5px;
    z-index: 3;

    --float-y: 0px;
}

.beacon-fw-mini-card--top {
    top: 50px;
    left: 50%;
    transform: translate(-50%, var(--float-y));
}

.beacon-fw-mini-card--left {
    top: 50%;
    left: 0;
    transform: translateY(calc(-50% + var(--float-y)));
}

.beacon-fw-mini-card--right {
    top: 50%;
    right: 0;
    transform: translateY(calc(-50% + var(--float-y)));
}

.beacon-fw-mini-card--bottom {
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, var(--float-y));
}

.beacon-fw-signal-card__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--beacon-line);
    border-radius: 5px;
    background: #f7fbff;
    color: var(--beacon-blue-strong);
}

.beacon-fw-mini-card strong {
    display: block;
    color: var(--beacon-navy);
    font-size: 14px;
    line-height: 1.15;
}

.beacon-fw-bars {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 24px;
    margin-top: 8px;
}

.beacon-fw-bars span {
    flex: 1;
    min-width: 10px;
    height: 40%;
    border-radius: 4px 4px 0 0;
    background: #e4f1ff;
}

.beacon-fw-bars span:nth-child(2) {
    height: 62%;
}

.beacon-fw-bars span:nth-child(4) {
    height: 92%;
}

.beacon-fw-bars span:nth-child(6) {
    height: 76%;
}

/* WHY */

.beacon-fw-why {
    background: #fff;
}

.beacon-fw-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.beacon-fw-info-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(12, 22, 48, 0.08);
}

.beacon-fw-info-card > span,
.beacon-fw-proof-card > span {
    display: block;
    width: 58px;
    height: 5px;
    margin-bottom: 34px;
    border-radius: 999px;
    background: var(--beacon-blue);
}

.beacon-fw-info-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
}

.beacon-fw-info-card p {
    margin: 28px 0 0;
    color: var(--beacon-text);
    font-size: 16px;
    line-height: 1.5;
}

/* FRAMEWORK */

.beacon-fw-framework-card {
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(56px, 5.8vw, 88px) clamp(46px, 5vw, 82px);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
}

.beacon-fw-framework__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto 28px;
    gap: 32px;
}

.beacon-fw-step-dot {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    border: 2px solid #dfeaf6;
    border-radius: 50%;
    background: #fff;
    color: #667292;
    font-size: 19px;
    font-weight: 800;
    position: relative;
}

.beacon-fw-step-dot--active {
    background: var(--beacon-blue);
    color: #fff;
    border-color: #d9edff;
    box-shadow: 0 12px 28px rgba(74, 151, 232, 0.25);
}

.beacon-fw-step-arrow {
    color: #d4dfed;
    font-size: 34px;
    text-align: center;
    position: absolute;
    right: -117px;
}

.beacon-fw-phase-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.beacon-fw-phase-card {
    background: #f9fbfe;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 18px 48px rgba(12, 22, 48, 0.08);
    text-align: center;
}

.beacon-fw-phase-card--active {
    border-color: var(--beacon-blue-strong);
    background: linear-gradient(180deg, #eff8ff 0%, #fff 100%);
    box-shadow: 0 18px 36px rgba(84, 160, 236, 0.14);
}

.beacon-fw-phase-card span {
    color: #7b88a4;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.beacon-fw-phase-card--active span {
    color: var(--beacon-blue-strong);
}

.beacon-fw-phase-card h3 {
    margin: 16px 0 0;
    color: var(--beacon-navy);
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
}

.beacon-fw-phase-card p {
    margin: 22px auto 0;
    color: #7c89a4;
    font-size: 16px;
    line-height: 1.6;
}

.beacon-fw-framework__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 58px;
    padding-top: 40px;
    border-top: 1px solid #e5edf6;
    color: #7c89a4;
    font-size: 17px;
}

.beacon-fw-framework__note strong {
    color: var(--beacon-blue-strong);
}

/* SIGNALS */

.beacon-fw-signals {
    background: #fff;
}

.beacon-fw-signals__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: center;
    gap: 60px;
}

.beacon-fw-signals__content h2 {
    margin: 0;
    max-width: 660px;
}

.beacon-fw-signals__content p {
    max-width: 690px;
    margin: 42px 0 0;
    color: var(--beacon-text);
    font-size: 16px;
    line-height: 1.6;
}

.beacon-fw-signal-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
}

.beacon-fw-signal-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 15px;
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 22, 45, 0.04);
}

.beacon-fw-signal-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 5px;
}

.beacon-fw-signal-card__icon svg {
    width: 25px;
    height: 25px;
    fill: var(--accent);
}

.beacon-fw-signal-card h3 {
    margin: 3px 0 0;
    font-size: 16px;
    text-transform: uppercase;
}

.beacon-fw-signal-card p {
    color: var(--beacon-text);
    font-size: 16px;
}

.beacon-fw-bars--wide {
    height: 34px;
    margin-top: 28px;
}

/* METHOD */

.beacon-fw-method__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.beacon-fw-method-card {
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
}

.beacon-fw-method-card > span {
    display: block;
    margin-bottom: 22px;
    color: #e4f1ff;
    font-size: clamp(48px, 4vw, 64px);
    line-height: 0.9;
    font-weight: 300;
}

.beacon-fw-method-card h3 {
    margin: 0;
    color: var(--beacon-navy);
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.6;
}

.beacon-fw-method-card p {
    margin: 22px 0 0;
    color: var(--beacon-text);
    font-size: 16px;
    line-height: 1.6;
}

/* DELIVERS */

.beacon-fw-delivers {
    background: #fff;
}

.beacon-fw-delivers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.beacon-fw-deliver-card {
    padding: 30px;
    border-radius: 15px;
    background: #f8fbff;
    box-shadow: none;
}

.beacon-fw-deliver-card__top {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 30px;
}

.beacon-fw-deliver-card__top > span {
    display: inline-flex;
    padding: 3px 10px;
    border: 1px solid var(--beacon-line);
    border-radius: 999px;
    background: #fff;
    color: #74809b;
    font-size: 12px;
    font-weight: 700;
}

.beacon-fw-deliver-card h3 {
    margin: 0;
    color: var(--beacon-navy);
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.6;
}

.beacon-fw-deliver-card p {
    margin: 24px 0 0;
    color: var(--beacon-text);
    font-size: 16px;
    line-height: 1.6;
}

/* DELIVERY */

.beacon-fw-delivery .beacon-fw-section-head {
    margin-bottom: 48px;
}

.beacon-fw-delivery-card {
    max-width: 1420px;
    margin: 0 auto;
    padding: 30px 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
}

.beacon-fw-delivery-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
}

.beacon-fw-delivery-phase {
    padding: 30px 15px;
    border: 1px solid var(--beacon-line);
    border-radius: 15px;
    background: #f9fbfe;
    height: 100%;
}

.beacon-fw-delivery-phase--active {
    border-color: var(--beacon-blue-strong);
    background: #fff;
    box-shadow: 0 16px 34px rgba(84, 160, 236, 0.13);
}

.beacon-fw-delivery-phase h3 {
    margin: 0;
    color: #65708d;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.6;
}

.beacon-fw-delivery-phase--active h3 {
    color: var(--beacon-blue-strong);
}

.beacon-fw-delivery-phase p {
    margin: 10px 0 0;
    color: #8a96ad;
    font-size: 16px;
}

.beacon-fw-delivery-phase ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0 0 0 18px;
    color: #8a96ad;
    font-size: 15px;
    line-height: 1.35;
}

.beacon-fw-delivery-phase li::marker {
    color: var(--beacon-blue);
}

.beacon-fw-delivery-arrow {
    color: var(--beacon-blue-strong);
    font-size: 25px;
    opacity: .6;
    text-align: center;
}

.beacon-fw-delivery__divider {
    height: 1px;
    margin: 70px 0 34px;
    background: #dfe8f4;
}

.beacon-fw-delivery__badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 44px;
    padding: 10px 22px;
    border: 1px solid #cfe2f6;
    border-radius: 999px;
    background: #f6fbff;
    color: var(--beacon-navy);
    font-size: 15px;
    font-weight: 700;
}

.beacon-fw-readiness-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.beacon-fw-readiness-grid article {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 15px;
    padding: 25px;
    border: 1px solid rgba(16, 22, 45, 0.12);
    border-radius: 15px;
    background: #fff;
}

.beacon-fw-readiness-grid span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef7ff;
    color: var(--beacon-blue-strong);
    font-size: 14px;
}

.beacon-fw-readiness-grid h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
}

.beacon-fw-readiness-grid p {
    margin: 10px 0 0;
    color: var(--beacon-text);
    font-size: 15px;
    line-height: 1.35;
}

/* PROOF */

.beacon-fw-proof {
    background: #fff;
}

.beacon-fw-proof .beacon-fw-section-head {
    max-width: none;
    margin-bottom: 76px;
}

.beacon-fw-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.beacon-fw-proof-card {
    min-height: 590px;
    padding: 42px;
    border-radius: 18px;
    background: #f8fbff;
    box-shadow: none;
}

.beacon-fw-proof-card h3 {
    margin: 0 0 40px;
    color: var(--beacon-navy);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2;
}

.beacon-fw-proof-card__metric {
    padding: 26px 0;
    border-bottom: 1px solid #dfe8f4;
}

.beacon-fw-proof-card__metric strong {
    display: block;
    color: var(--beacon-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.beacon-fw-proof-card__metric small {
    display: block;
    margin-top: 10px;
    color: var(--beacon-text);
    font-size: 17px;
    line-height: 1.35;
}

.beacon-fw-proof-card p {
    margin: 32px 0 0;
    color: var(--beacon-text);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA */

.beacon-fw-cta__box {
    max-width: 1340px;
    margin: 0 auto;
    padding: clamp(62px, 7vw, 98px) clamp(34px, 6vw, 90px);
    border-radius: 28px;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(143, 198, 255, 0.18),
                    transparent 28%
            ),
            radial-gradient(
                    circle at 85% 70%,
                    rgba(143, 198, 255, 0.15),
                    transparent 25%
            ),
            rgba(255, 255, 255, 0.9);
    text-align: center;
}

.beacon-fw-cta h2 {
    max-width: 980px;
    margin: 0 auto;
    color: var(--beacon-navy);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.beacon-fw-cta h2 span {
    color: var(--beacon-blue);
}

.beacon-fw-cta p {
    max-width: 880px;
    margin: 38px auto 0;
    color: var(--beacon-text);
    font-size: clamp(20px, 1.55vw, 28px);
    line-height: 1.45;
}

.beacon-fw-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 56px;
}

/* RESPONSIVE */

@media (max-width: 1300px) {
    .beacon-fw-hero__grid,
    .beacon-fw-signals__grid {
        grid-template-columns: 1fr;
    }

    .beacon-fw-hero {
        min-height: auto;
    }

    .beacon-fw-hero__content {
        max-width: 860px;
    }

    .beacon-fw-hero__visual {
        min-height: 640px;
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .beacon-fw-delivery-flow {
        grid-template-columns: 1fr;
    }

    .beacon-fw-delivery-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 1050px) {
    .beacon-fw-why__grid,
    .beacon-fw-method__grid,
    .beacon-fw-proof__grid,
    .beacon-fw-readiness-grid {
        grid-template-columns: 1fr;
    }

    .beacon-fw-phase-grid,
    .beacon-fw-framework__steps {
        grid-template-columns: 1fr;
    }

    .beacon-fw-step-arrow {
        transform: rotate(90deg);
    }

    .beacon-fw-delivers__grid {
        grid-template-columns: 1fr;
    }

    .beacon-fw-deliver-card,
    .beacon-fw-deliver-card:nth-child(4),
    .beacon-fw-deliver-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 760px) {


    .beacon-fw-hero__actions,
    .beacon-fw-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .beacon-fw-btn {
        width: 100%;
    }

    .beacon-fw-hero__visual {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .beacon-fw-orbit {
        display: none;
    }

    .beacon-fw-output-card,
    .beacon-fw-mini-card,
    .beacon-fw-mini-card--top,
    .beacon-fw-mini-card--left,
    .beacon-fw-mini-card--right,
    .beacon-fw-mini-card--bottom {
        position: static;
        transform: none;
        width: 100%;
        min-width: 0;
    }

    .beacon-fw-output-card {
        min-height: 170px;
    }

    .beacon-fw-signal-card {
        grid-template-columns: 1fr;
    }
}

:root {
    --accent: #4cc6ff;
    --navy: #071431;
    --muted: #66758c;
    --soft: #f7fbfe;
    --line: rgba(7, 20, 49, 0.08);
}

.default-page {
    position: relative;
    overflow: hidden;
    color: var(--navy);
    background-image: url(../assets/images/blog.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.default-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
            url("data:image/svg+xml,%3Csvg width='320' height='120' viewBox='0 0 320 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 C 40 20, 80 100, 120 60 S 200 20, 240 60 S 300 100, 320 60' fill='none' stroke='%23071431' stroke-opacity='0.035' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 320px 120px;
    mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 100%);
}

.default-page > * {
    position: relative;
    z-index: 1;
}

.default-page-hero {
    padding: 120px 0 88px;
    text-align: center;
}

.default-page-hero__inner {
    max-width: 1180px;
}

.default-page-hero .site-breadcrumb {
    justify-content: center;
    margin-bottom: 52px;
}

.default-page-hero__content {
    max-width: 940px;
    margin-inline: auto;
}

.default-page-hero__title {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: var(--navy);
}

.default-page-hero__text {
    max-width: 760px;
    margin: 32px auto 0;
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.7;
    color: var(--muted);
}

.default-page-hero__text p {
    margin: 0;
}

.default-page-content {
    padding: 22px 0 120px;
}

.default-page-featured {
    margin: 0 0 74px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(7, 20, 49, 0.075);
    box-shadow: 0 28px 90px rgba(7, 20, 49, 0.07);
}

.default-page-featured__image {
    display: block;
    width: 100%;
    height: auto;
}

.default-page-entry {
    margin-inline: auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.78;
}

.default-page-entry > *:first-child {
    margin-top: 0;
}

.default-page-entry > *:last-child {
    margin-bottom: 0;
}

.default-page-entry p {
    margin: 0 0 28px;
}

.default-page-entry h2,
.default-page-entry h3,
.default-page-entry h4,
.default-page-entry h5,
.default-page-entry h6 {
    color: var(--navy);
    letter-spacing: -0.045em;
    line-height: 1.14;
    font-weight: 400;
}

.default-page-entry h2 {
    margin: 74px 0 24px;
    font-size: 30px;
}

.default-page-entry h3 {
    margin: 54px 0 20px;
    font-size: 24px;
}

.default-page-entry h4 {
    margin: 42px 0 16px;
    font-size: 16px;
}

.default-page-entry a {
    color: var(--accent);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size 0.25s ease, color 0.25s ease;
}

.default-page-entry a:hover {
    background-size: 100% 1px;
}

.default-page-entry ul,
.default-page-entry ol {
    margin: 0 0 34px;
    padding-left: 1.25em;
}

.default-page-entry li {
    margin-bottom: 12px;
}

.default-page-entry blockquote {
    position: relative;
    margin: 58px 0;
    padding: 34px 38px;
    border: 1px solid rgba(76, 198, 255, 0.22);
    border-radius: 24px;
    background:
            linear-gradient(135deg, rgba(76, 198, 255, 0.08), rgba(255, 255, 255, 0.74));
    color: var(--navy);
    box-shadow: 0 18px 60px rgba(7, 20, 49, 0.045);
}

.default-page-entry blockquote p {
    margin: 0;
    font-size: clamp(20px, 1.6vw, 25px);
    line-height: 1.55;
}

.default-page-entry img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

.default-page-entry figure {
    margin: 52px 0;
}

.default-page-entry figcaption {
    margin-top: 12px;
    color: rgba(102, 117, 140, 0.78);
    font-size: 14px;
    text-align: center;
}

.default-page-entry table {
    width: 100%;
    margin: 48px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(7, 20, 49, 0.045);
}

.default-page-entry th,
.default-page-entry td {
    padding: 18px 20px;
    border: 1px solid rgba(7, 20, 49, 0.075);
    text-align: left;
}

.default-page-entry th {
    color: var(--navy);
    background: rgba(76, 198, 255, 0.08);
    font-weight: 600;
}

.default-page-entry .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(76, 198, 255, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.default-page-entry .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(76, 198, 255, 0.28);
    background-size: 0;
}

.default-page-entry .wp-block-separator {
    margin: 64px 0;
    border: 0;
    border-top: 1px solid rgba(7, 20, 49, 0.08);
}

.default-page-entry .wp-block-cover {
    border-radius: 28px;
    overflow: hidden;
}

.default-page-links {
    margin-top: 48px;
}

.site-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.site-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-breadcrumb a:hover {
    color: var(--accent);
}

.site-breadcrumb span[aria-current="page"] {
    color: var(--navy);
}

.site-breadcrumb__separator {
    color: rgba(7, 20, 49, 0.34);
}

@media (max-width: 980px) {
    .default-page-hero {
        padding: 96px 0 72px;
    }

    .default-page-content {
        padding-bottom: 92px;
    }

    .default-page-featured {
        margin-bottom: 56px;
        border-radius: 26px;
    }
}

@media (max-width: 760px) {
    .default-page-hero {
        padding: 78px 0 58px;
    }

    .default-page-hero .site-breadcrumb {
        justify-content: flex-start;
        margin-bottom: 34px;
        text-align: left;
    }

    .default-page-hero {
        text-align: left;
    }

    .default-page-hero__title {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -0.06em;
    }

    .default-page-hero__text {
        margin-top: 24px;
        font-size: 17px;
    }

    .default-page-entry {
        font-size: 16px;
        line-height: 1.72;
    }

    .default-page-entry h2 {
        margin-top: 54px;
    }

    .default-page-entry blockquote {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .default-page-entry table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


:root {
    --accent: #4cc6ff;
    --navy: #071431;
    --muted: #66758c;
    --soft: #f7fbfe;
    --line: rgba(7, 20, 49, 0.08);
}

.archive-page {
    position: relative;
    overflow: hidden;
    color: var(--navy);
    background-image: url(../assets/images/blog.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.archive-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
            url("data:image/svg+xml,%3Csvg width='320' height='120' viewBox='0 0 320 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 C 40 20, 80 100, 120 60 S 200 20, 240 60 S 300 100, 320 60' fill='none' stroke='%23071431' stroke-opacity='0.035' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 320px 120px;
    mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 100%);
}

.archive-page > * {
    position: relative;
    z-index: 1;
}

.archive-hero {
    padding: 118px 0 82px;
    text-align: center;
}

.archive-hero__inner {
    max-width: 1180px;
}

.archive-hero .site-breadcrumb {
    justify-content: center;
    margin-bottom: 46px;
}

.archive-hero__content {
    max-width: 920px;
    margin-inline: auto;
}

.archive-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.archive-hero__title {
    margin: 0;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: var(--navy);
}

.archive-hero__text {
    max-width: 780px;
    margin: 30px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.archive-hero__text p {
    margin: 0;
}

.archive-listing {
    padding: 36px 0 124px;
}

.archive-listing__inner {
    max-width: 1320px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.archive-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(7, 20, 49, 0.075);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
            0 20px 70px rgba(7, 20, 49, 0.045),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
}

.archive-card:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 198, 255, 0.24);
    box-shadow:
            0 28px 88px rgba(7, 20, 49, 0.07),
            0 18px 42px rgba(76, 198, 255, 0.08);
}

.archive-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.42 / 1;
    overflow: hidden;
    background:
            radial-gradient(circle at 25% 20%, rgba(76, 198, 255, 0.16), transparent 36%),
            linear-gradient(135deg, rgba(76, 198, 255, 0.08), rgba(255, 255, 255, 0.65));
}

.archive-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.55s ease;
}

.archive-card:hover .archive-card__image {
    transform: scale(1.055);
}

.archive-card__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(76, 198, 255, 0.08)),
            url("data:image/svg+xml,%3Csvg width='320' height='120' viewBox='0 0 320 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 C 40 20, 80 100, 120 60 S 200 20, 240 60 S 300 100, 320 60' fill='none' stroke='%234cc6ff' stroke-opacity='0.12' stroke-width='1'/%3E%3C/svg%3E");
    background-size: auto, 320px 120px;
}

.archive-card__placeholder span {
    color: rgba(76, 198, 255, 0.22);
    font-size: clamp(90px, 10vw, 150px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.08em;
}

.archive-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px 30px 28px;
}

.archive-card__category {
    align-self: flex-start;
    margin-bottom: 16px;
    color: #7d7d7d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.archive-card__category:hover{
    color: var(--accent);
}

.archive-card__category:visited{
    color: #7d7d7d;
}

.archive-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.archive-card__title a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.25s ease;
}

.archive-card__title a:hover {
    color: var(--accent);
}

.archive-card__title a:visited {
    color: var(--navy);
}

.archive-card__excerpt {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.68;
}

.archive-card__excerpt p {
    margin: 0;
}

.archive-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 30px;
    color: rgba(102, 117, 140, 0.82);
    font-size: 13px;
}

.archive-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 72px;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(7, 20, 49, 0.1);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease,
            background 0.25s ease;
}

.archive-pagination a.page-numbers:hover {
    transform: translateY(-2px);
    border-color: rgba(76, 198, 255, 0.42);
    color: var(--accent);
}

.archive-pagination .page-numbers.current {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.archive-empty {
    max-width: 780px;
    margin: 0 auto;
    padding: 70px 40px;
    border: 1px solid rgba(7, 20, 49, 0.075);
    border-radius: 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 70px rgba(7, 20, 49, 0.045);
}

.archive-empty h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.055em;
    font-weight: 400;
}

.archive-empty p {
    max-width: 560px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.archive-empty__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 34px;
    padding: 0 34px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(76, 198, 255, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-empty__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(76, 198, 255, 0.28);
}

.site-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.site-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-breadcrumb a:hover {
    color: var(--accent);
}

.site-breadcrumb span[aria-current="page"] {
    color: var(--navy);
}

.site-breadcrumb__separator {
    color: rgba(7, 20, 49, 0.34);
}

@media (max-width: 1100px) {
    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .archive-hero {
        padding: 78px 0 58px;
        text-align: left;
    }

    .archive-hero .site-breadcrumb {
        justify-content: flex-start;
        margin-bottom: 34px;
    }

    .archive-hero__title {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -0.06em;
    }

    .archive-hero__text {
        margin-top: 24px;
        font-size: 17px;
    }

    .archive-listing {
        padding: 22px 0 88px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .archive-card {
        border-radius: 24px;
    }

    .archive-card__body {
        padding: 26px 24px 24px;
    }

    .archive-pagination {
        margin-top: 52px;
    }

    .archive-pagination .page-numbers {
        min-width: 42px;
        height: 42px;
        padding: 0 13px;
    }

    .archive-empty {
        padding: 52px 24px;
        border-radius: 24px;
    }
}