:root {
    --blue: #17235C;
    --blue2: #263778;
    --royal: #3C4B8D;
    --accent: #5D99D8;
    --pale: #EAF3FC;
    --bg: #F5F8FC;
    --ink: #18233E;
    --text: #50617B;
    --muted: #73819A;
    --line: #DCE5F0;
    --shadow: 0 22px 70px rgba(23, 35, 92, .09);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font: 15px/1.65 "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.lock {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}
.container {
    width: min(1280px, calc(100% - 48px));
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.section {
    padding: 70px 0;
}

.skip {
    position: fixed;
    top: -80px;
    left: 20px;
    background: var(--blue);
    color: #fff;
    padding: 10px 15px;
    z-index: 9999;
}

.skip:focus {
    top: 15px;
}

h1,
h2,
h3,
h4 {
    font-family: Manrope, sans-serif;
    color: var(--blue);
    margin: 0;
}

h1 {
    font-size: clamp(46px, 5.3vw, 76px);
    line-height: 1.04;
    letter-spacing: -3px;
}

h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -2px;
}

h3 {
    font-size: 19px;
    line-height: 1.25;
}

em {
    font-style: normal;
    color: var(--accent);
}

p {
    margin: 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    background: #d6e2ef;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--royal);
    width: fit-content;
}



.eyebrow.light {
    color: #DCEBFA;
    background: #9FC7EC;
    padding: 6px 12px;
        border-radius: 10px;
        border: 1px solid var(--royal);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    padding: 14px 19px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .3s var(--ease);
}

.btn i {
    transition: .3s;
}

.btn:hover i {
    transform: translateX(4px);
}

.primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(23, 35, 92, .18);
}

.primary:hover {
    background: var(--blue2);
    transform: translateY(-3px);
}

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

.outline:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
}

.white {
    background: #fff;
    color: var(--blue);
}

.white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px #0002;
}

.text-link {
    font-size: 12px;
    font-weight: 800;
    color: #2869A6;
}

.text-link i {
    margin-left: 7px;
    transition: .25s;
}

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


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    height: 43px;

    background: #314A9B;

    color: #fff;

    position: relative;
    z-index: 1001;
}


.topbar-inner {
    height: 100%;

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


/* Contact */

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 22px;
}


.topbar-contact a {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #fff;

    font-size: 14px;

    transition: opacity .25s ease;
}


.topbar-contact a:hover {
    opacity: .75;
}


.topbar-contact i {
    font-size: 14px;
}


/* Divider */

.topbar-divider {
    width: 1px;
    height: 17px;

    background: rgba(255, 255, 255, .45);
}


/* Social */

.topbar-social {
    display: flex;
    align-items: center;
    gap: 22px;
}


.topbar-social a {
    color: #fff;

    font-size: 15px;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


.topbar-social a:hover {
    opacity: .7;
    transform: translateY(-2px);
}

@media (max-width: 620px) {

    .topbar {
        height: 38px;
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-social {
        display: none;
    }

    .topbar-contact {
        gap: 12px;
    }

    .topbar-contact a {
        font-size: 10px;
    }

   

    .topbar-divider {
        display: none;
    }

    .outline{
        width: 250px;
    }


  

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

header {
    height: 70px;

    position: fixed;
    top: 43px;
    left: 0;
    right: 0;

    z-index: 1000;

    
    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid #DCE5F0;

    transition: .3s;
}


header.scrolled {
    top: 0;
    height: 62px;

    box-shadow: 0 8px 30px #17235c12;
}

/* =========================
   HEADER INNER WIDTH
========================= */


/* =========================================================
   NAV CONTAINER
========================================================= */

.nav {
    height: 100%;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-width: 0;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 180px;
     
    flex: 0 0 180px;

    display: block;
}


.logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.navlinks {
    height: 100%;

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

    gap: 23px;

    color: var(--ink);

    font-size: 14px;
    font-weight: 600;

    min-width: 0;

    flex: 1 1 auto;
}


.navlinks>a,
.dropbtn {
    position: relative;

    white-space: nowrap;

    
        flex: 0 1 auto;
}


/* =========================================================
   NAV UNDERLINE
========================================================= */

.navlinks>a:not(.navcta):after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--accent);

    transition: .25s;
}


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


/* =========================================================
   CTA
========================================================= */

.navcta {
    background: var(--blue);

    color: #fff !important;

    padding: 10px 14px;

    border-radius: 9px;

    font-size: 13px;

    flex-shrink: 0;
}


.navcta:after {
    display: none !important;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.dropdown {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;

    flex-shrink: 0;
}


.dropbtn {
    border: 0;

    background: none;

    color: inherit;

    padding: 0;

    cursor: pointer;
}


.dropbtn i {
    font-size: 8px;

    margin-left: 5px;
}


.dropmenu {
    position: absolute;

    top: 100%;
    left: -15px;

    width: 225px;

    background: #fff;

    border: 1px solid var(--line);

    padding: 10px;

    border-radius: 0 0 13px 13px;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: .25s;
}


.dropdown:hover .dropmenu,
.dropdown.open .dropmenu {
    opacity: 1;

    visibility: visible;

    transform: none;
}


.dropmenu a {
    display: block;

    padding: 9px 11px;

    font-size: 12px;

    border-radius: 7px;
}


.dropmenu a:hover {
    background: var(--bg);

    color: #2869A6;
}


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

.menu {
    display: none;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border: 1px solid var(--line);

    border-radius: 9px;

    background: #fff;

    cursor: pointer;
}


.menu span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--blue);

    margin: 4px auto;

    transition: .25s;
}
/* hero */
.hero {
    padding: 90px 0 80px;
    overflow: hidden;
    background:
            radial-gradient(circle at 82% 45%,
                rgba(93, 153, 216, .20) 0%,
                rgba(93, 153, 216, .08) 22%,
                transparent 48%),
    
            radial-gradient(circle at 15% 35%,
                rgba(234, 243, 252, .95) 0%,
                transparent 42%),
    
            linear-gradient(135deg,
                #F8FBFE 0%,
                #EAF3FC 48%,
                #DCEAF8 100%);
}


.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: center;
    min-height: 580px;
}

.hero-copy .eyebrow {
    margin-bottom: 22px;
}

.hero-lead {
    font-size: 17px;
    line-height: 1.75;
    max-width: 610px;
    color: #52637E;
    margin: 25px 0 30px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tags {
    display: flex;
    gap: 11px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    color: #6D7C94;
    font-size: 10px;
}

.tags i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #A9B8CA;
}
/* =========================================================
   HERO — IMAGE + REGULATORY JOURNEY
========================================================= */

.visual {
    position: relative;
    width: 100%;
    height: 530px;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */
.hero-image-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 26px;

    border: 1px solid rgba(255, 255, 255, .7);

    background: #EAF3FC;

    box-shadow:
        0 25px 70px rgba(23, 35, 92, .14),
        0 5px 20px rgba(93, 153, 216, .08);
}

.hero-image-wrap::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .16),
            transparent 40%);

    z-index: 2;

    pointer-events: none;
}


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

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center right;

    transition:
        transform .8s var(--ease);
}


/* subtle image zoom */

.hero-image-wrap:hover .hero-image {
    transform: scale(1.025);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hero-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(23, 35, 92, .02) 35%,
            rgba(23, 35, 92, .14) 100%);

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   CURVED PATH
========================================================= */

.journey-path {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    pointer-events: none;

    overflow: visible;
}


/* =========================================================
   JOURNEY STEP
========================================================= */

.journey-step {
    position: absolute;

    z-index: 4;

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

    transform: translate(-50%, -50%);

    transition:
        transform .35s var(--ease);
}


/* =========================================================
   ICON
========================================================= */

.step-icon {

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #17235C;

    color: #fff;

    border: 4px solid rgba(255, 255, 255, .9);

    box-shadow:
        0 8px 22px rgba(23, 35, 92, .28);

    font-size: 16px;

    position: relative;

    z-index: 3;

    transition:
        transform .3s var(--ease),
        background .3s var(--ease);
}


.journey-step:hover .step-icon {

    transform: scale(1.12);

    background: #3C4B8D;
}


/* =========================================================
   STEP CARD
========================================================= */

.step-card {

    width: 135px;

    margin-top: -1px;

    padding: 13px 12px 14px;

    text-align: center;

    background: rgba(255, 255, 255, .96);

    border: 1px solid rgba(255, 255, 255, .9);

    border-radius: 13px;

    box-shadow:
        0 14px 35px rgba(23, 35, 92, .16);

    backdrop-filter: blur(10px);

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease);
}


.journey-step:hover .step-card {

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(23, 35, 92, .22);
}


/* =========================================================
   NUMBER
========================================================= */

.step-number {

    display: block;

    margin-bottom: 3px;

    color: #5D99D8;

    font:
        800 12px/1 Manrope,
        sans-serif;

    letter-spacing: 1px;
}


/* =========================================================
   TITLE
========================================================= */

.step-card strong {

    display: block;

    color: #17235C;

    font:
        700 14px/1.25 Manrope,
        sans-serif;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.step-card small {

    display: block;

    margin-top: 5px;

    color: #636972;

    font:
        500 12px/1.4 "DM Sans",
        sans-serif;
}


/* =========================================================
   STEP POSITIONS
========================================================= */

/* Assessment */

.step-1 {

    left: 18%;

    top: 62%;
}


/* Documentation */

.step-2 {

    left: 42%;

    top: 48%;
}


/* Compliance */

.step-3 {

    left: 67%;

    top: 34%;
}


/* Approval */

.step-4 {

    left: 88%;

    top: 18%;
}


/* =========================================================
   LOCATION BADGE
========================================================= */

.location-badge {

    position: absolute;

    left: 24px;
    bottom: 22px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 11px 13px;

    background: rgba(255, 255, 255, .95);

    border: 1px solid rgba(255, 255, 255, .85);

    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(23, 35, 92, .18);

    backdrop-filter: blur(12px);
}


/* =========================================================
   LOCATION ICON
========================================================= */

.location-icon {

    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: #EAF3FC;

    color: #17235C;

    font-size: 12px;
}


/* =========================================================
   LOCATION TEXT
========================================================= */

.location-badge strong {

    display: block;

    color: #17235C;

    font:
        700 14px/1.3 Manrope,
        sans-serif;
}


.location-badge small {

    display: block;

    margin-top: 2px;

    color: #5c5f65;

    font-size: 12px;

    letter-spacing: .3px;
}


@media (max-width: 768px) {

    .visual {
        height: 430px;
    }

    .hero-image-wrap {
        border-radius: 20px;
    }

    /*
       Make the image slightly wider visually
    */

    .hero-image {
        object-fit: cover;
        object-position: right;
    }


    /* Hide the connecting SVG on mobile */

    .journey-path {
        display: none;
    }


    /*
       Arrange the four cards
       in a clean 2 x 2 layout
    */

    .journey-step {
        transform: none;

        width: auto;
    }


    .step-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;

        border-width: 3px;
    }


    .step-card {
        width: 120px;

        padding: 9px 8px 10px;

        border-radius: 10px;
    }


    .step-number {
        font-size: 8px;
    }


    .step-card strong {
        font-size: 10px;
    }


    .step-card small {
        font-size: 7px;
    }


    /* 01 */

    .step-1 {
        left: 5%;
        top: 8%;
    }


    /* 02 */

    .step-2 {
        left: auto;
        right: 5%;
        top: 8%;
    }


    /* 03 */

    .step-3 {
        left: 5%;
        top: 38%;
    }


    /* 04 */

    .step-4 {
        left: auto;
        right: 5%;
        top: 38%;
    }


    /* Location badge */

    .location-badge {
        left: 35%;
        bottom: 12px;

        transform: translateX(-50%);

        width: max-content;

        max-width: calc(100% - 24px);

        padding: 9px 11px;
    }


    .location-icon {
        width: 20px;
        height: 20px;

        font-size: 9px;
    }


    .location-badge strong {
        font-size: 11px;
    }


    .location-badge small {
        font-size: 9px;
        font-weight: 600;
    }


        /* =========================================================
       HEADER RESPONSIVE FIX
       ========================================================= */
    
        @media (max-width: 1150px) {
    
            header {
                width: 100%;
                left: 0;
                right: 0;
            }
    
            header .container {
                width: calc(100% - 32px);
                max-width: 1280px;
                margin: 0 auto;
            }
    
            .nav {
                width: 100%;
                min-width: 0;
                gap: 15px;
            }
    
            .logo {
                width: 150px;
                flex: 0 0 150px;
            }
    
            /* Show hamburger */
            .menu {
                display: block;
                margin-left: auto;
                flex: 0 0 44px;
            }
    
            /* Hide desktop navigation */
            .navlinks {
                position: fixed;
                top: 105px;
                right: 0;
    
                width: min(390px, calc(100vw - 24px));
                height: calc(100vh - 105px);
    
                background: #fff;
    
                padding: 20px;
    
                display: flex;
                flex-direction: column;
                align-items: stretch;
    
                gap: 0;
    
                overflow-y: auto;
                overflow-x: hidden;
    
                border-left: 1px solid var(--line);
    
                box-shadow: -15px 0 40px rgba(23, 35, 92, .12);
    
                transform: translateX(105%);
                transition: transform .35s var(--ease);
    
                z-index: 1100;
            }
    
            .navlinks.open {
                transform: translateX(0);
            }
    
            .navlinks>a,
            .dropbtn {
                width: 100%;
                padding: 14px 4px;
    
                border-bottom: 1px solid #EDF1F5;
    
                font-size: 13px;
    
                white-space: nowrap;
            }
    
            .navlinks>a:not(.navcta)::after {
                display: none;
            }
    
            .dropdown {
                height: auto;
                display: block;
            }
    
            .dropbtn {
                text-align: left;
            }
    
            .dropmenu {
                position: static;
    
                width: 100%;
    
                display: none;
    
                padding: 0;
    
                border: 0;
                box-shadow: none;
    
                opacity: 1;
                visibility: visible;
                transform: none;
            }
    
            .dropdown.open .dropmenu {
                display: block;
            }
    
            .navcta {
                text-align: center;
                font-size: 10px;
            }
        }
    
    
        /* =========================================================
       MOBILE
       ========================================================= */
    
        @media (max-width: 620px) {
    
            .container {
                width: calc(100% - 32px);
            }
    
            header {
                top: 38px;
            }
    
            header.scrolled {
                top: 0;
            }
    
            .navlinks {
                top: 100px;
                height: calc(100vh - 100px);
            }
    
            .logo {
                width: 140px;
                flex-basis: 140px;
            }
        }

}
.trust {
    background: var(--blue);
    
}

.trustgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 15px 0;
}

.trustitem {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 8px 24px;
    border-right: 1px solid #D3DEEB;
}

.trustitem:first-child {
    padding-left: 0;
}

.trustitem:last-child {
    border: 0;
}

.trustitem i {
    font-size: 30px;
    color: #ffffff;
}

.trustitem strong,
.trustitem small {
    display: block;
}

.trustitem strong {
    font: 700 22px Manrope;
    color: var(--bg);
}

.trustitem small {
    font-size: 14px;
    color: #77869C;
}

/* cards */
.heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
    margin-bottom: 48px;
}

.heading h2 {
    margin-top: 12px;
}

.heading p {
    color: var(--muted);
    max-width: 580px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
}

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

.card {
    border: 1px solid var(--muted);
    border-radius: 18px;
    padding: 25px 22px;
    min-height: 390px;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .4s var(--ease);
}

.card:before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -45px;
    top: -55px;
    border-radius: 50%;
    background: #5D99D81a;
    transition: .4s;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 75px #17235c24;
    border-color: #C7D7E9;
}

.card:hover:before {
    transform: scale(1.4);
}

.cardtop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.num {
    font-size: 12px;
    color: #8A98AC;
    font-weight: 800;
}

.icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #EEF5FC;
    color: #2C6DAA;
    display: grid;
    place-items: center;
}

.card h3 {
    margin-bottom: 11px;
}

.card p {
    font-size: 14px;
    color: #697991;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 17px 0;
}

.chips span {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 7px;
    border-radius: 5px;
    background: #F4F7FA;
    color: #5B6C84;
}

.card>a {
    margin-top: auto;
    font-size: 12px;
    color: #2869A6;
    font-weight: 800;
}

.card>a i {
    margin-left: 6px;
    transition: .2s;
}

.card>a:hover i {
    transform: translateX(4px);
}

/* product */
.product {
    background: #F1F6FC;
}

.productgrid {
    display: grid;
    grid-template-columns: 1fr 1.25fr .7fr;
    gap: 28px;
    align-items: center;
}

.productcopy h2 {
    margin: 13px 0 17px;
}

.productcopy p {
    max-width: 420px;
    color: #66768E;
    font-size: 13px;
    margin-bottom: 24px;
}

.panel {
    background: #ffffffbf;
    border: 1px solid #DDE7F1;
    border-radius: 21px;
    padding: 22px;
}

.cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.cat {
    min-height: 82px;
    border: 1px solid #DDE6F0;
    background: #fff;
    border-radius: 9px;
    padding: 13px;
    transition: .25s;
}

.cat:hover {
    transform: translateY(-3px);
    border-color: #A9C5E2;
}

.cat i {
    display: block;
    color: #4B8BC6;
    margin-bottom: 7px;
}

.cat span {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    color: #425571;
}

.steps {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 7px;
    margin-top: 25px;
}

.steps div {
    text-align: center;
}

.steps span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #D5E1ED;
    color: #3975AE;
}

.steps small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #515a67;
    margin-top: 4px;
}

.steps b {
    height: 1px;
    background: #C9D8E8;
}

.productphoto {
    height: 350px;
    border-radius: 23px;
    border: 1px solid #D4E1ED;
    background: linear-gradient(145deg, #DCEAF7, #EFF5F9);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: end;
}

/* Product image */
.productphoto .product img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Optional hover effect */
.productphoto .product img {
    transition: transform 0.5s ease;
}

.productphoto .product:hover img {
    transform: scale(1.03);
}


/* =========================================================
   PRODUCT SERVICES
========================================================= */

.product-services {
    position: relative;
    overflow: hidden;

    background: var(--bg);
}


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

.product-services-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 38px;
}


.product-services-heading {
    max-width: 650px;
}


.product-services-heading .eyebrow {
    margin-bottom: 20px;
}


.product-services-heading h2 {

    margin: 0;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.06;

    letter-spacing: -2.5px;
}


.product-services-heading h2 em {
    color: var(--accent);
}


.product-services-intro {

    width: min(100%, 420px);

    padding-bottom: 4px;
}


.product-services-intro p {

    color: var(--text);

    font-size: 14px;

    line-height: 1.7;
}
/* =========================================================
   PRODUCT GRID
========================================================= */

.product-services-grid {

    display: grid;

    grid-template-columns: repeat(12, 1fr);

    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

    position: relative;

    grid-column: span 3;

    height: 360px;

    overflow: hidden;

    border-radius: 16px;

    border: 1px solid rgba(255, 255, 255, .7);

    background: #17235C;

    isolation: isolate;

    box-shadow:
        0 14px 38px rgba(23, 35, 92, .08);

    transition:
        transform .45s var(--ease),
        box-shadow .45s var(--ease);
}


/* =========================================================
   IMAGE
========================================================= */

.product-card-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    z-index: -2;

    transition:
        transform .7s var(--ease);
}


.product-card:hover .product-card-image {

    transform: scale(1.06);
}


/* =========================================================
   OVERLAY
========================================================= */

.product-card-overlay {

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(180deg,
            rgba(23, 35, 92, .05) 0%,
            rgba(23, 35, 92, .16) 30%,
            rgba(10, 18, 38, .90) 100%);
}


/* =========================================================
   HOVER
========================================================= */

.product-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 24px 55px rgba(23, 35, 92, .16);
}


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

.product-card-content {

    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 18px;

    z-index: 2;
}


/* =========================================================
   TOP
========================================================= */

.product-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.product-number {

    color: rgba(255, 255, 255, .85);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.product-icon {

    width: 40px;
    height: 40px;

    display: flex;

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

    border-radius: 50%;

    color: #fff;

    background: rgba(93, 153, 216, .92);

    border: 1px solid rgba(255, 255, 255, .4);

    backdrop-filter: blur(6px);

    font-size: 14px;

    transition: .3s var(--ease);
}


.product-card:hover .product-icon {

    background: var(--accent);

    transform:
        translateY(-3px) rotate(-4deg);
}


/* =========================================================
   BOTTOM CONTENT
========================================================= */

.product-card-info {

    width: 100%;

    max-width: 100%;
}


.product-category {

    display: inline-block;

    margin-bottom: 7px;

    color: #bcd9f3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.product-card-info h3 {

    margin: 0 0 8px;

    color: #fff;

    font-family: Manrope, sans-serif;

    font-size: 18px;

    line-height: 1.2;

    letter-spacing: -.3px;
}


.product-card-info p {

    margin: 0 0 14px;

    color: rgba(255, 255, 255, .82);

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   LINK
========================================================= */

.product-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: 100%;

    padding-top: 11px;

    border-top:
        1px solid rgba(255, 255, 255, .25);

    color: #fff;

    font-size: 10px;

    font-weight: 800;
}


.product-link i {

    color: var(--accent);

    transition:
        transform .25s var(--ease);
}


.product-link:hover i {

    transform: translateX(5px);
}


/* =========================================================
   SECOND ROW
========================================================= */

/*
   4 cards:
   01 02 03 04

   3 cards:
      05 06 07
*/

.product-card:nth-child(5) {
    grid-column: 2 / span 3;
}

.product-card:nth-child(6) {
    grid-column: 5 / span 3;
}

.product-card:nth-child(7) {
    grid-column: 8 / span 3;
}

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

@media (max-width: 1000px) {

    .product-services-grid {

        grid-template-columns: repeat(6, 1fr);

        gap: 15px;
    }


    /* First row */

    .product-card:nth-child(1),
    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4) {

        grid-column: span 3;
    }


    /* Second row */

    .product-card:nth-child(5) {

        grid-column: 1 / span 2;
    }

    .product-card:nth-child(6) {

        grid-column: 3 / span 2;
    }

    .product-card:nth-child(7) {

        grid-column: 5 / span 2;
    }
}


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

@media (max-width: 650px) {

    .product-services-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .product-card,
    .product-card:nth-child(1),
    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4),
    .product-card:nth-child(5),
    .product-card:nth-child(6),
    .product-card:nth-child(7) {

        grid-column: 1;

        width: 100%;

        height: 330px;
    }
}
/* remaining */
.healthintro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 35px;
    margin-bottom: 42px;
}

.healthintro p {
    max-width: 410px;
    font-size: 13px;
    color: #6B7A91;
}

.healthintro h2 {
    padding: 15px 0;
}

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

.authority {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 15px;
    position: relative;
    transition: .3s;
}

.authority:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.authority strong {
    font: 800 24px Manrope;
    color: var(--blue);
}

.authority small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #2b3036;
    max-width: 210px;
}

.authority i {
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 10px;
    color: #7A8BA2;
}

.audience {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-block: 1px solid var(--line);
    margin-top: 32px;
    padding: 16px;
}

.audience span {
    font-size: 14px;
    padding: 0 19px;
    border-right: 1px solid var(--line);
}

.audience span:last-child {
    border: 0;
}

.darkbox {
    background: linear-gradient(135deg, #17235C, #2D4084);
    border-radius: 27px;
    padding: 53px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    overflow: hidden;
    position: relative;
}

.darkbox h2 {
    color: #fff;
    margin: 13px 0;
}

.darkbox p {
    color: #C5D1E7;
    font-size: 13px;
    max-width: 470px;
    margin-bottom: 24px;
}

.selector {
    background: #ffffff12;
    border: 1px solid #ffffff22;
    border-radius: 16px;
    padding: 22px;
    position: relative;
    z-index: 2;
}
.cta{
    width: 100%;
    height: 260px;
    object-fit: cover;
}
/*Our Approach */
/* =========================================================
   OUR APPROACH
========================================================= */

.approach {
    position: relative;
    overflow: hidden;
    background: #fff;
}


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

.approach-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.approach-heading {
    max-width: 900px;
}

.approach-heading .eyebrow {
    margin-bottom: 24px;
}

.approach-heading h2 {
    max-width: 1000px;
    margin-bottom: 20px;
}

.approach-heading p {
    max-width: 690px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}


/* Small right-side editorial label */

.approach-side-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 10px;
    flex-shrink: 0;
}

.approach-side-note>span {
    display: block;
    width: 1px;
    height: 74px;
    background: var(--accent);
}

.approach-side-note div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.approach-side-note small {
    color: var(--accent);
    font-size: 10px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 3px;
}


/* ---------------------------------------------------------
   TIMELINE
--------------------------------------------------------- */

.approach-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-bottom: 65px;
}


/* Main connecting line */

.approach-timeline::before {
    content: "";
    position: absolute;
    top: 66px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--line);
    z-index: 0;
}


/* Individual step */

.approach-step {
    position: relative;
    min-width: 0;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}


/* ---------------------------------------------------------
   STEP TOP
--------------------------------------------------------- */

.step-top {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Number */

.step-number {
    display: block;
    margin-bottom: 12px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* Icon circle */

.step-icon {
    width: 58px;
    height: 58px;

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

    border-radius: 50%;

    color: var(--blue);
    background: #f5f8fc;

    border: 1px solid #dce7f3;

    font-size: 19px;

    box-shadow:
        0 8px 25px rgba(23, 35, 92, .06);

    transition:
        .35s var(--ease);
}


/* Small node on line */

.step-line {
    position: relative;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-line span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid var(--accent);

    transition: .35s var(--ease);
}


/* ---------------------------------------------------------
   STEP CONTENT
--------------------------------------------------------- */

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    margin-bottom: 9px;

    color: var(--blue);

    font-size: 18px;
    line-height: 1.25;

    transition: .3s var(--ease);
}

.step-content p {
    max-width: 175px;
    margin: auto;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   ACTIVE / HOVER
--------------------------------------------------------- */

.approach-step {
    cursor: default;
}

.approach-step:hover .step-icon,
.approach-step.active .step-icon {
    color: #fff;

    background:
        linear-gradient(145deg,
            #6fa9df,
            var(--accent));

    border-color: var(--accent);

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(93, 153, 216, .25);
}

.approach-step:hover .step-line span,
.approach-step.active .step-line span {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.35);
}

.approach-step:hover .step-content h3 {
    color: var(--accent);
}


/* ---------------------------------------------------------
   SUPPORT BAR
--------------------------------------------------------- */

.approach-support {
    display: grid;
    grid-template-columns: minmax(300px, 1.5fr) minmax(400px, 1.8fr) auto;
    align-items: center;
    gap: 25px;

    padding: 18px 22px;

    border: 1px solid #dce7f3;

    border-radius: 16px;

    background:
        linear-gradient(100deg,
            #f1f6fc 0%,
            #f7faff 100%);

    box-shadow:
        0 15px 45px rgba(23, 35, 92, .05);
}


/* Support intro */

.support-intro {
    display: flex;
    align-items: center;
    gap: 14px;
}

.support-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

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

    border-radius: 50%;

    color: var(--accent);
    background: #fff;

    border: 1px solid #dce7f3;

    font-size: 18px;
}

.support-intro strong {
    display: block;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 15px;
    line-height: 1.3;

    margin-bottom: 3px;
}

.support-intro p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   SUPPORT POINTS
--------------------------------------------------------- */

.support-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.support-point {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 0 25px;

    color: var(--text);

    font-size: 12px;

    border-left: 1px solid #d7e1ed;
}

.support-point:first-child {
    border-left: 0;
}

.support-point i {
    color: var(--accent);
    font-size: 17px;
}


/* ---------------------------------------------------------
   SUPPORT BUTTON
--------------------------------------------------------- */

.support-btn {
    min-width: 150px;
    min-height: 50px;

    white-space: nowrap;

    border-radius: 10px;
}


/* ---------------------------------------------------------
   SUBTLE BACKGROUND DECORATION
--------------------------------------------------------- */

.approach::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -260px;
    top: 120px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(93, 153, 216, .08),
            rgba(93, 153, 216, 0) 70%);

    pointer-events: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .approach-head {
        margin-bottom: 55px;
    }

    .approach-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }

    .approach-timeline::before {
        display: none;
    }

    .approach-step {
        padding: 0 15px;
    }

    .step-line {
        display: none;
    }

    .step-content {
        padding-top: 15px;
    }

    .approach-support {
        grid-template-columns: 1fr;
    }

    .support-points {
        justify-content: flex-start;
    }

    .support-btn {
        justify-self: flex-start;
    }
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 768px) {

    .section.approach {
        padding: 60px 0;
    }

    .approach-head {
        display: block;
        margin-bottom: 45px;
    }

    .approach-heading h2 {
        font-size: clamp(34px, 7vw, 48px);
        letter-spacing: -1.8px;
    }

    .approach-heading p {
        font-size: 14px;
    }

    .approach-side-note {
        display: none;
    }

    .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .approach-step {
        padding: 0 10px;
    }

    .step-content p {
        max-width: 210px;
    }

    .support-points {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .support-point {
        padding: 0 18px;
    }

    .support-point:first-child {
        padding-left: 0;
    }
}


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

@media (max-width: 560px) {

    .section.approach {
        padding: 50px 0;
    }

    .approach-heading .eyebrow {
        margin-bottom: 18px;
    }

    .approach-heading h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .approach-heading p {
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.65;
    }

    .approach-timeline {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .approach-step {
        display: grid;
        grid-template-columns: 58px 1fr;
        column-gap: 18px;
        text-align: left;
        padding: 15px 0;

        border-bottom: 1px solid var(--line);
    }

    .approach-step:last-child {
        border-bottom: 0;
    }

    .step-top {
        grid-row: span 2;
        align-items: center;
    }

    .step-number {
        margin-bottom: 7px;
    }

    .step-icon {
        width: 52px;
        height: 52px;
        font-size: 17px;
    }

    .step-line {
        display: none;
    }

    .step-content {
        padding: 0;
        align-self: center;
    }

    .step-content h3 {
        margin-bottom: 5px;
        font-size: 17px;
    }

    .step-content p {
        max-width: none;
        font-size: 12px;
        line-height: 1.55;
        margin: 0;
    }

    .approach-support {
        gap: 20px;
        padding: 20px;
        border-radius: 14px;
    }

    .support-intro {
        align-items: flex-start;
    }

    .support-intro strong {
        font-size: 14px;
    }

    .support-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .support-point,
    .support-point:first-child {
        padding: 0;
        border: 0;
    }

    .support-btn {
        width: 100%;
    }
}
/* =========================================================
   WHY NUCLEOUS
========================================================= */

.why-nucleous {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}


/* ---------------------------------------------------------
   MAIN LAYOUT
--------------------------------------------------------- */

.why-layout {
    display: grid;

    grid-template-columns:
        minmax(340px, 1.05fr) minmax(230px, .55fr) minmax(480px, 1.4fr);

    gap: 0;

    align-items: stretch;
}


/* ---------------------------------------------------------
   LEFT INTRO
--------------------------------------------------------- */

.why-intro {
    position: relative;
    z-index: 2;

    padding: 15px 45px 20px 0;
}

.why-intro .eyebrow {
    margin-bottom: 22px;
}

.why-intro h2 {
    max-width: 600px;

    margin-bottom: 22px;

    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.8px;
}

.why-intro h2 em {
    color: var(--accent);
}

.why-intro>p {
    max-width: 510px;

    margin-bottom: 26px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   EXPERTISE CARD
--------------------------------------------------------- */

.expertise-card {
    position: relative;

    margin-top: 42px;

    padding: 22px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .98),
            rgba(234, 243, 252, .9));

    border: 1px solid var(--line);

    border-radius: 14px;

    box-shadow:
        0 18px 50px rgba(23, 35, 92, .07);

    overflow: hidden;
}

.expertise-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -65px;
    top: -65px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(93, 153, 216, .16),
            transparent 70%);

    pointer-events: none;
}


/* Card heading */

.expertise-head {
    display: flex;
    align-items: center;

    gap: 14px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--line);
}

.expertise-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

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

    border-radius: 50%;

    color: var(--accent);

    background: var(--pale);

    border: 1px solid #cfe1f3;

    font-size: 18px;
}

.expertise-head small {
    display: block;

    color: var(--muted);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 2px;
}

.expertise-head strong {
    display: block;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 17px;
}


/* Expertise items */

.expertise-items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    padding-top: 20px;
}

.expertise-item {
    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 8px;
}

.expertise-item>span {
    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    color: var(--blue);

    background: rgba(255, 255, 255, .8);

    border: 1px solid #cddded;

    font-size: 15px;

    transition: .3s var(--ease);
}

.expertise-item strong {
    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 10px;
    font-weight: 700;
}

.expertise-item:hover>span {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);

    transform: translateY(-3px);
}

/* ---------------------------------------------------------
   MIDDLE VISUAL
--------------------------------------------------------- */

.why-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
}

.why-image-wrap {
    position: relative;

    width: 88%;
    height: 510px;

    overflow: hidden;

    border-radius: 0 0 100px 0;
}

.why-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: saturate(.75) contrast(.96);

    transition: transform .8s var(--ease);
}

.why-image-wrap:hover .why-image {
    transform: scale(1.035);
}


/* Image overlay */

.why-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(23, 35, 92, .02),
            rgba(23, 35, 92, .15));

    pointer-events: none;
}


/* Visual label */

.visual-label {
    position: absolute;

    top: 32px;
    right: 20px;

    display: flex;
    gap: 11px;

    z-index: 2;
}

.visual-label>span {
    width: 1px;
    height: 55px;

    background: var(--accent);
}

.visual-label div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visual-label small {
    color: rgba(23, 35, 92, .7);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* ---------------------------------------------------------
   RIGHT PRINCIPLES
--------------------------------------------------------- */

.why-principles {
    position: relative;

    padding-left: 55px;

    z-index: 2;
}


/* Principle */

.principle {
    position: relative;

    display: grid;

    grid-template-columns:
        50px 62px 1fr 42px;

    align-items: center;

    gap: 14px;

    min-height: 145px;

    padding: 20px 0;

    border-top: 1px solid var(--line);

    transition:
        .35s var(--ease);

    cursor: pointer;
}

.principle:last-child {
    border-bottom: 1px solid var(--line);
}


/* Number */

.principle-number {
    align-self: start;

    padding-top: 4px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
}


/* Icon */

.principle-icon {
    width: 52px;
    height: 52px;

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

    border-radius: 50%;

    color: var(--blue);

    background: #fff;

    border: 1px solid #cbdbea;

    font-size: 17px;

    transition: .35s var(--ease);
}


/* Text */

.principle-content h3 {
    margin-bottom: 7px;

    color: var(--blue);

    font-size: 18px;

    transition: .3s var(--ease);
}

.principle-content p {
    max-width: 430px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


/* Arrow */

.principle-arrow {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    color: var(--blue);

    border: 1px solid #cbdbea;

    background: #fff;

    opacity: .65;

    transition: .35s var(--ease);
}

.principle-arrow i {
    font-size: 12px;
}


/* ---------------------------------------------------------
   ACTIVE / HOVER PRINCIPLE
--------------------------------------------------------- */

.principle:hover,
.principle.active {
    padding-left: 12px;
    padding-right: 12px;

    background:
        linear-gradient(90deg,
            rgba(234, 243, 252, .85),
            rgba(255, 255, 255, .25));
}

.principle:hover .principle-icon,
.principle.active .principle-icon {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);

    box-shadow:
        0 10px 25px rgba(93, 153, 216, .2);

    transform: translateY(-2px);
}

.principle:hover .principle-arrow,
.principle.active .principle-arrow {
    opacity: 1;

    color: #fff;

    background: var(--blue);

    border-color: var(--blue);

    transform: translateX(3px);
}

.principle:hover .principle-content h3 {
    color: var(--accent);
}


/* ---------------------------------------------------------
   BOTTOM STATEMENT
--------------------------------------------------------- */

.why-bottom {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 34px;

    padding-left: calc(35% + 10px);
}

.why-bottom-line {
    width: 32px;
    height: 1px;

    flex-shrink: 0;

    background: var(--accent);
}

.why-bottom p {
    color: var(--muted);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .why-layout {
        grid-template-columns:
            minmax(320px, 1fr) minmax(220px, .55fr) minmax(400px, 1.25fr);
    }

    .why-intro {
        padding-right: 30px;
    }

    .why-principles {
        padding-left: 35px;
    }

    .principle {
        grid-template-columns:
            35px 50px 1fr 35px;

        gap: 10px;
    }

    .principle-icon {
        width: 46px;
        height: 46px;
    }

    .principle-content h3 {
        font-size: 16px;
    }

    .principle-content p {
        font-size: 11px;
    }

    .why-bottom {
        padding-left: 0;
    }
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

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

    .why-intro {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .why-intro h2 {
        max-width: 700px;
    }

    .why-visual {
        min-height: 420px;

        margin-bottom: 40px;
    }

    .why-image-wrap {
        min-height: 420px;

        border-radius: 18px 18px 100px 18px;
    }

    .why-principles {
        padding-left: 0;
    }

    .principle {
        min-height: 125px;
    }

    .why-bottom {
        margin-top: 30px;
    }
}


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

@media (max-width: 600px) {

    .section.why-nucleous {
        padding: 55px 0;
    }

    .why-intro h2 {
        font-size: 35px;
        line-height: 1.08;
        letter-spacing: -1.7px;
    }

    .why-intro>p {
        font-size: 13px;
    }

    .expertise-card {
        margin-top: 30px;
        padding: 18px;
    }

    .expertise-items {
        gap: 6px;
    }

    .expertise-item>span {
        width: 38px;
        height: 38px;
    }

    .expertise-item strong {
        font-size: 9px;
    }

    .why-visual {
        min-height: 360px;
    }

    .why-image-wrap {
        min-height: 360px;

        border-radius: 16px 16px 80px 16px;
    }

    .visual-label {
        top: 22px;
        right: 18px;
    }

    .visual-label small {
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .principle {
        grid-template-columns:
            35px 48px 1fr 32px;

        gap: 8px;

        min-height: 115px;

        padding: 15px 0;
    }

    .principle-icon {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .principle-content h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .principle-content p {
        font-size: 10.5px;
        line-height: 1.5;
    }

    .principle-arrow {
        width: 30px;
        height: 30px;
    }

    .why-bottom {
        align-items: flex-start;
    }

    .why-bottom p {
        font-size: 8px;
        line-height: 1.5;
        letter-spacing: 1.2px;
    }
}
.cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.case {
    border: 1px solid var(--line);
    border-radius: 19px;
    overflow: hidden;
    transition: .35s;
}

.case:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.casevisual {
    position: relative;
    height: 200px;
    overflow: hidden;

    background: linear-gradient(135deg,
            #EDF4FA,
            #DCEAF6);

    padding: 20px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    isolation: isolate;
}


/* IMAGE */
.casevisual img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    z-index: 0;

    transition:
        transform .6s var(--ease);
}


/* DARK / BLUE IMAGE OVERLAY */
.casevisual-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(218, 219, 223, 0.1),
            rgba(144, 153, 202, 0.6));

    z-index: 1;
}


/* CATEGORY TEXT */
.casevisual span {
    position: relative;
    padding: 8px;
    border-radius: 10px;

    z-index: 2;

    font: 800 12px/1.5 Manrope, sans-serif;

    letter-spacing: 0.8px;
    background-color: #ffffff;

    color: var(--blue);
}


/* ICON */
.casevisual i {
    position: relative;

    z-index: 2;

    width: 46px;
    height: 46px;

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

    border-radius: 50%;

    color: var(--blue);

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(8px);

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

    font-size: 18px;

    transition: .35s var(--ease);
}


/* IMAGE ZOOM ON CARD HOVER */
.case:hover .casevisual img {
    transform: scale(1.06);
}


/* ICON HOVER */
.case:hover .casevisual i {
    background: #fff;

    transform: translateY(-3px);
}

.casebody {
    padding: 21px;
}

.tag {
    font-size: 11px;
    letter-spacing: 1px;
    color: #6C8DB0;
    font-weight: 800;
}

.casebody h3 {
    font-size: 18px;
    margin: 9px 0;
}

.casebody p {
    font-size: 13px;
    color: #748299;
    margin-top: 6px;
}

.casebody a {
    display: inline-block;
    color: #2869A6;
    font-size: 12px;
    font-weight: 800;
    margin-top: 15px;
}

.insights {
    background: #F5F8FC;
}

.insightgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.insight {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    transition: .3s;
}

.insight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.insight span {
    font-size: 12px;
    letter-spacing: 1.4px;
    color: #5585B3;
    font-weight: 800;
}

.insight h3 {
    font-size: 22px;
    margin-top: 22px;
}

.insight a {
    margin-top: auto;
    color: #2869A6;
    font-size: 13px;
    font-weight: 800;
}

.faqgrid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.faqintro p {
    font-size: 14px;
    color: #313945;
    max-width: 340px;
    margin: 17px 0 23px;
}

.faqlist {
    border-top: 1px solid var(--line);
}

.faq {
    border-bottom: 1px solid var(--line);
}

.faq button {
    width: 100%;
    padding: 21px 0;
    border: 0;
    background: none;
    color: var(--blue);
    display: flex;
    justify-content: space-between;
    text-align: left;
    font: 700 18px Manrope;
}

.faq button i {
    font-size: 14px;
    transition: .25s;
}

.faq.open button i {
    transform: rotate(45deg);
}

.answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s;
}

.answer p {
    overflow: hidden;
    font-size: 16px;
    color: #1a1b1e;
    padding-right: 35px;
}

.faq.open .answer {
    grid-template-rows: 1fr;
}

.faq.open .answer p {
    padding-bottom: 20px;
}
/* =========================================================
   CONTACT / CTA
========================================================= */

.contact {
    position: relative;
    overflow: hidden;

    background: var(--bg);
}


/* ---------------------------------------------------------
   MAIN CONTACT BOX
--------------------------------------------------------- */

.contactbox {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(360px, .85fr) minmax(500px, 1.15fr);

    gap: 75px;

    padding: 58px;

    border-radius: 26px;

    background:
        linear-gradient(135deg,
            var(--blue) 0%,
            #1D2C6B 55%,
            var(--blue2) 100%);

    overflow: hidden;

    isolation: isolate;
}


/* subtle background glow */

.contactbox::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    bottom: -360px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(93, 153, 216, .16),
            rgba(93, 153, 216, 0) 70%);

    pointer-events: none;

    z-index: -1;
}


/* subtle architectural ring */

.contactbox::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -210px;
    top: -210px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 0 0 45px rgba(255, 255, 255, .025),
        0 0 0 90px rgba(255, 255, 255, .018);

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-content {
    position: relative;

    padding-top: 5px;
}


.contact-content .eyebrow {
    margin-bottom: 24px;
}


/* Heading */

.contactbox h2 {
    color: #fff;

    font-size: clamp(43px, 4.5vw, 66px);

    line-height: 1.02;

    letter-spacing: -2.8px;

    margin: 0 0 22px;
}

.contactbox h2 em {
    color: #9FC7EC;
}


/* Intro */

.contact-intro {
    max-width: 460px;

    color: #C9D7EA;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   REASSURANCE POINTS
========================================================= */

.contact-points {
    display: grid;

    gap: 18px;

    margin-top: 35px;
}


.contact-point {
    display: flex;

    align-items: center;

    gap: 13px;
}


.point-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 9px;

    color: #A9D0F1;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    font-size: 18px;
}


.contact-point strong {
    display: block;

    color: #F4F8FD;

    font-family: Manrope, sans-serif;

    font-size: 16px;

    line-height: 1.3;
}


.contact-point div>span {
    display: block;

    margin-top: 2px;

    color: #9FB2CC;

    font-size: 12px;

    line-height: 1.4;
}


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

.details {
    display: grid;

    gap: 10px;

    margin-top: 32px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .10);

    grid-auto-flow: column;

    max-width: 460px;
}


.details a {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #DDE8F5;

    font-size: 14px;

    transition: .25s var(--ease);
}


.details a:hover {
    color: #fff;

    transform: translateX(3px);
}


.details i {
    width: 18px;

    color: #8DBAE4;

    font-size: 12px;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.form-wrap {
    position: relative;

    background: #fff;

    border-radius: 19px;

    padding: 28px 30px 24px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .14);
}


/* ---------------------------------------------------------
   FORM HEADER
--------------------------------------------------------- */

.form-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--line);
}


.form-step {
    display: block;

    margin-bottom: 5px;

    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.form-heading h3 {
    color: var(--blue);

    font-size: 24px;

    line-height: 1.25;
}


.form-mark {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    color: var(--accent);

    background: var(--pale);

    border: 1px solid #D5E4F3;

    font-size: 12px;
}


/* =========================================================
   FORM
========================================================= */

.form {
    display: flex;

    flex-direction: column;
}


/* Row */

.row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;
}


/* Labels */

.form label {
    display: block;

    margin-bottom: 14px;

    color: var(--ink);

    font-size: 12px;

    font-weight: 800;
}


.form label>span {
    display: block;

    margin-bottom: 6px;
}


/* =========================================================
   INPUTS
========================================================= */

.form input,
.form select,
.form textarea {
    width: 100%;

    display: block;

    border: 1px solid #D5E0EC;

    border-radius: 9px;

    padding: 12px 13px;

    color: var(--ink);

    background: #FBFCFE;

    outline: none;

    font-size: 11px;

    transition:
        border-color .25s var(--ease),
        box-shadow .25s var(--ease),
        background .25s var(--ease);
}


.form input::placeholder,
.form textarea::placeholder {
    color: #8290A4;
}


.form input:hover,
.form select:hover,
.form textarea:hover {
    border-color: #B8C9DC;

    background: #fff;
}


.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--accent);

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(93, 153, 216, .12);
}


.form textarea {
    min-height: 105px;

    resize: vertical;

    line-height: 1.5;
}


/* Select */

.form select {
    cursor: pointer;

    appearance: auto;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.form-submit {
    width: 100%;

    min-height: 54px;

    margin-top: 3px;

    border: 0;

    border-radius: 10px;

    font-size: 12px;

    box-shadow:
        0 12px 25px rgba(23, 35, 92, .16);
}


.form-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 30px rgba(23, 35, 92, .22);
}


.form-submit i {
    font-size: 11px;
}


/* =========================================================
   FORM ASSURANCE
========================================================= */

.form-assurance {
    display: flex;

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

    gap: 7px;

    margin-top: 11px;

    color: #111215;

    font-size: 10px;

    text-align: center;
}


.form-assurance i {
    color: #8DA6C0;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .contactbox {
        grid-template-columns:
            minmax(320px, .85fr) minmax(430px, 1.15fr);

        gap: 45px;

        padding: 45px;
    }

    .contactbox h2 {
        font-size: 48px;
    }

}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

    .contactbox {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 42px;
    }

    .contact-content {
        max-width: 650px;
    }

    .contact-points {
        grid-template-columns: repeat(3, 1fr);

        gap: 12px;
    }

    .contact-point {
        align-items: flex-start;
    }

    .details {
        margin-top: 25px;

        padding-top: 20px;
    }

}


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

@media (max-width: 600px) {

    .contact {
        padding: 50px 0;
    }

    .contactbox {
        padding: 28px 20px;

        border-radius: 20px;

        gap: 32px;
    }

    .contact-content .eyebrow {
        margin-bottom: 20px;
    }

    .contactbox h2 {
        font-size: 38px;

        line-height: 1.05;

        letter-spacing: -1.8px;
    }

    .contact-intro {
        font-size: 13px;
    }


    /* points become vertical */

    .contact-points {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 28px;
    }


    .contact-point {
        align-items: center;
    }


    /* form */

    .form-wrap {
        padding: 22px 18px 20px;

        border-radius: 15px;
    }


    .form-heading {
        margin-bottom: 19px;
    }


    .form-heading h3 {
        font-size: 18px;
    }


    .row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form input,
    .form select,
    .form textarea {
        font-size: 11px;
    }


    .form textarea {
        min-height: 110px;
    }


    .form-submit {
        min-height: 52px;
    }


    .form-assurance {
        font-size: 7.5px;
    }

}
/* =========================================================
   NUCLEOUS FOOTER
========================================================= */

.site-footer {
    position: relative;

    background:
        linear-gradient(135deg,
            #171D48 0%,
            #1B2251 55%,
            #20285C 100%);

    color: #fff;

    overflow: hidden;
}


/* ---------------------------------------------------------
   SUBTLE BACKGROUND DETAIL
--------------------------------------------------------- */

.site-footer::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -260px;
    top: -260px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .045);

    box-shadow:
        0 0 0 60px rgba(255, 255, 255, .018),
        0 0 0 120px rgba(255, 255, 255, .012);

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(93, 153, 216, .08),
            transparent 70%);

    pointer-events: none;
}


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

.footer-main {
    position: relative;

    display: grid;

    grid-template-columns:
        1.05fr 1.25fr .9fr;

    gap: 80px;

    padding: 70px 0 55px;

    z-index: 1;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    max-width: 370px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 27px;
}


.footer-logo img {
    width: 275px;
    height: auto;

    display: block;

    /*
      If your source logo is already white,
      this displays it naturally.
    */
}


/* Description */

.footer-description {
    max-width: 355px;

    color: #9EAAC2;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;

    gap: 9px;

    margin-top: 28px;
}


.social-link {
    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 9px;

    color: #DCE8F6;

    background: rgba(93, 153, 216, .15);

    border: 1px solid rgba(255, 255, 255, .08);

    font-size: 15px;

    transition:
        .3s var(--ease);
}


.social-link:hover {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(93, 153, 216, .2);
}


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

.footer-heading {
    margin-bottom: 27px;
}


.footer-heading h3 {
    color: #fff;

    font-size: 25px;

    font-weight: 700;

    letter-spacing: -.7px;
}


.footer-heading span {
    display: block;

    width: 68px;
    height: 1px;

    margin-top: 17px;

    background:
        linear-gradient(to right,
            #fff 0 70%,
            var(--accent) 70%);
}


/* =========================================================
   SERVICE LINKS
========================================================= */

.footer-links {
    display: grid;

    gap: 13px;
}


.footer-links a {
    display: flex;

    align-items: flex-start;
    justify-items: center;

    gap: 12px;

    color: #9FAAC2;

    font-size: 14px;

    line-height: 1.55;

    transition:
        color .25s var(--ease),
        transform .25s var(--ease);
}


.footer-links a:hover {
    color: #fff;

    transform: translateX(4px);
}


.footer-link-icon {
    display: flex;

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

    width: 18px;

    flex-shrink: 0;

    color: var(--accent);

    padding-top: 2px;
}


.footer-link-icon i {
    font-size: 10px;

    transition:
        transform .25s var(--ease);
}


.footer-links a:hover .footer-link-icon i {
    transform: translateX(4px);
}


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

.footer-contact {
    min-width: 0;
}


.footer-contact-block {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 28px;
}


.footer-contact-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 8px;

    color: #DCEBFA;

    background:
        rgba(255, 255, 255, .10);

    border: 1px solid rgba(255, 255, 255, .08);

    font-size: 13px;
}


.footer-contact-block strong {
    display: block;

    color: #fff;

    font-family: Manrope, sans-serif;

    font-size: 13px;

    margin-bottom: 7px;
}


/* Contact links */

.footer-contact-list {
    display: grid;

    gap: 4px;
}


.footer-contact-list a {
    color: #9EAAC2;

    font-size: 11px;

    line-height: 1.55;

    transition:
        color .25s var(--ease);
}


.footer-contact-list a:hover {
    color: #fff;
}


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

.footer-cta {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 22px 25px;

    border-top: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(255, 255, 255, .09);

    z-index: 1;
}


.footer-cta>div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.footer-cta>div span {
    color: #8EBCE6;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.footer-cta>div strong {
    color: #fff;

    font-family: Manrope, sans-serif;

    font-size: 15px;

    font-weight: 700;
}


/* CTA */

.footer-cta-btn {
    display: inline-flex;

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

    gap: 10px;

    min-height: 45px;

    padding: 0 18px;

    border-radius: 9px;

    color: var(--blue);

    background: #fff;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        .3s var(--ease);
}


.footer-cta-btn i {
    transition: .25s;
}


.footer-cta-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, .18);
}


.footer-cta-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.footer-bottom {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 0;

    z-index: 1;
}


.footer-bottom p {
    color: #A3AEC3;

    font-size: 10px;
}


/* Legal */

.footer-legal {
    display: flex;

    align-items: center;

    gap: 13px;
}


.footer-legal a {
    color: #A3AEC3;

    font-size: 10px;

    transition:
        color .25s var(--ease);
}


.footer-legal a:hover {
    color: #fff;
}


.footer-legal>span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #62718F;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .footer-main {
        grid-template-columns:
            1fr 1.2fr;

        gap: 55px;
    }

    .footer-contact {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: auto 1fr;

        column-gap: 50px;
    }

    .footer-contact .footer-heading {
        grid-column: 1 / -1;
    }

    .footer-contact-block {
        margin-bottom: 0;
    }

}


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

@media (max-width: 768px) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 55px 0 40px;
    }

    .footer-brand {
        max-width: 500px;
    }

    .footer-description {
        max-width: 500px;
    }

    .footer-contact {
        display: block;
    }

    .footer-contact-block {
        margin-bottom: 20px;
    }


    .footer-cta {
        align-items: flex-start;

        flex-direction: column;

        padding: 22px 0;
    }

    .footer-cta-btn {
        width: 100%;
    }


    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding: 20px 0;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 10px;
    }

}


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

@media (max-width: 500px) {

    .footer-main {
        gap: 38px;

        padding: 45px 0 35px;
    }


    .footer-logo img {
        width: 225px;
    }


    .footer-description {
        font-size: 12px;

        line-height: 1.7;
    }


    .footer-heading {
        margin-bottom: 20px;
    }


    .footer-heading h3 {
        font-size: 21px;
    }


    .footer-links {
        gap: 11px;
    }


    .footer-links a {
        font-size: 11px;
    }


    .footer-contact-block {
        gap: 11px;
    }


    .footer-contact-icon {
        width: 36px;
        height: 36px;
    }


    .footer-contact-list a {
        font-size: 10px;
    }


    .footer-bottom p,
    .footer-legal a {
        font-size: 9px;
    }

}

/* motion */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s var(--ease);
}

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

.d1 {
    transition-delay: .08s;
}

.d2 {
    transition-delay: .16s;
}

.d3 {
    transition-delay: .24s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* responsive */
@media(max-width:1050px) {
    .navlinks {
        gap: 13px;
    }

    .logo {
        width: 170px;
    }

    .hero-grid {
        gap: 20px;
    }

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

    .productgrid {
        grid-template-columns: 1fr 1.35fr;
    }

    .productphoto {
        display: none;
    }

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

    .whygrid,
    .faqgrid {
        gap: 50px;
    }
}

@media(max-width:900px) {
    .menu {
        display: block;
    }

    .navlinks {
        position: fixed;
        top: 72px;
        right: 0;
        width: min(390px, 100%);
        height: calc(100vh - 72px);
        background: #fff;
        border-left: 1px solid var(--line);
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: auto;
        transform: translateX(105%);
        transition: .35s var(--ease);
        box-shadow: -15px 0 40px #17235c1a;
    }

    .navlinks.open {
        transform: none;
    }

    .navlinks>a,
    .dropbtn {
        padding: 14px 4px;
        border-bottom: 1px solid #EDF1F5;
        font-size: 13px;
    }

    .navlinks>a:not(.navcta):after {
        display: none;
    }

    .dropdown {
        height: auto;
        display: block;
    }

    .dropbtn {
        width: 100%;
        text-align: left;
    }

    .dropmenu {
        position: static;
        width: 100%;
        display: none;
        box-shadow: none;
        border: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.open .dropmenu {
        display: block;
    }

    .navcta {
        font-size: 10px;
        text-align: center;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .hero-copy {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .hero-copy .eyebrow,
    .actions,
    .tags {
        justify-content: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

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

    .trustitem:nth-child(2) {
        border-right: 0;
    }

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

    .healthintro {
        align-items: start;
        flex-direction: column;
    }

    .darkbox,
    .contactbox {
        grid-template-columns: 1fr;
    }

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

    .whygrid,
    .faqgrid {
        grid-template-columns: 1fr;
    }

    .cases,
    .insightgrid {
        grid-template-columns: 1fr 1fr;
    }

    .footgrid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media(max-width:620px) {
    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 76px 0;
    }

    h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .hero .visual {
        height: 390px;
    }

    .city {
        width: 82%;
        height: 235px;
        top: 65px;
    }

    .skyline {
        height: 68%;
        gap: 4px;
    }

    .a {
        height: 80px;
    }

    .b {
        height: 110px;
    }

    .c {
        height: 135px;
    }

    .d {
        height: 170px;
    }

    .e {
        height: 95px;
    }

    .f {
        height: 120px;
    }

    .g {
        height: 70px;
    }

    .path {
        width: 150px;
        padding: 9px;
        gap: 8px;
    }

    .path strong {
        font-size: 9px;
    }

    .pi {
        width: 31px;
        height: 31px;
        font-size: 11px;
    }

    .p1 {
        left: 0;
        top: 50px;
    }

    .p2 {
        right: 0;
        top: 10px;
    }

    .p3 {
        left: 0;
        bottom: 45px;
    }

    .p4 {
        right: 0;
        bottom: 10px;
    }

    .route {
        left: 35px;
        top: 120px;
        width: 260px;
    }

    .badge {
        right: 20px;
        font-size: 8px;
    }

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

    .trustitem {
        border-right: 0 !important;
        border-bottom: 1px solid #D3DEEB;
        padding: 12px 0 !important;
    }

    .trustitem:last-child {
        border-bottom: 0;
    }

    .heading {
        align-items: start;
        flex-direction: column;
    }

    .cards,
    .authorities,
    .cases,
    .insightgrid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 335px;
    }

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

    .steps {
        gap: 4px;
    }

    .steps b {
        min-width: 8px;
    }

    .audience {
        justify-content: flex-start;
    }

    .audience span {
        padding: 0 11px;
        margin: 4px 0;
    }

    .darkbox,
    .contactbox {
        padding: 32px 21px;
        border-radius: 22px;
    }

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

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

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

    .footbrand {
        grid-column: 1/-1;
    }

    .bottom {
        flex-direction: column;
        gap: 6px;
    }
}

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

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

    .path {
        animation: none;
    }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    overflow: hidden;
}


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

.about-hero {
    padding-top: 45px;
    padding-bottom: 85px;

    background:
        radial-gradient(circle at 90% 10%,
            rgba(93, 153, 216, .08),
            transparent 32%),
        var(--bg);
}


.about-hero-grid {
    display: grid;

    grid-template-columns:
        .88fr 1.12fr;

    gap: 65px;

    align-items: center;
}


.about-hero-content {
    padding: 85px 0;
}


.about-hero-content .eyebrow {
    margin-bottom: 24px;
}


.about-hero h1 {
    max-width: 680px;

    font-size: clamp(48px, 5.2vw, 72px);

    line-height: 1.02;

    letter-spacing: -3.2px;

    margin-bottom: 24px;
}


.about-hero h1 em {
    color: var(--accent);
}


.about-hero-content>p {
    max-width: 530px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 30px;
}


.about-hero-actions {
    display: flex;

    align-items: center;

    gap: 25px;
}


/* HERO IMAGE */

.about-hero-visual {
    position: relative;
}


.about-hero-image {
    position: relative;

    height: 540px;

    overflow: hidden;

    border-radius:
        22px 22px 100px 22px;

    background: var(--pale);
}


.about-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(23, 35, 92, .55));

    pointer-events: none;
}


.about-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s var(--ease);
}


.about-hero-image:hover img {
    transform: scale(1.035);
}


.hero-image-caption {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;
}


.hero-image-caption>span {
    width: 3px;
    height: 38px;

    background: var(--accent);
}


.hero-image-caption strong {
    display: block;

    color: #fff;

    font-family: Manrope, sans-serif;

    font-size: 13px;
}


.hero-image-caption small {
    display: block;

    margin-top: 2px;

    color: #C9D8EA;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: grid;

    grid-template-columns:
        1.1fr .65fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}


.section-heading .eyebrow {
    margin-bottom: 20px;
}


.section-heading h2 {
    max-width: 750px;

    font-size: clamp(38px, 4vw, 55px);
}


.section-heading h2 em {
    color: var(--accent);
}


.section-heading>p {
    max-width: 430px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


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

.expertise-section {
    background: #fff;
}


.expertise-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.expertise-card {
    position: relative;

    min-height: 470px;

    padding: 32px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: #fff;

    transition:
        .4s var(--ease);
}


.expertise-card:hover {
    background: var(--pale);

    transform: translateY(-5px);

    box-shadow:
        0 20px 55px rgba(23, 35, 92, .08);

    z-index: 2;
}


.expertise-card.featured {
    background:
        linear-gradient(145deg,
            #F6FAFE,
            #EAF3FC);
}


.expertise-number {
    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 28px;
}


.expertise-icon {
    width: 54px;
    height: 54px;

    display: flex;

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

    border-radius: 13px;

    color: var(--blue);

    background: #fff;

    border: 1px solid #CFDDEA;

    font-size: 18px;

    margin-bottom: 25px;

    transition:
        .35s var(--ease);
}


.expertise-card:hover .expertise-icon {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);

    transform: translateY(-3px);
}


.expertise-card h3 {
    max-width: 320px;

    color: var(--blue);

    font-size: 20px;

    margin-bottom: 13px;
}


.expertise-card>p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    max-width: 350px;
}


.expertise-card ul {
    padding: 0;

    margin: 22px 0 25px;

    list-style: none;

    display: grid;

    gap: 9px;
}


.expertise-card li {
    position: relative;

    padding-left: 18px;

    color: var(--text);

    font-size: 10px;
}


.expertise-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--accent);
}


.card-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #2869A6;

    font-size: 10px;

    font-weight: 800;

    transition:
        .25s var(--ease);
}


.card-link i {
    transition: .25s;
}


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


/* =========================================================
   HOW WE WORK
========================================================= */

.work-section {
    position: relative;

    background:
        linear-gradient(135deg,
            #19212A,
            #202A33);

    color: #fff;

    overflow: hidden;
}


.work-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -350px;
    top: -300px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .05);

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .015),
        0 0 0 140px rgba(255, 255, 255, .01);
}


.work-header {
    max-width: 780px;

    margin-bottom: 48px;
}


.work-header .eyebrow {
    margin-bottom: 20px;
}


.work-header h2 {
    color: #fff;

    font-size: clamp(38px, 4vw, 55px);

    margin-bottom: 18px;
}


.work-header h2 em {
    color: #8DBAE4;
}


.work-header p {
    max-width: 520px;

    color: #AEBBCB;

    font-size: 13px;
}


/* Work layout */

.work-layout {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 65px;

    align-items: center;
}


/* PROCESS */

.process-list {
    border-top: 1px solid rgba(255, 255, 255, .10);
}


.process-item {
    position: relative;

    display: grid;

    grid-template-columns:
        38px 50px 1fr 35px;

    align-items: center;

    gap: 14px;

    min-height: 118px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .10);

    cursor: pointer;

    transition:
        .35s var(--ease);
}


.process-item:hover,
.process-item.active {
    padding-left: 12px;
    padding-right: 12px;

    background:
        rgba(255, 255, 255, .045);
}


.process-number {
    align-self: start;

    padding-top: 5px;

    color: #7BA8D4;

    font-size: 10px;

    font-weight: 800;
}


.process-icon {
    width: 46px;
    height: 46px;

    display: flex;

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

    border-radius: 11px;

    color: #A8CBE9;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .10);

    font-size: 15px;

    transition:
        .35s var(--ease);
}


.process-item:hover .process-icon,
.process-item.active .process-icon {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);
}


.process-content h3 {
    color: #fff;

    font-size: 17px;

    margin-bottom: 5px;
}


.process-content p {
    max-width: 430px;

    color: #97A7B9;

    font-size: 10px;

    line-height: 1.6;
}


.process-arrow {
    color: #718296;

    font-size: 11px;

    transition:
        .3s var(--ease);
}


.process-item:hover .process-arrow,
.process-item.active .process-arrow {
    color: #fff;

    transform: translateX(4px);
}


/* Work image */

.work-visual {
    position: relative;
}


.work-image {
    position: relative;

    height: 570px;

    overflow: hidden;

    border-radius:
        18px 18px 90px 18px;
}


.work-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s var(--ease);
}


.work-image:hover img {
    transform: scale(1.04);
}


.work-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(15, 23, 30, .6));
}


.work-image-label {
    position: absolute;

    z-index: 2;

    left: 24px;
    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 12px;
}


.label-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px rgba(93, 153, 216, .15);
}


.work-image-label small {
    display: block;

    color: #AFC4D9;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.work-image-label strong {
    display: block;

    margin-top: 3px;

    color: #fff;

    font-family: Manrope, sans-serif;

    font-size: 12px;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.who-section {
    background: var(--bg);
}


.who-grid {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 90px;

    align-items: center;
}


.who-content .eyebrow {
    margin-bottom: 20px;
}


.who-content h2 {
    max-width: 680px;

    margin-bottom: 25px;
}


.who-content h2 em {
    color: var(--accent);
}


.who-content>p {
    max-width: 690px;

    margin-bottom: 17px;

    color: var(--text);

    font-size: 12px;

    line-height: 1.8;
}


.who-principles {
    margin-top: 27px;

    padding-top: 22px;

    border-top: 1px solid var(--line);
}


.who-principles h4 {
    margin-bottom: 15px;

    color: var(--blue);

    font-size: 13px;
}


.who-principles ul {
    padding: 0;

    margin: 0;

    list-style: none;

    display: grid;

    gap: 10px;
}


.who-principles li {
    padding-left: 19px;

    position: relative;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}


.who-principles li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--accent);
}


.who-principles strong {
    color: var(--blue);
}


.who-closing {
    margin-top: 22px !important;

    color: var(--muted) !important;
}


/* Who image */

.who-visual {
    position: relative;

    min-height: 570px;
}


.who-image-main {
    position: absolute;

    right: 0;
    top: 0;

    width: 82%;
    height: 500px;

    overflow: hidden;

    border-radius:
        18px 18px 75px 18px;
}


.who-image-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.who-image-small {
    position: absolute;

    left: 0;
    bottom: 20px;

    width: 47%;
    height: 220px;

    padding: 7px;

    background: #fff;

    border-radius: 14px;

    box-shadow:
        0 20px 50px rgba(23, 35, 92, .14);
}


.who-image-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 9px;
}


.who-visual-label {
    position: absolute;

    right: 18px;
    bottom: -3px;

    padding: 8px 12px;

    color: var(--blue);

    background: #fff;

    border: 1px solid var(--line);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.2px;

    box-shadow:
        0 10px 30px rgba(23, 35, 92, .08);
}


.who-visual-label span {
    color: var(--accent);

    margin-right: 7px;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.mission-section {
    padding-top: 25px;

    background: var(--bg);
}


.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.mission-card {
    position: relative;

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 30px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 14px;

    box-shadow:
        0 15px 45px rgba(23, 35, 92, .055);

    transition:
        .35s var(--ease);
}


.mission-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(23, 35, 92, .09);
}


.mission-icon {
    width: 50px;
    height: 50px;

    display: flex;

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

    border-radius: 12px;

    color: var(--blue);

    background: var(--pale);

    border: 1px solid #D3E3F1;

    font-size: 17px;
}


.mission-label {
    display: block;

    margin-bottom: 6px;

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.mission-card h3 {
    color: var(--blue);

    font-size: 18px;

    margin-bottom: 10px;
}


.mission-card p {
    color: var(--muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s var(--ease),
        transform .7s var(--ease);
}


.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}


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

@media (max-width: 1000px) {

    .about-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-hero-content {
        max-width: 750px;
    }

    .about-hero-image {
        height: 480px;
    }


    .section-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }


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


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


    .work-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .work-image {
        height: 450px;
    }


    .who-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .who-visual {
        min-height: 500px;
    }

}


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

@media (max-width: 600px) {

    .about-hero {
        padding-top: 30px;

        padding-bottom: 55px;
    }


    .about-hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .about-hero-content>p {
        font-size: 13px;
    }


    .about-hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .about-hero-image {
        height: 380px;

        border-radius:
            15px 15px 70px 15px;
    }


    .section-heading h2,
    .work-header h2,
    .who-content h2 {
        font-size: 35px;

        letter-spacing: -1.6px;
    }


    .expertise-card {
        padding: 25px;

        min-height: auto;
    }


    .work-section {
        padding: 60px 0;
    }


    .process-item {
        grid-template-columns:
            30px 45px 1fr 25px;

        gap: 8px;
    }


    .process-icon {
        width: 42px;
        height: 42px;
    }


    .process-content h3 {
        font-size: 15px;
    }


    .process-content p {
        font-size: 9px;
    }


    .work-image {
        height: 380px;

        border-radius:
            15px 15px 65px 15px;
    }


    .who-visual {
        min-height: 430px;
    }


    .who-image-main {
        width: 86%;

        height: 390px;
    }


    .who-image-small {
        width: 48%;

        height: 165px;
    }


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


    .mission-card {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        padding: 22px;
    }


    .mission-icon {
        width: 43px;
        height: 43px;
    }

}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    position: relative;

    padding-top: 85px;
    padding-bottom: 100px;

    background: var(--bg);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.services-section::before {
    content: "SERVICES";

    position: absolute;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    color: transparent;

    -webkit-text-stroke:
        1px rgba(23, 35, 92, .045);

    font-family: Manrope, sans-serif;

    font-size: clamp(90px, 15vw, 190px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -8px;

    pointer-events: none;

    white-space: nowrap;
}


.services-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -320px;
    top: 60px;

    border-radius: 50%;

    border:
        1px solid rgba(23, 35, 92, .05);

    box-shadow:
        0 0 0 70px rgba(23, 35, 92, .018),
        0 0 0 140px rgba(23, 35, 92, .012);

    pointer-events: none;
}


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

.services-header {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.15fr .7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}


.services-heading .eyebrow {
    margin-bottom: 20px;
}


.services-heading h2 {
    max-width: 720px;

    font-size: clamp(40px, 4.3vw, 58px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.services-heading h2 em {
    color: var(--accent);
}


.services-intro {
    max-width: 410px;

    padding-bottom: 5px;
}


.services-intro p {
    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 18px;
}


.services-intro .text-link {
    display: inline-flex;

    align-items: center;

    color: #2869A6;

    font-size: 11px;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 16px;

    overflow: visible;

    transition:
        transform .4s var(--ease),
        box-shadow .4s var(--ease),
        border-color .4s var(--ease);
}


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

    border-color:
        #C8D8E8;

    box-shadow:
        0 24px 60px rgba(23, 35, 92, .11);
}


/* =========================================================
   IMAGE
========================================================= */

.service-image {
    position: relative;

    height: 225px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #EAF3FC,
            #D8E7F4);
}


.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s var(--ease);
}


.service-card:hover .service-image img {
    transform: scale(1.06);
}


/* Image overlay */

.service-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(23, 35, 92, .08),
            rgba(23, 35, 92, .48));

    pointer-events: none;
}


/* =========================================================
   TOP IMAGE INFO
========================================================= */

.service-top {
    position: absolute;

    top: 16px;
    left: 17px;
    right: 17px;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.service-number {
    display: inline-flex;

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

    width: 31px;
    height: 31px;

    border-radius: 8px;

    color: #fff;

    background:
        rgba(23, 35, 92, .78);

    border:
        1px solid rgba(255, 255, 255, .18);

    backdrop-filter: blur(7px);

    font-size: 9px;

    font-weight: 800;
}


.service-category {
    padding: 7px 10px;

    border-radius: 7px;

    color: #fff;

    background:
        rgba(23, 35, 92, .68);

    border:
        1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(7px);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


/* =========================================================
   ICON
========================================================= */
.service-icon {
    position: absolute;

    left: 22px;

    top: 201px;

    width: 49px;
    height: 49px;

    display: flex;

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

    border-radius: 50%;

    color: var(--blue);

    background: #fff;

    border: 3px solid #152a3e;

    box-shadow:
        0 8px 22px rgba(23, 35, 92, .14);

    font-size: 15px;

    z-index: 20;

    transition:
        .35s var(--ease);
}


.service-card:hover .service-icon {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);

    transform: translateY(-4px);
}


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

.service-content {
    position:relative;
    display: flex;

    flex-direction: column;

    flex: 1;

    z-index: 5;

    padding:
        38px 23px 25px;
}


.service-content h3 {
    color: var(--blue);

    font-size: 24px;

    line-height: 1.2;

    letter-spacing: -.45px;

    margin-bottom: 12px;
}


.service-content h3 span {
    display: block;
}


.service-content p {
    color: var(--text);

    font-size: 16px;

    line-height: 1.5;

    max-width: 360px;

    margin-bottom: 22px;
}


/* =========================================================
   SERVICE LINK
========================================================= */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    margin-top: auto;

    padding-top: 15px;

    color: #2869A6;

    border-top:
        1px solid var(--line);

    font-size: 16px;

    font-weight: 800;
}


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


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


/* =========================================================
   FEATURED CARD
========================================================= */

.service-card:nth-child(2) {
    border-color:
        #C8D9EA;
}


.service-card:nth-child(2)::before {
    content: "POPULAR";

    position: absolute;

    top: 0;
    right: 20px;

    z-index: 5;

    padding: 5px 9px;

    border-radius:
        0 0 7px 7px;

    color: #fff;

    background: var(--blue);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s var(--ease),
        transform .7s var(--ease);
}


.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


.d1 {
    transition-delay: .1s;
}


.d2 {
    transition-delay: .2s;
}


.d3 {
    transition-delay: .3s;
}


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

@media (max-width: 1050px) {

    .services-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .services-intro {
        max-width: 600px;
    }


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

}


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

@media (max-width: 650px) {

    .services-section {
        padding-top: 60px;

        padding-bottom: 70px;
    }


    .services-section::before {
        top: 35px;

        font-size: 75px;

        letter-spacing: -4px;
    }


    .services-header {
        margin-bottom: 35px;
    }


    .services-heading h2 {
        font-size: 36px;

        letter-spacing: -1.8px;
    }


    .services-intro p {
        font-size: 12px;
    }


    .services-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .service-image {
        height: 220px;
    }


    .service-content {
        padding:
            36px 21px 23px;
    }


    .service-content h3 {
        font-size: 19px;
    }


    .service-content p {
        font-size: 11px;
    }

}

/* =========================================================
   PRODUCT REGISTRATION PAGE
========================================================= */

.service-page {
    overflow: hidden;
}


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

.service-hero {
    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--blue);
}


.service-hero-bg {
    position: absolute;

    inset: 0;
}


.service-hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.service-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(14, 23, 67, .94) 0%,
            rgba(23, 35, 92, .82) 42%,
            rgba(23, 35, 92, .35) 100%);
}


.service-hero .container {
    position: relative;

    z-index: 2;
}


.service-hero-content {
    max-width: 720px;

    padding: 110px 0 60px;
}


.hero-eyebrow {
    color: #E4F0FB;

    background:
        rgba(93, 153, 216, .24);

    border-color:
        rgba(157, 202, 239, .45);

    margin-bottom: 23px;
}


.service-hero h1 {
    max-width: 720px;

    color: #fff;

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

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 22px;
}


.service-hero h1 em {
    color: #9BC8EB;
}


.service-hero-content>p {
    max-width: 620px;

    color: #D0DCEC;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 30px;
}


.hero-actions {
    display: flex;

    align-items: center;

    gap: 25px;
}


.hero-text-link {
    color: #D5E4F3;
    padding: 14px 19px;
    font-size: 14px;

    font-weight: 800;

    border: 1px solid white;
    border-radius: 10px;
}


.hero-text-link i {
    margin-left: 7px;

    transition: .25s;
}


.hero-text-link:hover i {
    transform: translateY(3px);
}


/* =========================================================
   INTRO
========================================================= */

.service-introduction {
    background: #fff;

    padding-top: 90px;
    padding-bottom: 90px;
}


.service-intro-grid {
    display: grid;

    grid-template-columns:
        1.15fr .65fr;

    gap: 100px;

    align-items: center;
}


.intro-content .eyebrow {
    margin-bottom: 20px;
}


.intro-content h2 {
    max-width: 650px;

    font-size: clamp(38px, 4vw, 55px);

    margin-bottom: 25px;
}


.intro-content h2 em {
    color: var(--accent);
}


.intro-content>p {
    max-width: 720px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 16px;
}


/* Overview card */

.overview-card {
    padding: 30px;

    background:
        linear-gradient(145deg,
            #F4F8FC,
            #EAF3FC);

    border:
        1px solid #D5E3EF;

    border-radius: 17px;

    box-shadow:
        0 20px 50px rgba(23, 35, 92, .07);
}


.overview-label {
    color: var(--accent);

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.overview-card h3 {
    max-width: 340px;

    color: var(--blue);

    font-size: 22px;

    line-height: 1.3;

    margin:
        10px 0 25px;
}


.overview-list {
    display: grid;

    border-top:
        1px solid #D4E1ED;
}


.overview-list>div {
    display: grid;

    grid-template-columns: 30px 1fr;

    gap: 10px;

    padding: 13px 0;

    border-bottom:
        1px solid #D4E1ED;
}


.overview-list span {
    color: var(--accent);

    font-size: 16px;

    font-weight: 800;
}


.overview-list p {
    color: var(--text);

    font-size: 14px;

    font-weight: 700;
}


.overview-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #2869A6;

    font-size: 14px;

    font-weight: 800;
}


.overview-link i {
    transition: .25s;
}


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


/* =========================================================
   AUTHORITIES
========================================================= */

.authorities-section {
    background: var(--bg);
}


.authorities-grid {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 90px;
}


.authorities-heading .eyebrow {
    margin-bottom: 20px;
}


.authorities-heading h2 {
    max-width: 500px;

    font-size: clamp(38px, 4vw, 54px);
}


.authorities-heading h2 em {
    color: var(--accent);
}


.authorities-content>p {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 28px;
}


.authority-items {
    border-top:
        1px solid var(--line);
}


.authority-item {
    display: grid;

    grid-template-columns:
        38px 1fr;

    gap: 15px;

    padding: 20px 0;

    border-bottom:
        1px solid var(--line);
}


.authority-item>span {
    color: var(--accent);

    font-size: 14px;

    font-weight: 800;
}


.authority-item h3 {
    color: var(--blue);

    font-size: 20px;

    margin-bottom: 5px;
}


.authority-item p {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.65;
}


/* =========================================================
   PRODUCT CATEGORIES
========================================================= */

.product-section {
    background: #fff;
}


.section-heading {
    display: grid;

    grid-template-columns:
        1.1fr .65fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}


.section-heading .eyebrow {
    margin-bottom: 20px;
}


.section-heading h2 {
    max-width: 700px;

    font-size: clamp(38px, 4vw, 55px);
}


.section-heading h2 em {
    color: var(--accent);
}


.section-heading>p {
    max-width: 430px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* Category grid */

.product-category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.product-category-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 15px;

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s var(--ease);
}


.product-category-card:hover {
    transform: translateY(-6px);

    border-color:
        #C8D8E7;

    box-shadow:
        0 22px 55px rgba(23, 35, 92, .10);
}


/* Image */

.category-image {
    position: relative;

    height: 185px;

    overflow: hidden;
}


.category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s var(--ease);
}


.product-category-card:hover .category-image img {
    transform: scale(1.06);
}


.category-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(23, 35, 92, .05),
            rgba(23, 35, 92, .35));
}


.category-image>span {
    position: absolute;

    z-index: 2;

    top: 14px;
    left: 14px;

    width: 32px;
    height: 32px;

    display: flex;

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

    border-radius: 8px;

    color: #fff;

    background:
        rgba(23, 35, 92, .8);

    backdrop-filter: blur(6px);

    font-size: 9px;

    font-weight: 800;
}


/* Content */

.category-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 22px;
}


.category-label {
    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.category-content h3 {
    color: var(--blue);

    font-size: 20px;

    line-height: 1.25;

    margin-bottom: 9px;
}


.category-content p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;
}


.category-content a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    padding-top: 13px;

    border-top:
        1px solid var(--line);

    color: #2869A6;

    font-size: 14px;

    font-weight: 800;
}


.category-content a i {
    transition: .25s;
}


.category-content a:hover i {
    transform: translateX(4px);
}


/* Last card */

.product-category-card.wide {
    grid-column: span 1;
}


/* =========================================================
   PROCESS
========================================================= */

.registration-process {
    position: relative;

    background:
        linear-gradient(135deg,
            #18212A,
            #202A34);

    color: #fff;

    overflow: hidden;
}


.registration-process::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -300px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .05);

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .014),
        0 0 0 140px rgba(255, 255, 255, .009);
}


.process-header {
    position: relative;

    z-index: 2;

    max-width: 750px;

    margin-bottom: 48px;
}


.process-header .eyebrow {
    margin-bottom: 20px;
}


.process-header h2 {
    color: #fff;

    font-size: clamp(38px, 4vw, 55px);

    margin-bottom: 17px;
}


.process-header h2 em {
    color: #8DBAE4;
}


.process-header p {
    max-width: 520px;

    color: #A5B4C5;

    font-size: 16px;

    line-height: 1.8;
}


/* Steps */

.registration-steps {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

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

    border-left:
        1px solid rgba(255, 255, 255, .1);
}


.registration-step {
    position: relative;

    min-height: 275px;

    padding: 25px;

    border-right:
        1px solid rgba(255, 255, 255, .1);

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

    transition:
        background .35s var(--ease);
}


.registration-step:hover {
    background:
        rgba(255, 255, 255, .045);
}


.step-number {
    display: block;

    color: #7EA9D4;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 25px;
}


.step-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 11px;

    color: #B8D5ED;

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .1);

    margin-bottom: 25px;

    transition: .35s var(--ease);
}


.registration-step:hover .step-icon {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);

    transform: translateY(-3px);
}


.registration-step h3 {
    color: #fff;

    font-size: 24px;

    margin-bottom: 8px;
}


.registration-step p {
    color: #98A8B9;

    font-size: 14px;

    line-height: 1.7;

    max-width: 220px;
}


/* =========================================================
   CTA
========================================================= */

.registration-cta {
    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.registration-cta-image {
    position: absolute;

    inset: 0;
}


.registration-cta-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.registration-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .94),
            rgba(23, 35, 92, .65),
            rgba(23, 35, 92, .35));
}


.registration-cta .container {
    position: relative;

    z-index: 2;
}


.registration-cta-content {
    max-width: 700px;

    padding: 50px 0;
}


.registration-cta-content .eyebrow {
    margin-bottom: 20px;
}


.registration-cta-content h2 {
    color: #fff;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 18px;
}


.registration-cta-content p {
    max-width: 550px;

    color: #D0DBEA;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--bg);
}


.faq-grid {
    display: grid;

    grid-template-columns:
        .65fr 1.15fr;

    gap: 90px;

    align-items: start;
}


.faq-heading {
    position: sticky;

    top: 100px;
}


.faq-heading .eyebrow {
    margin-bottom: 20px;
}


.faq-heading h2 {
    font-size: clamp(38px, 4vw, 54px);

    margin-bottom: 18px;
}


.faq-heading h2 em {
    color: var(--accent);
}


.faq-heading p {
    max-width: 380px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* FAQ list */

.faq-list {
    display: grid;

    gap: 9px;
}


.faq-list details {
    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 10px;

    overflow: hidden;

    transition:
        border-color .25s var(--ease),
        box-shadow .25s var(--ease);
}


.faq-list details[open] {
    border-color:
        #C8D8E7;

    box-shadow:
        0 10px 30px rgba(23, 35, 92, .05);
}


.faq-list summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 19px;

    cursor: pointer;

    list-style: none;

    color: var(--blue);

    font-size: 18px;

    font-weight: 800;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary i {
    flex-shrink: 0;

    color: var(--accent);

    font-size: 9px;

    transition:
        transform .25s var(--ease);
}


.faq-list details[open] summary i {
    transform: rotate(180deg);
}


.faq-answer {
    padding:
        0 19px 18px;
}


.faq-answer p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;

    max-width: 700px;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s var(--ease),
        transform .7s var(--ease);
}


.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


.d1 {
    transition-delay: .1s;
}


.d2 {
    transition-delay: .2s;
}


.d3 {
    transition-delay: .3s;
}


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

@media (max-width: 1000px) {

    .service-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .authorities-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .section-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }


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


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


    .faq-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .faq-heading {
        position: static;
    }

}


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

@media (max-width: 650px) {

    .service-hero {
        min-height: 540px;
    }


    .service-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(23, 35, 92, .93),
                rgba(23, 35, 92, .65));
    }


    .service-hero-content {
        padding: 70px 0;
    }


    .service-hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .service-hero-content>p {
        font-size: 12px;
    }


    .hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .service-introduction {
        padding-top: 60px;

        padding-bottom: 60px;
    }


    .intro-content h2,
    .authorities-heading h2,
    .section-heading h2,
    .process-header h2,
    .registration-cta-content h2,
    .faq-heading h2 {
        font-size: 35px;

        letter-spacing: -1.5px;
    }


    .product-category-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .category-image {
        height: 210px;
    }


    .registration-steps {
        grid-template-columns: 1fr;
    }


    .registration-step {
        min-height: auto;

        padding: 23px;
    }


    .registration-cta {
        min-height: 500px;
    }


    .registration-cta-content {
        padding: 60px 0;
    }


    .faq-list summary {
        padding: 15px;

        font-size: 10px;
    }


    .faq-answer {
        padding:
            0 15px 15px;
    }

}

/* =========================================================
   FOOD & BEVERAGES REGISTRATION PAGE
========================================================= */

.food-page {
    overflow: hidden;
}


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

.food-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--blue);
}


.food-hero-image {
    position: absolute;
    inset: 0;
}


.food-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.food-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(14, 24, 68, .94) 0%,
            rgba(23, 35, 92, .80) 43%,
            rgba(23, 35, 92, .30) 100%);
}


.food-hero .container {
    position: relative;
    z-index: 2;
}


.food-hero-content {
    max-width: 800px;

    padding: 110px 0 70px;
}


.hero-eyebrow {
    margin-bottom: 22px;

    color: #E5F1FC;

    background:
        rgba(93, 153, 216, .24);

    border-color:
        rgba(164, 205, 239, .45);
}


.food-hero h1 {
    max-width: 850px;

    color: #fff;

    font-size:
        clamp(46px, 5.7vw, 74px);

    line-height: 1.03;

    letter-spacing: -3px;

    margin-bottom: 22px;
}


.food-hero h1 em {
    display: block;

    color: #9BC9EC;
}


.food-hero-content>p {
    max-width: 710px;

    color: #D4DFEE;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}


.hero-actions {
    display: flex;

    align-items: center;

    gap: 24px;
}


.hero-link {
    color: #DCE8F4;

    padding: 14px 19px;
    border: 1px solid white;
    border-radius: 10px;

    font-size: 14px;

    font-weight: 800;
}


.hero-link i {
    margin-left: 7px;

    transition: .25s;
}


.hero-link:hover i {
    transform: translateY(3px);
}


/* =========================================================
   INTRO
========================================================= */

.food-intro {
    background: #fff;

    padding:
        90px 0 ;
}


.intro-layout {
    display: grid;

    grid-template-columns:
        1.15fr .65fr;

    gap: 100px;

    align-items: center;
}


.intro-main .eyebrow {
    margin-bottom: 20px;
}


.intro-main h2 {
    max-width: 680px;

    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1.06;

    margin-bottom: 25px;
}


.intro-main h2 em {
    color: var(--accent);
}


.intro-main>p {
    max-width: 700px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.85;

    margin-bottom: 17px;
}


/* Registration card */

.registration-card {
    padding: 28px;

    border:
        1px solid var(--line);

    border-radius: 17px;

    background:
        linear-gradient(145deg,
            #F5F9FD,
            #EAF3FC);

    box-shadow:
        0 20px 55px rgba(23, 35, 92, .07);
}


.registration-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom:
        1px solid #D7E3EE;
}


.registration-card-top span {
    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.registration-card-top i {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 10px;

    color: var(--blue);

    background: #fff;

    box-shadow:
        0 8px 20px rgba(23, 35, 92, .08);
}


.registration-facts {
    border-bottom:
        1px solid #D7E3EE;
}


.registration-facts>div {
    display: grid;

    grid-template-columns:
        30px 1fr;

    gap: 10px;

    padding: 14px 0;

    border-bottom:
        1px solid #D7E3EE;
}


.registration-facts>div:last-child {
    border-bottom: 0;
}


.registration-facts strong {
    color: var(--accent);

    font-size: 14px;
}


.registration-facts span {
    color: var(--blue);

    font-size: 16px;

    font-weight: 700;
}


.registration-card>a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: #2869A6;

    font-size: 16px;

    font-weight: 800;
}


.registration-card>a i {
    transition: .25s;
}


.registration-card>a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   AUTHORITIES
========================================================= */

.food-authorities {
    background: var(--bg);
}


.section-intro {
    max-width: 760px;

    margin-bottom: 48px;
}


.section-intro .eyebrow {
    margin-bottom: 20px;
}


.section-intro h2 {
    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1.06;

    margin-bottom: 17px;
}


.section-intro h2 em {
    color: var(--accent);
}


.section-intro p {
    max-width: 610px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


.food-authority-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.authority-card {
    position: relative;

    padding: 28px;

    min-height: 310px;

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}


.authority-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    border:
        1px solid #DCE8F2;
}


.authority-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(23, 35, 92, .09);
}


.authority-number {
    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    margin-bottom: 22px;
}


.authority-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 11px;

    color: var(--blue);

    background: var(--pale);

    margin-bottom: 24px;

    transition: .35s;
}


.authority-card:hover .authority-icon {
    color: #fff;

    background: var(--blue);

    transform: translateY(-3px);
}


.authority-card h3 {
    font-size: 24px;

    margin-bottom: 10px;
}


.authority-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;

    max-width: 300px;
}


.authority-tag {
    position: absolute;

    left: 28px;
    bottom: 25px;

    color: #6C8DB0;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


/* =========================================================
   PROCESS
========================================================= */

.registration-process {
    background:
        linear-gradient(135deg,
            #18222B,
            #202B35);

    color: #fff;
}


.process-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


.process-heading .eyebrow {
    margin-bottom: 20px;
}


.process-heading h2 {
    color: #fff;

    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1.06;

    margin-bottom: 17px;
}


.process-heading h2 em {
    color: #91BDE4;
}


.process-heading p {
    max-width: 600px;

    color: #9EADBC;

    font-size: 12px;

    line-height: 1.8;
}


.process-timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, .11);

    border-left:
        1px solid rgba(255, 255, 255, .11);
}


.process-step {
    position: relative;

    min-height: 330px;

    padding: 25px;

    border-right:
        1px solid rgba(255, 255, 255, .11);

    border-bottom:
        1px solid rgba(255, 255, 255, .11);

    transition:
        background .35s var(--ease);
}


.process-step:hover {
    background:
        rgba(255, 255, 255, .04);
}


.process-step-number {
    color: #7EA9D4;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 25px;
}


.process-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 11px;

    color: #B8D4EB;

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .10);

    margin-bottom: 25px;

    transition: .35s;
}


.process-step:hover .process-icon {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);
}


.process-step h3 {
    color: #fff;

    font-size: 18px;

    margin-bottom: 10px;
}


.process-step p {
    color: #97A7B7;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   LABEL REQUIREMENTS
========================================================= */

.label-section {
    background: #fff;
}


.label-layout {
    display: grid;

    grid-template-columns:
        .92fr 1.08fr;

    gap: 100px;

    align-items: start;
}


.label-content .eyebrow {
    margin-bottom: 20px;
}


.label-content h2 {
    max-width: 550px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;

    margin-bottom: 18px;
}


.label-content h2 em {
    color: var(--accent);
}


.label-content>p {
    max-width: 470px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


.label-note {
    display: flex;

    gap: 12px;

    margin-top: 25px;

    padding: 15px;

    border:
        1px solid #D9E7F3;

    border-radius: 10px;

    background: var(--pale);
}


.label-note i {
    flex-shrink: 0;

    color: var(--accent);

    margin-top: 3px;
}


.label-note span {
    color: #60738A;

    font-size: 14px;

    line-height: 1.65;
}


/* Requirements */

.requirements-list {
    border-top:
        1px solid var(--line);
}


.requirement-item {
    display: grid;

    grid-template-columns:
        32px 1fr 20px;

    gap: 10px;

    align-items: center;

    min-height: 57px;

    border-bottom:
        1px solid var(--line);
}


.requirement-item>span {
    color: var(--accent);

    font-size: 14px;

    font-weight: 800;
}


.requirement-item p {
    color: var(--blue);

    font-size: 16px;

    font-weight: 700;
}


.requirement-item i {
    color: #6DA5D4;

    font-size: 12px;
}


/* =========================================================
   WHY REGISTRATION
========================================================= */

.why-registration {
    background: var(--bg);
}


.why-grid {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 90px;

    align-items: start;
}


.why-heading .eyebrow {
    margin-bottom: 20px;
}


.why-heading h2 {
    max-width: 470px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;
}


.why-heading h2 em {
    color: var(--accent);
}


.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.benefit {
    padding: 23px;

    min-height: 190px;

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 13px;

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease);
}


.benefit:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(23, 35, 92, .07);
}


.benefit-icon {
    width: 40px;
    height: 40px;

    display: flex;

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

    border-radius: 9px;

    color: var(--blue);

    background: var(--pale);

    margin-bottom: 18px;
}


.benefit h3 {
    font-size: 18px;

    margin-bottom: 7px;
}


.benefit p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   WHY NUCLEOUS
========================================================= */

.why-nucleous {
    background: #fff;
}


.nucleous-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


.nucleous-image {
    position: relative;

    height: 510px;

    border-radius: 18px;

    overflow: hidden;
}


.nucleous-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s var(--ease);
}


.nucleous-image:hover img {
    transform: scale(1.04);
}


.nucleous-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(23, 35, 92, .42));
}


.image-badge {
    position: absolute;

    z-index: 2;

    left: 22px;
    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 15px;

    border-radius: 10px;

    color: #fff;

    background:
        rgba(23, 35, 92, .85);

    backdrop-filter: blur(10px);
}


.image-badge strong {
    font-size: 18px;
}


.image-badge span {
    color: #C8D7E8;

    font-size: 8px;
}


.nucleous-content .eyebrow {
    margin-bottom: 20px;
}


.nucleous-content h2 {
    max-width: 650px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;

    margin-bottom: 20px;
}


.nucleous-content h2 em {
    color: var(--accent);
}


.nucleous-content>p {
    max-width: 620px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 15px;
}


.service-check-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 27px;

    padding-top: 22px;

    border-top:
        1px solid var(--line);
}


.service-check-list div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--blue);

    font-size: 14px;

    font-weight: 700;
}


.service-check-list i {
    color: #5E9BD0;

    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.food-cta {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--blue);
}


.food-cta-image {
    position: absolute;

    inset: 0;
}


.food-cta-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.food-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .94),
            rgba(23, 35, 92, .68),
            rgba(23, 35, 92, .32));
}


.food-cta .container {
    position: relative;

    z-index: 2;
}


.food-cta-content {
    max-width: 700px;

    padding: 70px 0;
}


.food-cta-content .eyebrow {
    margin-bottom: 20px;
}


.food-cta-content h2 {
    color: #fff;

    font-size:
        clamp(40px, 4.5vw, 60px);

    line-height: 1.04;

    letter-spacing: -2px;

    margin-bottom: 18px;
}


.food-cta-content p {
    max-width: 550px;

    color: #CFDBE9;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =========================================================
   FAQ
========================================================= */

.food-faq {
    background: var(--bg);
}


.faq-layout {
    display: grid;

    grid-template-columns:
        .65fr 1.35fr;

    gap: 90px;

    align-items: start;
}


.faq-intro {
    position: sticky;

    top: 90px;
}


.faq-intro .eyebrow {
    margin-bottom: 20px;
}


.faq-intro h2 {
    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;

    margin-bottom: 18px;
}


.faq-intro h2 em {
    color: var(--accent);
}


.faq-intro>p {
    max-width: 380px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

    margin-bottom: 22px;
}


.faq-intro .text-link {
    font-size: 10px;
}


.faq-list {
    display: grid;

    gap: 9px;
}


.faq-list details {
    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 10px;

    overflow: hidden;

    transition:
        border-color .25s var(--ease),
        box-shadow .25s var(--ease);
}


.faq-list details[open] {
    border-color: #C7D8E7;

    box-shadow:
        0 12px 30px rgba(23, 35, 92, .05);
}


.faq-list summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 19px;

    list-style: none;

    cursor: pointer;

    color: var(--blue);

    font-size: 18px;

    font-weight: 800;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary i {
    flex-shrink: 0;

    color: var(--accent);

    font-size: 8px;

    transition: transform .25s;
}


.faq-list details[open] summary i {
    transform: rotate(180deg);
}


.faq-answer {
    padding:
        0 19px 18px;
}


.faq-answer p {
    max-width: 720px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity .7s var(--ease),
        transform .7s var(--ease);
}


.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}


.d1 {
    transition-delay: .1s;
}


.d2 {
    transition-delay: .2s;
}


.d3 {
    transition-delay: .3s;
}


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

@media (max-width: 1050px) {

    .intro-layout,
    .label-layout,
    .why-grid,
    .nucleous-grid,
    .faq-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .authority-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


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


    .faq-intro {
        position: static;
    }


    .nucleous-image {
        height: 430px;
    }

}


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

@media (max-width: 700px) {

    .container {
        width:
            min(100% - 32px,
                1280px);
    }


    .section {
        padding: 60px 0;
    }


    /* Hero */

    .food-hero {
        min-height: 560px;
    }


    .food-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(23, 35, 92, .94),
                rgba(23, 35, 92, .65));
    }


    .food-hero-content {
        padding: 70px 0;
    }


    .food-hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .food-hero-content>p {
        font-size: 11px;
    }


    .hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    /* Intro */

    .intro-main h2,
    .section-intro h2,
    .process-heading h2,
    .label-content h2,
    .why-heading h2,
    .nucleous-content h2,
    .food-cta-content h2,
    .faq-intro h2 {
        font-size: 35px;

        letter-spacing: -1.5px;
    }


    /* Authorities */

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


    .authority-card {
        min-height: 270px;
    }


    /* Process */

    .process-timeline {
        grid-template-columns: 1fr;
    }


    .process-step {
        min-height: auto;

        padding: 24px;
    }


    /* Benefits */

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


    /* Services */

    .service-check-list {
        grid-template-columns: 1fr;
    }


    /* Image */

    .nucleous-image {
        height: 360px;
    }


    /* CTA */

    .food-cta {
        min-height: 480px;
    }


    .food-cta-content {
        padding: 60px 0;
    }


    /* FAQ */

    .faq-list summary {
        padding: 15px;

        font-size: 9px;
    }


    .faq-answer {
        padding:
            0 15px 15px;
    }

}

/* =========================================================
   SHARED REGULATORY PAGE SYSTEM
   Used by:
   - Food Registration
   - Cosmetics Registration
   - Healthcare Licensing
   - Other Regulatory Pages
========================================================= */


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

.reg-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--blue);
}


.reg-hero-media {
    position: absolute;

    inset: 0;
}


.reg-hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.reg-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(16, 26, 67, .94) 0%,
            rgba(23, 35, 92, .80) 42%,
            rgba(23, 35, 92, .30) 100%);
}


.reg-hero .container {
    position: relative;

    z-index: 2;
}


.reg-hero-content {
    max-width: 760px;

    padding: 110px 0 60px;
}


.reg-hero-eyebrow {
    margin-bottom: 22px;

    color: #E5F1FC;

    background:
        rgba(93, 153, 216, .22);

    border-color:
        rgba(164, 205, 239, .45);
}


.reg-hero h1 {
    color: #fff;

    max-width: 780px;

    font-size:
        clamp(46px, 5.5vw, 72px);

    line-height: 1.03;

    letter-spacing: -3px;

    margin-bottom: 22px;
}


.reg-hero h1 em {
    display: block;

    color: #9BC9EC;
}


.reg-hero-content>p {
    max-width: 630px;

    color: #D3DFED;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}


.reg-hero-actions {
    display: flex;

    align-items: center;

    gap: 25px;
}


.reg-hero-link {
    color: #DCE8F4;

    font-size: 13px;

    padding: 14px 19px;

    border: 1px solid var(--muted);
    border-radius: 10px;

    font-weight: 800;
}


.reg-hero-link i {
    margin-left: 7px;

    transition: .25s;
}


.reg-hero-link:hover i {
    transform: translateY(3px);
}



/* =========================================================
   COMMON INTRO
========================================================= */

.reg-intro {
    background: #fff;
}


.reg-intro-layout {
    display: grid;

    grid-template-columns:
        1.15fr .65fr;

    gap: 90px;

    align-items: center;
}


.reg-intro-content .eyebrow {
    margin-bottom: 20px;
}


.reg-intro-content h2 {
    max-width: 700px;

    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1.06;

    margin-bottom: 23px;
}


.reg-intro-content h2 em {
    color: var(--accent);
}


.reg-intro-content>p {
    max-width: 710px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.85;

    margin-bottom: 16px;
}



/* =========================================================
   COMMON SNAPSHOT CARD
========================================================= */

.reg-snapshot {
    padding: 28px;

    border:
        1px solid var(--line);

    border-radius: 17px;

    background:
        linear-gradient(145deg,
            #F5F9FD,
            #EAF3FC);

    box-shadow:
        0 20px 55px rgba(23, 35, 92, .07);
}


.reg-snapshot-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom:
        1px solid #D7E3EE;
}


.reg-snapshot-head span {
    color: var(--accent);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.reg-snapshot-head i {
    width: 40px;
    height: 40px;

    display: flex;

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

    color: var(--blue);

    background: #fff;

    border-radius: 10px;
}


.reg-snapshot-items>div {
    display: grid;

    grid-template-columns:
        32px 1fr;

    gap: 8px;

    padding: 14px 0;

    border-bottom:
        1px solid #D7E3EE;
}


.reg-snapshot-items strong {
    color: var(--accent);

    font-size: 14px;
}


.reg-snapshot-items span {
    color: var(--blue);

    font-size: 16px;

    font-weight: 700;
}


.reg-snapshot>a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: #2869A6;

    font-size: 14px;

    font-weight: 800;
}


.reg-snapshot>a i {
    transition: .25s;
}


.reg-snapshot>a:hover i {
    transform: translateX(4px);
}



/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.reg-section-heading {
    max-width: 750px;

    margin-bottom: 45px;
}


.reg-section-heading .eyebrow {
    margin-bottom: 20px;
}


.reg-section-heading h2 {
    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1.06;

    margin-bottom: 17px;
}


.reg-section-heading h2 em {
    color: var(--accent);
}


.reg-section-heading p {
    max-width: 620px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}



/* =========================================================
   COMMON BENEFITS
========================================================= */

.reg-benefits {
    background: var(--bg);
}


.reg-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}


.reg-benefit-card {
    position: relative;

    min-height: 260px;

    padding: 25px;

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}


.reg-benefit-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(23, 35, 92, .08);
}


.reg-benefit-icon {
    width: 46px;
    height: 46px;

    display: flex;

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

    border-radius: 10px;

    color: var(--blue);

    background: var(--pale);

    margin-bottom: 20px;

    transition: .3s;
    font-size: 18px;
}


.reg-benefit-card:hover .reg-benefit-icon {
    color: #fff;

    background: var(--blue);
}


.reg-benefit-card>span {
    position: absolute;

    top: 27px;
    right: 25px;

    color: #9EB7CE;

    font-size: 14px;

    font-weight: 800;
}


.reg-benefit-card h3 {
    font-size: 18px;

    margin-bottom: 9px;
}


.reg-benefit-card p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.75;
}



/* =========================================================
   COMMON AUTHORITIES
========================================================= */

.reg-authorities {
    background: #fff;
}


.reg-authority-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.reg-authority-card {
    position: relative;

    min-height: 300px;

    padding: 28px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        linear-gradient(145deg,
            #fff,
            #F6F9FC);

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}


.reg-authority-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(23, 35, 92, .08);
}


.reg-authority-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


.reg-authority-top span {
    color: var(--accent);

    font-size: 14px;

    font-weight: 800;
}


.reg-authority-top i {
    width: 46px;
    height: 46px;

    display: flex;

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

    border-radius: 10px;

    color: var(--blue);

    background: var(--pale);

    transition: .3s;
}


.reg-authority-card:hover .reg-authority-top i {
    color: #fff;

    background: var(--blue);
}


.reg-authority-card h3 {
    font-size: 24px;

    margin-bottom: 10px;
}


.reg-authority-card p {
    max-width: 300px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.75;
}


.reg-authority-card small {
    position: absolute;

    left: 28px;
    bottom: 25px;

    color: #6C8DB0;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;
}



/* =========================================================
   COMMON PROCESS
========================================================= */

.reg-process {
    background:
        linear-gradient(135deg,
            #18222B,
            #202B35);
}


.reg-process-heading {
    max-width: 750px;

    margin-bottom: 50px;
}


.reg-process-heading .eyebrow {
    margin-bottom: 20px;
}


.reg-process-heading h2 {
    color: #fff;

    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1.06;

    margin-bottom: 17px;
}


.reg-process-heading h2 em {
    color: #91BDE4;
}


.reg-process-heading p {
    max-width: 620px;

    color: #9EADBC;

    font-size: 14px;

    line-height: 1.8;
}


.reg-process-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, .11);

    border-left:
        1px solid rgba(255, 255, 255, .11);
}


.reg-process-card {
    min-height: 330px;

    padding: 25px;

    border-right:
        1px solid rgba(255, 255, 255, .11);

    border-bottom:
        1px solid rgba(255, 255, 255, .11);

    transition:
        background .3s var(--ease);
}


.reg-process-card:hover {
    background:
        rgba(255, 255, 255, .04);
}


.reg-process-number {
    color: #7EA9D4;

    font-size: 9px;

    font-weight: 800;

    margin-bottom: 24px;
}


.reg-process-icon {
    width: 47px;
    height: 47px;

    display: flex;

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

    color: #B8D4EB;

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 10px;

    margin-bottom: 24px;

    transition: .3s;
}


.reg-process-card:hover .reg-process-icon {
    color: #fff;

    background: var(--accent);

    border-color: var(--accent);
}


.reg-process-card h3 {
    color: #fff;

    font-size: 18px;

    margin-bottom: 10px;
}


.reg-process-card p {
    color: #97A7B7;

    font-size: 13px;

    line-height: 1.75;
}


.reg-warning {
    display: flex;

    gap: 10px;

    margin-top: 20px;

    padding: 14px 16px;

    border:
        1px solid rgba(255, 255, 255, .09);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, .035);
}


.reg-warning i {
    color: #8DBAE4;

    font-size: 12px;

    margin-top: 3px;
}


.reg-warning p {
    color: #91A1B0;

    font-size: 12px;
}



/* =========================================================
   COMMON WHY SECTION
========================================================= */

.reg-why {
    background: #fff;
}


.reg-why-layout {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


.reg-why-media {
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 17px;
}


.reg-why-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s var(--ease);
}


.reg-why-media:hover img {
    transform: scale(1.04);
}


.reg-why-media::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(23, 35, 92, .45));
}


.reg-why-badge {
    position: absolute;

    z-index: 2;

    left: 20px;
    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 15px;

    color: #fff;

    background:
        rgba(23, 35, 92, .85);

    border-radius: 10px;

    backdrop-filter: blur(10px);
}


.reg-why-badge strong {
    font-size: 17px;
}


.reg-why-badge span {
    color: #CBD9E8;

    font-size: 8px;
}


.reg-why-content .eyebrow {
    margin-bottom: 20px;
}


.reg-why-content h2 {
    max-width: 650px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;

    margin-bottom: 20px;
}


.reg-why-content h2 em {
    color: var(--accent);
}


.reg-why-content>p {
    max-width: 620px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 15px;
}


.reg-check-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px 20px;

    padding-top: 22px;

    margin-top: 25px;

    border-top:
        1px solid var(--line);
}


.reg-check-list div {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 700;
}


.reg-check-list i {
    flex-shrink: 0;

    color: #5E9BD0;

    font-size: 10px;

    margin-top: 5px;
}



/* =========================================================
   COMMON CTA
========================================================= */

.reg-cta {
    position: relative;

    min-height: 410px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--blue);
}


.reg-cta-media {
    position: absolute;

    inset: 0;
}


.reg-cta-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.reg-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .94),
            rgba(23, 35, 92, .68),
            rgba(23, 35, 92, .30));
}


.reg-cta .container {
    position: relative;

    z-index: 2;
}


.reg-cta-content {
    max-width: 730px;

    padding: 65px 0;
}


.reg-cta-content .eyebrow {
    margin-bottom: 20px;
}


.reg-cta-content h2 {
    color: #fff;

    font-size:
        clamp(39px, 4.4vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 18px;
}


.reg-cta-content p {
    max-width: 560px;

    color: #D0DCE9;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}



/* =========================================================
   COMMON FAQ
========================================================= */

.reg-faq {
    background: var(--bg);
}


.reg-faq-layout {
    display: grid;

    grid-template-columns:
        .65fr 1.35fr;

    gap: 90px;

    align-items: start;
}


.reg-faq-intro {
    position: sticky;

    top: 90px;
}


.reg-faq-intro .eyebrow {
    margin-bottom: 20px;
}


.reg-faq-intro h2 {
    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;

    margin-bottom: 18px;
}


.reg-faq-intro h2 em {
    color: var(--accent);
}


.reg-faq-intro>p {
    max-width: 380px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 22px;
}


.reg-faq-list {
    display: grid;

    gap: 9px;
}


.reg-faq-list details {
    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 10px;

    overflow: hidden;

    transition:
        border-color .25s var(--ease),
        box-shadow .25s var(--ease);
}


.reg-faq-list details[open] {
    border-color: #C7D8E7;

    box-shadow:
        0 12px 30px rgba(23, 35, 92, .05);
}


.reg-faq-list summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 19px;

    cursor: pointer;

    list-style: none;

    color: var(--blue);

    font-size: 16px;

    font-weight: 800;
}


.reg-faq-list summary::-webkit-details-marker {
    display: none;
}


.reg-faq-list summary i {
    flex-shrink: 0;

    color: var(--accent);

    font-size: 12px;

    transition: transform .25s;
}


.reg-faq-list details[open] summary i {
    transform: rotate(180deg);
}


.reg-faq-answer {
    padding:
        0 19px 18px;
}


.reg-faq-answer p {
    color: var(--text);

    font-size: 14px;

    line-height: 1.75;
}

/* =========================================================
   COSMETICS PAGE SPECIFIC STYLING
========================================================= */


/* Hero image positioning */

.cosmetics-hero .reg-hero-media img {
    object-position: center 48%;
}


/* Slightly warmer beauty-page overlay */

.cosmetics-hero .reg-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .88) 0%,
            rgba(23, 35, 92, .68) 42%,
            rgba(23, 35, 92, .18) 100%);
}


/* Benefits section */

.cosmetics-registration-benefits {
    background:
        linear-gradient(180deg,
            #F5F8FC 0%,
            #FFFFFF 100%);
}


/* Cosmetics categories */

.cosmetics-categories {
    background: var(--bg);
}


.category-layout {
    display: grid;

    grid-template-columns:
        .92fr 1.08fr;

    gap: 90px;

    align-items: start;
}


.category-intro .eyebrow {
    margin-bottom: 20px;
}


.category-intro h2 {
    max-width: 520px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;

    margin-bottom: 18px;
}


.category-intro h2 em {
    color: var(--accent);
}


.category-intro p {
    max-width: 450px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


.category-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);

    background: #fff;
}


.category-list>div {
    display: grid;

    grid-template-columns:
        35px 1fr;

    align-items: center;

    min-height: 67px;

    padding: 14px 17px;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    transition:
        background .25s var(--ease);
}


.category-list>div:hover {
    background: var(--pale);
}


.category-list span {
    color: var(--accent);

    font-size: 12px;

    font-weight: 800;
}


.category-list p {
    color: var(--blue);

    font-size: 14px;

    font-weight: 700;
}


/* CTA */

.cosmetics-cta .reg-cta-media img {
    object-position: center;
}


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

@media (max-width: 1050px) {

    .reg-intro-layout,
    .reg-why-layout,
    .reg-faq-layout,
    .category-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


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


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


    .reg-faq-intro {
        position: static;
    }

}


@media (max-width: 700px) {

    .reg-hero {
        min-height: 570px;
    }




    .reg-hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .reg-hero-content>p {
        font-size: 11px;
    }


    .reg-hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .reg-intro-content h2,
    .reg-section-heading h2,
    .reg-process-heading h2,
    .reg-why-content h2,
    .reg-cta-content h2,
    .reg-faq-intro h2,
    .category-intro h2 {
        font-size: 35px;

        letter-spacing: -1.5px;
    }


    .reg-benefit-grid {
        grid-template-columns: 1fr;
    }


    .reg-authority-grid {
        grid-template-columns: 1fr;
    }


    .reg-process-grid {
        grid-template-columns: 1fr;
    }

    

    .reg-process-card {
        min-height: auto;
    }


    .category-list {
        grid-template-columns: 1fr;
    }


    .reg-why-media {
        height: 370px;
    }


    .reg-check-list {
        grid-template-columns: 1fr;
    }


    .reg-cta {
        min-height: 470px;
    }

}

/* =========================================================
   PERFUME & FRAGRANCE PAGE
   Uses shared .reg-* components
========================================================= */


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

.perfume-hero {
    min-height: 575px;
}


.perfume-hero .reg-hero-media img {
    object-position: center 45%;
}


.perfume-hero .reg-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(20, 29, 69, .94) 0%,
            rgba(23, 35, 92, .78) 38%,
            rgba(23, 35, 92, .30) 72%,
            rgba(23, 35, 92, .10) 100%);
}


.perfume-hero .reg-hero-content {
    max-width: 820px;
}


.perfume-hero .reg-hero-content>p {
    max-width: 650px;
}



/* =========================================================
   INTRO
========================================================= */

.perfume-intro {
    background: #fff;
}


.perfume-intro .reg-intro-content h2 {
    max-width: 720px;
}



/* =========================================================
   BENEFITS
========================================================= */

.perfume-benefits {
    background:
        linear-gradient(180deg,
            #F5F8FC 0%,
            #EEF4F9 100%);
}


.perfume-benefits .reg-benefit-card {
    min-height: 275px;
}



/* =========================================================
   AUTHORITIES
========================================================= */

.perfume-authorities {
    background: #fff;
}


.perfume-authorities .reg-authority-card {
    min-height: 285px;
}



/* =========================================================
   PROCESS
========================================================= */

.perfume-process {
    background:
        linear-gradient(135deg,
            #18232B 0%,
            #202B34 100%);
}


.perfume-process .reg-process-card {
    min-height: 350px;
}


.perfume-process .reg-process-icon {
    border-radius: 50%;
}



/* =========================================================
   PERFUME CATEGORIES
   DISTINCT SECTION
========================================================= */

.perfume-categories {
    background: var(--bg);

    overflow: hidden;
}


.perfume-category-layout {
    display: grid;

    grid-template-columns:
        .62fr 1.38fr;

    gap: 75px;

    align-items: start;
}


.perfume-category-intro {
    position: sticky;

    top: 90px;
}


.perfume-category-intro .eyebrow {
    margin-bottom: 20px;
}


.perfume-category-intro h2 {
    max-width: 500px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.perfume-category-intro h2 em {
    color: var(--accent);
}


.perfume-category-intro>p {
    max-width: 420px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}



/* Category grid */

.perfume-category-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}


.perfume-category-grid article {
    position: relative;

    min-height: 215px;

    padding: 24px;

    background: #fff;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    transition:
        background .3s var(--ease),
        transform .3s var(--ease);
}


.perfume-category-grid article:hover {
    background: #F8FBFE;

    transform: translateY(-3px);
}


.perfume-category-icon {
    width: 43px;
    height: 43px;

    display: flex;

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

    margin-bottom: 22px;

    color: var(--blue);

    background: var(--pale);

    border-radius: 50%;

    transition: .3s;
}


.perfume-category-grid article:hover .perfume-category-icon {
    color: #fff;

    background: var(--blue);
}


.perfume-category-grid article>span {
    position: absolute;

    top: 26px;
    right: 24px;

    color: #A5B9CB;

    font-size: 12px;

    font-weight: 800;
}


.perfume-category-grid h3 {
    color: var(--blue);

    font-size: 18px;

    max-width: 240px;

    margin-bottom: 9px;
}


.perfume-category-grid p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}



/* Featured category */

.perfume-category-feature {
    grid-column: span 2;

    min-height: 270px !important;

    padding: 0 !important;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    overflow: hidden;

    background: var(--blue) !important;
}


.perfume-category-feature:hover {
    transform: none !important;
}


.perfume-category-feature-image {
    overflow: hidden;
}


.perfume-category-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s var(--ease);
}


.perfume-category-feature:hover .perfume-category-feature-image img {
    transform: scale(1.05);
}


.perfume-category-feature-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px;
}


.perfume-category-feature-content span {
    position: static !important;

    display: block;

    color: #91B9DC !important;

    font-size: 8px !important;

    letter-spacing: 1.4px;

    margin-bottom: 15px;
}


.perfume-category-feature-content strong {
    max-width: 280px;

    color: #fff;

    font-family: Manrope, sans-serif;

    font-size: 25px;

    line-height: 1.15;
}



/* =========================================================
   PERFUME MARKET SECTION
   DISTINCT SECTION
========================================================= */

.perfume-market {
    background: #fff;
}


.perfume-market-layout {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.perfume-market-content .eyebrow {
    margin-bottom: 20px;
}


.perfume-market-content h2 {
    max-width: 570px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.06;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.perfume-market-content h2 em {
    color: var(--accent);
}


.perfume-market-content>p {
    max-width: 550px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


.perfume-market-list {
    display: grid;

    gap: 12px;

    padding-top: 23px;

    margin-top: 25px;

    border-top:
        1px solid var(--line);
}


.perfume-market-list div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--blue);

    font-size: 16px;

    font-weight: 700;
}


.perfume-market-list i {
    width: 20px;
    height: 20px;

    display: flex;

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

    color: #fff;

    background: var(--accent);

    border-radius: 50%;

    font-size: 10px;
}



/* Market visual */

.perfume-market-visual {
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 18px;
}


.perfume-market-visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s var(--ease);
}


.perfume-market-visual:hover img {
    transform: scale(1.04);
}


.perfume-market-overlay {
    position: absolute;

    inset: auto 20px 20px 20px;

    display: flex;

    flex-direction: column;

    padding: 20px;

    color: #fff;

    background:
        rgba(23, 35, 92, .82);

    border-radius: 11px;

    backdrop-filter: blur(12px);
}


.perfume-market-overlay span {
    color: #A9CBE7;

    font-size: 7px;

    letter-spacing: 1.5px;

    font-weight: 800;

    margin-bottom: 7px;
}


.perfume-market-overlay strong {
    font-family: Manrope, sans-serif;

    font-size: 21px;

    line-height: 1.2;
}



/* =========================================================
   WHY NUCLEOUS
========================================================= */

.perfume-why {
    background: var(--bg);
}


.perfume-why .reg-why-media {
    height: 520px;
}


.perfume-why .reg-why-media img {
    object-position: center;
}



/* =========================================================
   CTA
========================================================= */

.perfume-cta {
    min-height: 420px;
}


.perfume-cta .reg-cta-media img {
    object-position: center 45%;
}


.perfume-cta .reg-cta-overlay {
    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .91),
            rgba(23, 35, 92, .70),
            rgba(23, 35, 92, .28));
}



/* =========================================================
   FAQ
========================================================= */

.perfume-faq {
    background: #F5F8FC;
}


.perfume-faq .reg-faq-list details {
    transition:
        transform .25s var(--ease),
        box-shadow .25s var(--ease);
}


.perfume-faq .reg-faq-list details:hover {
    transform: translateX(3px);

    box-shadow:
        0 10px 25px rgba(23, 35, 92, .05);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .perfume-category-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .perfume-category-intro {
        position: static;
    }


    .perfume-market-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 700px) {

    .perfume-hero {
        min-height: 560px;
    }


    .perfume-hero .reg-hero-content {
        padding: 65px 0;
    }


    .perfume-category-grid {
        grid-template-columns: 1fr;
    }


    .perfume-category-feature {
        grid-column: span 1;

        grid-template-columns: 1fr;

        min-height: auto !important;
    }


    .perfume-category-feature-image {
        min-height: 220px;
    }


    .perfume-category-feature-content {
        min-height: 190px;
    }


    .perfume-market-visual {
        height: 370px;
    }


    .perfume-why .reg-why-media {
        height: 380px;
    }

}
/* =========================================================
   DETERGENT & DISINFECTANT PAGE
   Shared components:
   .reg-hero
   .reg-intro
   .reg-snapshot
   .reg-benefits
   .reg-authorities
   .reg-process
   .reg-why
   .reg-cta
   .reg-faq

   Distinct detergent classes:
   .det-*
========================================================= */


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

.det-hero {
    min-height: 575px;
}


.det-hero .reg-hero-media img {
    object-position: center center;
}


.det-hero .reg-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(10, 35, 54, .94) 0%,
            rgba(12, 54, 76, .78) 38%,
            rgba(23, 35, 92, .38) 70%,
            rgba(23, 35, 92, .12) 100%);
}


.det-hero .reg-hero-content {
    max-width: 800px;
}


.det-hero .reg-hero-content h1 {
    max-width: 760px;
}


.det-hero .reg-hero-content>p {
    max-width: 650px;
}



/* =========================================================
   INTRO
========================================================= */

.det-intro {
    background: #fff;
}


.det-intro .reg-intro-content h2 {
    max-width: 700px;
}


.det-intro .reg-intro-content>p {
    max-width: 760px;
}


.det-snapshot {
    border-top:
        4px solid var(--accent);
}



/* =========================================================
   BENEFITS
========================================================= */

.det-benefits {
    background:
        linear-gradient(180deg,
            #F5F8FC 0%,
            #EDF4F9 100%);
}


.det-benefits .reg-benefit-card {
    min-height: 270px;
}


.det-benefits .reg-benefit-card:hover {
    transform: translateY(-7px);
}



/* =========================================================
   AUTHORITIES
========================================================= */

.det-authorities {
    background: #fff;
}


.det-authorities .reg-authority-card {
    min-height: 285px;
}


.det-authorities .reg-authority-card:hover {
    transform: translateY(-6px);
}



/* =========================================================
   PROCESS
========================================================= */

.det-process {
    position: relative;

    background:
        linear-gradient(135deg,
            #17252D 0%,
            #202D35 55%,
            #26343D 100%);

    overflow: hidden;
}


/* subtle background pattern */

.det-process::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -220px;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .025),
        0 0 0 140px rgba(255, 255, 255, .018);
}


.det-process .reg-process-heading {
    position: relative;

    z-index: 1;
}


.det-process .reg-process-card {
    min-height: 335px;
}


.det-process .reg-process-icon {
    border-radius: 50%;
}


.det-process .reg-process-card:hover {
    transform: translateY(-7px);
}



/* =========================================================
   DOCUMENTS
   DISTINCT SECTION
========================================================= */

.det-documents {
    background: #fff;
}


.det-documents-layout {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    gap: 80px;

    align-items: start;
}


.det-documents-intro {
    position: sticky;

    top: 100px;
}


.det-documents-intro .eyebrow {
    margin-bottom: 20px;
}


.det-documents-intro h2 {
    max-width: 500px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.det-documents-intro h2 em {
    color: var(--accent);
}


.det-documents-intro>p {
    max-width: 420px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.85;

    margin-bottom: 25px;
}



/* Document list */

.det-document-list {
    border-top:
        1px solid var(--line);
}


.det-document-item {
    display: grid;

    grid-template-columns:
        45px 1fr 30px;

    gap: 18px;

    align-items: center;

    min-height: 105px;

    padding: 18px 10px 18px 0;

    border-bottom:
        1px solid var(--line);

    transition:
        padding .3s var(--ease),
        background .3s var(--ease);
}


.det-document-item:hover {
    padding-left: 14px;

    background:
        linear-gradient(90deg,
            #F5F9FC,
            transparent);
}


.det-document-number {
    width: 36px;
    height: 36px;

    display: flex;

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

    color: var(--blue);

    background: var(--pale);

    border-radius: 50%;

    font-size: 9px;

    font-weight: 800;
}


.det-document-item h3 {
    font-size: 18px;

    margin-bottom: 4px;
}


.det-document-item p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}


.det-document-item>i {
    width: 23px;
    height: 23px;

    display: flex;

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

    color: #fff;

    background: var(--accent);

    border-radius: 50%;

    font-size: 7px;
}



/* =========================================================
   MARKET ACCESS
   DISTINCT SECTION
========================================================= */

.det-market {
    background: var(--bg);
}


.det-market-layout {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.det-market-visual {
    position: relative;

    height: 530px;

    overflow: hidden;

    border-radius: 20px;
}


.det-market-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(23, 35, 92, .75));
}


.det-market-visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s var(--ease);
}


.det-market-visual:hover img {
    transform: scale(1.045);
}


.det-market-badge {
    position: absolute;

    z-index: 2;

    left: 24px;
    right: 24px;
    bottom: 24px;

    display: flex;

    flex-direction: column;

    padding: 22px;

    color: #fff;

    background:
        rgba(23, 35, 92, .82);

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 13px;

    backdrop-filter: blur(12px);
}


.det-market-badge span {
    color: #A9CBE7;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.det-market-badge strong {
    max-width: 300px;

    font-family: Manrope, sans-serif;

    font-size: 23px;

    line-height: 1.15;
}


.det-market-content .eyebrow {
    margin-bottom: 20px;
}


.det-market-content h2 {
    max-width: 560px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.det-market-content h2 em {
    color: var(--accent);
}


.det-market-content>p {
    max-width: 540px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.85;
}


.det-market-points {
    display: grid;

    gap: 14px;

    margin-top: 28px;

    padding-top: 25px;

    border-top:
        1px solid var(--line);
}


.det-market-points div {
    display: grid;

    grid-template-columns:
        24px 1fr;

    gap: 10px;

    align-items: start;
}


.det-market-points i {
    width: 21px;
    height: 21px;

    display: flex;

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

    color: #fff;

    background: var(--blue);

    border-radius: 50%;

    font-size: 7px;
}


.det-market-points span {
    color: var(--blue);

    font-size: 14px;

    line-height: 1.7;

    font-weight: 600;
}

.det-process-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, .11);

    border-left:
        1px solid rgba(255, 255, 255, .11);
}

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


/* =========================================================
   WHY NUCLEOUS
========================================================= */

.det-why {
    background: #fff;
}


.det-why .reg-why-media {
    height: 530px;
}


.det-why .reg-why-media img {
    object-position: center;
}


.det-why .reg-check-list {
    margin-top: 24px;
}



/* =========================================================
   CTA
========================================================= */

.det-cta {
    min-height: 430px;
}


.det-cta .reg-cta-media img {
    object-position: center 50%;
}


.det-cta .reg-cta-overlay {
    background:
        linear-gradient(90deg,
            rgba(13, 38, 49, .92) 0%,
            rgba(23, 35, 92, .76) 48%,
            rgba(23, 35, 92, .30) 100%);
}


.det-cta .reg-cta-content {
    max-width: 760px;
}



/* =========================================================
   FAQ
========================================================= */

.det-faq {
    background: var(--bg);
}


.det-faq .reg-faq-layout {
    align-items: start;
}


.det-faq .reg-faq-intro h2 {
    max-width: 420px;
}


.det-faq .reg-faq-list details {
    transition:
        transform .25s var(--ease),
        box-shadow .25s var(--ease);
}


.det-faq .reg-faq-list details:hover {
    transform: translateX(3px);

    box-shadow:
        0 10px 30px rgba(23, 35, 92, .06);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .det-documents-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .det-documents-intro {
        position: static;
    }


    .det-market-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 800px) {

    .det-hero {
        min-height: 540px;
    }


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


    .det-document-item {
        grid-template-columns:
            40px 1fr 25px;
    }


    .det-market-visual {
        height: 420px;
    }

}


@media (max-width: 600px) {

    .det-hero .reg-hero-content {
        padding: 65px 0;
    }


    .det-process .reg-process-grid {
        grid-template-columns: 1fr;
    }


    .det-process .reg-process-card {
        min-height: 270px;
    }


    .det-document-item {
        gap: 12px;

        padding-right: 0;
    }


    .det-document-item h3 {
        font-size: 13px;
    }


    .det-document-item p {
        font-size: 8px;
    }


    .det-market-visual {
        height: 350px;
    }


    .det-market-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 17px;
    }


    .det-market-badge strong {
        font-size: 19px;
    }

}

/* =========================================================
   HEALTH SUPPLEMENT & HERBAL PRODUCTS
   Page-specific CSS

   Shared:
   .reg-hero
   .reg-intro
   .reg-snapshot
   .reg-benefits
   .reg-process
   .reg-warning
   .reg-why
   .reg-cta
   .reg-faq

   Unique:
   .sup-*
========================================================= */


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

.sup-hero {
    min-height: 575px;
}


.sup-hero .reg-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(23, 35, 25, .88) 0%,
            rgba(23, 35, 92, .68) 50%,
            rgba(23, 35, 92, .18) 100%);
}


.sup-hero .reg-hero-content {
    max-width: 820px;
}


.sup-hero .reg-hero-content h1 {
    max-width: 780px;
}


.sup-hero .reg-hero-content>p {
    max-width: 650px;
}


/* =========================================================
   INTRO
========================================================= */

.sup-intro {
    background: #fff;
}


.sup-intro .reg-intro-content h2 {
    max-width: 700px;
}


.sup-intro .reg-intro-content>p {
    max-width: 760px;
}


.sup-snapshot {
    border-top: 4px solid #82A88B;
}


.sup-snapshot .reg-snapshot-head i {
    background: #E8F2E9;
    color: #5B8365;
}


/* =========================================================
   BENEFITS
========================================================= */

.sup-benefits {
    background:
        linear-gradient(180deg,
            #F5F8FC 0%,
            #EDF4F9 100%);
}


.sup-benefits .reg-benefit-card {
    min-height: 275px;
}


.sup-benefits .reg-benefit-card:hover {
    transform: translateY(-8px);
}


.sup-benefits .reg-benefit-icon {
    background: #EAF3FC;
}


/* =========================================================
   PROCESS
========================================================= */

.sup-process {
    position: relative;

    background:
        linear-gradient(135deg,
            #17252D 0%,
            #202D35 52%,
            #26353E 100%);

    overflow: hidden;
}


.sup-process::before {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    right: -300px;
    top: -250px;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(255, 255, 255, .025),
        0 0 0 160px rgba(255, 255, 255, .015);
}


.sup-process .reg-process-heading,
.sup-process .reg-process-grid,
.sup-process .reg-warning {
    position: relative;
    z-index: 1;
}


.sup-process .reg-process-card {
    min-height: 335px;
}


.sup-process .reg-process-card:hover {
    transform: translateY(-7px);
}


/* =========================================================
   DOCUMENT SECTION
========================================================= */

.sup-documents {
    background: #fff;
}


.sup-documents-layout {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    gap: 85px;

    align-items: start;
}


.sup-documents-intro {
    position: sticky;
    top: 100px;
}


.sup-documents-intro .eyebrow {
    margin-bottom: 20px;
}


.sup-documents-intro h2 {
    max-width: 500px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.sup-documents-intro h2 em {
    color: var(--accent);
}


.sup-documents-intro>p {
    max-width: 440px;

    font-size: 14px;

    line-height: 1.85;

    color: var(--text);

    margin-bottom: 25px;
}


.sup-document-note {
    display: grid;

    grid-template-columns: 28px 1fr;

    gap: 10px;

    max-width: 440px;

    padding: 15px;

    background: var(--pale);

    border: 1px solid #D7E7F4;

    border-radius: 10px;
}


.sup-document-note i {
    color: var(--accent);

    margin-top: 2px;
}


.sup-document-note span {
    color: var(--text);

    font-size: 12px;

    line-height: 1.65;
}


/* document list */

.sup-document-list {
    border-top: 1px solid var(--line);
}


.sup-document-item {
    display: grid;

    grid-template-columns:
        46px 1fr 30px;

    gap: 18px;

    align-items: center;

    min-height: 100px;

    padding: 17px 8px 17px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding .3s var(--ease),
        background .3s var(--ease);
}


.sup-document-item:hover {
    padding-left: 14px;

    background:
        linear-gradient(90deg,
            #F4F8FC,
            transparent);
}


.sup-document-number {
    width: 36px;
    height: 36px;

    display: flex;

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

    background: var(--pale);

    color: var(--blue);

    border-radius: 50%;

    font-size: 9px;

    font-weight: 800;
}


.sup-document-item h3 {
    font-size: 18px;

    margin-bottom: 4px;
}


.sup-document-item p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.6;
}


.sup-document-item>i {
    width: 23px;
    height: 23px;

    display: flex;

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

    color: #fff;

    background: var(--accent);

    border-radius: 50%;

    font-size: 7px;
}


/* =========================================================
   LABEL REQUIREMENTS
========================================================= */

.sup-labels {
    background: var(--bg);
}


.sup-labels-layout {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    gap: 80px;

    align-items: start;
}


.sup-labels-content {
    position: sticky;
    top: 100px;
}


.sup-labels-content .eyebrow {
    margin-bottom: 20px;
}


.sup-labels-content h2 {
    max-width: 480px;

    font-size:
        clamp(38px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.sup-labels-content>p {
    max-width: 410px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* label cards */

.sup-label-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.sup-label-card {
    position: relative;

    min-height: 175px;

    padding: 23px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease),
        border-color .3s var(--ease);
}


.sup-label-card::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -40px;
    bottom: -40px;

    border: 1px solid #E1EAF2;

    border-radius: 50%;
}


.sup-label-card:hover {
    transform: translateY(-5px);

    border-color: #BFD3E5;

    box-shadow:
        0 18px 45px rgba(23, 35, 92, .08);
}


.sup-label-card>span {
    position: absolute;

    top: 16px;
    right: 18px;

    color: #A6B4C4;

    font-size: 12px;

    font-weight: 800;
}


.sup-label-card>i {
    width: 37px;
    height: 37px;

    display: flex;

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

    color: var(--blue);

    background: var(--pale);

    border-radius: 9px;

    font-size: 14px;

    margin-bottom: 17px;
}


.sup-label-card h3 {
    font-size: 18px;

    margin-bottom: 5px;
}


.sup-label-card p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.6;

    max-width: 210px;
}


/* =========================================================
   WHY NUCLEOUS
========================================================= */

.sup-why {
    background: #fff;
}


.sup-why .reg-why-media {
    height: 535px;
}


.sup-why .reg-why-media img {
    object-position: center;
}


/* =========================================================
   CTA
========================================================= */

.sup-cta {
    min-height: 430px;
}


.sup-cta .reg-cta-overlay {
    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .88) 0%,
            rgba(23, 35, 92, .66) 48%,
            rgba(23, 35, 92, .25) 100%);
}


.sup-cta .reg-cta-content {
    max-width: 780px;
}


.sup-cta .reg-cta-content h2 em {
    color: #A8D0ED;
}


/* =========================================================
   FAQ
========================================================= */

.sup-faq {
    background: var(--bg);
}


.sup-faq .reg-faq-list details {
    transition:
        transform .25s var(--ease),
        box-shadow .25s var(--ease);
}


.sup-faq .reg-faq-list details:hover {
    transform: translateX(3px);

    box-shadow:
        0 12px 32px rgba(23, 35, 92, .06);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .sup-documents-layout,
    .sup-labels-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .sup-documents-intro,
    .sup-labels-content {
        position: static;
    }

}


@media (max-width: 850px) {

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


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

}


@media (max-width: 768px) {

    .sup-hero {
        min-height: 520px;
    }


    .sup-hero .reg-hero-content {
        padding: 95px 0 65px;
    }


    .sup-process .reg-process-grid .det-process-grid {
        grid-template-columns: 1fr;
    }


    .sup-process .reg-process-card {
        min-height: 270px;
    }


    .sup-document-item {
        grid-template-columns:
            40px 1fr 25px;

        gap: 12px;
    }


    .sup-document-item h3 {
        font-size: 12px;
    }


    .sup-document-item p {
        font-size: 8px;
    }


    .sup-label-grid {
        grid-template-columns: 1fr;
    }


    .sup-label-card {
        min-height: 155px;
    }


    .sup-why .reg-why-media {
        height: 380px;
    }

}

/* =========================================================
   VAPE PAGE — DISTINCT / PAGE-SPECIFIC CSS ONLY
   Common .reg-* classes are already available
========================================================= */

.vape-page {
    --vape-dark: #102B38;
    --vape-blue: #145A70;
    --vape-cyan: #75C4D5;
    --vape-pale: #EAF5F7;
}


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

.vape-hero .reg-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(7, 24, 36, 0.92) 0%,
            rgba(8, 42, 57, 0.76) 48%,
            rgba(8, 42, 57, 0.28) 100%);
}

.vape-hero .reg-hero-content h1 em {
    color: var(--vape-cyan);
}

.vape-hero .reg-hero-eyebrow {
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.vape-hero .reg-hero-link:hover {
    color: var(--vape-cyan);
}


/* =========================================================
   VAPE INTRO / SNAPSHOT
========================================================= */

.vape-intro {
    background: #fff;
}

.vape-intro .reg-intro-content h2 em {
    color: var(--vape-blue);
}

.vape-snapshot {
    border-top-color: var(--vape-blue);
}

.reg-snapshot-title{
    display: flex;
    flex-direction: column;
}

.vape-snapshot .reg-snapshot-head i {
    background: var(--vape-pale);
    color: var(--vape-blue);
}

.vape-snapshot .reg-snapshot-items strong {
    color: var(--vape-blue);
}

.vape-snapshot>a {
    color: var(--vape-blue);
}

.vape-snapshot>a:hover {
    color: var(--vape-blue);
}


/* =========================================================
   VAPE BENEFITS
========================================================= */

.vape-benefits {
    background:
        linear-gradient(180deg,
            #F5F8FA 0%,
            #EDF5F7 100%);
}

.vape-benefits .reg-section-heading h2 em {
    color: var(--vape-blue);
}

.vape-benefits .reg-benefit-card {
    border-color: #DDE8EC;
}

.vape-benefits .reg-benefit-card:hover {
    border-color: #BFD5DC;

    box-shadow:
        0 22px 55px rgba(20, 90, 112, .10);
}

.vape-benefits .reg-benefit-icon {
    background: var(--vape-pale);
    color: var(--vape-blue);
}


/* =========================================================
   VAPE PROCESS
========================================================= */

.vape-process {
    background:
        linear-gradient(135deg,
            #102934 0%,
            #153C4C 55%,
            #185466 100%);
}

.vape-process::before {
    border-color:
        rgba(255, 255, 255, .07);
}

.vape-process .reg-process-heading h2 em {
    color: var(--vape-cyan);
}

.vape-process .reg-process-card:hover {
    border-color:
        rgba(117, 196, 213, .30);

    background:
        rgba(117, 196, 213, .07);
}

.vape-process .reg-process-icon {
    color: var(--vape-cyan);

    background:
        rgba(117, 196, 213, .08);

    border-color:
        rgba(117, 196, 213, .12);
}


/* =========================================================
   VAPE DOCUMENTS
========================================================= */

.vape-documents {
    background: #fff;
}

.vape-documents-intro h2 em {
    color: var(--vape-blue);
}

.vape-document-note {
    background: var(--vape-pale);
    border-color: #D5E8EC;
}

.vape-document-note i {
    color: var(--vape-blue);
}

.vape-document-item:hover {
    background:
        linear-gradient(90deg,
            #F2F8FA,
            transparent);
}

.vape-document-number {
    background: var(--vape-pale);
    color: var(--vape-blue);
}

.vape-document-item>i {
    background: var(--vape-blue);
}


/* =========================================================
   VAPE ASSISTANCE
========================================================= */

.vape-assistance {
    background:
        linear-gradient(180deg,
            #F5F8FA 0%,
            #EDF4F7 100%);
}

.vape-assistance .reg-why-media {
    box-shadow:
        0 25px 70px rgba(16, 43, 56, .16);
}

.vape-assistance .reg-why-content h2 em {
    color: var(--vape-blue);
}

.vape-assistance .reg-check-list i {
    background: var(--vape-blue);
}


/* =========================================================
   VAPE CTA
========================================================= */

.vape-cta {
    background: var(--vape-dark);
}

.vape-cta .reg-cta-overlay {
    background:
        linear-gradient(90deg,
            rgba(8, 30, 40, .94) 0%,
            rgba(10, 63, 78, .78) 52%,
            rgba(10, 63, 78, .30) 100%);
}

.vape-cta .reg-cta-content h2 em {
    color: var(--vape-cyan);
}

.vape-cta .reg-cta-content .eyebrow {
    background: rgba(117, 196, 213, .12);
    border-color: rgba(117, 196, 213, .25);
    color: #D9F2F5;
}


/* =========================================================
   VAPE FAQ
========================================================= */

.vape-faq {
    background: #fff;
}

.vape-faq .reg-faq-intro h2 em {
    color: var(--vape-blue);
}

.vape-faq .reg-faq-list details:hover {
    border-color: #C8DDE2;

    box-shadow:
        0 12px 32px rgba(20, 90, 112, .06);
}

.vape-faq .reg-faq-list details[open] {
    border-color: #C8DDE2;
    background: #F7FAFB;
}


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

@media (max-width: 768px) {

    .vape-hero .reg-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(7, 24, 36, .91),
                rgba(8, 42, 57, .58));
    }

    .vape-benefits .reg-benefit-card:hover {
        transform: none;
    }

    .vape-process .reg-process-card:hover {
        transform: none;
    }

    .vape-document-item:hover {
        padding-left: 0;
    }
        

}

/* =========================================================
   VAPE DOCUMENT SECTION
========================================================= */

.vape-documents {
    background: #fff;
}


.vape-documents-layout {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    gap: 80px;

    align-items: start;
}


.vape-documents-intro {
    position: sticky;

    top: 100px;
}


.vape-documents-intro .eyebrow {
    margin-bottom: 20px;
}


.vape-documents-intro h2 {
    max-width: 480px;

    font-size:
        clamp(37px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.vape-documents-intro h2 em {
    color: var(--accent);
}


.vape-documents-intro>p {
    max-width: 440px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}


.vape-document-note {
    display: grid;

    grid-template-columns: 25px 1fr;

    gap: 10px;

    max-width: 430px;

    padding: 15px;

    background: var(--pale);

    border: 1px solid #D9E7F3;

    border-radius: 11px;
}


.vape-document-note i {
    color: var(--accent);

    font-size: 22px;

    margin-top: 2px;
}


.vape-document-note span {
    color: var(--text);

    font-size: 12px;

    line-height: 1.7;
}


/* document rows */

.vape-document-list {
    border-top: 1px solid var(--line);
}


.vape-document-item {
    display: grid;

    grid-template-columns:
        45px 1fr 27px;

    gap: 17px;

    align-items: center;

    min-height: 102px;

    padding: 17px 7px 17px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding .3s var(--ease),
        background .3s var(--ease);
}


.vape-document-item:hover {
    padding-left: 13px;

    background:
        linear-gradient(90deg,
            #F5F8FC,
            transparent);
}


.vape-document-number {
    width: 35px;
    height: 35px;

    display: flex;

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

    background: var(--pale);

    color: var(--blue);

    border-radius: 50%;

    font-size: 12px;

    font-weight: 800;
}


.vape-document-item h3 {
    color: var(--blue);

    font-size: 18px;

    margin-bottom: 4px;
}


.vape-document-item p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.65;
}


.vape-document-item>i {
    width: 22px;
    height: 22px;

    display: flex;

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

    background: var(--blue);

    color: #fff;

    border-radius: 50%;

    font-size: 7px;
}

@media (max-width:768px){

    .vape-documents-layout{
        grid-template-columns: 1fr;
    }
    .vape-document-item {
            grid-template-columns:
                38px 1fr 23px;
    
            gap: 12px;
        }
    
    
        .vape-document-item h3 {
            font-size: 12px;
        }
    
    
        .vape-document-item p {
            font-size: 8px;
        }
}

/* =========================================================
   PET ANIMAL FOOD REGISTRATION PAGE
   ========================================================= */


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

.reg-pet-intro {
    padding-top: 85px;
    padding-bottom: 85px;
}

.reg-hero--pet {
    min-height: 500px;
}

.reg-hero--pet .reg-hero-content {
    max-width: 760px;
    padding: 105px 0 80px;
}

.reg-hero--pet h1 {
    max-width: 760px;
    font-size: clamp(44px, 5vw, 68px);
}

.reg-hero--pet h1 em {
    display: block;
}

.reg-hero--pet .reg-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(16, 26, 67, .94) 0%,
            rgba(23, 35, 92, .80) 42%,
            rgba(23, 35, 92, .22) 100%);
}


/* =========================================================
   INTRO
   ========================================================= */

.reg-pet-intro .reg-intro-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 80px;
}

.reg-pet-intro .reg-intro-content h2 {
    max-width: 680px;
}

.reg-pet-intro .reg-intro-content>p {
    max-width: 760px;
    font-size: 14px;
    margin-bottom: 17px;
}

.reg-pet-intro .reg-intro-content strong {
    color: var(--blue);
    font-weight: 700;
}


/* =========================================================
   SNAPSHOT
   ========================================================= */

.reg-pet-intro .reg-snapshot {
    position: relative;
    top: 5px;
}

.reg-pet-intro .reg-snapshot::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -25px;
    top: -25px;
    border-radius: 50%;
    background: rgba(93, 153, 216, .08);
    pointer-events: none;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.reg-pet-benefits {
    padding-top: 85px;
    padding-bottom: 90px;
}

.reg-pet-benefits .reg-section-heading {
    max-width: 780px;
}

.reg-pet-benefits .reg-benefit-grid {
    grid-template-columns: repeat(4, 1fr);
}

.reg-pet-benefits .reg-benefit-card {
    min-height: 245px;
}


/* =========================================================
   STORAGE REQUIREMENTS
   ========================================================= */

.reg-requirements {
    padding-top: 90px;
    padding-bottom: 85px;
}

.reg-requirement-grid {
    grid-template-columns: repeat(3, 1fr);
}

.reg-requirement-grid .reg-authority-card {
    min-height: 270px;
}

.reg-requirement-grid .reg-authority-card h3 {
    font-size: 21px;
}


/* =========================================================
   WARNING
   ========================================================= */

.reg-requirements .reg-warning {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;

    border-color: var(--line);
    background: var(--pale);
}

.reg-requirements .reg-warning i {
    color: var(--accent);
}

.reg-requirements .reg-warning p {
    color: var(--text);
}


/* =========================================================
   DOCUMENT SECTION
   ========================================================= */

.reg-pet-documents {
    background: var(--bg);
}

.pet-content-header {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 45px;
}

.pet-content-header .eyebrow {
    margin-bottom: 20px;
}

.pet-content-header h2 {
    max-width: 700px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
}

.pet-content-header p {
    max-width: 440px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   DOCUMENT GRID
   ========================================================= */

.pet-document-layout {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 25px;
}

.pet-document-main {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.pet-document-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;

    padding: 24px 28px;

    border-bottom: 1px solid var(--line);

    transition:
        background .3s var(--ease),
        padding-left .3s var(--ease);
}

.pet-document-item:last-child {
    border-bottom: 0;
}

.pet-document-item:hover {
    background: #f9fbfe;
    padding-left: 34px;
}

.pet-document-item>span {
    width: 36px;
    height: 36px;

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

    border-radius: 9px;

    background: var(--pale);
    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
}

.pet-document-item h3 {
    margin-bottom: 5px;
    font-size: 17px;
}

.pet-document-item p {
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   DOCUMENT SIDE NOTE
   ========================================================= */

.pet-document-side {
    display: flex;
}

.pet-document-note {
    width: 100%;

    padding: 32px;

    border-radius: 16px;

    background:
        linear-gradient(145deg,
            var(--blue),
            var(--blue2));

    box-shadow: var(--shadow);
}

.pet-document-note>i {
    width: 50px;
    height: 50px;

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

    margin-bottom: 25px;

    border-radius: 12px;

    color: #fff;
    background: rgba(255, 255, 255, .10);

    font-size: 20px;
}

.pet-document-note h3 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 20px;
}

.pet-document-note ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pet-document-note li {
    position: relative;

    padding-left: 22px;
    margin-bottom: 15px;

    color: #D8E5F2;

    font-size: 13px;
    line-height: 1.65;
}

.pet-document-note li::before {
    content: "\f00c";

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

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: #9BC9EC;
    font-size: 10px;
}


/* =========================================================
   LABEL REQUIREMENTS
   ========================================================= */

.reg-pet-labels {
    background: #fff;
}

.reg-pet-labels .reg-section-heading {
    max-width: 800px;
}

.pet-label-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pet-label-card {
    position: relative;

    min-height: 300px;

    padding: 27px;

    border: 1px solid var(--line);
    border-radius: 15px;

    background: #fff;

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s var(--ease);
}

.pet-label-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -55px;
    bottom: -60px;

    border-radius: 50%;

    background: var(--pale);

    transition: transform .4s var(--ease);
}

.pet-label-card:hover {
    transform: translateY(-6px);

    border-color: #C7D8E7;

    box-shadow:
        0 20px 50px rgba(23, 35, 92, .08);
}

.pet-label-card:hover::after {
    transform: scale(1.35);
}

.pet-label-icon {
    width: 48px;
    height: 48px;

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

    margin-bottom: 25px;

    border-radius: 11px;

    color: var(--blue);
    background: var(--pale);

    font-size: 17px;
}

.pet-label-card h3 {
    font-size: 18px;
    margin-bottom: 18px;
}

.pet-label-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pet-label-card li {
    position: relative;

    padding-left: 17px;
    margin-bottom: 10px;

    color: var(--text);

    font-size: 12px;
    line-height: 1.65;
}

.pet-label-card li::before {
    content: "";

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

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--accent);
}


/* =========================================================
   WHY NUCLEOUS
   ========================================================= */

.reg-pet-why {
    padding-top: 90px;
    padding-bottom: 90px;
}

.reg-pet-why .reg-why-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

.reg-pet-why .reg-why-media {
    height: 540px;
}


/* =========================================================
   CTA
   ========================================================= */

.reg-pet-cta {
    min-height: 440px;
}

.reg-pet-cta .reg-cta-overlay {
    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .96) 0%,
            rgba(23, 35, 92, .80) 48%,
            rgba(23, 35, 92, .32) 100%);
}

.reg-pet-cta .reg-cta-content {
    max-width: 760px;
}

.reg-pet-cta .reg-cta-content h2 em {
    color: #9BC9EC;
    display: inline;
}


/* =========================================================
   FAQ
   ========================================================= */

.reg-pet-faq {
    padding-top: 90px;
    padding-bottom: 100px;
}

.reg-pet-faq .reg-faq-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
}

.reg-pet-faq .reg-faq-intro {
    position: sticky;
    top: 100px;
}

.reg-pet-faq .reg-faq-intro .btn {
    margin-top: 10px;
}

.reg-pet-faq .reg-faq-list {
    gap: 10px;
}

.reg-pet-faq .reg-faq-list details {
    border-radius: 12px;
}

.reg-pet-faq .reg-faq-list summary {
    padding: 20px 22px;
    font-size: 14px;
}

.reg-pet-faq .reg-faq-answer {
    padding: 0 22px 22px;
}

.reg-pet-faq .reg-faq-answer p {
    max-width: 750px;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .reg-pet-benefits .reg-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .pet-document-layout {
        grid-template-columns: 1fr;
    }

    .pet-document-note {
        min-height: auto;
    }

    .reg-pet-why .reg-why-layout {
        gap: 50px;
    }

}


@media (max-width: 900px) {

    .reg-pet-intro .reg-intro-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pet-content-header {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }

    .reg-pet-why .reg-why-layout {
        grid-template-columns: 1fr;
    }

    .reg-pet-why .reg-why-media {
        height: 450px;
    }

    .reg-pet-faq .reg-faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .reg-pet-faq .reg-faq-intro {
        position: static;
    }

}


@media (max-width: 700px) {

    .container {
        width: min(100% - 32px, 1280px);
    }

    .section {
        padding: 60px 0;
    }


    /* Hero */

    .reg-hero--pet {
        min-height: 620px;
    }

    .reg-hero--pet .reg-hero-content {
        padding: 90px 0 60px;
    }

    .reg-hero--pet h1 {
        font-size: clamp(39px, 10vw, 54px);
        letter-spacing: -2px;
    }

    .reg-hero--pet .reg-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(23, 35, 92, .70),
                rgba(16, 26, 67, .94));
    }

    .reg-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .reg-hero-actions .btn,
    .reg-hero-link {
        width: 100%;
        text-align: center;
    }


    /* Benefits */

    .reg-pet-benefits .reg-benefit-grid {
        grid-template-columns: 1fr;
    }

    .reg-pet-benefits .reg-benefit-card {
        min-height: auto;
    }


    /* Requirements */

    .reg-requirement-grid {
        grid-template-columns: 1fr;
    }

    .reg-requirement-grid .reg-authority-card {
        min-height: 245px;
    }


    /* Documents */

    .pet-document-item {
        grid-template-columns: 40px 1fr;
        gap: 14px;
        padding: 20px;
    }

    .pet-document-item:hover {
        padding-left: 20px;
    }

    .pet-document-note {
        padding: 25px;
    }


    /* Labels */

    .pet-label-grid {
        grid-template-columns: 1fr;
    }

    .pet-label-card {
        min-height: auto;
    }


    /* Why */

    .reg-pet-why .reg-why-media {
        height: 360px;
    }

    .reg-check-list {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .reg-pet-cta {
        min-height: 500px;
    }

    .reg-pet-cta .reg-cta-content {
        padding: 70px 0;
    }


    /* FAQ */

    .reg-pet-faq {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .reg-pet-faq .reg-faq-list summary {
        padding: 18px;
        font-size: 13px;
    }

    .reg-pet-faq .reg-faq-answer {
        padding: 0 18px 18px;
    }

}


@media (max-width: 480px) {

    h2 {
        letter-spacing: -1.5px;
    }

    .reg-hero--pet h1 {
        font-size: 39px;
    }

    .reg-snapshot {
        padding: 22px;
    }

    .reg-authority-card {
        padding: 23px;
    }

    .pet-document-note {
        padding: 22px;
    }

    .pet-label-card {
        padding: 23px;
    }

    .reg-why-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

}

/* =========================================================
   HEALTHCARE LICENSE PAGE
   ========================================================= */


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

.health-hero {
    min-height: 510px;
}

.health-hero .reg-hero-content {
    max-width: 780px;
    padding: 105px 0 80px;
}

.health-hero h1 {
    max-width: 780px;
    font-size: clamp(44px, 5.2vw, 70px);
}

.health-hero h1 em {
    display: block;
}

.health-hero .reg-hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(12, 20, 55, .95) 0%,
            rgba(23, 35, 92, .80) 43%,
            rgba(23, 35, 92, .20) 100%);
}


/* =========================================================
   INTRO
========================================================== */

.health-intro {
    padding-top: 85px;
    padding-bottom: 85px;
}

.health-intro .reg-intro-layout {
    grid-template-columns:
        minmax(0, 1.2fr) minmax(320px, .8fr);

    gap: 80px;
}

.health-intro .reg-intro-content h2 {
    max-width: 700px;
    margin-bottom: 22px;
}

.health-intro .reg-intro-content>p {
    max-width: 760px;
    margin-bottom: 17px;
    font-size: 14px;
    line-height: 1.85;
}

.health-intro strong {
    color: var(--blue);
}


/* =========================================================
   SNAPSHOT
========================================================== */

.health-snapshot {
    position: relative;
}

.health-snapshot::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background:
        rgba(93, 153, 216, .07);

    pointer-events: none;
}


/* =========================================================
   WHY LICENSE
========================================================== */

.health-why-license {
    padding-top: 90px;
    padding-bottom: 90px;
}

.health-why-license .reg-section-heading {
    max-width: 800px;
}

.health-why-license .reg-benefit-grid {
    grid-template-columns: repeat(4, 1fr);
}

.health-why-license .reg-benefit-card {
    min-height: 250px;
}


/* =========================================================
   AUTHORITIES
========================================================== */

.health-authorities {
    padding-top: 90px;
    padding-bottom: 85px;
}

.health-authorities .reg-section-heading {
    max-width: 800px;
}

.health-authority-card {
    min-height: 330px;
}

.health-authority-tag {
    display: inline-flex;

    margin-bottom: 15px;
    padding: 5px 9px;

    border-radius: 6px;

    color: #2869a6;
    background: var(--pale);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.health-authority-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.health-authority-card p {
    max-width: 350px;
}

.health-authority-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    max-width: 800px;

    margin: 25px auto 0;
    padding: 17px 20px;

    border: 1px solid var(--line);
    border-radius: 11px;

    background: var(--pale);
}

.health-authority-note>i {
    margin-top: 3px;

    color: var(--accent);
    font-size: 15px;
}

.health-authority-note strong {
    display: block;

    margin-bottom: 2px;

    color: var(--blue);
    font-size: 13px;
}

.health-authority-note p {
    color: var(--text);
    font-size: 12px;
}


/* =========================================================
   CHALLENGES
========================================================== */

.health-challenges {
    padding-top: 90px;
    padding-bottom: 90px;

    background:
        linear-gradient(135deg,
            #18222B,
            #202B35);
}

.health-challenges .reg-process-heading {
    max-width: 800px;
}

.health-challenges .reg-process-grid {
    grid-template-columns: repeat(5, 1fr);
}

.health-challenges .reg-process-card {
    min-height: 340px;
}

.health-challenges .reg-process-number {
    font-size: 9px;
    letter-spacing: 1px;
}

.health-challenge-final {
    background:
        rgba(255, 255, 255, .025);
}


/* =========================================================
   SUPPORT SECTION
========================================================== */

.health-support {
    padding-top: 90px;
    padding-bottom: 95px;

    background: var(--bg);
}

.health-support-header {
    display: grid;

    grid-template-columns:
        1fr .65fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 48px;
}

.health-support-header .eyebrow {
    margin-bottom: 20px;
}

.health-support-header h2 {
    max-width: 700px;
}

.health-support-header>p {
    max-width: 430px;

    color: var(--muted);

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


/* =========================================================
   SUPPORT CARDS
========================================================== */

.health-support-grid {
    display: grid;

    grid-template-columns:
        1.25fr 1fr 1fr;

    gap: 15px;
}

.health-support-card {
    position: relative;

    min-height: 275px;

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background: #fff;

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.health-support-card:nth-child(4),
.health-support-card:nth-child(5) {
    grid-column: span 1;
}

.health-support-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(23, 35, 92, .08);
}

.health-support-number {
    position: absolute;

    top: 25px;
    right: 27px;

    color: #A6B8CB;

    font-size: 10px;
    font-weight: 800;
}

.health-support-icon {
    width: 48px;
    height: 48px;

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

    margin-bottom: 24px;

    border-radius: 11px;

    color: var(--blue);
    background: var(--pale);

    font-size: 17px;

    transition: .3s;
}

.health-support-card:hover .health-support-icon {
    color: #fff;
    background: var(--blue);
}

.health-support-card h3 {
    margin-bottom: 10px;

    font-size: 19px;
}

.health-support-card p {
    max-width: 310px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.75;
}

.health-support-featured {
    background:
        linear-gradient(145deg,
            #fff,
            #EDF5FC);
}

.health-card-line {
    position: absolute;

    left: 27px;
    right: 27px;
    bottom: 0;

    height: 3px;

    background: var(--accent);
}


/* =========================================================
   OPPORTUNITIES
========================================================== */

.health-opportunities {
    padding-top: 95px;
    padding-bottom: 95px;

    background: #fff;
}

.health-opportunities-layout {
    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 90px;

    align-items: center;
}

.health-opportunities-content .eyebrow {
    margin-bottom: 20px;
}

.health-opportunities-content h2 {
    max-width: 680px;

    margin-bottom: 22px;
}

.health-opportunities-content>p {
    max-width: 650px;

    margin-bottom: 15px;

    color: var(--text);

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


/* =========================================================
   OPPORTUNITY STATS
========================================================== */

.health-opportunity-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    max-width: 650px;

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

    border-top: 1px solid var(--line);
}

.health-opportunity-stats div {
    padding-right: 20px;

    border-right: 1px solid var(--line);
}

.health-opportunity-stats div:last-child {
    border-right: 0;
}

.health-opportunity-stats strong {
    display: block;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 22px;
    line-height: 1.2;
}

.health-opportunity-stats span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   OPPORTUNITY VISUAL
========================================================== */

.health-opportunities-visual {
    position: relative;

    min-height: 400px;

    display: flex;

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

    overflow: hidden;

    border-radius: 20px;

    background:
        radial-gradient(circle at center,
            #EAF3FC 0%,
            #F5F8FC 45%,
            #E6EEF7 100%);
}

.health-visual-card {
    position: relative;

    z-index: 3;

    width: 235px;
    min-height: 220px;

    display: flex;

    flex-direction: column;

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

    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, .9);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .72);

    backdrop-filter: blur(12px);

    box-shadow:
        0 25px 60px rgba(23, 35, 92, .12);

    text-align: center;
}

.health-visual-card i {
    width: 65px;
    height: 65px;

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

    margin-bottom: 20px;

    border-radius: 16px;

    color: #fff;
    background: var(--blue);

    font-size: 25px;
}

.health-visual-card span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
}

.health-visual-card strong {
    margin-top: 6px;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 21px;
}

.health-visual-ring {
    position: absolute;

    border: 1px solid rgba(93, 153, 216, .25);

    border-radius: 50%;
}

.health-ring-one {
    width: 310px;
    height: 310px;
}

.health-ring-two {
    width: 470px;
    height: 470px;
}


/* =========================================================
   WHY NUCLEOUS
========================================================== */

.health-why {
    padding-top: 95px;
    padding-bottom: 95px;
}

.health-why .reg-why-layout {
    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;
}

.health-why .reg-why-media {
    height: 520px;
}

.health-why-button {
    margin-top: 28px;
}


/* =========================================================
   CTA
========================================================== */

.health-cta {
    min-height: 430px;
}

.health-cta .reg-cta-overlay {
    background:
        linear-gradient(90deg,
            rgba(23, 35, 92, .96) 0%,
            rgba(23, 35, 92, .78) 48%,
            rgba(23, 35, 92, .28) 100%);
}

.health-cta .reg-cta-content {
    max-width: 760px;
}

.health-cta .reg-cta-content h2 em {
    color: #9BC9EC;
}


/* =========================================================
   FAQ
========================================================== */

.health-faq {
    padding-top: 90px;
    padding-bottom: 100px;

    background: var(--bg);
}

.health-faq .reg-faq-layout {
    grid-template-columns:
        .7fr 1.3fr;

    gap: 80px;
}

.health-faq .reg-faq-intro {
    position: sticky;
    top: 100px;
}

.health-faq .reg-faq-list {
    gap: 10px;
}

.health-faq .reg-faq-list details {
    border-radius: 11px;
}


.health-faq .reg-faq-answer {
    padding:
        0 21px 20px;
}

.health-faq .reg-faq-answer p {
    font-size: 13px;
}


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

@media (max-width: 1100px) {

    .health-why-license .reg-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .health-authorities .reg-authority-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .health-challenges .reg-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .health-support-featured {
        grid-column: span 2;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================== */

@media (max-width: 900px) {

    .health-intro .reg-intro-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .health-authorities .reg-authority-grid {
        grid-template-columns: 1fr;
    }

    .health-authority-card {
        min-height: 280px;
    }

    .health-challenges .reg-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .health-support-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .health-opportunities-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .health-opportunities-visual {
        min-height: 360px;
    }

    .health-why .reg-why-layout {
        grid-template-columns: 1fr;
    }

    .health-why .reg-why-media {
        height: 450px;
    }

    .health-faq .reg-faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .health-faq .reg-faq-intro {
        position: static;
    }

}


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

@media (max-width: 700px) {

    .health-hero {
        min-height: 620px;
    }

    .health-hero .reg-hero-content {
        padding: 90px 0 60px;
    }

    .health-hero h1 {
        font-size: clamp(39px, 10vw, 53px);
        letter-spacing: -2px;
    }

    .health-hero h1 em {
        display: inline;
    }

    .health-hero .reg-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(23, 35, 92, .68),
                rgba(12, 20, 55, .96));
    }


    /* Hero Buttons */

    .health-hero .reg-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .health-hero .reg-hero-actions .btn,
    .health-hero .reg-hero-link {
        width: 100%;
        text-align: center;
    }


    /* Benefits */

    .health-why-license .reg-benefit-grid {
        grid-template-columns: 1fr;
    }


    /* Challenges */

    .health-challenges .reg-process-grid {
        grid-template-columns: 1fr;
    }

    .health-challenges .reg-process-card {
        min-height: auto;
    }


    /* Support */

    .health-support-grid {
        grid-template-columns: 1fr;
    }

    .health-support-featured {
        grid-column: auto;
    }

    .health-support-card {
        min-height: auto;
    }


    /* Stats */

    .health-opportunity-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .health-opportunity-stats div {
        padding-bottom: 15px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .health-opportunity-stats div:last-child {
        border-bottom: 0;
    }


    /* Visual */

    .health-opportunities-visual {
        min-height: 330px;
    }

    .health-ring-one {
        width: 260px;
        height: 260px;
    }

    .health-ring-two {
        width: 380px;
        height: 380px;
    }


    /* Why */

    .health-why .reg-why-media {
        height: 360px;
    }

    .health-why .reg-check-list {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .health-cta {
        min-height: 500px;
    }

    .health-cta .reg-cta-content {
        padding: 70px 0;
    }


    /* FAQ */

    .health-faq {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .health-faq .reg-faq-list summary {
        padding: 18px;

        font-size: 13px;
    }

    .health-faq .reg-faq-answer {
        padding:
            0 18px 18px;
    }

}


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

@media (max-width: 480px) {

    .health-hero h1 {
        font-size: 39px;
    }

    .health-snapshot {
        padding: 22px;
    }

    .health-authority-card {
        padding: 23px;
    }

    .health-support-card {
        padding: 23px;
    }

    .health-visual-card {
        width: 210px;
        min-height: 200px;
    }

}

/* =========================================================
   PERSONAL DEVELOPMENT PAGE
========================================================= */

.pd-page {
    overflow: hidden;
}


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

.pd-hero {
    min-height: 570px;
}

.pd-hero .reg-hero-content {
    padding: 130px 0 90px;
}

.pd-hero h1 {
    max-width: 720px;
}

.pd-hero h1 em {
    display: block;
}

.pd-hero .reg-hero-content>p {
    max-width: 600px;
}


/* =========================================================
   INTRO
========================================================= */

.pd-intro {
    padding: 100px 0;
}

.pd-intro .reg-intro-layout {
    grid-template-columns: 1.15fr .75fr;
    gap: 100px;
}

.pd-intro .reg-intro-content h2 {
    max-width: 650px;
}

.pd-intro .reg-intro-content>p {
    max-width: 680px;
}


/* =========================================================
   SNAPSHOT
========================================================= */

.pd-snapshot {
    position: relative;
    box-shadow: 0 25px 70px rgba(23, 35, 92, .10);
}

.pd-snapshot::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -35px;
    top: -35px;
    border-radius: 50%;
    background: rgba(93, 153, 216, .12);
    pointer-events: none;
}


/* =========================================================
   IMPORTANCE SECTION
========================================================= */

.pd-importance {
    position: relative;
    background: var(--bg);
}

.pd-importance-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

.pd-importance-number {
    position: relative;
    padding-top: 8px;
}

.pd-importance-number::after {
    content: "";
    display: block;
    width: 1px;
    height: 180px;
    margin: 20px auto 0;
    background: var(--line);
}

.pd-importance-number span {
    color: var(--accent);
    font-family: Manrope, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.pd-importance-content {
    max-width: 820px;
}

.pd-importance-content .eyebrow {
    margin-bottom: 20px;
}

.pd-importance-content h2 {
    max-width: 720px;
    margin-bottom: 22px;
}

.pd-importance-content>p {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.85;
}

.pd-mini-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.pd-mini-points div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.pd-mini-points i {
    color: var(--accent);
    margin-top: 4px;
}

.pd-mini-points span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
}


/* =========================================================
   FOCUS SECTION
========================================================= */

.pd-focus {
    background: #fff;
}

.pd-focus .reg-section-heading {
    max-width: 780px;
}

.pd-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pd-focus-card {
    position: relative;
    min-height: 390px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(145deg,
            #ffffff,
            #f4f8fc);
    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.pd-focus-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(23, 35, 92, .10);
}

.pd-focus-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(93, 153, 216, .08);
}

.pd-focus-card-dark {
    background:
        linear-gradient(145deg,
            #17235C,
            #263778);
    border-color: transparent;
}

.pd-focus-card-dark h3 {
    color: #fff;
}

.pd-focus-card-dark p {
    color: #C5D1E0;
}

.pd-focus-card-dark ul li {
    color: #D7E2EE;
}

.pd-focus-card-dark .pd-focus-icon {
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .12);
}

.pd-focus-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.pd-focus-card-top>span {
    color: #9EB7CE;
    font-size: 16px;
    font-weight: 800;
}

.pd-focus-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: var(--pale);
    border: 1px solid #D8E7F4;
    border-radius: 12px;
    font-size: 18px;
}

.pd-focus-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.pd-focus-card>p {
    max-width: 450px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.75;
}

.pd-focus-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 20px;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.pd-focus-card-dark ul {
    border-color: rgba(255, 255, 255, .12);
}

.pd-focus-card li {
    position: relative;
    padding-left: 16px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
}

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


/* =========================================================
   PROGRAM
========================================================= */

.pd-program {
    padding: 105px 0;
}

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

.pd-program .reg-benefit-card {
    min-height: 290px;
}

.pd-program-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    overflow: hidden;
}

.pd-program-strip div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 15px 18px;
    border-right: 1px solid var(--line);
}

.pd-program-strip div:last-child {
    border-right: 0;
}

.pd-program-strip i {
    color: var(--accent);
}

.pd-program-strip span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   BENEFITS
========================================================= */

.pd-benefits {
    background: #fff;
}

.pd-benefits-header {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.pd-benefits-header .eyebrow {
    margin-bottom: 20px;
}

.pd-benefits-header h2 {
    max-width: 650px;
}

.pd-benefits-header>p {
    max-width: 430px;
    font-size: 14px;
    line-height: 1.85;
}

.pd-benefits-list {
    border-top: 1px solid var(--line);
}

.pd-benefit-row {
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: center;
    gap: 20px;
    min-height: 90px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    transition:
        padding .3s var(--ease),
        background .3s var(--ease);
}

.pd-benefit-row:hover {
    padding-left: 15px;
    padding-right: 15px;
    background: var(--bg);
}

.pd-benefit-row>span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pd-benefit-row h3 {
    font-size: 19px;
}

.pd-benefit-row i {
    color: #A4B5C8;
    font-size: 12px;
    transition: .3s;
}

.pd-benefit-row:hover i {
    color: var(--blue);
    transform: translate(2px, -2px);
}


/* =========================================================
   WHY NUCLEOUS
========================================================= */

.pd-why {
    padding: 110px 0;
}

.pd-why .reg-why-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
}

.pd-why .reg-why-media {
    height: 550px;
}

.pd-why .reg-why-content h2 {
    max-width: 650px;
}


/* =========================================================
   CTA
========================================================= */

.pd-cta {
    min-height: 480px;
}

.pd-cta .reg-cta-content {
    padding: 90px 0;
}

.pd-cta .reg-cta-content h2 {
    max-width: 680px;
}

.pd-cta .reg-cta-content h2 em {
    display: block;
    color: #9BC9EC;
}


/* =========================================================
   FAQ
========================================================= */

.pd-faq {
    padding: 105px 0;
}

.pd-faq .reg-faq-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 90px;
}

.pd-faq .reg-faq-intro {
    top: 100px;
}

.pd-faq .reg-faq-intro h2 {
    max-width: 430px;
}

.pd-faq .reg-faq-intro>p {
    margin-bottom: 25px;
}

.pd-faq .reg-faq-list summary {
    min-height: 62px;
}

.pd-faq .reg-faq-answer {
    padding-bottom: 22px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .pd-intro .reg-intro-layout,
    .pd-why .reg-why-layout {
        gap: 55px;
    }

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

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

    .pd-program-strip div:nth-child(2) {
        border-right: 0;
    }

    .pd-program-strip div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .pd-benefits-header {
        gap: 45px;
    }

}


@media (max-width: 800px) {

    .pd-hero {
        min-height: 620px;
    }

    .pd-hero .reg-hero-content {
        padding: 110px 0 70px;
    }

    .pd-intro {
        padding: 75px 0;
    }

    .pd-intro .reg-intro-layout,
    .pd-why .reg-why-layout,
    .pd-benefits-header,
    .pd-faq .reg-faq-layout {
        grid-template-columns: 1fr;
    }

    .pd-intro .reg-intro-layout {
        gap: 45px;
    }

    .pd-importance-layout {
        grid-template-columns: 60px 1fr;
        gap: 25px;
    }

    .pd-mini-points {
        grid-template-columns: 1fr;
    }

    .pd-focus-grid {
        grid-template-columns: 1fr;
    }

    .pd-focus-card {
        min-height: auto;
    }

    .pd-program {
        padding: 80px 0;
    }

    .pd-program-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-benefits-header {
        gap: 25px;
        margin-bottom: 35px;
    }

    .pd-why {
        padding: 80px 0;
    }

    .pd-why .reg-why-media {
        height: 430px;
    }

    .pd-faq {
        padding: 80px 0;
    }

    .pd-faq .reg-faq-intro {
        position: static;
    }

}


@media (max-width: 600px) {

    .pd-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .pd-hero .reg-hero-content>p {
        font-size: 13px;
    }

    .reg-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .reg-hero-actions .btn,
    .reg-hero-actions .reg-hero-link {
        width: fit-content;
    }

    .pd-importance-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pd-importance-number::after {
        display: none;
    }

    .pd-focus-card {
        padding: 25px;
    }

    .pd-focus-card ul {
        grid-template-columns: 1fr;
    }

    .pd-program-grid {
        grid-template-columns: 1fr;
    }

    .pd-program-strip {
        grid-template-columns: 1fr;
    }

    .pd-program-strip div,
    .pd-program-strip div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .pd-program-strip div:last-child {
        border-bottom: 0;
    }

    .pd-benefit-row {
        grid-template-columns: 45px 1fr 25px;
        gap: 10px;
    }

    .pd-benefit-row h3 {
        font-size: 15px;
    }

    .pd-why .reg-why-media {
        height: 360px;
    }

    .pd-cta {
        min-height: 550px;
    }

    .pd-cta .reg-cta-content {
        padding: 70px 0;
    }

    .pd-faq .reg-faq-list summary {
        padding: 16px;
        font-size: 13px;
    }

}

/* =========================================================
   MANAGEMENT WORKSHOP PAGE
========================================================= */

.mw-page {
    overflow: hidden;
}


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

.mw-hero {
    min-height: 560px;
}

.mw-hero .reg-hero-content {
    padding: 125px 0 85px;
}

.mw-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
}

.mw-hero h1 em {
    display: block;
}

.mw-hero .reg-hero-content>p {
    max-width: 610px;
}


/* =========================================================
   INTRO
========================================================= */

.mw-intro {
    padding: 95px 0;
}

.mw-intro .reg-intro-layout {
    grid-template-columns: 1.15fr .75fr;
    gap: 90px;
}

.mw-intro .reg-intro-content h2 {
    max-width: 720px;
}

.mw-intro .reg-intro-content>p {
    max-width: 700px;
}


/* =========================================================
   SNAPSHOT
========================================================= */

.mw-snapshot {
    position: relative;
    overflow: hidden;
}

.mw-snapshot::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: rgba(93, 153, 216, .12);
}


/* =========================================================
   OVERVIEW STRIP
========================================================= */

.mw-overview {
    position: relative;
    background: var(--blue);
}

.mw-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.mw-overview-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-height: 150px;
    padding: 32px 35px;
    border-right: 1px solid rgba(255, 255, 255, .10);
}

.mw-overview-item:first-child {
    padding-left: 0;
}

.mw-overview-item:last-child {
    border-right: 0;
}

.mw-overview-item>span {
    color: #83B4DF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mw-overview-item strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 18px;
}

.mw-overview-item p {
    max-width: 250px;
    color: #AEBED0;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   WORKSHOPS
========================================================= */

.mw-workshops {
    padding: 105px 0;
    background: var(--bg);
}

.mw-heading {
    max-width: 760px;
}

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

.mw-workshop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 475px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.mw-workshop-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -95px;
    top: -95px;
    border-radius: 50%;
    background: var(--pale);
    pointer-events: none;
}

.mw-workshop-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(23, 35, 92, .10);
}

.mw-workshop-card-featured {
    background: linear-gradient(145deg,
            var(--blue),
            var(--blue2));
    border-color: transparent;
}

.mw-workshop-card-featured::before {
    background: rgba(255, 255, 255, .05);
}

.mw-workshop-card-featured h3 {
    color: #fff;
}


.mw-workshop-card-featured h3 em {
    color: #9BC9EC;
}


.mw-workshop-card-featured ul {
    border-color: rgba(255, 255, 255, .12);
}


.mw-workshop-card-featured .mw-workshop-icon {
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .12);
}

.mw-workshop-card-featured .mw-workshop-top>span {
    color: #91BCE0;
}

.mw-workshop-card-featured .mw-workshop-footer {
    border-color: rgba(255, 255, 255, .12);
}

.mw-workshop-card-featured .mw-workshop-footer span {
    color: #B9C9D9;
}

.mw-workshop-card-featured .mw-workshop-footer i {
    color: #9BC9EC;
}

.mw-workshop-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mw-workshop-top>span {
    color: #9EB7CE;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mw-workshop-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--blue);
    background: var(--pale);
    border: 1px solid #D8E7F4;
    font-size: 18px;
}

.mw-workshop-card h3 {
    position: relative;
    z-index: 2;
    max-width: 330px;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 13px;
}

.mw-workshop-card h3 em {
    display: block;
}

.mw-workshop-card>p {
    position: relative;
    z-index: 2;
    min-height: 70px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.75;
}

.mw-workshop-card-featured>p {
    color: #fff;
}

.mw-workshop-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 20px 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.mw-workshop-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
}

.mw-workshop-card-featured li {
    color: #D7E1EC;
}

.mw-workshop-card li i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent);
    font-size: 9px;
}

.mw-workshop-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid var(--line);
}

.mw-workshop-footer span {
    color: #70839B;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
}

.mw-workshop-footer i {
    color: var(--blue);
    font-size: 11px;
    transition: .3s;
}

.mw-workshop-card:hover .mw-workshop-footer i {
    transform: translate(3px, -3px);
}


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

.mw-impact {
    padding: 105px 0;
    background: #fff;
}

.mw-impact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.mw-impact-content {
    position: sticky;
    top: 100px;
}

.mw-impact-content .eyebrow {
    margin-bottom: 20px;
}

.mw-impact-content h2 {
    max-width: 600px;
    margin-bottom: 20px;
}

.mw-impact-content>p {
    max-width: 520px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.85;
}

.mw-impact-list {
    border-top: 1px solid var(--line);
}

.mw-impact-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.mw-impact-row>span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.mw-impact-row strong {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-family: Manrope, sans-serif;
    font-size: 18px;
}

.mw-impact-row p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   NEXT STEP
========================================================= */

.mw-next-step {
    position: relative;
    padding: 80px 0;
    background: var(--bg);
}

.mw-next-step-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 55px 65px;
    border-radius: 18px;
    background:
        linear-gradient(135deg,
            #17235C,
            #263778);
    box-shadow: 0 25px 70px rgba(23, 35, 92, .14);
}

.mw-next-step-inner>div {
    max-width: 750px;
}

.mw-next-number {
    display: block;
    margin-bottom: 17px;
    color: #91BDE4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.mw-next-step h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    margin-bottom: 17px;
}

.mw-next-step h2 em {
    display: block;
    color: #9BC9EC;
}

.mw-next-step p {
    max-width: 620px;
    color: #C4D2E1;
    font-size: 13px;
    line-height: 1.8;
}

.mw-next-step .btn {
    flex-shrink: 0;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.mw-why {
    padding: 110px 0;
}

.mw-why .reg-why-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.mw-why .reg-why-media {
    height: 520px;
}


/* =========================================================
   CTA
========================================================= */

.mw-cta {
    min-height: 460px;
}

.mw-cta .reg-cta-content {
    padding: 90px 0;
}

.mw-cta .reg-cta-content h2 {
    max-width: 700px;
}

.mw-cta .reg-cta-content h2 em {
    display: block;
    color: #9BC9EC;
}


/* =========================================================
   FAQ
========================================================= */

.mw-faq {
    padding: 105px 0;
    background: var(--bg);
}

.mw-faq .reg-faq-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 90px;
}

.mw-faq .reg-faq-intro {
    top: 100px;
}

.mw-faq .reg-faq-intro h2 {
    max-width: 430px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .mw-intro .reg-intro-layout {
        gap: 55px;
    }

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

    .mw-workshop-card:last-child {
        grid-column: 1 / -1;
    }

    .mw-impact-layout {
        gap: 60px;
    }

    .mw-next-step-inner {
        padding: 45px;
    }

}


/* =========================================================
   RESPONSIVE — 800px
========================================================= */

@media (max-width: 800px) {

    .mw-hero {
        min-height: 600px;
    }

    .mw-hero .reg-hero-content {
        padding: 110px 0 70px;
    }

    .mw-intro {
        padding: 75px 0;
    }

    .mw-intro .reg-intro-layout,
    .mw-impact-layout,
    .mw-faq .reg-faq-layout {
        grid-template-columns: 1fr;
    }

    .mw-intro .reg-intro-layout {
        gap: 45px;
    }

    .mw-overview-grid {
        grid-template-columns: 1fr;
    }

    .mw-overview-item,
    .mw-overview-item:first-child {
        min-height: auto;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .mw-overview-item:last-child {
        border-bottom: 0;
    }

    .mw-workshops {
        padding: 80px 0;
    }

    .mw-impact {
        padding: 80px 0;
    }

    .mw-impact-content {
        position: static;
    }

    .mw-next-step-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .mw-why {
        padding: 80px 0;
    }

    .mw-why .reg-why-media {
        height: 430px;
    }

    .mw-faq {
        padding: 80px 0;
    }

    .mw-faq .reg-faq-intro {
        position: static;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .mw-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .mw-hero .reg-hero-content>p {
        font-size: 13px;
    }

    .mw-hero .reg-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .mw-workshop-grid {
        grid-template-columns: 1fr;
    }

    .mw-workshop-card:last-child {
        grid-column: auto;
    }

    .mw-workshop-card {
        min-height: auto;
        padding: 25px;
    }

    .mw-workshop-card>p {
        min-height: auto;
    }

    .mw-impact-row {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .mw-next-step {
        padding: 55px 0;
    }

    .mw-next-step-inner {
        padding: 35px 25px;
        border-radius: 14px;
    }

    .mw-next-step h2 {
        font-size: 34px;
    }

    .mw-why .reg-why-media {
        height: 350px;
    }

    .mw-cta {
        min-height: 540px;
    }

    .mw-cta .reg-cta-content {
        padding: 70px 0;
    }

}

/* =========================================================
   PROJECT BASIS EXECUTIVE SEARCH
========================================================= */

.pes-page {
    overflow: hidden;
}


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

.pes-hero {
    min-height: 570px;
}

.pes-hero .reg-hero-content {
    padding: 125px 0 85px;
}

.pes-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
}

.pes-hero h1 em {
    display: block;
}

.pes-hero .reg-hero-content>p {
    max-width: 620px;
}


/* =========================================================
   INTRO
========================================================= */

.pes-intro {
    padding: 100px 0;
}

.pes-intro .reg-intro-layout {
    grid-template-columns: 1.15fr .75fr;
    gap: 90px;
}

.pes-intro .reg-intro-content h2 {
    max-width: 720px;
}

.pes-intro .reg-intro-content>p {
    max-width: 700px;
}


/* =========================================================
   SNAPSHOT
========================================================= */

.pes-snapshot {
    position: relative;
    overflow: hidden;
}

.pes-snapshot::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(93, 153, 216, .12);
    pointer-events: none;
}


/* =========================================================
   COMPARISON
========================================================= */

.pes-comparison {
    padding: 100px 0;
    background: var(--bg);
}

.pes-heading {
    max-width: 760px;
}

.pes-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pes-comparison-card {
    position: relative;
    min-height: 350px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.pes-comparison-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(23, 35, 92, .10);
}

.pes-comparison-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: var(--pale);
}

.pes-comparison-featured {
    background: linear-gradient(145deg,
            var(--blue),
            var(--blue2));
    border-color: transparent;
}

.pes-comparison-featured h3 {
    color: #fff;
}

.pes-comparison-featured h3 em {
    color: #9BC9EC;
}

.pes-comparison-featured>p {
    color: #C8D5E3;
}

.pes-comparison-featured::after {
    background: rgba(255, 255, 255, .05);
}

.pes-comparison-featured .pes-comparison-icon {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
}

.pes-comparison-featured .pes-comparison-top>span {
    color: #91BCE0;
}

.pes-comparison-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.pes-comparison-top>span {
    color: #9EB7CE;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pes-comparison-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: var(--pale);
    border: 1px solid #D8E7F4;
    border-radius: 12px;
    font-size: 18px;
}

.pes-comparison-card h3 {
    position: relative;
    z-index: 2;
    font-size: 25px;
    margin-bottom: 13px;
}

.pes-comparison-card h3 em {
    display: block;
}

.pes-comparison-card>p {
    position: relative;
    z-index: 2;
    max-width: 500px;
    min-height: 75px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

.pes-comparison-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.pes-comparison-featured .pes-comparison-note {
    border-color: rgba(255, 255, 255, .12);
}

.pes-comparison-note i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent);
    font-size: 12px;
}

.pes-comparison-note span {
    color: #71849B;
    font-size: 11px;
    line-height: 1.65;
}

.pes-comparison-featured .pes-comparison-note span {
    color: #B8C8D8;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.pes-industries {
    padding: 105px 0;
    background: #fff;
}

.pes-industries-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    align-items: center;
}

.pes-industries-content .eyebrow {
    margin-bottom: 20px;
}

.pes-industries-content h2 {
    max-width: 500px;
    margin-bottom: 20px;
}

.pes-industries-content>p {
    max-width: 470px;
    margin-bottom: 28px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.85;
}

.pes-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pes-industry-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 85px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(145deg,
            #fff,
            #F5F9FD);
    transition:
        transform .3s var(--ease),
        border-color .3s,
        box-shadow .3s;
}

.pes-industry-card:hover {
    transform: translateY(-4px);
    border-color: #C6D8E8;
    box-shadow: 0 15px 35px rgba(23, 35, 92, .07);
}

.pes-industry-card i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    background: var(--pale);
    border-radius: 9px;
    font-size: 14px;
}

.pes-industry-card span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.pes-process {
    padding: 105px 0;
}

.pes-process-grid {
    grid-template-columns: repeat(5, 1fr);
}

.pes-process-grid .reg-process-card {
    min-height: 350px;
}

.pes-process-note {
    max-width: 760px;
}


/* =========================================================
   DREAM TEAM
========================================================= */

.pes-dream-team {
    padding: 100px 0;
    background: var(--bg);
}

.pes-dream-layout {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 100px;
    align-items: center;
}

.pes-dream-content .eyebrow {
    margin-bottom: 20px;
}

.pes-dream-content h2 {
    max-width: 600px;
    margin-bottom: 20px;
}

.pes-dream-content>p {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.85;
}

.pes-dream-list {
    border-top: 1px solid var(--line);
}

.pes-dream-list>div {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 65px;
    border-bottom: 1px solid var(--line);
}

.pes-dream-list i {
    color: var(--accent);
    font-size: 12px;
}

.pes-dream-list span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.pes-why {
    padding: 110px 0;
}

.pes-why .reg-why-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.pes-why .reg-why-media {
    height: 530px;
}


/* =========================================================
   CTA
========================================================= */

.pes-cta {
    min-height: 470px;
}

.pes-cta .reg-cta-content {
    padding: 90px 0;
}

.pes-cta .reg-cta-content h2 {
    max-width: 700px;
}

.pes-cta .reg-cta-content h2 em {
    display: block;
    color: #9BC9EC;
}


/* =========================================================
   FAQ
========================================================= */

.pes-faq {
    padding: 105px 0;
}

.pes-faq .reg-faq-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 90px;
}

.pes-faq .reg-faq-intro {
    top: 100px;
}

.pes-faq .reg-faq-intro h2 {
    max-width: 430px;
}

.pes-faq .reg-faq-list {
    gap: 10px;
}


/* =========================================================
   RESPONSIVE — 1100PX
========================================================= */

@media (max-width: 1100px) {

    .pes-intro .reg-intro-layout {
        gap: 55px;
    }

    .pes-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pes-process-grid .reg-process-card:nth-child(4),
    .pes-process-grid .reg-process-card:nth-child(5) {
        grid-column: span 1;
    }

    .pes-industries-layout {
        gap: 55px;
    }

    .pes-dream-layout {
        gap: 60px;
    }

}


/* =========================================================
   RESPONSIVE — 800PX
========================================================= */

@media (max-width: 800px) {

    .pes-hero {
        min-height: 610px;
    }

    .pes-hero .reg-hero-content {
        padding: 110px 0 70px;
    }

    .pes-intro {
        padding: 75px 0;
    }

    .pes-intro .reg-intro-layout,
    .pes-industries-layout,
    .pes-dream-layout,
    .pes-why .reg-why-layout,
    .pes-faq .reg-faq-layout {
        grid-template-columns: 1fr;
    }

    .pes-intro .reg-intro-layout {
        gap: 45px;
    }

    .pes-comparison {
        padding: 80px 0;
    }

    .pes-industries {
        padding: 80px 0;
    }

    .pes-dream-team {
        padding: 80px 0;
    }

    .pes-dream-layout {
        gap: 45px;
    }

    .pes-process {
        padding: 80px 0;
    }

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

    .pes-process-grid .reg-process-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .pes-why {
        padding: 80px 0;
    }

    .pes-why .reg-why-media {
        height: 430px;
    }

    .pes-faq {
        padding: 80px 0;
    }

    .pes-faq .reg-faq-intro {
        position: static;
    }

}


/* =========================================================
   RESPONSIVE — 600PX
========================================================= */

@media (max-width: 600px) {

    .pes-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .pes-hero .reg-hero-content>p {
        font-size: 13px;
    }

    .pes-hero .reg-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .pes-comparison-grid {
        grid-template-columns: 1fr;
    }

    .pes-comparison-card {
        min-height: auto;
        padding: 25px;
    }

    .pes-comparison-card>p {
        min-height: auto;
    }

    .pes-industry-grid {
        grid-template-columns: 1fr;
    }

    .pes-process-grid {
        grid-template-columns: 1fr;
    }

    .pes-process-grid .reg-process-card:nth-child(5) {
        grid-column: auto;
    }

    .pes-process-grid .reg-process-card {
        min-height: auto;
    }

    .pes-dream-list>div {
        min-height: 60px;
    }

    .pes-why .reg-why-media {
        height: 350px;
    }

    .pes-cta {
        min-height: 540px;
    }

    .pes-cta .reg-cta-content {
        padding: 70px 0;
    }

    .pes-faq .reg-faq-list summary {
        padding: 16px;
        font-size: 13px;
    }

}

/* =========================================================
   MANAGEMENT CONSULTANCY PAGE
========================================================= */

.mc-page {
    overflow: hidden;
}


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

.mc-hero {
    min-height: 570px;
}

.mc-hero .reg-hero-content {
    padding: 125px 0 85px;
}

.mc-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
}

.mc-hero h1 em {
    display: block;
}

.mc-hero .reg-hero-content>p {
    max-width: 620px;
}


/* =========================================================
   INTRO
========================================================= */

.mc-intro {
    padding: 100px 0;
}

.mc-intro .reg-intro-layout {
    grid-template-columns: 1.15fr .75fr;
    gap: 90px;
}

.mc-intro .reg-intro-content h2 {
    max-width: 720px;
}

.mc-intro .reg-intro-content>p {
    max-width: 700px;
}


/* =========================================================
   SNAPSHOT
========================================================= */

.mc-snapshot {
    position: relative;
    overflow: hidden;
}

.mc-snapshot::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(93, 153, 216, .12);
    pointer-events: none;
}


/* =========================================================
   DEFINITION
========================================================= */

.mc-definition {
    padding: 75px 0;
    background: var(--bg);
}

.mc-definition-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px;
    align-items: start;
}

.mc-definition-number {
    padding-top: 5px;
}

.mc-definition-number span {
    color: var(--accent);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mc-definition-number::after {
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    margin: 20px auto 0;
    background: var(--line);
}

.mc-definition-content {
    max-width: 850px;
}

.mc-definition-content .eyebrow {
    margin-bottom: 20px;
}

.mc-definition-content h2 {
    max-width: 700px;
    margin-bottom: 23px;
}

.mc-definition-content>p {
    max-width: 760px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   CORE FOCUS
========================================================= */

.mc-focus {
    padding: 105px 0;
    background: #fff;
}

.mc-focus .reg-section-heading {
    max-width: 760px;
}

.mc-focus-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.mc-focus-card {
    position: relative;
    min-height: 355px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(145deg,
            #ffffff,
            #f4f8fc);
    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.mc-focus-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(23, 35, 92, .10);
}

.mc-focus-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: var(--pale);
    pointer-events: none;
}

.mc-focus-card-large {
    min-height: 355px;
}

.mc-focus-card-dark {
    background: linear-gradient(145deg,
            var(--blue),
            var(--blue2));
    border-color: transparent;
}

.mc-focus-card-dark::after {
    background: rgba(255, 255, 255, .05);
}

.mc-focus-card-dark h3 {
    color: #fff;
}

.mc-focus-card-dark h3 em {
    color: #9BC9EC;
}


.mc-focus-card-dark .mc-focus-card-top>span {
    color: #91BCE0;
}

.mc-focus-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}

.mc-focus-card-top>span {
    color: #9EB7CE;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mc-focus-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: var(--pale);
    border: 1px solid #D8E7F4;
    border-radius: 12px;
    font-size: 18px;
}

.mc-focus-card-dark .mc-focus-icon {
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .12);
}

.mc-focus-card h3 {
    position: relative;
    z-index: 2;
    max-width: 400px;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 13px;
}

.mc-focus-card h3 em {
    display: block;
}

.mc-focus-card>p {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

.mc-focus-card-dark>p {
    color: #C4D2E1;
}

.mc-focus-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 18px 0 0 16px;
    border-top: 1px solid var(--line);
}

.mc-focus-card li {
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
}

.mc-focus-bottom {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.mc-focus-bottom span {
    color: #73869C;
    font-size: 10px;
    font-weight: 800;
}

.mc-focus-bottom i {
    color: var(--accent);
    font-size: 11px;
}

.mc-dark-points {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.mc-dark-points span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #D5E0EB;
    font-size: 11px;
    line-height: 1.5;
}

.mc-dark-points i {
    margin-top: 3px;
    color: #8CB9DE;
    font-size: 8px;
}


/* =========================================================
   FRAMEWORK
========================================================= */

.mc-framework {
    padding: 105px 0;
    background: var(--bg);
}

.mc-framework-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.mc-framework-heading {
    position: sticky;
    top: 100px;
}

.mc-framework-heading .eyebrow {
    margin-bottom: 20px;
}

.mc-framework-heading h2 {
    max-width: 570px;
    margin-bottom: 20px;
}

.mc-framework-heading>p {
    max-width: 480px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.85;
}

.mc-framework-list {
    border-top: 1px solid var(--line);
}

.mc-framework-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: padding .3s var(--ease);
}

.mc-framework-item:hover {
    padding-left: 12px;
}

.mc-framework-item>span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.mc-framework-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-family: Manrope, sans-serif;
    font-size: 19px;
}

.mc-framework-item p {
    max-width: 550px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.mc-bottom-line {
    padding: 70px 0;
    background: #fff;
}

.mc-bottom-line-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.mc-bottom-number {
    color: var(--accent);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mc-bottom-line-inner .eyebrow {
    margin-bottom: 20px;
}

.mc-bottom-line-inner h2 {
    max-width: 650px;
    margin-bottom: 20px;
}

.mc-bottom-line-inner p {
    max-width: 750px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   WHY NUCLEOUS
========================================================= */

.mc-why {
    padding: 110px 0;
}

.mc-why .reg-why-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.mc-why .reg-why-media {
    height: 530px;
}


/* =========================================================
   CTA
========================================================= */

.mc-cta {
    min-height: 470px;
}

.mc-cta .reg-cta-content {
    padding: 90px 0;
}

.mc-cta .reg-cta-content h2 {
    max-width: 700px;
}

.mc-cta .reg-cta-content h2 em {
    display: block;
    color: #9BC9EC;
}


/* =========================================================
   FAQ
========================================================= */

.mc-faq {
    padding: 105px 0;
}

.mc-faq .reg-faq-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 90px;
}

.mc-faq .reg-faq-intro {
    top: 100px;
}

.mc-faq .reg-faq-intro h2 {
    max-width: 450px;
}

.mc-faq .reg-faq-list {
    gap: 10px;
}


/* =========================================================
   RESPONSIVE — 1100PX
========================================================= */

@media (max-width: 1100px) {

    .mc-intro .reg-intro-layout {
        gap: 55px;
    }

    .mc-focus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mc-focus-card-large {
        grid-column: 1 / -1;
    }

    .mc-framework-layout {
        gap: 60px;
    }

}


/* =========================================================
   RESPONSIVE — 800PX
========================================================= */

@media (max-width: 800px) {

    .mc-hero {
        min-height: 610px;
    }

    .mc-hero .reg-hero-content {
        padding: 110px 0 70px;
    }

    .mc-intro {
        padding: 75px 0;
    }

    .mc-intro .reg-intro-layout,
    .mc-framework-layout,
    .mc-why .reg-why-layout,
    .mc-faq .reg-faq-layout {
        grid-template-columns: 1fr;
    }

    .mc-intro .reg-intro-layout {
        gap: 45px;
    }

    .mc-definition {
        padding: 75px 0;
    }

    .mc-definition-layout {
        grid-template-columns: 60px 1fr;
        gap: 25px;
    }

    .mc-focus {
        padding: 80px 0;
    }

    .mc-focus-grid {
        grid-template-columns: 1fr;
    }

    .mc-focus-card-large {
        grid-column: auto;
    }

    .mc-framework {
        padding: 80px 0;
    }

    .mc-framework-heading {
        position: static;
    }

    .mc-bottom-line {
        padding: 80px 0;
    }

    .mc-why {
        padding: 80px 0;
    }

    .mc-why .reg-why-media {
        height: 430px;
    }

    .mc-faq {
        padding: 80px 0;
    }

    .mc-faq .reg-faq-intro {
        position: static;
    }

}


/* =========================================================
   RESPONSIVE — 600PX
========================================================= */

@media (max-width: 600px) {

    .mc-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .mc-hero .reg-hero-content>p {
        font-size: 13px;
    }

    .mc-hero .reg-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .mc-definition-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mc-definition-number::after {
        display: none;
    }

    .mc-focus-card {
        min-height: auto;
        padding: 25px;
    }

    .mc-focus-card-large {
        min-height: auto;
    }

    .mc-focus-bottom {
        position: static;
        margin-top: 25px;
    }

    .mc-dark-points {
        grid-template-columns: 1fr;
    }

    .mc-framework-item {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .mc-bottom-line-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mc-why .reg-why-media {
        height: 350px;
    }

    .mc-cta {
        min-height: 540px;
    }

    .mc-cta .reg-cta-content {
        padding: 70px 0;
    }

    .mc-faq .reg-faq-list summary {
        padding: 16px;
        font-size: 13px;
    }

}
/* =========================================================
   INSIGHTS PAGE
========================================================= */

.ins-page {
    overflow: hidden;
}


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

.ins-hero {
    min-height: 430px;
}

.ins-hero .reg-hero-content {
    padding: 105px 0 60px;
}

.ins-hero h1 {
    max-width: 760px;
    margin-bottom: 20px;
}

.ins-hero h1 em {
    display: block;
}

.ins-hero .reg-hero-content>p {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   INSIGHTS SECTION
========================================================= */

.ins-insights {
    padding: 100px 0 110px;
    background: #fff;
}


/* Heading */

.ins-section-heading {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 45px;
}

.ins-section-heading .eyebrow {
    margin-bottom: 18px;
}

.ins-section-heading h2 {
    max-width: 600px;
}

.ins-section-heading>p {
    max-width: 470px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   INSIGHTS GRID
========================================================= */

.ins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   INSIGHT CARD
========================================================= */

.ins-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 350px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 16px;

    background: #fff;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s ease;
}


/* subtle background decoration */

.ins-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -95px;
    top: -95px;

    border-radius: 50%;

    background: var(--pale);

    transition:
        transform .45s var(--ease),
        background .45s ease;
}

.ins-card:hover {
    transform: translateY(-6px);

    border-color: #C6D7E8;

    box-shadow:
        0 22px 55px rgba(23, 35, 92, .09);
}

.ins-card:hover::before {
    transform: scale(1.25);
    background: #E3F0FB;
}


/* =========================================================
   CARD TOP
========================================================= */

.ins-card-top {
    position: relative;
    z-index: 2;

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

    gap: 15px;

    margin-bottom: 45px;
}


/* Number */

.ins-card-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--pale);

    color: var(--blue);

    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 800;
}


/* Category */

.ins-card-category {
    color: #4E7DA9;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-align: right;
}


/* =========================================================
   CARD BODY
========================================================= */

.ins-card-body {
    position: relative;
    z-index: 2;

    flex: 1;
}

.ins-card h3 {
    max-width: 400px;

    margin-bottom: 16px;

    color: var(--blue);

    font-size: 23px;
    line-height: 1.3;

    letter-spacing: -.4px;
}

.ins-card-body>p {
    max-width: 400px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   READ LINK
========================================================= */

.ins-read-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    width: 100%;

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

    border-top: 1px solid var(--line);

    color: #2869A6;

    font-size: 12px;
    font-weight: 800;

    transition: color .25s ease;
}

.ins-read-link i {
    transition:
        transform .3s var(--ease);
}

.ins-read-link:hover {
    color: var(--blue);
}

.ins-read-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CTA
========================================================= */

.ins-cta {
    padding: 65px 0;

    background: var(--bg);
}

.ins-cta-inner {
    position: relative;

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

    gap: 50px;

    padding: 45px 55px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #EFF6FC 0%,
            #FFFFFF 70%);
}

.ins-cta-inner::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(93, 153, 216, .10);

    pointer-events: none;
}

.ins-cta-content {
    position: relative;
    z-index: 2;
}

.ins-cta-content .eyebrow {
    margin-bottom: 15px;
}

.ins-cta-content h2 {
    max-width: 650px;
    margin-bottom: 14px;
}

.ins-cta-content h2 em {
    display: block;
}

.ins-cta-content p {
    max-width: 620px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}

.ins-cta-inner .btn {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE — 1000PX
========================================================= */

@media (max-width: 1000px) {

    .ins-section-heading {
        grid-template-columns: 1fr .8fr;
        gap: 40px;
    }

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

    .ins-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        margin: 0 auto;
    }

}


/* =========================================================
   RESPONSIVE — 800PX
========================================================= */

@media (max-width: 800px) {

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

    .ins-hero .reg-hero-content {
        padding: 105px 0 70px;
    }

    .ins-insights {
        padding: 75px 0 85px;
    }

    .ins-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .ins-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .ins-cta {
        padding: 55px 0;
    }

    .ins-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 40px;
    }

}


/* =========================================================
   RESPONSIVE — 600PX
========================================================= */

@media (max-width: 600px) {

    .ins-hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .ins-hero .reg-hero-content>p {
        font-size: 13px;
    }

    .ins-card {
        min-height: 320px;
        padding: 24px;
    }

    .ins-card-top {
        margin-bottom: 35px;
    }

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

    .ins-cta-inner {
        padding: 30px 25px;
    }

}

/* =========================================================
   SINGLE INSIGHT PAGE
========================================================= */

.ins-single-page {
    overflow: hidden;
}


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

.ins-single-hero {
    position: relative;

    padding: 110px 0 40px;

    background:
        linear-gradient(135deg,
            #F2F7FC 0%,
            #FFFFFF 70%);

    border-bottom: 1px solid var(--line);
}


/* Decorative background */

.ins-single-hero::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -170px;
    top: -210px;

    border-radius: 50%;

    background: rgba(93, 153, 216, .08);

    pointer-events: none;
}


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

.ins-single-hero-content {
    position: relative;
    z-index: 2;

    max-width: 950px;
}

.ins-single-hero-content .eyebrow {
    margin-bottom: 22px;
}

.ins-single-hero-content h1 {
    max-width: 900px;

    margin-bottom: 25px;

    color: var(--blue);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;

    letter-spacing: -2.5px;
}

.ins-single-intro {
    max-width: 720px;

    color: var(--text);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   META
========================================================= */

.ins-single-meta {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 28px;
}

.ins-single-meta span {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
}

.ins-single-meta i {
    color: var(--accent);
}


/* =========================================================
   ARTICLE SECTION
========================================================= */

.ins-single-article {
    padding: 100px 0 110px;
    background: #fff;
}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.ins-single-layout {
    display: grid;

    grid-template-columns: 230px minmax(0, 850px);

    justify-content: start;

    gap: 80px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.ins-single-sidebar {
    position: sticky;
    top: 100px;
}

.ins-single-toc {
    padding-left: 18px;

    border-left: 1px solid var(--line);
}

.ins-single-toc-title {
    display: block;

    margin-bottom: 17px;

    color: var(--blue);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.ins-single-toc a {
    display: block;

    padding: 7px 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.5;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.ins-single-toc a:hover,
.ins-single-toc a.active {
    padding-left: 5px;
    color: var(--blue);
}


/* =========================================================
   SIDEBAR CTA
========================================================= */

.ins-single-sidebar-cta {
    margin-top: 35px;
    padding: 22px;

    border-radius: 12px;

    background: var(--bg);
    border: 1px solid var(--line);
}

.ins-single-sidebar-cta>span {
    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.ins-single-sidebar-cta strong {
    display: block;

    margin-bottom: 16px;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 13px;
    line-height: 1.5;
}

.ins-single-sidebar-cta .text-link {
    font-size: 10px;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.ins-single-content {
    min-width: 0;
}

.ins-single-content-section {
    margin-bottom: 75px;
}

.ins-single-content-section:last-of-type {
    margin-bottom: 0;
}


/* Lead */

.ins-single-lead {
    color: var(--blue) !important;

    font-family: Manrope, sans-serif;

    font-size: 22px !important;
    line-height: 1.7 !important;
}


/* Paragraphs */

.ins-single-content p {
    margin-bottom: 18px;

    color: var(--text);

    font-size: 18px;
    line-height: 1.9;
}


/* Section number */

.ins-single-section-number {
    display: block;

    margin-bottom: 13px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


/* Headings */

.ins-single-content h2 {
    margin-bottom: 20px;

    color: var(--blue);

    font-size: clamp(29px, 3vw, 40px);

    line-height: 1.2;

    letter-spacing: -1.2px;
}

.ins-single-content h2 em {
    color: var(--accent);
}


/* =========================================================
   INFO BOX
========================================================= */

.ins-single-info-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

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

    border: 1px solid var(--line);
    border-radius: 14px;

    background: #F8FBFE;
}

.ins-single-info-icon {
    width: 48px;
    height: 48px;

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

    border-radius: 11px;

    background: var(--pale);

    color: var(--accent);

    font-size: 17px;
}

.ins-single-info-box h3 {
    margin-bottom: 14px;

    font-size: 20px;
}

.ins-single-info-box ul {
    margin: 0;
    padding-left: 17px;
}

.ins-single-info-box li {
    margin-bottom: 8px;

    color: var(--text);

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   CHECK LIST
========================================================= */

.ins-single-check-list {
    display: grid;

    gap: 12px;

    margin-top: 25px;

    padding: 22px 25px;

    border-radius: 13px;

    background: var(--bg);

    border: 1px solid var(--line);
}

.ins-single-check-list div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.ins-single-check-list i {
    margin-top: 4px;

    color: var(--accent);

    font-size: 16px;
}

.ins-single-check-list span {
    color: var(--text);

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   DOCUMENT GRID
========================================================= */

.ins-single-document-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 30px;
}

.ins-single-document-card {
    padding: 24px;

    border: 1px solid var(--line);
    border-radius: 13px;

    background: #fff;

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease);
}

.ins-single-document-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(23, 35, 92, .07);
}

.ins-single-document-card>i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    border-radius: 10px;

    background: var(--pale);

    color: var(--accent);
}

.ins-single-document-card strong {
    display: block;

    margin-bottom: 8px;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 20px;
}

.ins-single-document-card p {
    margin: 0;

    font-size: 16px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.ins-single-highlight {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-top: 28px;
    padding: 25px 27px;

    border-radius: 13px;

    background:
        linear-gradient(135deg,
            #EFF6FC,
            #F9FBFD);

    border: 1px solid #D9E7F3;
}

.ins-single-highlight-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

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

    border-radius: 10px;

    background: #fff;

    color: var(--accent);

    box-shadow: 0 6px 20px rgba(23, 35, 92, .06);
}

.ins-single-highlight strong {
    display: block;

    margin-bottom: 7px;

    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 20px;
}

.ins-single-highlight p {
    margin: 0;

    font-size: 16px !important;
}


/* =========================================================
   NUMBER LIST
========================================================= */

.ins-single-number-list {
    margin-top: 30px;

    border-top: 1px solid var(--line);
}

.ins-single-number-list>div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);
}

.ins-single-number-list span {
    color: var(--accent);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1px;
}

.ins-single-number-list p {
    margin: 0;

    font-size: 16px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   KEY TAKEAWAY
========================================================= */

.ins-single-takeaway {
    margin-top: 90px;
    padding: 42px;

    border-radius: 16px;

    background: var(--blue);

    box-shadow: 0 25px 60px rgba(23, 35, 92, .13);
}

.ins-single-takeaway .eyebrow {
    margin-bottom: 17px;

    color: #DDEBFA;

    background: rgba(255, 255, 255, .08);

    border-color: rgba(255, 255, 255, .16);
}

.ins-single-takeaway h2 {
    max-width: 600px;

    margin-bottom: 17px;

    color: #fff;
}

.ins-single-takeaway h2 em {
    color: #9BC9EC;
}

.ins-single-takeaway p {
    max-width: 720px;

    margin: 0;

    color: #C9D7E6;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   ARTICLE CTA
========================================================= */

.ins-single-article-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 55px;
    padding: 32px;

    border: 1px solid var(--line);
    border-radius: 14px;

    background: #F7FAFD;
}

.ins-single-article-cta>div {
    max-width: 580px;
}

.ins-single-article-cta>div>span {
    display: block;

    margin-bottom: 8px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.ins-single-article-cta h3 {
    margin-bottom: 7px;

    font-size: 20px;
}

.ins-single-article-cta p {
    margin: 0;

    font-size: 16px !important;
    line-height: 1.7 !important;
}

.ins-single-article-cta .btn {
    flex-shrink: 0;
}


/* =========================================================
   RELATED INSIGHTS
========================================================= */

.ins-related {
    padding: 90px 0 105px;

    background: var(--bg);
}

.ins-related-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}

.ins-related-heading .eyebrow {
    margin-bottom: 16px;
}

.ins-related-heading h2 {
    margin: 0;
}

.ins-related-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* Related Card */

.ins-related-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 280px;

    padding: 28px;

    border: 1px solid var(--line);
    border-radius: 15px;

    background: #fff;

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.ins-related-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background: var(--pale);

    transition: transform .4s var(--ease);
}

.ins-related-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(23, 35, 92, .08);
}

.ins-related-card:hover::after {
    transform: scale(1.2);
}

.ins-related-card>span {
    position: relative;
    z-index: 2;

    margin-bottom: 25px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.ins-related-card h3 {
    position: relative;
    z-index: 2;

    max-width: 500px;

    margin: 0;

    color: var(--blue);

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

.ins-related-card>div {
    position: relative;
    z-index: 2;

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

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

    border-top: 1px solid var(--line);

    color: #2869A6;

    font-size: 11px;
    font-weight: 800;
}

.ins-related-card>div i {
    transition: transform .3s var(--ease);
}

.ins-related-card:hover>div i {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE — 1100PX
========================================================= */

@media (max-width: 1100px) {

    .ins-single-layout {
        grid-template-columns: 190px minmax(0, 1fr);

        gap: 55px;
    }

}


/* =========================================================
   RESPONSIVE — 900PX
========================================================= */

@media (max-width: 900px) {

    .ins-single-layout {
        display: block;
    }

    .ins-single-sidebar {
        position: static;

        margin-bottom: 55px;
    }

    .ins-single-toc {
        display: flex;
        align-items: center;

        gap: 15px;

        padding: 0 0 15px;

        overflow-x: auto;

        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .ins-single-toc-title {
        flex-shrink: 0;

        margin: 0 8px 0 0;
    }

    .ins-single-toc a {
        flex-shrink: 0;

        padding: 5px 0;
    }

    .ins-single-toc a:hover,
    .ins-single-toc a.active {
        padding-left: 0;
    }

    .ins-single-sidebar-cta {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE — 700PX
========================================================= */

@media (max-width: 700px) {

    .ins-single-hero {
        padding: 45px 0 65px;
    }

    .ins-single-breadcrumb {
        margin-bottom: 40px;
    }

    .ins-single-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .ins-single-intro {
        font-size: 14px;
    }

    .ins-single-meta {
        gap: 18px;
    }

    .ins-single-article {
        padding: 70px 0 80px;
    }

    .ins-single-content-section {
        margin-bottom: 60px;
    }

    .ins-single-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .ins-single-info-box {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 23px;
    }

    .ins-single-document-grid {
        grid-template-columns: 1fr;
    }

    .ins-single-takeaway {
        margin-top: 65px;
        padding: 30px 25px;
    }

    .ins-single-article-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 27px 23px;
    }

    .ins-related {
        padding: 70px 0 80px;
    }

    .ins-related-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ins-related-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   RESPONSIVE — 500PX
========================================================= */

@media (max-width: 500px) {

    .ins-single-hero-content h1 {
        font-size: 35px;
    }

    .ins-single-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .ins-single-toc {
        gap: 12px;
    }

    .ins-single-toc a {
        font-size: 9px;
    }

    .ins-single-content h2 {
        font-size: 28px;
    }

    .ins-single-highlight {
        flex-direction: column;
    }

    .ins-single-number-list>div {
        grid-template-columns: 35px 1fr;
        gap: 12px;
    }

    .ins-related-card {
        min-height: 250px;
        padding: 24px;
    }

}

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

.career-page {
    overflow: hidden;
}


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

.career-hero {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--blue);
}


/* Hero image */

.career-hero-bg {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.career-hero-bg img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Overlay */

.career-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(10, 18, 48, .88) 0%,
            rgba(17, 31, 73, .70) 42%,
            rgba(17, 31, 73, .25) 100%);
}


/* Hero content */

.career-hero .container {
    position: relative;
    z-index: 2;
}

.career-hero-content {
    max-width: 720px;

    padding: 120px 0 80px;
}

.career-eyebrow {
    margin-bottom: 22px;

    color: #E3EFFB;

    background: rgba(255, 255, 255, .09);

    border-color: rgba(255, 255, 255, .25);

    backdrop-filter: blur(8px);
}

.career-hero h1 {
    max-width: 700px;

    margin-bottom: 23px;

    color: #fff;

    font-size: clamp(48px, 5.5vw, 76px);

    line-height: 1.04;

    letter-spacing: -3px;
}

.career-hero h1 em {
    display: block;

    color: #9CC9ED;
}

.career-hero-content>p {
    max-width: 600px;

    margin-bottom: 30px;

    color: #E2EAF3;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.career-intro {
    padding: 100px 0;

    background: #fff;
}

.career-intro-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 75px;

    align-items: center;
}


/* Intro content */

.career-intro-content .eyebrow {
    margin-bottom: 18px;
}

.career-intro-content h2 {
    max-width: 600px;

    margin-bottom: 25px;
}

.career-intro-content h2 em {
    display: block;
}

.career-intro-content p {
    max-width: 560px;

    margin-bottom: 17px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.85;
}

.career-intro-content p:last-child {
    margin-bottom: 0;
}


/* Intro image */

.career-intro-image {
    position: relative;

    height: 480px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: var(--shadow);
}

.career-intro-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s var(--ease);
}

.career-intro-image:hover img {
    transform: scale(1.03);
}


/* Image badge */

.career-image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    padding: 17px 20px;

    border-radius: 11px;

    background: rgba(255, 255, 255, .94);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    backdrop-filter: blur(8px);
}

.career-image-badge strong {
    color: var(--blue);

    font-family: Manrope, sans-serif;

    font-size: 14px;
}

.career-image-badge span {
    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   VALUES SECTION
========================================================= */

.career-values {
    padding: 95px 0 105px;

    background: var(--bg);
}

.career-values-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.career-values-heading .eyebrow {
    margin-bottom: 17px;
}

.career-values-heading h2 {
    margin-bottom: 15px;
}

.career-values-heading h2 em {
    color: var(--accent);
}

.career-values-heading p {
    max-width: 620px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}


/* Values grid */

.career-values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* Value card */

.career-value-card {
    position: relative;

    min-height: 275px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 15px;

    background: #fff;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s ease;
}

.career-value-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -105px;
    bottom: -105px;

    border-radius: 50%;

    background: var(--pale);

    transition: transform .45s var(--ease);
}

.career-value-card:hover {
    transform: translateY(-6px);

    border-color: #C8D8E8;

    box-shadow:
        0 22px 55px rgba(23, 35, 92, .08);
}

.career-value-card:hover::after {
    transform: scale(1.2);
}


/* Value top */

.career-value-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}

.career-value-number {
    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.career-value-icon {
    display: flex;

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

    width: 44px;
    height: 44px;

    border-radius: 11px;

    background: var(--pale);

    color: var(--accent);

    font-size: 15px;
}


/* Value content */

.career-value-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    font-size: 20px;
}

.career-value-card p {
    position: relative;
    z-index: 2;

    max-width: 350px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   APPLICATION SECTION
========================================================= */

.career-application {
    position: relative;

    padding: 100px 0 110px;

    background: #fff;
}


/* Background decoration */

.career-application::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    top: 100px;

    border-radius: 50%;

    background: rgba(93, 153, 216, .06);

    pointer-events: none;
}


/* Wrapper */

.career-application-wrapper {
    position: relative;
    z-index: 2;

    max-width: 1050px;

    margin: 0 auto;

    padding: 55px;

    border: 1px solid var(--line);

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #F3F8FC 0%,
            #FFFFFF 60%);

    box-shadow:
        0 25px 70px rgba(23, 35, 92, .08);
}


/* Application heading */

.career-application-header {
    max-width: 760px;

    margin-bottom: 40px;
}

.career-application-header .eyebrow {
    margin-bottom: 17px;
}

.career-application-header h2 {
    margin-bottom: 17px;
}

.career-application-header h2 em {
    display: block;
}

.career-application-header>p {
    max-width: 650px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}


/* Email */

.career-email {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 16px;
}

.career-email i {
    color: var(--accent);
}

.career-email a {
    color: var(--blue);

    font-weight: 800;

    transition: color .25s ease;
}

.career-email a:hover {
    color: var(--accent);
}


/* =========================================================
   FORM
========================================================= */

.career-form {
    padding-top: 35px;

    border-top: 1px solid var(--line);
}


/* Form grid */

.career-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* Field */

.career-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.career-field-full {
    margin-top: 20px;
}

.career-field label {
    color: var(--ink);

    font-size: 16px;

    font-weight: 700;
}

.career-field label span {
    color: var(--muted);

    font-size: 9px;

    font-weight: 500;
}


/* Inputs */

.career-field input,
.career-field select,
.career-field textarea {
    width: 100%;

    border: 1px solid transparent;

    border-radius: 9px;

    outline: none;

    background: #fff;

    color: var(--ink);

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.career-field input,
.career-field select {
    height: 49px;

    padding: 0 15px;
}

.career-field textarea {
    min-height: 145px;

    padding: 14px 15px;

    resize: vertical;
}


/* Placeholder */

.career-field input::placeholder,
.career-field textarea::placeholder {
    color: #9AA8B8;
}


/* Select */

.career-field select {
    cursor: pointer;

    appearance: auto;
}


/* Focus */

.career-field input:focus,
.career-field select:focus,
.career-field textarea:focus {
    border-color: #AFC9E0;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(93, 153, 216, .08);
}


/* =========================================================
   FILE UPLOAD
========================================================= */

.career-file {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 49px;

    padding: 6px 10px;

    border: 1px dashed #C8D6E5;

    border-radius: 9px;

    background: #fff;

    transition:
        border-color .25s ease,
        background .25s ease;
}

.career-file:hover {
    border-color: var(--accent);

    background: #FBFDFF;
}

.career-file input {
    height: auto;

    padding: 0;

    border: 0;

    background: transparent;

    box-shadow: none;

    cursor: pointer;
}

.career-file input:focus {
    border: 0;

    box-shadow: none;
}


/* =========================================================
   FORM SUBMIT
========================================================= */

.career-form-submit {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    margin-top: 28px;
}

.career-form-submit .btn {
    min-width: 175px;
}


/* =========================================================
   CLOSING SECTION
========================================================= */

.career-closing {
    padding: 70px 0;

    background: var(--blue);
}

.career-closing-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}

.career-closing-inner .eyebrow {
    margin-bottom: 17px;

    color: #DCEBFA;

    background: rgba(255, 255, 255, .08);

    border-color: rgba(255, 255, 255, .15);
}

.career-closing-inner h2 {
    color: #fff;
}

.career-closing-inner h2 em {
    color: #9CC9ED;
}

.career-closing-inner>p {
    max-width: 480px;

    color: #C8D5E4;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE — 1050PX
========================================================= */

@media (max-width: 1050px) {

    .career-intro-grid {
        gap: 50px;
    }

    .career-application-wrapper {
        padding: 45px;
    }

}


/* =========================================================
   RESPONSIVE — 900PX
========================================================= */

@media (max-width: 900px) {

    .career-hero {
        min-height: 530px;
    }

    .career-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .career-intro-content {
        max-width: 750px;
    }

    .career-intro-image {
        height: 430px;
    }

    .career-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .career-value-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 9px);
        width: 100%;
        margin: 0 auto;
    }

    .career-closing-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}


/* =========================================================
   RESPONSIVE — 700PX
========================================================= */

@media (max-width: 700px) {

    .career-hero {
        min-height: 550px;
    }

    .career-hero-content {
        padding: 90px 0 70px;
    }

    .career-hero h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }

    .career-hero-content>p {
        font-size: 13px;
    }


    .career-intro {
        padding: 75px 0 80px;
    }

    .career-intro-image {
        height: 350px;
    }


    .career-values {
        padding: 75px 0 80px;
    }

    .career-values-grid {
        grid-template-columns: 1fr;
    }

    .career-value-card:last-child {
        grid-column: auto;

        max-width: none;

        margin: 0;
    }


    .career-application {
        padding: 70px 0 80px;
    }

    .career-application-wrapper {
        padding: 35px 25px;

        border-radius: 16px;
    }

    .career-form-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .career-field-full {
        margin-top: 18px;
    }


    .career-closing {
        padding: 60px 0;
    }

}


/* =========================================================
   RESPONSIVE — 500PX
========================================================= */

@media (max-width: 500px) {

    .career-hero {
        min-height: 520px;
    }

    .career-hero h1 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .career-hero-content {
        padding: 75px 0 60px;
    }

    .career-hero .btn {
        width: 100%;
    }


    .career-intro-content h2,
    .career-values-heading h2,
    .career-application-header h2,
    .career-closing-inner h2 {
        font-size: 32px;
    }


    .career-intro-image {
        height: 300px;
    }

    .career-image-badge {
        left: 15px;
        bottom: 15px;
    }


    .career-value-card {
        min-height: 250px;

        padding: 24px;
    }


    .career-application-wrapper {
        padding: 28px 20px;
    }

    .career-email {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;
    }

    .career-form-submit .btn {
        width: 100%;
    }


    .career-closing-inner {
        gap: 20px;
    }

}

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

.contact-page {
    overflow: hidden;
}

/* =========================================================
   CONTACT HERO — NAVY VERSION
========================================================= */

.contact-hero {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--blue);
}


/* Main content */

.contact-hero .container {
    position: relative;
    z-index: 3;
}

.contact-hero-content {
    max-width: 760px;

    padding: 115px 0 60px;
}


/* Eyebrow */

.contact-hero-content .eyebrow {
    margin-bottom: 22px;

    color: #DCEBFA;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .18);

    backdrop-filter: blur(8px);
}


/* Heading */

.contact-hero-content h1 {
    max-width: 720px;

    margin-bottom: 22px;

    color: #fff;

    font-size: clamp(48px, 5.3vw, 76px);

    line-height: 1.04;

    letter-spacing: -3px;
}

.contact-hero-content h1 em {
    color: #9CC9ED;
}


/* Description */

.contact-hero-content p {
    max-width: 610px;

    color: #D8E3EF;

    font-size: 14px;

    line-height: 1.8;
}

/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.contact-main {
    padding: 95px 0 105px;

    background: #fff;
}

.contact-main-grid {
    display: grid;

    grid-template-columns: .82fr 1.18fr;

    gap: 20px;

    max-width: 1180px;

    margin: 0 auto;
}


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

.contact-info {
    padding: 43px 40px;

    border: 1px solid #DCE7F1;

    border-radius: 17px;

    background:
        linear-gradient(145deg,
            #EDF5FC 0%,
            #F8FBFD 100%);
}

.contact-info>.eyebrow {
    margin-bottom: 17px;
}

.contact-info h2 {
    margin-bottom: 18px;

    font-size: clamp(31px, 3vw, 42px);

    line-height: 1.13;
}

.contact-info h2 em {
    display: block;
}

.contact-info-intro {
    margin-bottom: 35px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;
}


/* Contact item */

.contact-info-item {
    display: grid;

    grid-template-columns: 43px 1fr;

    gap: 15px;

    padding: 20px 0;

    border-top: 1px solid rgba(23, 35, 92, .10);
}

.contact-info-item:first-of-type {
    border-top: 0;
}

.contact-info-icon {
    width: 43px;
    height: 43px;

    display: flex;

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

    border-radius: 10px;

    background: #fff;

    color: var(--accent);

    box-shadow:
        0 7px 20px rgba(23, 35, 92, .06);
}

.contact-info-content h3 {
    margin-bottom: 7px;

    color: var(--blue);

    font-size: 16px;
}

.contact-info-content a {
    display: block;

    width: fit-content;

    color: var(--text);

    font-size: 14px;

    line-height: 1.7;

    transition: color .25s ease;
}

.contact-info-content a:hover {
    color: var(--accent);
}

.contact-info-content strong {
    display: block;

    margin-bottom: 5px;

    color: var(--text);

    font-size: 11px;

    line-height: 1.5;
}

.contact-info-content p {
    margin: 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.65;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    padding: 43px 45px;

    border: 1px solid var(--line);

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 22px 60px rgba(23, 35, 92, .055);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading .eyebrow {
    margin-bottom: 15px;
}

.contact-form-heading h2 {
    margin-bottom: 12px;

    font-size: clamp(30px, 3vw, 40px);

    line-height: 1.15;
}

.contact-form-heading h2 em {
    color: var(--accent);
}

.contact-form-heading p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


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

.contact-form {
    padding-top: 28px;

    border-top: 1px solid var(--line);
}

.contact-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.contact-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.contact-field-full {
    margin-top: 18px;
}

.contact-field label {
    color: var(--ink);

    font-size: 16px;

    font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    border: 1px solid transparent;

    outline: none;

    border-radius: 9px;

    background: #F6F8FA;

    color: var(--ink);

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-field input,
.contact-field select {
    height: 47px;

    padding: 0 14px;
}

.contact-field textarea {
    min-height: 135px;

    padding: 13px 14px;

    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9AA6B5;
}

.contact-field select {
    cursor: pointer;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    background: #fff;

    border-color: #B9D1E5;

    box-shadow:
        0 0 0 3px rgba(93, 153, 216, .08);
}


/* Submit */

.contact-form-submit {
    display: flex;

    align-items: center;

    margin-top: 25px;
}

.contact-form-submit .btn {
    min-width: 145px;
}


/* =========================================================
   BENEFITS SECTION
========================================================= */

.contact-benefits {
    padding: 90px 0 100px;

    background: var(--bg);
}

.contact-benefits-heading {
    margin-bottom: 40px;
}

.contact-benefits-heading .eyebrow {
    margin-bottom: 15px;
}

.contact-benefits-heading h2 {
    max-width: 600px;
}

.contact-benefits-heading h2 em {
    color: var(--accent);
}


/* Benefit grid */

.contact-benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}


/* Benefit card */

.contact-benefit-card {
    position: relative;

    padding: 27px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 14px;

    background: #fff;

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease);
}

.contact-benefit-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -95px;
    bottom: -95px;

    border-radius: 50%;

    background: var(--pale);

    transition: transform .4s var(--ease);
}

.contact-benefit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(23, 35, 92, .07);
}

.contact-benefit-card:hover::after {
    transform: scale(1.2);
}


/* Number */

.contact-benefit-number {
    position: relative;
    z-index: 2;

    margin-bottom: 28px;

    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* Icon */

.contact-benefit-icon {
    position: relative;
    z-index: 2;

    display: flex;

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

    width: 43px;
    height: 43px;

    margin-bottom: 20px;

    border-radius: 10px;

    background: var(--pale);

    color: var(--accent);

    font-size: 18px;
}


/* Text */

.contact-benefit-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 9px;

    font-size: 22px;
}

.contact-benefit-card p {
    position: relative;
    z-index: 2;

    max-width: 340px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   LOCATIONS
========================================================= */

.contact-locations {
    padding: 95px 0 100px;

    background: #fff;
}

.contact-locations-heading {
    margin-bottom: 38px;
}

.contact-locations-heading .eyebrow {
    margin-bottom: 15px;
}

.contact-locations-heading h2 {
    margin-bottom: 10px;
}

.contact-locations-heading h2 em {
    color: var(--accent);
}

.contact-locations-heading p {
    color: var(--muted);

    font-size: 16px;
}


/* Location cards */

.contact-location-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 17px;

    margin-bottom: 25px;
}

.contact-location-card {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding: 27px;

    border: 1px solid var(--line);

    border-radius: 14px;

    background: var(--bg);

    transition:
        transform .3s var(--ease),
        box-shadow .3s var(--ease);
}

.contact-location-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 45px rgba(23, 35, 92, .06);
}

.contact-location-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 11px;

    background: #fff;

    color: var(--accent);

    box-shadow:
        0 7px 20px rgba(23, 35, 92, .05);
}

.contact-location-card>div:last-child>span {
    display: block;

    margin-bottom: 6px;

    color: var(--accent);

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-location-card h3 {
    margin-bottom: 7px;

    font-size: 22px;
}

.contact-location-card p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MAP
========================================================= */

.contact-map {
    position: relative;

    width: 100%;

    height: 390px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 16px;

    box-shadow:
        0 18px 45px rgba(23, 35, 92, .07);
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final {
    padding: 70px 0;

    background: var(--blue);
}

.contact-final-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.contact-final .eyebrow {
    margin-bottom: 16px;

    color: #DCEBFA;

    background: rgba(255, 255, 255, .08);

    border-color: rgba(255, 255, 255, .15);
}

.contact-final h2 {
    color: #fff;
}

.contact-final h2 em {
    color: #9CC9ED;
}

.contact-final .btn {
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE — 1000PX
========================================================= */

@media (max-width: 1000px) {

    .contact-main-grid {
        grid-template-columns: 1fr;

        max-width: 850px;
    }

    .contact-info {
        display: grid;

        grid-template-columns: 1fr 1fr;

        column-gap: 30px;
    }

    .contact-info>.eyebrow,
    .contact-info>h2,
    .contact-info>.contact-info-intro {
        grid-column: 1 / -1;
    }

    .contact-info-item {
        border-top: 1px solid rgba(23, 35, 92, .10);
    }

}


/* =========================================================
   RESPONSIVE — 800PX
========================================================= */

@media (max-width: 800px) {

    .contact-hero {
        min-height: 350px;
    }

    .contact-hero-content {
        padding: 70px 0 60px;
    }

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

    .contact-benefit-card:last-child {
        grid-column: 1 / -1;

        max-width: calc(50% - 8px);

        width: 100%;

        margin: 0 auto;
    }

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

    .contact-final-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   RESPONSIVE — 650PX
========================================================= */

@media (max-width: 650px) {

    .contact-hero-content h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }

    .contact-hero-content p {
        font-size: 13px;
    }


    .contact-main {
        padding: 70px 0 80px;
    }

    .contact-info {
        display: block;

        padding: 32px 25px;
    }

    .contact-info-item {
        display: grid;
    }

    .contact-form-wrapper {
        padding: 32px 25px;
    }

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


    .contact-benefits {
        padding: 70px 0 80px;
    }

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

    .contact-benefit-card:last-child {
        grid-column: auto;

        max-width: none;

        margin: 0;
    }


    .contact-locations {
        padding: 70px 0 80px;
    }

    .contact-map {
        height: 330px;
    }


    .contact-final {
        padding: 60px 0;
    }

}


/* =========================================================
   RESPONSIVE — 500PX
========================================================= */

@media (max-width: 500px) {

    .contact-hero {
        min-height: 330px;
    }

    .contact-hero-content {
        padding: 60px 0 50px;
    }

    .contact-hero-content h1 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .contact-hero-decoration {
        opacity: .35;
    }


    .contact-info h2,
    .contact-form-heading h2,
    .contact-benefits-heading h2,
    .contact-locations-heading h2,
    .contact-final h2 {
        font-size: 30px;
    }


    .contact-location-card {
        grid-template-columns: 42px 1fr;

        gap: 14px;

        padding: 22px;
    }

    .contact-location-icon {
        width: 42px;
        height: 42px;
    }


    .contact-map {
        height: 280px;

        border-radius: 12px;
    }


    .contact-final .btn {
        width: 100%;
    }

}

/* =========================================================
   CONSULTATION MODAL
========================================================= */

.consultation-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

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

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


/* ---------------------------------------------------------
   ACTIVE STATE
--------------------------------------------------------- */

.consultation-modal.active {
    opacity: 1;
    visibility: visible;
}


/* ---------------------------------------------------------
   OVERLAY
--------------------------------------------------------- */

.consultation-overlay {
    position: absolute;
    inset: 0;

    background: rgba(10, 18, 35, .72);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* ---------------------------------------------------------
   MODAL BOX
--------------------------------------------------------- */

.consultation-box {
    position: relative;

    width: min(100%, 735px);
    max-height: calc(100vh - 30px);

    overflow-y: auto;

    background: #fff;

    border-radius: 18px;

    padding: 20px 20px 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .22);

    transform: translateY(25px) scale(.97);

    transition:
        transform .4s var(--ease);
}


/* Modal animation */

.consultation-modal.active .consultation-box {
    transform: translateY(0) scale(1);
}


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

.consultation-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.consultation-header h2 {
    margin: 0;

    color: var(--ink);

    font-family: Manrope, sans-serif;

    font-size: 28px;
    line-height: 1.2;

    letter-spacing: -.4px;
}


/* ---------------------------------------------------------
   CLOSE BUTTON
--------------------------------------------------------- */

.consultation-close {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

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

    border: 0;
    border-radius: 50%;

    background: #f1f2f4;

    color: #333;

    font-size: 11px;

    cursor: pointer;

    transition: .25s ease;
}

.consultation-close:hover {
    background: var(--blue);
    color: #fff;

    transform: rotate(90deg);
}


/* ---------------------------------------------------------
   FORM
--------------------------------------------------------- */

.consultation-form {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* Two-column rows */

.consultation-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 27px;
}


/* ---------------------------------------------------------
   FIELD
--------------------------------------------------------- */

.consultation-field {
    position: relative;

    width: 100%;
}

.consultation-field.full {
    width: 100%;
}


/* Inputs */

.consultation-field input,
.consultation-field select,
.consultation-field textarea {

    width: 100%;

    border: 1px solid transparent;

    outline: none;

    background: #f5f5f5;

    color: var(--ink);

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    border-radius: 12px;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* Input */

.consultation-field input {

    height: 41px;

    padding: 0 24px;
}


/* Select */

.consultation-field select {

    height: 41px;

    padding: 0 14px;

    cursor: pointer;

    appearance: auto;
}


/* Textarea */

.consultation-field textarea {

    min-height: 94px;

    resize: vertical;

    padding: 13px 14px;

    line-height: 1.5;
}


/* Placeholder */

.consultation-field input::placeholder,
.consultation-field textarea::placeholder {
    color: #4d4d4d;

    opacity: .9;
}


/* Select placeholder */

.consultation-field select:invalid {
    color: #4d4d4d;
}


/* Focus */

.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus {

    background: #fff;

    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(93, 153, 216, .10);
}


/* ---------------------------------------------------------
   SUBMIT BUTTON
--------------------------------------------------------- */

.consultation-submit {

    width: fit-content;

    min-width: 89px;

    height: 43px;

    margin-top: 4px;

    padding: 0 22px;

    border: 0;

    border-radius: 11px;

    background: var(--blue);

    color: #fff;

    font-family: Manrope, sans-serif;

    font-size: 18px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background .3s var(--ease),
        transform .3s var(--ease),
        box-shadow .3s var(--ease);
}

.consultation-submit:hover {

    background: var(--blue2);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(23, 35, 92, .20);
}


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

@media (max-width: 600px) {

    .consultation-modal {
        padding: 12px;
    }

    .consultation-box {

        max-height: calc(100vh - 24px);

        padding: 18px 16px;

        border-radius: 15px;
    }

    .consultation-header h2 {
        font-size: 19px;
    }

    .consultation-row {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .consultation-field input,
    .consultation-field select {
        height: 44px;
    }

    .consultation-field textarea {
        min-height: 100px;
    }

    .consultation-submit {
        width: 100%;
    }
}


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

@media (max-width: 380px) {

    .consultation-box {
        padding: 16px 14px;
    }

    .consultation-form {
        gap: 10px;
    }
}