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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #020817;
    color: #e5edf8;
    line-height: 1.7;
}

/* =========================
   CONTAINERS
========================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

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


.header-inner {
    min-height: 74px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand {
    position: absolute;
    left: 0;
    top: 18px;
    z-index: 9999;

    background: rgba(255,255,255,.96);
    padding: 10px 14px;
    border-radius: 8px;

    box-shadow:
        0 8px 24px rgba(0,0,0,.12);

    border: 1px solid rgba(15,35,70,.08);

    display: inline-flex;
    align-items: center;
}

.brand img {
    height: 62px;
    width: auto;
    display: block;
}


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


.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}


.site-nav a {
    text-decoration: none;
    color: #07152b;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 4px;
    transition: .2s ease;
}


.site-nav a:hover {
    color: #1f5fbf;
    background: rgba(31,95,191,.08);
}
.nav-cta {
    margin-left: 16px;
    background: #1f5fbf !important;
    color: #ffffff !important;
    padding: 11px 24px !important;
    border-radius: 4px !important;
    font-weight: 700;
    border: 1px solid #1f5fbf;
}

.nav-cta:hover {
    background: #174a96 !important;
    border-color: #174a96;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: .2s ease;
    font-weight: 700;
}

.btn-primary {
    background: #1f5fbf;
    color: white;
    border: 1px solid #1f5fbf;
}

.btn-primary:hover {
    background: #174a96;
    border-color: #174a96;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.35);
    color: white;
    background: rgba(255,255,255,.04);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.10);
}

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

main {
    min-height: 80vh;
}

/* =========================
   TYPOGRAPHY
========================= */

h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.4px;
    max-width: 690px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.7rem;
}

p {
    color: #b5c0d4;
}

.hero-content h1{
    font-size:2.05rem;
    line-height:1.16;
    letter-spacing:-.8px;
    font-weight:800;
    max-width:680px;
    margin-bottom:14px;
}

.hero-content .sred-lead{
    color:#4EF3FF;
    font-size:1rem;
    line-height:1.45;
    font-weight:800;
    max-width:760px;

    margin-top:0;
      margin-bottom:18px;
}

.hero-content .hero-text{
    font-size:1.08rem;
    line-height:1.75;
    max-width:820px;
    margin-top:0;
    color:#c8d4e7;
}


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

.site-footer {
    
    margin-top: 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 60px 0 0;
}


.footer-inner {
    text-align: center;
}

.footer-inner p {
    margin-bottom: 10px;
    color: #7d8da8;
}


.services-card h4 {
    margin-bottom: 24px;
}


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


.hero {
    position: relative;
     z-index: 1;
    min-height: calc(100vh - 74px);
    padding: 105px 0 120px;
    background:
        linear-gradient(
            90deg,
            rgba(2,8,23,.96) 0%,
            rgba(2,8,23,.88) 28%,
            rgba(2,8,23,.62) 55%,
            rgba(2,8,23,.35) 100%
        ),
        url('/images/hero/innovation-hero.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(2,8,23,0) 0%,
        rgba(2,8,23,.35) 30%,
        rgba(2,8,23,.75) 70%,
        #020817 100%
    );

    pointer-events: none;
}

.hero::before {
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: start;
	    position: relative;
    z-index: 2;
}

.hero-content {
    padding-top: 25px;
}
.hero-text {
    font-size: 1.12rem;
    margin-top: 22px;
    max-width: 680px;
    color: #c8d4e7;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 20px;
}


.panel-label {
    color: #4EF3FF;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -.5px;
}


.hero-panel h3{
    margin-top: 10px;
    margin-bottom: 8px;

    font-size: 1.2rem;
    line-height: 1.45;

    text-align: center;

    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================
   FEATURE STRIP
========================= */


.feature-strip {
    padding: 55px 0 40px;
    background: #020817;
    margin-top: -50px;

    position: relative;
    z-index: 5;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -150px;

    position: relative;
    z-index: 6;
}


.feature-card {
    position: relative;
    z-index: 7;
}


.feature-strip::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -160px;
    height: 220px;

    background: linear-gradient(
        to bottom,
        rgba(2,8,23,0) 0%,
        rgba(2,8,23,.45) 45%,
        #020817 100%
    );

    pointer-events: none;
    z-index: 1;
}


.feature-card {

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

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

    padding: 40px;

    border-radius: 20px;

    transition: .25s ease;

    text-decoration: none;

    display: flex;

    flex-direction: column;

    min-height: 250px;
}

.feature-card h3 {

    color: white;

    margin-bottom: 24px;
}

.feature-card p {

    color: #c8d4e7;

    line-height: 1.7;

    flex-grow: 1;
}


.feature-card:hover {

    transform: translateY(-6px);

    border-color: rgba(93,156,255,.5);

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at top right,
            rgba(31,95,191,.35),
            transparent 45%
        );

    pointer-events: none;
}


.hero-panel {
    position: relative;
    overflow: hidden;
    max-width: 620px;
    padding: 12px 28px 18px 28px;
    border-radius: 14px;


    box-shadow:
        0 24px 70px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.10);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(93,156,255,.28),
            transparent 42%
        );

    pointer-events: none;
}

.hero-panel > * {
    position: relative;
    z-index: 1;
}


.methodology-divider {
    width: 100%;
    height: 1px;
    margin: 14px 0 28px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(109,169,255,.45),
        transparent
    );
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 45px;
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.site-footer p,
.site-footer a {
    display: block;
    color: #d8e0ea;
    font-size: .95rem;
    line-height: 1.6;
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.canada-footer-logo {
    width: 140px;
    height: auto;
    margin-top: -5px;
    opacity: .95;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
    color: #d8e0ea;
    padding: 18px;
    font-size: .9rem;
}


.why-link {

    cursor: pointer;

}


.why-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
}

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

.why-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2,8,23,.76);
    backdrop-filter: blur(8px);
}

.why-modal-content {
    position: relative;
    overflow-y: auto;


    color: #07152b;
    
    
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
    animation: modalSlideIn .28s ease-out;

    background-color: #ffffff;
    background-image:
        linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,245,255,.90)),
        repeating-linear-gradient(
            135deg,
            rgba(31,95,191,.13) 0px,
            rgba(31,95,191,.13) 2px,
            transparent 2px,
            transparent 18px
        );
		
		
}


.why-modal-content::-webkit-scrollbar {
    width: 8px;
}

.why-modal-content::-webkit-scrollbar-thumb {
    background: rgba(31,95,191,.45);
    border-radius: 10px;
}
.why-modal-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #07152b;
}

.why-modal-content p {
    color: #26384f;
    margin-bottom: 16px;
}

.modal-kicker {
    color: #1f5fbf !important;
    font-weight: 800;
    margin-bottom: 12px;
}

.why-modal-close{
    position: fixed;

    top: 90px;
    right: 30px;

    width: 54px;
    height: 54px;

    padding: 0;

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

    border: 1px solid rgba(15,35,70,.12);
    border-radius: 50%;

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

    cursor: pointer;

    z-index: 9000;

    box-shadow:
        0 8px 24px rgba(0,0,0,.15);
}

.why-modal-close svg{
    width: 32px;
    height: 32px;

    stroke: #07152b;
    stroke-width: 2.7;

    fill: none;
    stroke-linecap: round;
}
.why-modal-close:hover{
    background: #1f5fbf;
    color: white;

    transform: scale(1.08);
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        
    }

    to {
        opacity: 1;
        
    }
}


.modal-link {
    color: #1f5fbf;
    font-weight: 800;
    text-decoration: none;
}

.modal-link:hover {
    text-decoration: underline;
}

.why-signature {
	position:relative;
    margin-top: 40px;
    display: flex;
	left:-25px;
    flex-direction: column;
    align-items: flex-end;
    color: #5f6f84;
}

.signature-line {
    width: 160px;
    height: 1px;
    background: rgba(31,95,191,.25);
    margin-bottom: 6px;
}

.signature-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f5fbf;

    letter-spacing: -.3px;
}

.signature-tagline {
    font-size: .9rem;
    color: #7a889a;
    margin-top: -3px;
}


.why-modal-layout{
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 100%;
}

.why-modal-text{
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding-right: 20px;
}

.why-modal-visual{
    position: fixed;
    top: 74px;
    right: 0;
    width: 50%;
    height: calc(100vh - 74px);
    overflow: hidden;
    pointer-events: none;
}

.why-modal-visual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.why-modal-visual::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255,255,255,.6) 5%,
        rgba(255,255,255,.2) 12%,
        rgba(255,255,255,0) 22%
    );
}


.nav-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 4px;
    color: #07152b;
}

.nav-icon-link svg {
 width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: .2s ease;
}

.nav-icon-link:hover {
    color: #1f5fbf;
    background: rgba(31,95,191,.08);
}

.nav-icon-link:hover svg {
    transform: translateY(-1px);
}

.nav-icon-link::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #07152b;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
    white-space: nowrap;
}

.nav-icon-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #07152b;
    color: #ffffff;
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
    white-space: nowrap;
    z-index: 10001;
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 4px;
}

.nav-flag img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.nav-flag:hover {
    background: rgba(31,95,191,.08);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0px;          /* adjust to taste */
}

.language-switcher .nav-flag + .nav-flag {
    margin-left: -5px;
}


.panel-footer-image{
    position: relative;
    margin-top: 45px;
    margin-bottom: 5px;
	
}

.panel-footer-image img{
    width: 100%;
    display: block;
    opacity: .92;
}


.methodology-tag{
    position:absolute;
    top:-36px;

    transform:translateX(-50%);

    font-size:.66rem;
    font-weight:600;

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


    letter-spacing:1.4px;

    line-height:1.7;

    text-align:center;

    text-shadow:
        0 2px 8px rgba(0,0,0,.85);
}

/* icon positions */

.tag-1{
    left: 17%;
}

.tag-2{
    left: 38%;
}

.tag-3{
    left: 60%;
}

.tag-4{
    left: 81%;
}


.panel-action{
    margin-top:32px;
    display:flex;
    justify-content:flex-end;   /* pushes to extreme right */
}

.methodology-link{
    display:inline-flex;
    align-items:center;

margin-top:-15px;
    color:#fff;
    text-decoration:none;

    font-size:1rem;
    font-weight:700;

    padding-bottom:4px;

    border-bottom:1px solid rgba(109,169,255,.25);


		    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

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

    position:relative;
    top:1px;

    flex-shrink:0;

    transform:translateX(0);

    transition:
        transform .35s cubic-bezier(.4,0,.2,1),
        color .35s ease;
}

.methodology-link:hover{
      color: #8ec5ff;
    border-bottom-color:rgba(255,255,255,.75);
	transform: translateX(4px);
}

.methodology-link:hover .arrow-icon{
    transform:translateX(4px);
}


.feature-arrow {
    margin-top: 30px;
    margin-left: auto;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #6da9ff;
    font-size: 1rem;
    font-weight: 700;

    padding-bottom: 4px;
    border-bottom: 1px solid rgba(109,169,255,.25);

    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.feature-arrow svg {
    width: 20px;
    height: 20px;

    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;

    position: relative;
    top: 1px;

    transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.feature-arrow:hover {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,.75);
    transform: translateX(4px);
}

.feature-arrow:hover svg {
    transform: translateX(4px);
}


/* ======================
   News INNOVENTECH
====================== */


.updates-section {
    position: relative;

    background:
        linear-gradient(
            to bottom,
            rgba(2,8,23,0) 0%,
            rgba(2,8,23,.55) 50px,
            #020817 140px
        ),
        #020817;

  
    padding-bottom: 50px;
	overflow: hidden;
}

.updates-header {


    gap: 40px;
    
}


.updates-header h2 {


    margin-bottom: 14px;
}

.updates-header p {
    color: #b8c7df;
    font-size: 1.05rem;
    max-width: 650px;
}


.news-arrow {


    color: #ffffff;
    
    cursor: pointer;


}

.news-arrow svg {


    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.news-carousel {
    overflow: hidden;
    
    user-select: none;
}


.news-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.update-card {
    flex: 0 0 420px;
    background: #ffffff;
    color: #07152b;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(0,0,0,.18);
    transition: transform .3s ease, box-shadow .3s ease;

    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 65px rgba(0,0,0,.26);
}

.update-image {
    aspect-ratio: 16 / 9;
    
    background: #e7edf6;
}


.update-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.update-body h3 {
    color: #07152b;
    font-size: 1.55rem;
    line-height: 1.22;
    margin-bottom: 16px;
}

.update-body p {
    color: #334155;
    line-height: 1.65;
    margin-bottom: 28px;
}

.update-link {


    font-size: 1rem;
    

    padding-bottom: 4px;
    border-bottom: 1px solid rgba(31,95,191,.25);

    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.update-link svg {


    position: relative;
    top: 1px;
    
}
.update-link:hover {
    color: #174a96;
    border-bottom-color: rgba(23,74,150,.75);
    transform: translateX(4px);
}


/* ======================
   FOLLOW INNOVENTECH
====================== */

.social-section{
    padding: 0px 70px 20px 70px;
    background:#020817;
}

.social-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:24px;
}

.social-title{
    color:#ffffff;
    font-size:1.3rem;
    font-weight:700;
}

.social-icons{
    display:flex;
    gap:14px;
	margin-top:-10px;
}

.social-icon{
    position:relative;

    width:58px;
    height:58px;

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

    border-radius:50%;

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

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

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.social-icon:hover{
    transform:translateY(-4px);

    border-color:
        rgba(93,156,255,.7);

    background:
        rgba(93,156,255,.08);
}

.social-icon img{
    width:28px;
    height:28px;
}

/* tooltip */

.social-icon::after{

    content:attr(data-tooltip);

    position:absolute;

    bottom:70px;

    background:#07152b;

    color:white;

    padding:8px 14px;

    border-radius:6px;

    font-size:.85rem;

    opacity:0;

    transform:translateY(8px);

    pointer-events:none;

    transition:.25s;
}

.social-icon:hover::after{

    opacity:1;

    transform:translateY(0);
}


.feature-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.feature-title h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
}

.feature-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;

    opacity: .95;

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

.feature-icon-custom{
    width: 60px; 
}


.why-modal{
    top: 74px;
    height: calc(100vh - 74px);
}

.why-modal-backdrop{
    top: 0;
}

.why-modal-content{
    width: 100%;
    max-width: none;

    height: 100%;
    max-height: none;

    margin: 0;
    border-radius: 0;

    padding: 45px 70px;
}


.trust-list .footer-list-item{
    display:grid;
    grid-template-columns:20px auto;
    column-gap:12px;
    align-items:center;

    margin:0;
    padding:0;

    color:#fff;
    text-decoration:none;

    font-size:.95rem;
    line-height:1.5;
    white-space:nowrap;
}


/* =========================
   FOOTER FINAL NORMALIZATION
========================= */

.site-footer{
    --footer-text-size: .95rem;
    --footer-line-height: 1.6;
    --footer-icon-size: 20px;
    --footer-list-gap: 12px;
}

/* all footer text */
.site-footer p,
.site-footer a,
.footer-list-item{
    font-size: var(--footer-text-size);
    line-height: var(--footer-line-height);
}

/* services + process lists */
.services-list,
.trust-list{
    display: flex;
    flex-direction: column;
    gap: var(--footer-list-gap);
}

.services-list a,
.trust-list .footer-list-item{
    display: grid;
    grid-template-columns: var(--footer-icon-size) auto;
    column-gap: 12px;
    align-items: center;

    margin: 0;
    padding: 0;

    color: #fff;
    text-decoration: none;

    font-size: var(--footer-text-size);
    line-height: var(--footer-line-height);
    white-space: nowrap;
	 transition: color 0.2s ease, transform 0.2s ease;
}

/* icons */
.services-icon,
.trust-icon{
    width: var(--footer-icon-size);
    height: var(--footer-icon-size);

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

.services-icon svg,
.trust-icon svg{
    width: var(--footer-icon-size);
    height: var(--footer-icon-size);

    display: block;
    fill: none;
    stroke: #6DA8FF;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.footer-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-list-item:hover, .services-list a:hover {
    color: #6DA8FF;
    transform: translateX(3px);
}


.footer-contact a ,.footer-contact p {
    display: flex;
    align-items: center;
    gap: 14px;
	 transition: color 0.2s ease, transform 0.2s ease;
}
.footer-contact a:hover {
    color: #6DA8FF;
    transform: translateX(3px);
}
.contact-icon {
    width: 20px;
    min-width: 20px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    display: block;

    fill: none;
    stroke: #6DA8FF;      /* same blue as the other sections */
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------- Updates Header ---------- */

.updates-header{
    position:relative;

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

    padding-top:34px;
    margin-bottom:30px;

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

/* centered title block */

.updates-header > div:first-child{
    position:absolute;
    left:50%;
    transform:translateX(-50%);

    text-align:center;
}

/* INSIGHTS & NEWS */

.section-kicker{
    display:block;

    margin-bottom:8px;

    font-size:.72rem;
    font-weight:700;
    letter-spacing:4px;

    color:#45d8ff;
    text-transform:uppercase;
}

/* Latest Updates */

.updates-header h2{
    margin:0;

    font-size:2rem;
    line-height:1.1;
    font-weight:700;

    color:#fff;
}

/* arrows */

.updates-controls{
    display:flex;
    gap:8px;
}


.news-arrow{
    width:32px;
    height:32px;

    border-radius:6px;

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

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

    transition:.25s ease;
}

.news-arrow:hover{
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.18);
}

.news-arrow svg{
    width:18px;
    height:18px;

    fill:none;
    stroke:#fff;
    stroke-width:3;
}


/* ==========================================
   LAPTOPS (keep desktop layout)
========================================== */

@media (max-width:1200px) and (min-width:701px)
{
    .hero-content h1{
        font-size:1.65rem;
        line-height:1.18;
        letter-spacing:-.5px;
        max-width:520px;
        margin-bottom:10px;
    }

    .hero-content .sred-lead{
        font-size:.9rem;
        line-height:1.4;
        max-width:650px;
        margin-bottom:16px;
    }

    .hero-content .hero-text{
        font-size:.95rem;
        line-height:1.75;
        max-width:720px;
    }
    .hero-text{
      font-size: .95rem;
    line-height: 1.85;
    max-width: 600px;
    }
	.feature-strip {
        margin-top: 10px;
    }
    .container {
        width: 94%;
    }

    .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 50px;
		align-items: start;
        padding-top: 30px;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
		margin-top: -130px;
    }


    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .hero-actions {
        gap: 16px;
    }
	

    .hero {
        padding-top: 20px;
    }


.methodology-link{
    font-size:.9rem;
    font-weight:600;
   
}

.arrow-icon{
    width:17px;
    height:17px;
    top:1px;
}


.feature-card{
    padding: 28px;
    min-height: 210px;
}

.feature-title{
    gap: 12px;
    margin-bottom: 24px;
}

.feature-icon{
    width: 42px;
    height: 42px;
}

.feature-icon-custom{
    width: 48px;
}

.feature-title h3{
    font-size: 1.4rem;
    line-height: 1.15;
}

.feature-card p{
    font-size: .95rem;
    line-height: 1.8;
}

.feature-arrow{
    margin-top: 20px;
    font-size: .9rem;
}

.feature-arrow svg{
    width: 16px;
    height: 16px;
}

/* ======================
   Updates - compact desktop/laptop
====================== */

.updates-header h2{
    
    line-height: 1.15;
    margin-bottom: 8px;
}


.news-track{
    gap: 22px;
}

.update-card{
    flex: 0 0 300px;
    border-radius: 6px;
}

.update-body{
    padding: 18px;
}

.update-body h3{
    font-size: 1.05rem;
    line-height: 1.18;
    margin-bottom: 10px;
}

.update-body p{
    font-size: .82rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.update-link{
    font-size: .82rem;
    font-weight: 600;
    gap: 6px;
}

.update-link svg{
    width: 14px;
    height: 14px;
}

.social-title{
    font-size:.95rem;
}


.social-icon{
    width:44px;
    height:44px;
}

.social-icon img{
    width:20px;
    height:20px;
}

.social-icon::after{
    font-size:.75rem;
    padding:6px 10px;
}


.site-footer p,
.site-footer a{
    font-size:.85rem;
    line-height:1.55;
    margin-bottom:6px;
}


.brand img{
    height:54px;
}

.site-nav{
    gap:6px;
}

.site-nav a{
    font-size:.85rem;
    padding:8px 11px;
}

.nav-cta{
    padding:9px 18px !important;
    font-size:.85rem;
}

.nav-icon-link{
    width:38px;
    height:38px;
}

.nav-icon-link svg{
    width:34px;
    height:34px;
}

.nav-flag{
    width:38px;
    height:38px;
}

.nav-flag img{
    width:21px;
    height:21px;
}

.tooltip::after,
.nav-icon-link::after{
    font-size:.7rem;
}


.tag-4{
    left: 83%;
    min-width: 120px;
}


.why-modal-content{
        padding: 32px 52px;
    }

    .why-modal-layout{
        grid-template-columns: 56% 44%;
    }

    .why-modal-text{
        max-width: none;
        padding-right: 18px;
    }

    .modal-kicker{
        font-size: .85rem;
        margin-bottom: 8px;
    }

    .why-modal-content h2{
        font-size: 1.65rem;
        line-height: 1.18;
        margin-bottom: 18px;
        max-width: 560px;
    }

    .why-modal-content p{
        font-size: .88rem;
        line-height: 1.65;
        margin-bottom: 12px;
    }

    .modal-link{
        font-size: .88rem;
        font-weight: 700;
    }

    .why-signature{
        margin-top: 26px;
        left: -20px;
    }

    .signature-line{
        width: 140px;
        margin-bottom: 5px;
    }

    .signature-name{
        font-size: .95rem;
    }

    .signature-tagline{
        font-size: .78rem;
        margin-top: -2px;
    }

    .why-modal-close{
        width: 44px;
        height: 44px;
        top: 86px;
        right: 24px;
    }

    .why-modal-close svg{
        width: 25px;
        height: 25px;
    }

    .why-modal-visual{
        width: 44%;
    }


/* =========================
   LAPTOP FOOTER FIX
========================= */


    .site-footer{
        padding-top:46px;

        --footer-text-size:.82rem;
        --footer-line-height:1.55;
        --footer-icon-size:18px;
        --footer-list-gap:10px;
    }

    .footer-grid{
        width:94%;
        max-width:none;

        grid-template-columns:
            minmax(0, 1.45fr)
            minmax(0, 1.7fr)
            minmax(0, 1.55fr)
            minmax(0, 1.25fr);

        gap:28px;
        align-items:start;
        padding-bottom:38px;
    }

    .footer-grid > *{
        min-width:0;
    }

    .site-footer h4{
        font-size:.9rem;
        margin-bottom:12px;
    }

    .site-footer p,
    .site-footer a,
    .footer-list-item{
        font-size:var(--footer-text-size);
        line-height:var(--footer-line-height);
    }

    .footer-grid > div:first-child p{
        max-width:330px;
    }

    .services-list a,
    .trust-list .footer-list-item{
        grid-template-columns:var(--footer-icon-size) minmax(0, auto);
        column-gap:10px;
        white-space:normal;
    }

    .contact-icon,
    .contact-icon svg,
    .services-icon,
    .trust-icon,
    .services-icon svg,
    .trust-icon svg{
        width:var(--footer-icon-size);
        height:var(--footer-icon-size);
    }

    .canada-footer-logo{
        width:115px;
    }

    .footer-bottom{
        padding:15px;
        font-size:.8rem;
    }


    .updates-header{
        padding-top:24px;
        margin-bottom:22px;
    }

    .section-kicker{
        font-size:.62rem;
        letter-spacing:3px;
        margin-bottom:5px;
    }

    .updates-header h2{
        font-size:1.7rem;
    }

    .updates-controls{
        gap:10px;
    }

    .news-arrow{
        width:42px;
        height:42px;

        border-radius:8px;
    }

    .news-arrow svg{
        width:14px;
        height:14px;
    }
}


.updates-header::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(80,145,255,.15) 15%,
            rgba(80,145,255,.45) 50%,
            rgba(80,145,255,.15) 85%,
            transparent
        );
}


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


.site-header{
    background-color:#f4f5f7;

    background-image:
    url("data:image/svg+xml,%3Csvg width='150' height='90' viewBox='0 0 150 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231f5fbf' stroke-opacity='.145' stroke-width='1'%3E%3Cpath d='M0 0L45 45L0 90M45 0L90 45L45 90M90 0L135 45L90 90M135 0L150 15M135 90L150 75'/%3E%3Cpath d='M0 10L35 45L0 80M10 0L45 35L80 0M10 90L45 55L80 90M55 0L90 35L125 0M55 90L90 55L125 90M100 0L135 35L150 20M100 90L135 55L150 70'/%3E%3Cpath d='M0 20L25 45L0 70M20 0L45 25L70 0M20 90L45 65L70 90M65 0L90 25L115 0M65 90L90 65L115 90M110 0L135 25L150 10M110 90L135 65L150 80'/%3E%3Cpath d='M0 30L15 45L0 60M30 0L45 15L60 0M30 90L45 75L60 90M75 0L90 15L105 0M75 90L90 75L105 90M120 0L135 15L150 0M120 90L135 75L150 90'/%3E%3C/g%3E%3C/svg%3E");

    background-size:72px 72px;
    background-repeat:repeat;
	
        box-shadow:0 8px 24px rgba(7,21,43,.06);
        border-bottom:1px solid rgba(7,21,43,.08);
		   background-position:center center;
}


/* ==========================================
   MOBILE PHONES
   Add this at the VERY BOTTOM of site.css
========================================== */

@media (max-width: 700px){

    html,
    body{
        overflow-x:hidden;
    }

    .container{
        width:90%;
        max-width:none;
    }

    h1{
        font-size:2.05rem;
        line-height:1.15;
        letter-spacing:-.7px;
        max-width:100%;
    }

    h2{
        font-size:1.75rem;
        line-height:1.2;
    }

    h3{
        font-size:1.25rem;
    }

    p{
        font-size:.95rem;
        line-height:1.75;
    }

    /* HEADER */


    .site-nav a:not(.nav-cta):not(.nav-flag):not(.nav-icon-link){
        display:none;
    }


    .nav-cta{
        margin-left:0;
        padding:8px 12px !important;
        font-size:.78rem !important;
        white-space:nowrap;
    }


    .tooltip::after,
    .nav-icon-link::after{
        display:none;
    }

    /* HERO */

    .hero{
        min-height:auto;
		padding: 52px 0 58px;
        background-position:center bottom;
    }


    .hero-grid{
        display:block;
    }

    .hero-content{
        padding-top:0;
        text-align:left;
    }

    .hero-text{
        font-size:.98rem;
        line-height:1.75;
        margin-top:18px;
        max-width:100%;
    }

    .hero-actions{
        margin-top:24px;
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
        padding:13px 18px;
        font-size:.95rem;
    }

    /* MOBILE CLAIM EXCELLENCE PANEL */

    .hero-panel{
        margin-top:34px;
        max-width:100%;
        padding:22px 18px;
        border:1px solid rgba(255,255,255,.10);
        background:rgba(255,255,255,.035);
        box-shadow:0 18px 45px rgba(0,0,0,.25);
    }

    .panel-label{
        text-align:center;
        font-size:1.2rem;
    }

    .methodology-divider{
        margin:12px 0 18px;
    }

.panel-footer-image{
    margin:0 auto;
    width:100%;
    max-width:360px;

    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
}
    .panel-footer-image img{
        display:none !important;
    }

.methodology-tag{
    
    top:auto !important;
    left:auto !important;
    transform:none !important;

    width:100% !important;
    min-width:0 !important;
    min-height:42px;

    margin:0 !important;
    padding:6px 8px;

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

    border:1px solid rgba(109,169,255,.22);
    border-radius:999px;
    background:rgba(109,169,255,.08);

    font-size:.64rem;
    line-height:1.25;
    letter-spacing:.6px;
    text-align:center;
    text-shadow:none;
}

    .panel-action{
        margin-top:14px;
        justify-content:center;
    }

    .methodology-link{
        margin-top:0;
        font-size:.9rem;
    }

    /* FEATURE CARDS */

    .feature-strip{
        margin-top:-50px;
        padding:34px 0 34px;
    }

    .feature-strip::before{
        display:none;
    }

    .feature-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
        margin-top:0;
    }

    .feature-card{
        padding:24px 20px;
        min-height:auto;
        border-radius:14px;
    }

    .feature-card:hover{
        transform:none;
    }

    .feature-title{
        gap:12px;
        margin-bottom:18px;
    }

    .feature-icon,
    .feature-icon-custom{
        width:42px;
        height:42px;
    }

    .feature-title h3{
        font-size:1.25rem;
        line-height:1.15;
    }

    .feature-card p{
        font-size:.92rem;
        line-height:1.7;
    }

    .feature-arrow{
        margin-top:18px;
        font-size:.9rem;
    }

    /* UPDATES */

    .updates-section{
        padding-bottom:36px;
    }

    .updates-header{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:16px;
        padding-top:26px;
        margin-bottom:22px;
        text-align:center;
    }

    .updates-header > div:first-child{
        position:static;
        transform:none;
    }

    .section-kicker{
        font-size:.62rem;
        letter-spacing:3px;
        margin-bottom:7px;
    }

    .updates-header h2{
        font-size:1.55rem;
    }

    .updates-controls{
        gap:10px;
    }

    .news-arrow{
        width:40px;
        height:40px;
        border-radius:8px;
    }

    .news-arrow svg{
        width:16px;
        height:16px;
    }


    .update-card:hover{
        transform:none;
    }

    .update-body{
        padding:22px 20px;
    }

    .update-body h3{
        font-size:1.2rem;
        line-height:1.22;
        margin-bottom:12px;
    }

    .update-body p{
        font-size:.9rem;
        line-height:1.7;
        margin-bottom:20px;
    }

    .update-link{
        font-size:.9rem;
    }

    /* SOCIAL */

    .social-section{
        padding:8px 0 34px;
    }

    .social-container{
        gap:18px;
    }

    .social-title{
        font-size:1rem;
    }

    .social-icons{
        gap:12px;
        margin-top:0;
    }

    .social-icon{
        width:44px;
        height:44px;
    }

    .social-icon img{
        width:21px;
        height:21px;
    }

    .social-icon:hover{
        transform:none;
    }

    .social-icon::after{
        display:none;
    }

    /* FOOTER */

    .site-footer{
        padding-top:42px;
        --footer-text-size:.88rem;
        --footer-line-height:1.6;
        --footer-icon-size:18px;
        --footer-list-gap:10px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:32px;
        padding-bottom:34px;
    }

    .site-footer h4{
        font-size:.95rem;
        margin-bottom:12px;
    }

    .site-footer p,
    .site-footer a,
    .footer-list-item{
        font-size:.88rem;
    }

    .services-list a,
    .trust-list .footer-list-item{
        white-space:normal;
        align-items:start;
    }

    .footer-list-item:hover,
    .services-list a:hover,
    .footer-contact a:hover{
        transform:none;
    }

    .canada-footer-logo{
        display:block;
		        width:115px;
        margin-top:4px;
        margin-left:auto;
        margin-right:0;
    }
    .footer-bottom{
        padding:14px 12px;
        font-size:.78rem;
    }

    /* WHY MODAL */

    .why-modal{
        top:66px;
        height:calc(100vh - 66px);
    }

    .why-modal-content{
        padding:28px 22px;
    }

    .why-modal-layout{
        display:block;
    }

    .why-modal-text{
        padding-right:0;
    }

    .why-modal-visual{
        display:none;
    }

    .why-modal-content h2{
        font-size:1.45rem;
    }

    .why-modal-content p{
        font-size:.9rem;
        line-height:1.7;
    }

    .why-modal-close{
        top:78px;
        right:14px;
        width:42px;
        height:42px;
    }

    .why-modal-close svg{
        width:24px;
        height:24px;
    }

    .why-signature{
        left:0;
        align-items:flex-start;
        margin-top:28px;
    }


.mobile-menu-toggle span{
    width:20px;
    height:2px;
    background:#07152b;
    border-radius:10px;
}

.mobile-menu-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;


    border-radius:9px;


        cursor:pointer;
        padding:0;
    }

.mobile-menu-toggle svg{
    
    
    display:block;
    overflow:visible;
}
.mobile-menu-toggle .line{
    fill:none;
    stroke:#07152b;
    stroke-width:2.3;
    stroke-linecap:round;
    transition:.25s ease;
    transform-box:fill-box;
    transform-origin:center;
}


.mobile-menu-toggle.is-open .line-1{
    transform:translateY(5px) rotate(45deg);
}

.mobile-menu-toggle.is-open .line-2{
    opacity:0;
}

.mobile-menu-toggle.is-open .line-3{
    transform:translateY(-5px) rotate(-45deg);
}


/* ==========================
   MOBILE HEADER FINAL
========================== */

.header-inner{
    min-height:66px;
}


.brand{
    top:18px;
    left:-8px;
    padding:8px 10px;
    box-shadow:
        0 15px 35px rgba(7,21,43,.25),
        0 0 18px rgba(255,255,255,.7);

    border-radius:10px;
    z-index:11000;
}


.brand img{
    height:48px;
}

.site-nav{


    padding-left:0;
}

.mobile-menu-toggle,
.nav-icon-link{
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
    padding:0 !important;

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

    border:2px solid #07152b;
    border-radius:8px !important;
    background:#f4f5f7;
}

.mobile-menu-toggle svg{
    width:23px !important;
    height:23px !important;
}

.nav-icon-link svg{
    width:30px !important;
    height:30px !important;
}


.site-nav > .nav-cta{
    display:none !important;
}


.news-track{
    gap:16px;
}

.update-card{
    flex:0 0 85%;
    margin:0;
    border-radius:10px;
}


/* ==========================
   MOBILE MENU - LIGHT CARD GRID
========================== */

.site-nav.mobile-open{
    position:fixed;
    
    left:10px;
    right:10px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;

    padding:42px 10px 10px;

    background:linear-gradient(180deg, #f7faff, #eef4fc);
    border:1px solid rgba(31,95,191,.18);
    border-radius:10px;
    box-sizing:border-box;
box-shadow:
    0 30px 70px rgba(7,21,43,.25),
    0 0 0 1px rgba(255,255,255,.55);
    z-index:10000;
		top:96px;
width:auto;

}


/* Hide the menu backdrop and Home icon while the mobile menu is open */
.site-nav.mobile-open::before,
.site-nav.mobile-open .nav-icon-link{
    display:none !important;
}

/* Keep language flags visible in the header */
.site-nav.mobile-open .language-switcher{
    display:flex !important;
    position:fixed;
    top:14px;
    
    align-items:center;
    z-index:9000;
}


/* shared cards */
.site-nav.mobile-open a:not(.nav-flag):not(.nav-icon-link):not(.nav-cta){
    position:relative !important;
    inset:auto !important;

    width:auto !important;
    min-height:42px;

    display:flex !important;
    align-items:center;

    padding:0 12px 0 42px !important;

    background:rgba(255,255,255,.88);
    border:1px solid rgba(31,95,191,.12);
    border-radius:7px;

    color:#07152b !important;
    font-size:.74rem !important;
    font-weight:700;
    text-align:left;

    box-shadow:0 4px 12px rgba(7,21,43,.05);
}
/* Why InnoVenTech now occupies one normal grid cell */
.site-nav.mobile-open .why-link{
    grid-column:auto;
}


/* icon base */
.site-nav.mobile-open a:not(.nav-flag):not(.nav-icon-link):not(.nav-cta)::before{
    content:"";
    position:absolute;
    left:14px;
    width:17px;
    height:17px;

    background-repeat:no-repeat;
    background-size:17px 17px;
    background-position:center;
}


/* Why icon */
.site-nav.mobile-open .why-link::before{
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232f7df4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l2.7 5.5 6.1.9-4.4 4.3 1 6.1L12 17l-5.4 2.8 1-6.1-4.4-4.3 6.1-.9L12 3z'/%3E%3C/svg%3E");
}

/* SR&ED icon */
/* SR&ED icon */
/* SR&ED icon */
/* SR&ED icon */
.site-nav.mobile-open a[href*='Sred']::before{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f7df4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='7' r='2.2'/%3E%3Ccircle cx='17' cy='7' r='2.2'/%3E%3Ccircle cx='12' cy='17' r='2.2'/%3E%3Cpath d='M9.1 7h5.8M8.1 9l2.8 5.7M15.9 9l-2.8 5.7'/%3E%3C/svg%3E");
}
/* Process icon */
.site-nav.mobile-open a[href*='Process']::before{
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232f7df4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Cpath d='M19 12a7 7 0 0 0-.1-1.2l2-1.5-2-3.4-2.4 1a7.5 7.5 0 0 0-2-1.2L14.2 3h-4.4l-.4 2.7a7.5 7.5 0 0 0-2 1.2l-2.4-1-2 3.4 2 1.5A7 7 0 0 0 5 12c0 .4 0 .8.1 1.2l-2 1.5 2 3.4 2.4-1a7.5 7.5 0 0 0 2 1.2l.4 2.7h4.4l.4-2.7a7.5 7.5 0 0 0 2-1.2l2.4 1 2-3.4-2-1.5c.1-.4.1-.8.1-1.2z'/%3E%3C/svg%3E");
}

/* Platform icon */
.site-nav.mobile-open a[href*='Platform']::before{
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232f7df4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 3 7.5 12 12l9-4.5L12 3z'/%3E%3Cpath d='M3 12l9 4.5 9-4.5'/%3E%3Cpath d='M3 16.5 12 21l9-4.5'/%3E%3C/svg%3E");
}

/* Services icon */
.site-nav.mobile-open a[href*='Services']::before{
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232f7df4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6V4h6v2'/%3E%3Crect x='4' y='6' width='16' height='14' rx='2'/%3E%3Cpath d='M4 12h16'/%3E%3C/svg%3E");
}

/* News icon */
/* News icon */
.site-nav.mobile-open .nav-news::before{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f7df4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h11a2 2 0 0 1 2 2v14H7a2 2 0 0 1-2-2V4z'/%3E%3Cpath d='M18 8h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-1'/%3E%3Cpath d='M8 8h7M8 12h7M8 16h4'/%3E%3C/svg%3E");
}


.site-nav.mobile-open .nav-cta{
    display:none !important;
}


.site-nav.mobile-open .language-switcher{
    right:24px;
    height:40px;
}


/* blur/dim page behind menu */
.site-nav.mobile-open::after{
    content:"";
    position:fixed;
    left:0;
    right:0;
    top:66px;
    bottom:0;

    background:rgba(2,8,23,.45);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);

    z-index:-1;
}


/* Close button */
.site-nav.mobile-open .mobile-menu-toggle{
    display:flex !important;

    position:absolute;
    top:0px;
    right:18px;

    width:34px !important;
    height:34px !important;
    min-width:34px !important;

    padding:0 !important;

    border:none;
    border-radius:50%  !important;

    background:#1f5fbf !important;

    box-shadow:
        0 6px 18px rgba(7,21,43,.20),
        0 0 0 3px rgba(255,255,255,.95);

    z-index:11000;
}


.site-nav.mobile-open .mobile-menu-toggle svg{
    width:14px !important;
    height:14px !important;
}


.site-nav.mobile-open .mobile-menu-toggle .line{
    stroke:#ffffff !important;
    stroke-width:2.1 !important;
    stroke-linecap:round;
}


.methodology-tag{
    position:relative !important;
    padding-left:34px !important;
}

.methodology-tag::before{
    content:"";

    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);

    width:20px;
    height:20px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:rgba(47,125,244,.35);
    border:1px solid rgba(109,169,255,.55);

    color:#ffffff;

    font-size:.70rem;
    font-weight:800;

    line-height:1;

    padding-top:1px;
}
.methodology-tag.tag-1::before{
    content:"1";
}

.methodology-tag.tag-2::before{
    content:"2";
}

.methodology-tag.tag-3::before{
    content:"3";
}

.methodology-tag.tag-4::before{
    content:"4";
}


/* ==========================
   MOBILE HEADER - FINAL
========================== */

.site-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:6px;                 /* reduced gap */
	    width:auto ;
    margin-left:auto;
    flex:0 0 auto;
}


.nav-icon-link{
    order:1;

    width:44px !important;
    height:46px !important;

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

    border:1px solid #d8dde8 !important;
    border-right:none !important;
    border-radius:12px 0 0 12px !important;

    background:rgba(255,255,255,.08) !important;
    box-shadow:none !important;

    margin:0 !important;
    padding:0 !important;
}

.language-switcher{
    order:2;

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

    position:relative;

    height:46px;

    padding:0 12px 0 10px;

    border:1px solid #d8dde8;
    border-left:none;
    border-radius:0 12px 12px 0;

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

    margin-left:0;
}

.language-switcher::before{
    content:"";

    position:absolute;
    left:-6px;
    top:9px;
    bottom:9px;

    width:1px;

    background:linear-gradient(
        to bottom,
        transparent,
        rgba(7,21,43,.24),
        transparent
    );
}


/* Menu icon */

.mobile-menu-toggle{

    order:3;

    margin-left:auto;      /* pushes it to the extreme right */

    width:40px;
    height:40px;

    border:none !important;
    background:none !important;
    box-shadow:none !important;
}

.mobile-menu-toggle svg{
    width:26px;
    height:26px;
}


.nav-flag{
    width:21px;
    height:21px;

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

.nav-flag img{
    width:21px;
    height:21px;
}


.language-switcher .nav-flag + .nav-flag{
    margin-left:1px;
}

}


/* ==========================================================
   INNOVENTECH
   FULL PAGE ENTERPRISE SKELETON LOADER
   ========================================================== */

.page-loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

    overflow-y: auto;
    overflow-x: hidden;

    background: #f4f7fb;

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

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

.page-loader.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ==========================================================
   COMPLETE SKELETON PAGE
   ========================================================== */

.page-skeleton {
    width: 100%;
    min-height: 100vh;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );
}


/* ==========================================================
   SKELETON NAVIGATION
   ========================================================== */

.skeleton-nav-header {
    position: relative;

    width: 100%;
    height: 88px;

    background: #ffffff;

    border-bottom: 1px solid #e8edf3;
}

.skeleton-nav-inner {
    position: relative;

    width: 90%;
    max-width: 1740px;
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 24px;
}


/* Logo */
.skeleton-nav-logo {
    width: 170px;
    height: 72px;

    flex-shrink: 0;

    border-radius: 10px;

    margin-top: 46px;
}


/* Navigation links */

.skeleton-nav-links {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}

.skeleton-nav-home {
    width: 38px;
    height: 38px;

    border-radius: 10px;
}

.skeleton-nav-link {
    width: 86px;
    height: 14px;

    border-radius: 30px;
}

.skeleton-nav-link--wide {
   width: 100px;
}


/* Language circles */

.skeleton-nav-languages {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-left: 10px;
}

.skeleton-language {
    width: 31px;
    height: 31px;

    border-radius: 50%;
}


/* Booking CTA */

.skeleton-nav-cta {
    width: 135px;
    height: 50px;

    margin-left: 8px;

    border-radius: 7px;
}


/* ==========================================================
   PAGE HERO / HEADER BANNER
   ========================================================== */

.skeleton-page-banner {
    width: 100%;

    min-height: 430px;

    background:
        linear-gradient(
            135deg,
            #eaf1f8 0%,
            #f4f8fc 46%,
            #e8f1fa 100%
        );

    border-bottom: 1px solid #e3eaf2;
}

.skeleton-banner-inner {
    width: 90%;
    max-width: 1740px;

    min-height: 430px;

    margin: 0 auto;

    padding: 60px 0;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(440px, .92fr);

    align-items: center;

    gap: clamp(70px, 8vw, 140px);
}


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

.skeleton-banner-copy {
    max-width: 760px;
}

.skeleton-kicker {
    width: 150px;
    height: 14px;

    margin-bottom: 28px;

    border-radius: 30px;
}

.skeleton-banner-title {
    width: 92%;
    height: 46px;

    margin-bottom: 14px;

    border-radius: 9px;
}

.skeleton-banner-title--short {
    width: 65%;

    margin-bottom: 35px;
}

.skeleton-banner-text {
    width: 100%;
    height: 15px;

    margin-bottom: 14px;

    border-radius: 30px;
}

.skeleton-banner-text--short {
    width: 72%;
}


/* Hero buttons */

.skeleton-banner-actions {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 37px;
}

.skeleton-banner-button {
    width: 175px;
    height: 50px;

    border-radius: 8px;
}

.skeleton-banner-button--secondary {
    width: 150px;
}


/* Hero image / graphic */

.skeleton-banner-visual {
    width: 100%;
    height: 300px;

    border-radius: 20px;
}


/* ==========================================================
   BODY
   ========================================================== */

.skeleton-body {
    width: 90%;
    max-width: 1740px;

    margin: 0 auto;

    padding: 58px 0 90px;
}

.skeleton-body-heading {
    margin-bottom: 35px;
}

.skeleton-section-kicker {
    width: 150px;
    height: 12px;

    margin-bottom: 18px;

    border-radius: 30px;
}

.skeleton-section-title {
    width: 360px;
    max-width: 70%;

    height: 30px;

    margin-bottom: 18px;

    border-radius: 8px;
}

.skeleton-section-intro {
    width: 540px;
    max-width: 80%;

    height: 13px;

    border-radius: 30px;
}


/* ==========================================================
   BODY CARDS
   ========================================================== */

.skeleton-content-grid {
    display: grid;

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

    gap: 26px;
}

.skeleton-content-card {
    min-height: 210px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e5ebf2;

    border-radius: 16px;
}

.skeleton-card-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 25px;

    border-radius: 13px;
}

.skeleton-card-title {
    width: 62%;
    height: 18px;

    margin-bottom: 21px;

    border-radius: 30px;
}

.skeleton-card-line {
    width: 100%;
    height: 12px;

    margin-bottom: 12px;

    border-radius: 30px;
}

.skeleton-card-line--short {
    width: 72%;
}


/* ==========================================================
   SKELETON BASE
   ========================================================== */


/* ==========================================================
   CONTINUOUS DOUBLE-BAND SHIMMER
   ========================================================== */

.skeleton {
    position: relative;
    overflow: hidden;

    background: #e3eaf2;
}


/* BOTH MOVING LIGHT BANDS */

.skeleton::before,
.skeleton::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: -42%;

    width: 42%;

    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.08) 18%,
        rgba(255,255,255,0.30) 35%,
        rgba(255,255,255,0.72) 48%,
        rgba(255,255,255,0.62) 50%,
        rgba(255,255,255,0.72) 52%,
        rgba(255,255,255,0.30) 65%,
        rgba(255,255,255,0.08) 82%,
        rgba(255,255,255,0) 100%
    );

    will-change: transform;

animation:
    innoventechSkeletonSweep
    1.35s
    linear
    infinite;
}


/* SECOND BAND STARTS HALF A CYCLE AHEAD */

.skeleton::after {
    animation-delay: -0.675s;
}


/* CONSTANT LEFT → RIGHT MOVEMENT */

@keyframes innoventechSkeletonSweep {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(340%);
    }

}

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

@media (max-width: 1200px) {

    .skeleton-nav-header {
        height: 105px;
    }

    .skeleton-nav-logo {
        width: 175px;
        height: 98px;

        margin-top: 26px;
    }

    .skeleton-nav-links {
        gap: 18px;
    }

    .skeleton-nav-link {
        width: 68px;
    }

    .skeleton-nav-link:nth-child(6),
    .skeleton-nav-link:nth-child(7) {
        display: none;
    }

    .skeleton-nav-cta {
        width: 112px;
        height: 48px;
    }

    .skeleton-banner-inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, .8fr);

        gap: 50px;
    }

    .skeleton-banner-visual {
        height: 245px;
    }

}


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

@media (max-width: 700px) {

    .skeleton-nav-header {
        height: 76px;
    }

    .skeleton-nav-inner {
        width: calc(100% - 32px);
    }

    .skeleton-nav-logo {
        width: 125px;
        height: 62px;

        margin-top: 8px;

        border-radius: 8px;
    }

    .skeleton-nav-links,
    .skeleton-nav-languages {
        display: none;
    }

    .skeleton-nav-cta {
        width: 43px;
        height: 40px;

        margin-left: auto;
    }


    /* Banner */

    .skeleton-page-banner {
        min-height: auto;
    }

    .skeleton-banner-inner {
        width: calc(100% - 32px);

        display: block;

        min-height: 0;

        padding: 38px 0 42px;
    }

    .skeleton-kicker {
        width: 105px;

        margin-bottom: 21px;
    }

    .skeleton-banner-title {
        width: 95%;

        height: 30px;
    }

    .skeleton-banner-title--short {
        width: 68%;

        margin-bottom: 28px;
    }

    .skeleton-banner-text {
        height: 12px;
    }

    .skeleton-banner-actions {
        margin-top: 27px;
    }

    .skeleton-banner-button {
        width: 130px;
        height: 42px;
    }

    .skeleton-banner-button--secondary {
        width: 112px;
    }

    .skeleton-banner-visual {
        height: 190px;

        margin-top: 35px;

        border-radius: 14px;
    }


    /* Body */

    .skeleton-body {
        width: calc(100% - 32px);

        padding: 40px 0 60px;
    }

    .skeleton-content-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .skeleton-content-card {
        min-height: 160px;

        padding: 23px;
    }

}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

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

    .skeleton::after {
        display: none;

        animation: none;
    }

    .page-loader {
        transition: none;
    }

}

.updates-header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}


.update-link {


    color: #1f6fff;
    font-weight: 750;
    text-decoration: none;
}


.update-link svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 180ms ease;
}


.update-link:hover svg {
    transform: translateX(4px);
}

.update-image {
    display: block;
    overflow: hidden;
}

.update-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 450ms ease;
}

.update-card:hover .update-image img {
    transform: scale(1.025);
}

.update-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 13px;

    margin-bottom: 15px;

    color: #78859a;
    font-size: 0.75rem;
    font-weight: 650;
}

.update-meta span {
    color: #1f6fff;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.update-body h3 a {
    color: inherit;
    text-decoration: none;
}

.update-body h3 a:hover {
    color: #1f6fff;
}


/* ==========================
   CLICKABLE INSIGHTS & NEWS
========================== */

.section-kicker-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;

    width: fit-content;
    margin-left: auto;
    margin-right: auto;

    color: #45d8ff;
    text-decoration: none;
    cursor: pointer;

    transition:
        color .25s ease,
        gap .3s ease;
}

.section-kicker-link svg {
    width: 0;
    height: 16px;

    opacity: 0;
    overflow: hidden;
    flex-shrink: 0;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform: translateX(-6px);

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

.section-kicker-link:hover {
    color: #ffffff;
    gap: 8px;
}

.section-kicker-link:hover svg {
    width: 18px;
    opacity: 1;
    transform: translateX(0);
}

.section-kicker-link:focus-visible {
    outline: 2px solid #45d8ff;
    outline-offset: 6px;
    border-radius: 3px;
}

.news-page,
.news-article-page {

    --news-text-strong: #102017;

    --news-green: #1d6a42;
    --news-green-dark: #145132;
    --news-green-pale: #f1f6f2;

    --news-line: rgba(31, 69, 48, 0.13);
}
/* =========================================================
   ARTICLE PAGE
   ========================================================= */


.news-article {
    background: transparent;
}

.news-article-shell {
    width: min(1180px, calc(100% - 64px));
    margin-inline: auto;
}


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

.news-article__header {
    position: relative;
    overflow: hidden;
    padding: 38px 0 34px;
    background:
        radial-gradient(
            circle at 86% 10%,
            rgba(92, 124, 87, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbfaf6 0%,
            #f8f6f0 100%
        );
}

.news-article__header::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -170px;
    width: 520px;
    height: 320px;
    border-radius: 50%;
    background: rgba(43, 90, 59, 0.04);
    filter: blur(50px);
    pointer-events: none;
}

.news-breadcrumbs {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 33px;
    color: #849087;
    font-size: 0.72rem;
    font-weight: 600;
}

.news-breadcrumbs a {
    color: #68766d;
    text-decoration: none;
    transition: color 180ms ease;
}

.news-breadcrumbs a:hover {
    color: var(--news-green);
}

.news-breadcrumbs svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-breadcrumbs__current {
    display: block;
    max-width: 540px;
    overflow: hidden;
    color: #89938d;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-article__category {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 16px;
    color: var(--news-green);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.news-article__category:hover {
    color: var(--news-green-dark);
}

.news-article__header h1 {
    position: relative;
    z-index: 1;
    max-width: 930px;
    margin: 0;
    color: var(--news-text-strong);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(2.75rem, 5vw, 4.75rem);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.news-article__lead {
    position: relative;
    z-index: 1;
    max-width: 690px;
    margin: 24px 0 0;
    color: #536058;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.75;
}

.news-article__meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-top: 27px;
    color: #6b776f;
    font-size: 0.77rem;
    font-weight: 650;
}

.news-article__author-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(29, 106, 66, 0.15);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #eaf2ec,
            #dce9df
        );
    color: var(--news-green);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.news-article__author {
    color: #39493f;
}

.news-article__meta-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #9ca59f;
}


/* =========================================================
   FEATURED ARTICLE IMAGE
   ========================================================= */

.news-article__figure {
    position: relative;
    z-index: 3;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(31, 69, 48, 0.10);
    border-radius: 10px;
    background: #e8ebe7;
    box-shadow:
        0 24px 60px
        rgba(39, 50, 42, 0.10);
}

.news-article__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8.35;
    object-fit: cover;
}


/* =========================================================
   ARTICLE CONTENT LAYOUT
   ========================================================= */

.news-article__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 760px)
        minmax(250px, 310px);
    align-items: start;
    justify-content: space-between;
    gap: 72px;
    padding: 46px 0 88px;
}

.news-article__main {
    min-width: 0;
}

.news-article__content {
    color: #465249;
    font-size: 1rem;
    line-height: 1.86;
}

.news-article__content > :first-child {
    margin-top: 0;
}

.news-article__content > :last-child {
    margin-bottom: 0;
}

.news-article__content p {
    margin: 0 0 23px;
}

.news-article__content h2 {
    margin: 43px 0 15px;
    color: var(--news-text-strong);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(1.55rem, 2.3vw, 2rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.028em;
}

.news-article__content h3 {
    margin: 34px 0 13px;
    color: var(--news-text-strong);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.35;
}

.news-article__content h4 {
    margin: 29px 0 11px;
    color: var(--news-text-strong);
    font-size: 1.05rem;
    line-height: 1.4;
}

.news-article__content a {
    color: var(--news-green);
    font-weight: 650;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.news-article__content a:hover {
    color: var(--news-green-dark);
}

.news-article__content ul,
.news-article__content ol {
    margin: 0 0 26px;
    padding-left: 23px;
}

.news-article__content li {
    padding-left: 4px;
}

.news-article__content li + li {
    margin-top: 8px;
}

.news-article__content strong {
    color: #26372c;
}

.news-article__content blockquote {
    margin: 35px 0;
    padding: 5px 0 5px 24px;
    border-left: 3px solid var(--news-green);
    color: #294032;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 1.14rem;
    font-weight: 500;
    line-height: 1.7;
}

.news-article__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 34px 0;
    border-radius: 8px;
}

.news-article__content table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.news-article__content th,
.news-article__content td {
    padding: 13px 15px;
    border: 1px solid var(--news-line);
    text-align: left;
    vertical-align: top;
}

.news-article__content th {
    background: var(--news-green-pale);
    color: var(--news-text-strong);
}


/* =========================================================
   ARTICLE CONTACT BOX
   ========================================================= */

.news-article__contact-box {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    max-width: 640px;
    margin-top: 42px;
    padding: 20px 22px;
    border: 1px solid rgba(29, 106, 66, 0.14);
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            #f1f7f3 0%,
            #eaf3ed 100%
        );
}

.news-article__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    flex: 0 0 auto;
    border: 1px solid rgba(29, 106, 66, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.70);
    color: var(--news-green);
}

.news-article__contact-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-article__contact-copy {
    min-width: 0;
}

.news-article__contact-copy strong {
    display: block;
    margin-bottom: 5px;
    color: #26372c;
    font-size: 0.85rem;
    line-height: 1.45;
}

.news-article__contact-copy p {
    margin: 0;
    color: #607067;
    font-size: 0.78rem;
    line-height: 1.6;
}

.news-article__contact-copy a {
    color: var(--news-green);
    font-weight: 750;
    text-underline-offset: 3px;
}


/* =========================================================
   ARTICLE ASIDE
   ========================================================= */

.news-article__aside {
    position: sticky;
    top: 116px;
}

.news-article__aside-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 31px 28px;
    border: 1px solid rgba(31, 69, 48, 0.13);
    border-radius: 10px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(93, 126, 84, 0.13),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #fbfaf5 0%,
            #f2efe5 100%
        );
    box-shadow:
        0 18px 45px
        rgba(42, 50, 43, 0.06);
}

.news-article__aside-label {
    position: relative;
    z-index: 3;
    display: inline-block;
    color: var(--news-green);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.news-article__aside-card h2 {
    position: relative;
    z-index: 3;
    max-width: 230px;
    margin: 17px 0 15px;
    color: var(--news-text-strong);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.news-article__aside-card p {
    position: relative;
    z-index: 3;
    max-width: 205px;
    margin: 0 0 24px;
    color: #657168;
    font-size: 0.82rem;
    line-height: 1.65;
}

.news-article__aside-link {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 39px;
    padding: 9px 14px;
    border-radius: 5px;
    background: var(--news-green);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.news-article__aside-link svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.news-article__aside-link:hover {
    background: var(--news-green-dark);
    transform: translateY(-1px);
}

.news-article__aside-link:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   ASIDE DECORATIVE PLANT
   ========================================================= */

.news-article__aside-plant {
    position: absolute;
    z-index: 1;
    right: -18px;
    bottom: -13px;
    width: 150px;
    height: 220px;
    opacity: 0.65;
    transform: rotate(-5deg);
    transform-origin: bottom center;
    pointer-events: none;
}

.news-aside-branch {
    position: absolute;
    right: 56px;
    bottom: 0;
    width: 2px;
    height: 200px;
    border-radius: 999px;
    background: #617d52;
    transform: rotate(-22deg);
    transform-origin: bottom center;
}

.news-aside-leaf {
    position: absolute;
    width: 49px;
    height: 24px;
    border-radius:
        100% 0
        100% 0;
    background:
        linear-gradient(
            135deg,
            #8da67a,
            #58794e
        );
}

.news-aside-leaf--1 {
    top: 20px;
    right: 35px;
    transform: rotate(38deg);
}

.news-aside-leaf--2 {
    top: 62px;
    right: 76px;
    transform: rotate(194deg);
}

.news-aside-leaf--3 {
    top: 94px;
    right: 23px;
    transform: rotate(27deg);
}

.news-aside-leaf--4 {
    top: 128px;
    right: 75px;
    transform: rotate(203deg);
}

.news-aside-leaf--5 {
    top: 158px;
    right: 32px;
    transform: rotate(39deg);
}


/* =========================================================
   RELATED NEWS
   ========================================================= */

.related-news {
    padding: 66px 0 92px;
    border-top: 1px solid var(--news-line);
    background:
        linear-gradient(
            180deg,
            #f9f8f3 0%,
            #ffffff 100%
        );
}

.related-news__heading {
    margin-bottom: 31px;
}

.related-news__heading .news-section-label {
    margin-bottom: 10px;
}

.related-news__heading h2 {
    margin: 0;
    color: var(--news-text-strong);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(2rem, 3.3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.04em;
}


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

@media (max-width: 980px) {

    .news-article__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .news-article__aside {
        position: static;
    }

    .news-article__aside-card {
        min-height: 270px;
    }

    .news-article__aside-card h2 {
        max-width: 470px;
    }

    .news-article__aside-card p {
        max-width: 440px;
    }
}


/* =========================================================
   ARTICLE SMALL TABLET
   ========================================================= */

@media (max-width: 760px) {

    .news-article-shell {
        width: min(100% - 40px, 1180px);
    }

    .news-article__header {
        padding: 31px 0 30px;
    }

    .news-breadcrumbs {
        margin-bottom: 27px;
    }

    .news-breadcrumbs__current {
        max-width: 260px;
    }

    .news-article__header h1 {
        font-size: clamp(2.4rem, 9vw, 3.7rem);
    }

    .news-article__lead {
        margin-top: 20px;
    }

    .news-article__figure {
        border-radius: 8px;
    }

    .news-article__image {
        aspect-ratio: 16 / 9.5;
    }

    .news-article__layout {
        padding: 39px 0 70px;
    }

    .related-news {
        padding: 55px 0 75px;
    }
}


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

@media (max-width: 620px) {

    .news-article-shell {
        width: min(100% - 32px, 1180px);
    }

    .news-article__header {
        padding: 25px 0 27px;
    }

    .news-breadcrumbs {
        display: none;
    }

    .news-article__category {
        margin-bottom: 13px;
    }

    .news-article__header h1 {
        font-size: clamp(2.15rem, 11vw, 3rem);
        line-height: 1.04;
    }

    .news-article__lead {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .news-article__meta {
        gap: 9px;
        margin-top: 23px;
    }

    .news-article__author-mark {
        width: 31px;
        height: 31px;
    }

    .news-article__figure {
        border-radius: 6px;
    }

    .news-article__image {
        aspect-ratio: 4 / 3;
    }

    .news-article__layout {
        gap: 40px;
        padding: 34px 0 60px;
    }

    .news-article__content {
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .news-article__content h2 {
        margin-top: 36px;
        font-size: 1.65rem;
    }

    .news-article__content h3 {
        margin-top: 30px;
        font-size: 1.25rem;
    }

    .news-article__contact-box {
        padding: 18px;
    }

    .news-article__contact-icon {
        width: 37px;
        height: 37px;
    }

    .news-article__aside-card {
        min-height: 310px;
        padding: 27px 24px;
    }

    .related-news {
        padding: 49px 0 67px;
    }

    .related-news__heading {
        margin-bottom: 25px;
    }

    .related-news__heading h2 {
        font-size: 2rem;
    }
}

/* =========================================================
   NEWS ARTICLE FINAL OVERRIDES
   ========================================================= */

.news-article-page {
    color: #15271e;
    background: #ffffff;
}

.news-article-page .news-article {
    background: transparent;
}

.news-article-page .news-article__header {
    background:
        radial-gradient(
            circle at 86% 10%,
            rgba(92, 124, 87, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbfaf6 0%,
            #f8f6f0 100%
        );
}

.news-article-page .news-article__header h1 {
    max-width: 930px;
    color: #102017;
}

.news-article-page .news-article__lead {
    color: #536058;
}

.news-article-page .news-article__content {
    color: #465249;
}

.news-article-page .news-article__content p {
    color: inherit;
}

.news-article-page .news-article__content h2,
.news-article-page .news-article__content h3,
.news-article-page .news-article__content h4 {
    color: #102017;
}

.news-article-page .news-article__aside-card p {
    color: #657168;
}

.news-article-page .news-article__aside-link,
.news-article-page .news-article__aside-link span {
    color: #ffffff;
}

.news-article-page .news-article__aside-link svg {
    color: #ffffff;
    stroke: currentColor;
}

.news-article-page .news-article__contact-copy p {
    color: #607067;
}
/* =========================================================
   INNOVENTECH HOMEPAGE
   Load this file AFTER site.css.
   It only styles .home-page and the homepage sections.
   ========================================================= */

.home-page {
    --home-blue: #1769ff;
    --home-blue-dark: #0f51cc;
    --home-cyan: #18d9f4;
    --home-text: #0b1830;
    --home-muted: #5f6d82;
    --home-line: #e2e8f1;

    overflow: hidden;
    color: var(--home-text);
    background: #ffffff;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page .container {
    width: min(90%, 1400px);
    margin-inline: auto;
}


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

.home-hero{
    position:relative;
    overflow:hidden;
    min-height:520px;

    background:
        url("/images/hero/innovation-hero.png")
        center center / cover no-repeat;

    color:#fff;
}


.home-hero__grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
    padding-block: 64px;
}

.home-hero__content {
    max-width: 730px;
}

.home-hero__content h1 {
    max-width: none;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.35rem, 4vw, 4.1rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.home-hero__lead {
    max-width: 720px;
    margin: 0 0 22px;
    color: var(--home-cyan);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 800;
    line-height: 1.45;
}

.home-hero__summary {
    max-width: 690px;
    margin: 0;
    color: #d9e4f2;
    font-size: clamp(1rem, 1.2vw, 1.13rem);
    line-height: 1.8;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.home-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 0.97rem;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

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

.home-btn--primary {
    color: #ffffff;
    background: var(--home-blue);
    border-color: var(--home-blue);
    box-shadow: 0 12px 30px rgba(23, 105, 255, 0.24);
}

.home-btn--primary:hover {
    color: #ffffff;
    background: var(--home-blue-dark);
    border-color: var(--home-blue-dark);
}

.home-btn--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(89, 155, 255, 0.75);
}

.home-btn--secondary:hover {
    color: #ffffff;
    background: rgba(23, 105, 255, 0.13);
    border-color: rgba(119, 175, 255, 0.95);
}


/* =========================================================
   FEATURE STRIP
   ========================================================= */

.home-features {
    position: relative;
    z-index: 5;
    
    background: #ffffff;
}

.home-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(12, 33, 67, 0.08);
}

.home-feature {
    position: relative;
    min-width: 0;
    
    
    gap: 22px;
    padding: 31px 32px;
    color: var(--home-text);
    text-decoration: none;
    transition: background-color 180ms ease;
}

.home-feature + .home-feature::before {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 0;
    width: 1px;
    background: var(--home-line);
}


.home-feature__icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef4ff;
}

.home-feature__icon img {
    display: block;
    width: 37px;
    height: 37px;
    object-fit: contain;
}


.home-feature h2 {
    margin: 0 0 12px;
    color: var(--home-text);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.25;
}

.home-feature p {
    margin: 0;
    color: var(--home-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.home-feature__link {


    width: fit-content;
    
    
    font-size: 0.88rem;
    
}

.home-feature__link svg {


    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    
}


/* =========================================================
   UPDATES
   ========================================================= */

.home-page .updates-section {
    
    
    color: var(--home-text);
    
}

.home-page .updates-header {
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.home-page .updates-header::before {
    display: none;
}

.home-page .updates-title-wrap {
    position: static !important;
    transform: none !important;
    text-align: left !important;
}

.home-page .section-kicker {
    display: block;
    margin-bottom: 6px;
    color: #1856c9;
    
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-page .updates-header h2 {
    margin: 0;
    
    
    font-weight: 800;
    
    letter-spacing: -0.025em;
}

.home-page .updates-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.home-page .latest-updates-all-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #155bd7;
    
    font-weight: 750;
    text-decoration: none;
}

.home-page .latest-updates-all-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.home-page .latest-updates-all-link:hover svg {
    transform: translateX(4px);
}

.home-page .updates-controls {
    display: flex;
    gap: 10px;
}

.home-page .news-arrow {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    
    
    cursor: pointer;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}


.home-page .news-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page .news-carousel {
    
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.home-page .news-carousel.is-dragging {
    cursor: grabbing;
}

.home-page .news-track {
    display: flex;
    gap: 18px;
    will-change: transform;
    transition: transform 440ms cubic-bezier(.4, 0, .2, 1);
}

.home-page .news-carousel.is-dragging .news-track {
    transition: none;
}

.home-page .update-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 160px;
    border: 1px solid #e0e7f1;
    border-radius: 8px;
    color: var(--home-text);
    background: #ffffff;
    
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.home-page .update-card:hover {
    transform: translateY(-4px);
    border-color: #cbd9ed;
    
}

.home-page .update-image {
    display: block;
    min-width: 0;
    aspect-ratio: auto;
    overflow: hidden;
    background: #eaf0f8;
}

.home-page .update-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 350ms ease;
}

.home-page .update-card:hover .update-image img {
    transform: scale(1.035);
}

.home-page .update-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px;
}

.home-page .update-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 9px;
    margin-bottom: 8px;
    color: #7a8799;
    
    font-weight: 700;
}

.home-page .update-meta span {
    color: #175bd3;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-page .update-body h3 {
    margin: 0 0 8px;
    color: var(--home-text);
    
    font-weight: 800;
    
}

.home-page .update-body h3 a {
    color: inherit;
    text-decoration: none;
}

.home-page .update-body h3 a:hover {
    color: #1769ff;
}

.home-page .update-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 12px;
    color: #657186;
    
    
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-page .update-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-top: auto;
    padding: 0;
    border: 0;
    color: #155bd7;
    
    font-weight: 800;
    text-decoration: none;
}

.home-page .update-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.home-page .update-link:hover {
    color: #0d49b7;
    transform: none;
}

.home-page .update-link:hover svg {
    transform: translateX(4px);
}


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

.home-page .social-section {
    padding: 22px 0 30px;
    background: #ffffff;
}

.home-page .social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.home-page .social-title {
    color: var(--home-text);
    
    font-weight: 800;
}

.home-page .social-icons {
    display: flex;
    gap: 11px;
    margin: 0;
}

.home-page .social-icon {
    position: relative;
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce4f0;
    border-radius: 50%;
    background: #f8faff;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.home-page .social-icon:hover {
    transform: translateY(-3px);
    border-color: #9dbbf0;
    background: #edf4ff;
}

.home-page .social-icon img {
    width: 21px;
    height: 21px;
    object-fit: contain;
}

.home-page .social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 52px;
    left: 50%;
    padding: 6px 9px;
    border-radius: 5px;
    color: #ffffff;
    background: #07152b;
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 5px);
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.home-page .social-icon:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}


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

@media (max-width: 1180px) {

    .home-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
        gap: 42px;
        padding-block: 54px;
    }

    .methodology-card {
        padding: 25px 22px 22px;
    }

    .methodology-step {
        font-size: 0.68rem;
    }

    .methodology-step__icon {
        width: 49px;
        height: 49px;
    }

    .methodology-step__icon svg {
        width: 25px;
        height: 25px;
    }

    .home-feature {
        grid-template-columns: 59px minmax(0, 1fr);
        gap: 15px;
        padding: 26px 23px;
    }

    .home-feature__icon {
        width: 51px;
        height: 51px;
    }

    .home-feature__icon img {
        width: 31px;
        height: 31px;
    }

    .home-feature h2 {
        font-size: 1.05rem;
    }

    .home-feature p {
        font-size: 0.84rem;
    }

    .home-page .update-card {
        flex-basis: calc((100% - 18px) / 2);
    }
}


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

@media (max-width: 900px) {

    .home-hero {
        background-position: 60% bottom;
    }

    .home-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 38px;
        padding-block: 58px;
    }

    .home-hero__content {
        max-width: 650px;
    }

    .methodology-card {
        width: 100%;
        max-width: 680px;
    }

    .home-features__grid {
        grid-template-columns: 1fr;
    }

    .home-feature + .home-feature::before {
        top: 0;
        right: 24px;
        bottom: auto;
        left: 24px;
        width: auto;
        height: 1px;
    }

    .home-feature {
        grid-template-columns: 62px minmax(0, 1fr);
    }
}


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

@media (max-width: 700px) {

    .home-page .container {
        width: min(100% - 32px, 1400px);
    }

    .home-hero {
        min-height: auto;
        background:
            linear-gradient(
                90deg,
                rgba(2, 8, 23, 0.98) 0%,
                rgba(3, 12, 31, 0.92) 100%
            ),
            url("/images/hero/innovation-hero.png") 58% bottom / cover no-repeat;
    }

    .home-hero__grid {
        display: block;
        padding-block: 43px 48px;
    }

    .home-hero__content h1 {
        max-width: 330px;
        margin-bottom: 14px;
        font-size: 2.05rem;
        line-height: 1.08;
    }

    .home-hero__lead {
        max-width: 340px;
        margin-bottom: 15px;
        font-size: 0.88rem;
    }

    .home-hero__summary {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .home-hero__actions {
        flex-direction: column;
        margin-top: 25px;
    }

    .home-btn {
        width: 100%;
        min-height: 48px;
    }

    .methodology-card {
        margin-top: 34px;
        padding: 23px 18px 20px;
    }

    .methodology-card__header {
        padding-bottom: 14px;
    }

    .methodology-card__header h2 {
        font-size: 1.12rem;
    }

    .methodology-card__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
        margin-top: 20px;
    }

    .methodology-card__steps::before {
        display: none;
    }

    .methodology-step {
        padding: 12px 7px;
        border: 1px solid rgba(55, 132, 255, 0.22);
        border-radius: 9px;
        background: rgba(27, 87, 180, 0.07);
        font-size: 0.72rem;
    }

    .methodology-step__icon {
        width: 45px;
        height: 45px;
        box-shadow: none;
    }

    .methodology-step__icon svg {
        width: 23px;
        height: 23px;
    }

    .methodology-card__link {
        margin-top: 20px;
    }

    .home-features {
        padding: 22px 0 29px;
    }

    .home-features__grid {
        border-radius: 8px;
    }

    .home-feature {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding: 23px 19px;
    }

    .home-feature__icon {
        width: 47px;
        height: 47px;
    }

    .home-feature__icon img {
        width: 28px;
        height: 28px;
    }

    .home-feature h2 {
        font-size: 1rem;
    }

    .home-feature p {
        font-size: 0.84rem;
    }

    .home-page .updates-section {
        padding: 28px 0 38px;
    }

    .home-page .updates-header {
        min-height: 0;
        display: block;
        margin-bottom: 19px;
    }

    .home-page .updates-header-actions {
        margin-top: 17px;
    }

    .home-page .updates-header-actions > .latest-updates-all-link {
        display: none;
    }


    .home-page .news-track {
        gap: 14px;
    }

    .home-page .update-card {
        flex: 0 0 88%;
        grid-template-columns: 1fr;
    }

    .home-page .update-image {
        aspect-ratio: 16 / 8.5;
    }

    .home-page .update-body {
        padding: 18px;
    }

    .home-page .update-body p {
        -webkit-line-clamp: 3;
    }


    .home-page .social-icon::after {
        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================================
   ONE COMPLETE SR&ED ECOSYSTEM
   ========================================================= */

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

    min-width: 0;
    padding: 28px 10px 10px;

left:60px;

}


/* subtle internal glow */

.ecosystem-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 52%,
            rgba(31, 126, 255, 0.13),
            transparent 34%
        );

    pointer-events: none;
}


/* Keep all content above decorative effects */

.ecosystem-card > * {
    position: relative;
    z-index: 2;
}


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

.ecosystem-card__header {
    padding-bottom: 16px;
}


/* =========================================================
   GRID
   ========================================================= */

.ecosystem-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    

    margin-top: 4px;
}


/* =========================================================
   CARDS
   ========================================================= */

.ecosystem-item {
    position: relative;
    z-index: 2;

    min-width: 0;
    min-height: 128px;

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

    padding: 18px 14px;

    border: 1px solid rgba(42, 127, 255, 0.62);
    border-radius: 8px;

    color: #ffffff;
    text-align: center;
    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            rgba(11, 39, 78, 0.80),
            rgba(4, 20, 45, 0.80)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

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

.ecosystem-item:hover {
    transform: translateY(-3px);

    border-color: rgba(75, 166, 255, 0.95);

    background:
        linear-gradient(
            145deg,
            rgba(16, 55, 106, 0.92),
            rgba(5, 27, 60, 0.92)
        );

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


/* icons */

.ecosystem-item__icon {
    width: 52px;
    height: 52px;

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

    margin-bottom: 2px;

    color: #19d8f3;
}

.ecosystem-item__icon svg {
    width: 46px;
    height: 46px;

    display: block;

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

/* content */

.ecosystem-item__content {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;
}

.ecosystem-item__content strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.25;
}

.ecosystem-item__content > span {
    display: block;


    color: #d5e2f1;

    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.45;
}


/* =========================================================
   CENTRAL HUB
   ========================================================= */

.ecosystem-hub {


    border: 1px solid rgba(63, 153, 255, 0.9);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(19, 146, 255, 0.55) 0%,
            rgba(5, 55, 116, 0.92) 43%,
            rgba(2, 15, 35, 1) 72%
        );

    box-shadow:
        0 0 0 5px rgba(5, 24, 52, 0.95),
        0 0 24px rgba(30, 145, 255, 0.75);


}

.ecosystem-hub::before,
.ecosystem-hub::after {
    content: "";

    position: absolute;

    background: rgba(38, 133, 255, 0.55);
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1180px) and (min-width: 701px) {

    .ecosystem-card {
        padding: 23px 22px 20px;
    }


    .ecosystem-grid {
        gap: 10px;
    }

    .ecosystem-item {
        min-height: 112px;
        padding: 14px 10px;
    }

    .ecosystem-item__icon {
        width: 29px;
        height: 29px;
        margin-bottom: 6px;
    }

    .ecosystem-item__icon svg {
        width: 27px;
        height: 27px;
    }

    .ecosystem-item__content strong {
        font-size: 0.75rem;
    }


    .ecosystem-hub {
        width: 44px;
        height: 44px;
    }

    .ecosystem-hub::before {
        width: 62px;
    }

    .ecosystem-hub::after {
        height: 62px;
    }
}


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

@media (max-width: 700px) {

.ecosystem-card {
    left: 0;
    width: 100%;
    max-width: 100%;

    margin: 34px auto 0;
    padding: 22px 17px 19px;
}

    .ecosystem-card__header {
        text-align: center;
        
    }


    .ecosystem-grid {
        gap: 9px;
    }

    .ecosystem-item {
        min-height: 116px;
        padding: 14px 9px;
    }

    .ecosystem-item__icon {
        width: 29px;
        height: 29px;
        margin-bottom: 7px;
    }

    .ecosystem-item__icon svg {
        width: 26px;
        height: 26px;
    }

    .ecosystem-item__content strong {
        font-size: 0.74rem;
    }

    .ecosystem-item__content > span {
        
        font-size: 0.59rem;
        line-height: 1.35;
    }

    .ecosystem-hub {
        width: 40px;
        height: 40px;

        box-shadow:
            0 0 0 4px rgba(5, 24, 52, 0.95),
            0 0 18px rgba(30, 145, 255, 0.70);
    }

    .ecosystem-hub::before {
        width: 54px;
    }

    .ecosystem-hub::after {
        height: 54px;
    }


    .ecosystem-card__footer {
        margin-top: 14px;
        padding-top: 14px;
        text-align: center;
    }
}


.ecosystem-item--exchange .ecosystem-item__icon {
    width: 78px;
    height: 62px;
    margin-bottom: 10px;
}

.ecosystem-item--exchange .ecosystem-item__icon svg {
    width: 78px;
    height: 64px;
}

.ecosystem-item--filing .ecosystem-item__icon {
    width: 58px;
    height: 52px;
    margin-bottom: 10px;

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

.ecosystem-item--filing .ecosystem-item__icon svg {
    display: block;
    width: 58px;
    height: auto;
}


/* =========================================================
   ECOSYSTEM TEXT WIDTH — FINAL OVERRIDE
   ========================================================= */

/* Keep the complete ecosystem heading on one line */
.ecosystem-card__header h2 {
    max-width: none;
    
}

.ecosystem-card__header h2 span {
    
    margin-left: 0.18em;
}

/* Allow each card's text to use the available card width */
.ecosystem-item__content {
    width: 100%;
    max-width: none;
}

.ecosystem-item__content > span {
    width: 100%;
    max-width: 230px;
    padding-inline: 4px;
}

/* Laptop sizing */
@media (max-width: 1180px) and (min-width: 701px) {

    .ecosystem-card__header h2 {
        font-size: 1.22rem;
    }

    .ecosystem-item__content > span {
        max-width: 190px;
        font-size: 0.64rem;
        line-height: 1.45;
    }
	
}

/* Mobile can wrap the heading when the screen is genuinely too narrow */
@media (max-width: 700px) {

    .ecosystem-card__header h2 {
        white-space: normal;
    }

    .ecosystem-card__header h2 span {
        display: inline;
    }

    .ecosystem-item__content > span {
        max-width: 145px;
        padding-inline: 0;
    }
}


/* =========================================================
   LAPTOP ECOSYSTEM — FINAL OVERRIDE
   ========================================================= */

@media (min-width: 901px) and (max-width: 1440px) {

    .ecosystem-card {
            left: 30px;
            margin-left: 0;
        }
    
        .ecosystem-hub {
            top: calc(50% - 8px);
        }

    .home-hero {
            min-height: 460px;
        }
    
        .home-hero__grid {
            min-height: 460px;
            padding-block: 32px;
        }
}


/* =========================================================
   Ecosystem Hub Image
   ========================================================= */

.ecosystem-hub{
    position:absolute;

    top:50%;
    left:50%;

    width:90px;
    height:90px;

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


    pointer-events:none;

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

.ecosystem-hub__image{

    display:block;

    width:100%;
    height:100%;

    object-fit:contain;

    user-select:none;
    pointer-events:none;
}

@media (max-width:1440px){

    .ecosystem-hub{

        width:74px;
        height:74px;
    }

}

/* =========================================================
   FEATURE SECTION — SMOOTH HERO TRANSITION
   ========================================================= */

/* =========================================================
   HERO TO FEATURES — FINAL TRANSITION
   ========================================================= */


.home-features {
 padding: 44px 0 44px;
    background-color: #eaf3ff;

background-image:
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%231769ff' stroke-opacity='.065' stroke-width='.8'%3E%3Cpath d='M24 0L48 24L24 48L0 24Z'/%3E%3Cpath d='M24 10L38 24L24 38L10 24Z'/%3E%3Cpath d='M24 0V10M48 24H38M24 48V38M0 24H10'/%3E%3C/g%3E%3C/svg%3E");

background-size:48px 48px;
background-repeat:repeat;
}
/* =========================================================
   NEWS SECTION — DISTINCT FROM FEATURE SECTION
   ========================================================= */

.home-page .updates-section {


    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f9fbff 55%,
            #ffffff 100%
        );


}


/* Soft separation band */


/* Keep the content above decorative layers */


/* Target only the desktop link directly below the carousel */
/* =========================================================
   LATEST UPDATES — BOTTOM VIEW-ALL LINK
   ========================================================= */

.home-page .updates-section > .container > .latest-updates-all-link {
    width: fit-content;

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

    margin-top: 26px;
    margin-left: auto;

    color: #155bd7;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;

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

.home-page .updates-section > .container > .latest-updates-all-link svg {
    width: 18px;
    height: 18px;

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

    transition:
        transform 220ms ease,
        stroke 220ms ease;
}

/* Hover */

.home-page .updates-section > .container > .latest-updates-all-link:hover {
    color: #00cfff;          /* Your cyan accent */
}

.home-page .updates-section > .container > .latest-updates-all-link:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   FEATURE LINKS — PERFECT VERTICAL ALIGNMENT
   ========================================================= */

.home-features__grid {
    align-items: stretch;
}

.home-feature {
    display: grid;

    grid-template-columns:
        76px
        minmax(0, 1fr);

    align-items: stretch;
    min-height: 80px;
}

.home-feature__icon {
    align-self: start;
}

.home-feature__copy {
    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;
}
.home-feature__link {
    
    margin-left: auto;


}
@media (max-width: 900px) {

    .home-feature {
        min-height: auto;
    }

    .home-feature__link {
        margin-top: 20px;
        padding-top: 0;
    }
	
	    .home-page .updates-section {
        padding-top: 30px;
    }


    .home-page .updates-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .home-page .updates-title-wrap {
        flex: 1 1 auto;
        width: auto;
        text-align: left !important;
    }

    .home-page .updates-header-actions {
        flex: 0 0 auto;
        width: auto;
        margin: 0 0 0 auto;
    }

    .home-page .updates-controls {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

}


.update-link {
    margin-top: auto;

    align-self: flex-end;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-feature__link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:auto;
    align-self:flex-end;

    color:#155bd7;
    text-decoration:none;
    font-weight:700;

    transition:color .25s ease;
}

.home-feature__link svg{
    width:18px;
    height:18px;

    stroke:currentColor;
    fill:none;

    transition:transform .25s ease;
}

.home-feature__link:hover{
    color:#16dcf5;
}

.home-feature__link:hover svg{
    transform:translateX(4px);
}

.news-carousel {
    cursor: grab;
}

.news-carousel.is-dragging {
    cursor: grabbing;
}


/* =========================================================
   NAVIGATION ACTIVE STATE — FINAL
   Delete every previous active-navigation rule.
   ========================================================= */

/* Regular active page link */
.site-nav > a.active:not(.nav-cta):not(.nav-flag):not(.nav-icon-link) {
    position: relative;
    color: #1f5fbf;
    background: rgba(31, 95, 191, 0.10);
}

.site-nav > a.active:not(.nav-cta):not(.nav-flag):not(.nav-icon-link)::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 3px;
    left: 14px;

    height: 2px;
    border-radius: 999px;
    background: #1f5fbf;
}

/* =========================================
   Active Home icon
========================================= */

.site-nav > .nav-icon-link.active{
    position: relative;
    color:#1f5fbf;
    background:rgba(31,95,191,.10);
}

/* Blue underline */
.site-nav > .nav-icon-link.active::before{
    content:"";

    position:absolute;

    left:10px;
    right:10px;
    bottom:3px;

    height:2px;

    border-radius:999px;

    background:#1f5fbf;
}

/* Keep the tooltip working */
.site-nav > .nav-icon-link::after{
    z-index:10001;
}

/* =========================================================
   WHY MODAL OPEN
   ========================================================= */

/*
   Temporarily suppress the active page appearance while the
   Why InnoVenTech modal is open.
*/
body.why-modal-open
.site-nav > a.active:not(.why-link) {
    color: #07152b !important;
    background: transparent !important;
}

/* Remove either possible pseudo-element from old/mobile rules */
body.why-modal-open
.site-nav > a.active:not(.why-link)::before,
body.why-modal-open
.site-nav > a.active:not(.why-link)::after {
    display: none !important;
}

/* Keep the Home tooltip available on hover */
body.why-modal-open
.site-nav > .nav-icon-link.active:hover::after {
    display: block !important;
}

/* Why InnoVenTech becomes the only visible active item */
body.why-modal-open
.site-nav > .why-link.active {
    position: relative;
    color: #1f5fbf !important;
    background: rgba(31, 95, 191, 0.10) !important;
}

body.why-modal-open
.site-nav > .why-link.active::before {
    display: none !important;
}

body.why-modal-open
.site-nav > .why-link.active::after {
    content: "";
    display: block !important;

    position: absolute;
    right: 14px;
    bottom: 3px;
    left: 14px;
    top: auto;

    width: auto;
    height: 2px;

    padding: 0;
    border-radius: 999px;

    opacity: 1;
    background: #1f5fbf;

    transform: none;
}


/* =========================================================
   ECOSYSTEM CARDS — OPTION 3
   Add at the very bottom of site.css
   ========================================================= */

/* Four-card layout */
.ecosystem-grid{
    gap:16px 20px;
}


/* Main horizontal card design */
.ecosystem-grid .ecosystem-item{
    position:relative;

    min-height:112px;
    padding:18px 20px;

    display:grid;
    grid-template-columns:64px minmax(0, 1fr);
    align-items:center;
    justify-content:initial;
    column-gap:17px;

    text-align:left;

    border:1px solid rgba(30, 157, 255, .48);
    border-radius:14px;

    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(21, 167, 255, .11),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(8, 42, 84, .92) 0%,
            rgba(4, 24, 55, .94) 58%,
            rgba(3, 18, 42, .96) 100%
        );

    box-shadow:
        0 0 0 1px rgba(0, 119, 255, .05),
        0 0 18px rgba(0, 139, 255, .12),
        inset 0 1px 0 rgba(255, 255, 255, .035);

    overflow:hidden;
}


/* Subtle illuminated edge */
.ecosystem-grid .ecosystem-item::before{
    content:"";

    position:absolute;
    inset:0;

    border-radius:inherit;

    background:
        linear-gradient(
            110deg,
            rgba(49, 200, 255, .07),
            transparent 32%,
            transparent 72%,
            rgba(24, 102, 210, .05)
        );

    pointer-events:none;
}


/* Icon area */
.ecosystem-grid .ecosystem-item__icon,
.ecosystem-grid .ecosystem-item--exchange .ecosystem-item__icon,
.ecosystem-grid .ecosystem-item--filing .ecosystem-item__icon{
    position:relative;
    z-index:2;

    width:64px;
    height:64px;
    margin:0;

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

    color:#20def8;

    border-right:none;
}


/* Vertical cyan separator glow */
.ecosystem-grid .ecosystem-item__icon::after{
    content:"";

    position:absolute;
    top:8px;
    right:-2px;
    bottom:8px;

    width:2px;

    background:linear-gradient(
        to bottom,
        transparent,
        #20def8 18%,
        #20def8 82%,
        transparent
    );

    box-shadow:0 0 8px rgba(32, 222, 248, .40);
}


/* Normalize all SVG icon dimensions */
.ecosystem-grid .ecosystem-item__icon svg,
.ecosystem-grid .ecosystem-item--exchange .ecosystem-item__icon svg,
.ecosystem-grid .ecosystem-item--filing .ecosystem-item__icon svg{
    width:43px;
    height:43px;

    display:block;

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


/* Text block */
.ecosystem-grid .ecosystem-item__content{
    position:relative;
    z-index:2;

    width:100%;
    min-width:0;

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

    text-align:left;
}


/* Card title */
.ecosystem-grid .ecosystem-item__content strong{
    margin:0 0 5px;

    color:#ffffff;

    font-size:.94rem;
    font-weight:800;
    line-height:1.2;
    letter-spacing:-.015em;
}


/* Card description */
.ecosystem-grid .ecosystem-item__content > span{
    width:100%;
    max-width:220px;
    padding:0;

    color:#d7e6f5;

    font-size:.70rem;
    font-weight:500;
    line-height:1.45;
}


/* Professional hover */
.ecosystem-grid .ecosystem-item:hover{
    transform:translateY(-3px);

    border-color:rgba(36, 202, 255, .78);

    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(21, 167, 255, .17),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            rgba(10, 52, 101, .96),
            rgba(4, 29, 65, .97)
        );

    box-shadow:
        0 13px 28px rgba(0, 0, 0, .24),
        0 0 22px rgba(0, 145, 255, .18),
        inset 0 1px 0 rgba(255, 255, 255, .05);
}


/* Keep the middle hub above the cards */
.ecosystem-hub{
    z-index:25;
}

@media (min-width:701px) and (max-width:1440px){

    .ecosystem-grid{
        gap:13px 16px;
    }

    .ecosystem-grid .ecosystem-item{
        min-height:100px;
        padding:14px 15px;

        grid-template-columns:54px minmax(0, 1fr);
        column-gap:13px;
    }

    .ecosystem-grid .ecosystem-item__icon,
    .ecosystem-grid .ecosystem-item--exchange .ecosystem-item__icon,
    .ecosystem-grid .ecosystem-item--filing .ecosystem-item__icon{
        width:54px;
        height:58px;
    }

    .ecosystem-grid .ecosystem-item__icon svg,
    .ecosystem-grid .ecosystem-item--exchange .ecosystem-item__icon svg,
    .ecosystem-grid .ecosystem-item--filing .ecosystem-item__icon svg{
        width:36px;
        height:36px;
    }

    .ecosystem-grid .ecosystem-item__content strong{
        font-size:.79rem;
    }

    .ecosystem-grid .ecosystem-item__content > span{
        max-width:190px;
        font-size:.61rem;
        line-height:1.42;
    }
}

    .home-page .home-hero .home-hero__content #home-hero-title{
        font-size:3.2rem;
        line-height:.98;
        letter-spacing:-1.8px;
    
    }
	
	@media (min-width:701px) and (max-width:1440px){

    .home-page .home-hero .home-hero__content #home-hero-title{
        font-size:2.3rem;
        line-height:.98;
        letter-spacing:-1.8px;
    
    }
}


/* =========================================================
   HOME FEATURE ICONS — FINAL PROFESSIONAL OVERRIDE
   Removes circular backgrounds, enlarges icons,
   and places them closer to the text
   ========================================================= */


/* Desktop */

.home-page .home-feature{
    grid-template-columns:56px minmax(0, 1fr);
    column-gap:14px;
    align-items:start;
}

.home-page .home-feature__icon{
    width:56px;
    height:56px;

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

    margin:0;
    padding:0;

    border:0;
    border-radius:0;
    background:none;
    box-shadow:none;

    align-self:start;
}

.home-page .home-feature__icon img{
    display:block;

    width:52px;
    height:52px;

    max-width:none;
    object-fit:contain;

    background:transparent;
    border:0;
    border-radius:0;
}

.home-page .home-feature__copy{
    min-width:0;
    padding-top:1px;
}

.home-page .home-feature h2{
    margin-top:0;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width:701px) and (max-width:1180px){

    .home-page .home-feature{
        grid-template-columns:48px minmax(0, 1fr);
        column-gap:11px;
    }

    .home-page .home-feature__icon{
        width:48px;
        height:48px;
    }

    .home-page .home-feature__icon img{
        width:45px;
        height:45px;
    }
}


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

@media (max-width:700px){

    .home-page .home-feature{
        grid-template-columns:46px minmax(0, 1fr);
        column-gap:11px;
    }

    .home-page .home-feature__icon{
        width:46px;
        height:46px;
    }

    .home-page .home-feature__icon img{
        width:43px;
        height:43px;
    }
}


/* =========================================================
   NEWS CAROUSEL — PREVENT BOTTOM CLIPPING
   ========================================================= */


/* =========================================================
   NEWS CAROUSEL — FINAL CLEAN BOTTOM
   ========================================================= */

.home-page .news-carousel{
    overflow:hidden;

    padding-top:5px;
    padding-bottom:8px;

    margin-bottom:-8px;
    background:transparent;
}

.home-page .update-card,
.home-page .update-card:hover{
    box-shadow:none;
}

/* =========================================================
   LATEST UPDATES — PROFESSIONAL LIGHT TRANSITION
   ========================================================= */

.home-page .updates-section {
    position: relative;
    overflow: hidden;

    padding: 34px 0 52px;

    background-color: #f8faff;

    background-image:
        /* Soft transition from the feature section */
        linear-gradient(
            180deg,
            rgba(234, 243, 255, 0.96) 0px,
            rgba(241, 247, 255, 0.78) 28px,
            rgba(248, 250, 255, 0.98) 82px,
            #f8faff 150px
        ),

        /* Very subtle blue atmosphere on the left */
        radial-gradient(
            circle at 12% 30%,
            rgba(23, 105, 255, 0.055) 0%,
            rgba(23, 105, 255, 0.022) 28%,
            transparent 55%
        ),

        /* Very subtle cyan atmosphere on the right */
        radial-gradient(
            circle at 88% 18%,
            rgba(0, 207, 255, 0.035) 0%,
            transparent 48%
        );

    border-top: 0;

    box-shadow:
        inset 0 1px 0 rgba(23, 105, 255, 0.08);
}


/* Soft transition line between the two sections */

.home-page .updates-section::before {
    content: "";

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

    width: min(90%, 1500px);
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(23, 105, 255, 0.08) 14%,
        rgba(23, 105, 255, 0.24) 50%,
        rgba(23, 105, 255, 0.08) 86%,
        transparent 100%
    );

    pointer-events: none;
}


/* Optional soft glow at the top */

.home-page .updates-section::after {
    content: "";

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

    width: min(92%, 1550px);
    height: 90px;

    transform: translateX(-50%);

    background: radial-gradient(
        ellipse at top,
        rgba(23, 105, 255, 0.055),
        transparent 70%
    );

    pointer-events: none;
}


/* Ensure the news content remains above decorative layers */

.home-page .updates-section > .container {
    position: relative;
    z-index: 2;
}

.home-page .updates-header h2 {
    color: #071b3a;
}

.home-page .news-arrow {
    color: #173b68;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 74, 150, 0.17);

    box-shadow:
        0 3px 10px rgba(22, 62, 112, 0.04);
}

.home-page .news-arrow svg {
    stroke: currentColor;
}

.home-page .news-arrow:hover {
    color: #ffffff;
    background: #1769ff;
    border-color: #1769ff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(23, 105, 255, 0.20);
}

/* =========================================================
   FOOTER LEGAL LINKS — FINAL
   ========================================================= */

.footer-brand-column {
    min-width: 0;
}

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

.footer-legal-links {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 9px;

    max-width: 390px;

    margin-top: 23px;
    padding-top: 17px;
}

.footer-legal-links::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: min(100%, 310px);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(109, 168, 255, 0.55) 0%,
            rgba(109, 168, 255, 0.18) 58%,
            transparent 100%
        );
}

.site-footer .footer-legal-links a {
    display: inline-block;

    margin: 0;
    padding: 0;

    color: rgba(216, 224, 234, 0.72);

    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.5;
    text-decoration: none;

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

.site-footer .footer-legal-links a:hover {
    color: #6da8ff;
    text-decoration: none;
    transform: translateY(-1px);
}

.site-footer .footer-legal-links a:focus-visible {
    outline: 2px solid #6da8ff;
    outline-offset: 4px;
    border-radius: 2px;
}

.footer-legal-separator {
    color: rgba(216, 224, 234, 0.28);
    font-size: 0.75rem;
    line-height: 1;
}


/* =========================================================
   FOOTER LEGAL LINKS — LAPTOP
   ========================================================= */

@media (min-width: 701px) and (max-width: 1200px) {

    .footer-legal-links {
        gap: 4px 7px;
        margin-top: 18px;
        padding-top: 14px;
    }

    .site-footer .footer-legal-links a {
        font-size: 0.7rem;
    }

    .footer-legal-separator {
        font-size: 0.68rem;
    }
}


/* =========================================================
   FOOTER LEGAL LINKS — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .footer-brand-description {
        max-width: 420px;
    }

    .footer-legal-links {
        max-width: 100%;

        margin-top: 19px;
        padding-top: 15px;

        gap: 7px 10px;
    }

    .footer-legal-links::before {
        width: min(100%, 280px);
    }

    .site-footer .footer-legal-links a {
        font-size: 0.76rem;
    }
}

/* =========================================================
   LAPTOP FOOTER LEGAL LINKS — FINAL FIX
   ========================================================= */
@media (min-width:701px) and (max-width:1440px){
    .footer-grid > :first-child{ min-width:410px; }
}

.site-footer .footer-cookie-settings{
    display:inline;

    margin:0;
    padding:0;

    border:0;

    color:rgba(216,224,234,.72);
    background:transparent;

    font:inherit;
    font-size:.78rem;
    font-weight:650;
    line-height:1.5;

    cursor:pointer;

    transition:color .18s ease;
}

.site-footer .footer-cookie-settings:hover{
    color:#6da8ff;
}

.site-footer .footer-cookie-settings:focus-visible{
    outline:2px solid #6da8ff;
    outline-offset:4px;
    border-radius:2px;
}


@media (max-width: 1450px) and (min-width: 701px) {
    .site-footer .footer-grid {
        width: 94%;
        max-width: none;
        grid-template-columns: 1.35fr 1.25fr 1.2fr minmax(190px, .9fr);
        gap: 26px;
    }

    .footer-grid > * {
        min-width: 0;
    }

    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 7px 12px;
    }

    .services-list a,
    .trust-list .footer-list-item {
        white-space: normal;
    }
}

/* =========================================================
   LANGUAGE SWITCHER — SELECTED LANGUAGE
   ========================================================= */

.language-switcher .nav-flag{
    position:relative;
    overflow:visible;
}


/* Circular flag holder */

.language-switcher .nav-flag__circle{
    position:relative;

    width:27px;
    height:27px;

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

    flex:0 0 auto;

    border:2px solid transparent;
    border-radius:50%;

    background:transparent;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


/* Flag itself */

.language-switcher .nav-flag__circle img{
    width:21px;
    height:21px;

    display:block;

    object-fit:cover;
    border-radius:50%;
}


/* =========================================================
   ACTIVE / SELECTED
   ========================================================= */

.language-switcher .nav-flag.is-selected
.nav-flag__circle{
    border-color:#e53935;

    box-shadow:
        0 0 0 2px rgba(229,57,53,.10),
        0 2px 7px rgba(7,21,43,.12);
}


/* Blue check badge */

.language-switcher .nav-flag__check{
    position:absolute;

    top:-6px;
    right:-7px;

    width:14px;
    height:14px;

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

    border:2px solid #f4f5f7;
    border-radius:50%;

    background:#1f5fbf;

    box-shadow:
        0 2px 6px rgba(7,21,43,.22);

    pointer-events:none;
}


/* Checkmark */

.language-switcher .nav-flag__check svg{
    width:9px;
    height:9px;

    display:block;

    fill:none;
    stroke:#ffffff;
    stroke-width:2.6;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* Hover */

.language-switcher .nav-flag:hover
.nav-flag__circle{
    transform:translateY(-1px);
}


/* Keyboard accessibility */

.language-switcher .nav-flag:focus-visible{
    outline:none;
}

.language-switcher .nav-flag:focus-visible
.nav-flag__circle{
    outline:2px solid #1f5fbf;
    outline-offset:3px;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width:701px) and (max-width:1200px){

    .language-switcher .nav-flag__circle{
        width:25px;
        height:25px;
    }

    .language-switcher .nav-flag__circle img{
        width:19px;
        height:19px;
    }

    .language-switcher .nav-flag__check{
        top:-6px;
        right:-6px;

        width:13px;
        height:13px;
    }

    .language-switcher .nav-flag__check svg{
        width:8px;
        height:8px;
    }
}


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

@media (max-width:700px){

    .language-switcher .nav-flag{
        width:29px !important;
        height:29px !important;
    }

    .language-switcher .nav-flag__circle{
        width:27px;
        height:27px;
    }

    .language-switcher .nav-flag__circle img{
        width:21px;
        height:21px;
    }

    .language-switcher .nav-flag__check{
        top:-6px;
        right:-7px;

        width:14px;
        height:14px;

        border-width:2px;
    }
}

.update-image img {

    object-position: 90% center !important;
}

/* =========================================================
   ECOSYSTEM TITLE — SOFT NEON DOT DESIGN
   Override only
   ========================================================= */

.ecosystem-card__header {
    position: relative;
    width: 100%;
    padding: 0 0 20px;

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

    text-align: center;
}


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

.ecosystem-card__header h2 {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.28em;

    width: fit-content;
    min-height: 42px;

    margin: 0;
    padding: 8px 27px 9px;

    /* Very soft border — almost invisible */
    border: 1px solid rgba(27, 161, 255, 0.16);
    border-radius: 999px;

    /* Dark glass capsule */
    background:
        linear-gradient(
            180deg,
            rgba(8, 27, 57, 0.78) 0%,
            rgba(3, 15, 35, 0.82) 55%,
            rgba(2, 10, 27, 0.88) 100%
        );

    color: #ffffff;

    font-size: clamp(0.88rem, 1.15vw, 1.08rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;

    white-space: nowrap;

    /* Soft blue halo rather than visible border */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        inset 0 0 18px rgba(0, 121, 255, 0.045),
        0 0 8px rgba(0, 156, 255, 0.06),
        0 0 20px rgba(0, 139, 255, 0.08);
}


/* RS&DE accent */

.ecosystem-card__header h2 span {
    display: inline;
    margin: 0;

    color: #19e1f4;

    text-shadow:
        0 0 5px rgba(25, 225, 244, 0.28),
        0 0 10px rgba(25, 225, 244, 0.12);
}


/* =========================================================
   REMOVE THE CURRENT LONG CONNECTING LINES
   ========================================================= */

.ecosystem-card__header::before,
.ecosystem-card__header::after {
    content: none !important;
}


/* =========================================================
   LEFT / RIGHT NEON DOT CHAINS

   One physical circle + multiple box-shadow circles
   produces the exact "........ ● capsule ● ........" look.
   ========================================================= */

.ecosystem-card__header h2::before,
.ecosystem-card__header h2::after {
    content: "";

    position: absolute;
    z-index: 5;

    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #47eaff;

    transform: translateY(-50%);

    box-shadow:
        0 0 5px rgba(71, 234, 255, 1),
        0 0 11px rgba(22, 197, 255, 0.85),
        0 0 20px rgba(0, 139, 255, 0.50);
}


/* =========================================================
   LEFT DOT CHAIN
   ========================================================= */

.ecosystem-card__header h2::before {
    left: -17px;

    box-shadow:

        /* glow around main dot */
        0 0 5px rgba(71, 234, 255, 1),
        0 0 11px rgba(22, 197, 255, 0.85),
        0 0 20px rgba(0, 139, 255, 0.50),

        /* progressively smaller-looking outer dots */
        -18px 0 0 -1px #36ddf8,
        -32px 0 0 -2px #32d4f5,
        -44px 0 0 -2.5px #2bc6ef,
        -55px 0 0 -3px #25b8e8,
        -65px 0 0 -3px #209dd3,
        -74px 0 0 -3.2px rgba(26, 150, 205, 0.70);
}


/* =========================================================
   RIGHT DOT CHAIN
   ========================================================= */

.ecosystem-card__header h2::after {
    right: -17px;

    box-shadow:

        /* glow around main dot */
        0 0 5px rgba(71, 234, 255, 1),
        0 0 11px rgba(22, 197, 255, 0.85),
        0 0 20px rgba(0, 139, 255, 0.50),

        /* progressively smaller-looking outer dots */
        18px 0 0 -1px #36ddf8,
        32px 0 0 -2px #32d4f5,
        44px 0 0 -2.5px #2bc6ef,
        55px 0 0 -3px #25b8e8,
        65px 0 0 -3px #209dd3,
        74px 0 0 -3.2px rgba(26, 150, 205, 0.70);
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width: 901px) and (max-width: 1440px) {

    .ecosystem-card__header {
        padding-bottom: 15px;
    }

    .ecosystem-card__header h2 {
        min-height: 34px;
        padding: 7px 22px 8px;
        font-size: 1.1rem;
    }

    .ecosystem-card__header h2::before {
        left: -15px;
    }

    .ecosystem-card__header h2::after {
        right: -15px;
    }
}


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

@media (max-width: 700px) {

    .ecosystem-card__header {
        padding-bottom: 14px;
    }

    .ecosystem-card__header h2 {
        width: calc(100% - 110px);
        min-height: 38px;

        padding: 8px 12px;

        font-size: 0.76rem;
    }

    /* Shorter dot trails on small screens */

    .ecosystem-card__header h2::before {
        left: -13px;

        box-shadow:
            0 0 5px rgba(71, 234, 255, 1),
            0 0 10px rgba(22, 197, 255, 0.75),

            -16px 0 0 -1.5px #36ddf8,
            -28px 0 0 -2px #32d4f5,
            -38px 0 0 -2.7px #25b8e8;
    }

    .ecosystem-card__header h2::after {
        right: -13px;

        box-shadow:
            0 0 5px rgba(71, 234, 255, 1),
            0 0 10px rgba(22, 197, 255, 0.75),

            16px 0 0 -1.5px #36ddf8,
            28px 0 0 -2px #32d4f5,
            38px 0 0 -2.7px #25b8e8;
    }
}


/* =========================================================
   HOMEPAGE — FINAL TYPOGRAPHY OVERRIDE
   ========================================================= */


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

/* Main hero title */
.home-page .home-hero__content h1,
.home-page .home-hero .home-hero__content #home-hero-title {
    font-size: clamp(2.5rem, 3vw, 3rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -1.2px;
}

/* Highlighted hero lead */
.home-page .home-hero__lead {
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
}

/* Hero body description */
.home-page .home-hero__summary {
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

/* Hero buttons */
.home-page .home-btn {
    font-size: 0.9375rem !important;
    line-height: 1 !important;
}


/* =========================================================
   ECOSYSTEM PANEL
   ========================================================= */

/* Ecosystem main heading */
.home-page .ecosystem-card__header h2 {
    font-size: 1.125rem !important;
    line-height: 1.25 !important;
}

/* Ecosystem card titles */
.home-page .ecosystem-grid .ecosystem-item__content strong {
    font-size: 0.9375rem !important;
    line-height: 1.3 !important;
}

/* Ecosystem card descriptions */
.home-page .ecosystem-grid .ecosystem-item__content > span {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

/* Feature headings */
.home-page .home-feature h2 {
    font-size: 1.125rem !important;
    line-height: 1.3 !important;
}

/* Feature descriptions */
.home-page .home-feature p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
}

/* Feature links */
.home-page .home-feature__link {
    font-size: 0.875rem !important;
}


/* =========================================================
   LATEST UPDATES
   ========================================================= */

/* Small section kicker */
.home-page .section-kicker {
    font-size: 0.75rem !important;
}

/* Latest Updates heading */
.home-page .updates-header h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem) !important;
    line-height: 1.1 !important;
}

/* View all updates link */
.home-page .latest-updates-all-link {
    font-size: 0.875rem !important;
}

/* News card titles */
.home-page .update-body h3 {
    font-size: 1.0625rem !important;
    line-height: 1.3 !important;
}

/* News card descriptions */
.home-page .update-body p {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
}

/* News card action links */
.home-page .update-link {
    font-size: 0.8125rem !important;
}

/* News date/category metadata */
.home-page .update-meta {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
}


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

.home-page .social-title {
    font-size: 1rem !important;
    line-height: 1.4 !important;
}


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

@media (max-width: 700px) {

    .home-page .home-hero__content h1,
    .home-page .home-hero .home-hero__content #home-hero-title {
        font-size: clamp(2.4rem, 10vw, 3rem) !important;
    }

    .home-page .home-hero__lead,


    .home-page .home-hero__summary {


        font-size: 1rem !important;


    }

    .home-page .updates-header h2 {
        font-size: 1.75rem !important;
    }
}


/* ==========================================================
   SMALL-SCREEN MAINTENANCE
   ========================================================== */

.small-screen-maintenance {
    position: fixed;
    inset: 0;

    z-index: 9999999;

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

    padding: 40px 24px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(34, 105, 255, 0.08),
            transparent 38%
        ),
        #ffffff;

    text-align: center;
}

.small-screen-maintenance__content {
    width: min(100%, 520px);
}

.small-screen-maintenance__logo {
    display: block;

    width: min(210px, 55vw);
    height: auto;

    margin: 0 auto 42px;
}


/* Simple device / maintenance graphic */

.small-screen-maintenance__icon {
    position: relative;

    width: 76px;
    height: 108px;

    margin: 0 auto 35px;

    border: 3px solid #1769ff;
    border-radius: 13px;

    background: #f5f9ff;

    box-shadow:
        0 16px 40px rgba(23, 105, 255, 0.12);
}

.small-screen-maintenance__icon::before {
    content: "";

    position: absolute;

    top: 10px;
    left: 50%;

    width: 24px;
    height: 3px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #b9cae8;
}

.small-screen-maintenance__icon span {
    position: absolute;

    left: 50%;
    bottom: 8px;

    width: 7px;
    height: 7px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #1769ff;
}


.small-screen-maintenance h1 {
    margin: 0 0 20px;

    color: #07152b;

    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.16;

    font-weight: 750;

    letter-spacing: -0.025em;
}

.small-screen-maintenance p {
    margin: 0 auto;

    color: #52637a;

    font-size: 1rem;
    line-height: 1.7;
}

.small-screen-maintenance__secondary {
    margin-top: 14px !important;

    color: #77859a !important;

    font-size: 0.92rem !important;
}
/* =========================================================
   HOMEPAGE ECOSYSTEM — MOBILE CLEANUP
   ========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       Remove title dot decorations
       ----------------------------------------------------- */

    .ecosystem-card__header h2::before,
    .ecosystem-card__header h2::after {
        content: none !important;
        display: none !important;
        box-shadow: none !important;
    }


    /* Allow title to use the available width */
    .ecosystem-card__header h2 {
        width: auto !important;
        max-width: 100% !important;

        padding: 8px 14px;

        font-size: .82rem;
        line-height: 1.2;

        white-space: normal;
        text-align: center;
    }


    /* -----------------------------------------------------
       Cards
       ----------------------------------------------------- */

    .ecosystem-grid {
        gap: 12px;
    }

    .ecosystem-grid .ecosystem-item {
        min-height: auto;

        padding: 18px 16px;

        display: block !important;

        text-align: left;
    }


    /* -----------------------------------------------------
       Remove all card icons
       ----------------------------------------------------- */

    .ecosystem-grid .ecosystem-item__icon,
    .ecosystem-grid .ecosystem-item--exchange .ecosystem-item__icon,
    .ecosystem-grid .ecosystem-item--filing .ecosystem-item__icon {
        display: none !important;
    }


    /* Remove the cyan vertical separator */
    .ecosystem-grid .ecosystem-item__icon::after {
        content: none !important;
        display: none !important;
    }


    /* -----------------------------------------------------
       Text now gets full card width
       ----------------------------------------------------- */

    .ecosystem-grid .ecosystem-item__content {
        width: 100% !important;
        max-width: none !important;

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

        text-align: left;
    }


    /* Card title */
    .ecosystem-grid .ecosystem-item__content strong {
        width: 100%;

        margin: 0 0 7px;

        font-size: .94rem;
        line-height: 1.25;

        white-space: normal;
    }


    /* Card description */
    .ecosystem-grid .ecosystem-item__content > span {
        width: 100% !important;
        max-width: none !important;

        padding: 0 !important;

        font-size: .78rem;
        line-height: 1.55;

        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }
	/* Fourth ecosystem card only — move title away from centre circle */
.ecosystem-item--filing .ecosystem-item__content strong {
    padding-left: 12px;
}
}
/* ==========================================================
   HOMEPAGE — FINAL MOBILE HERO
   FULL IMAGE VISIBILITY + TEXT SHADOW
   ========================================================== */

@media (max-width: 700px) {

    /* Show the actual hero image clearly */
    .home-page .home-hero {
        position: relative !important;

        background-image:
            url("/images/hero/innovation-hero.png") !important;

        background-size: cover !important;
        background-repeat: no-repeat !important;

        /* Better mobile crop */
        background-position: 50% center !important;
    }


    /* Keep text above the image */
    .home-page .home-hero__grid {
        position: relative !important;
        z-index: 3 !important;
    }

    .home-page .home-hero__content {
        position: relative !important;
        z-index: 4 !important;
    }


    /* Main white title */
    .home-page .home-hero__content h1 {
        text-shadow:
            0 2px 3px rgba(0, 0, 0, 1),
            0 4px 12px rgba(0, 0, 0, .95),
            0 0 22px rgba(0, 0, 0, .85) !important;
    }


    /* Cyan subtitle */
    .home-page .home-hero__lead {
        text-shadow:
            0 2px 3px rgba(0, 0, 0, 1),
            0 3px 10px rgba(0, 0, 0, .95),
            0 0 16px rgba(0, 0, 0, .75) !important;
    }


    /* Main description */
    .home-page .home-hero__summary {
        text-shadow:
            0 2px 3px rgba(0, 0, 0, 1),
            0 3px 9px rgba(0, 0, 0, .95),
            0 0 15px rgba(0, 0, 0, .80) !important;
    }


    /* CDAE / C3i text */
/* Supporting programs */

.home-page .home-hero__other-programs,
.home-page .home-hero__other-label {
    color: #ffffff !important;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 3px 9px rgba(0, 0, 0, .90) !important;
}


/* CDAE + C3i — preserve teal accent */

.home-page .home-hero__program-name {
    color: #4EF3FF !important;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 3px 9px rgba(0, 0, 0, .90) !important;
}

}

/* ==========================================================
   CDAE + C3i — GLOBAL ACCENT
   ========================================================== */

.home-page .home-hero__program-name {
    color: #4EF3FF !important;
    font-weight: 800 !important;
}