:root {
    --navy: #061c31;
    --navy-2: #082842;
    --navy-3: #0d3453;
    --blue: #0b63ff;
    --blue-2: #00a3ff;
    --green: #27c46b;
    --amber: #f2a71b;
    --purple: #7c4dff;
    --ink: #0d1b2f;
    --muted: #5a6a80;
    --line: #dbe5ef;
    --soft: #f5f8fc;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 33, 57, .12);
    --radius: 14px;
    --max: 1840px;

    /* bold + vibrant tokens */
    --grad-brand: linear-gradient(135deg, #0b63ff, #00a3ff 52%, #14e0c0);
    --grad-brand-text: linear-gradient(120deg, #ffffff, #aee6ff 55%, #7cffe0);
    --grad-accent: linear-gradient(90deg, #0b63ff, #00a3ff);
    --grad-brand-soft: linear-gradient(135deg, rgba(11, 99, 255, .16), rgba(0, 163, 255, .16));
    --glow-blue: 0 16px 42px rgba(11, 99, 255, .38);
    --shadow-soft: 0 20px 50px rgba(15, 33, 57, .14);
    --shadow-hover: 0 34px 72px rgba(11, 99, 255, .24);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --t: .35s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - 56px));
    margin-inline: auto;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--white);
    background: var(--blue);
}

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    position: fixed;
    background: rgba(6, 28, 49, .94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    backdrop-filter: blur(12px);
}

/* Top bar: logo + company name/tagline + optional QR image, above the nav. */
.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

/* Three zones (left · center · right). Each element (logo, name, tagline, QR)
   is dropped into a zone per the CMS alignment settings. Sizes/colours come
   from CSS variables set on .top-bar (--tb-logo/--tb-tagline/--tb-color/etc). */
.top-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

/* Elements in a zone stack vertically (e.g. name on top of the tagline). */
.top-bar__zone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
}

.top-bar__zone--left {
    align-items: flex-start;
}

.top-bar__zone--center {
    align-items: center;
}

.top-bar__zone--right {
    align-items: flex-end;
}

.top-bar__brand {
    display: inline-flex;
    align-items: center;
}

.top-bar__logo {
    height: var(--tb-logo, 74px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.top-bar__name {
    font-size: var(--tb-name, 22px);
    font-weight: 900;
    letter-spacing: .01em;
    line-height: 1.15;
    color: var(--tb-name-color, #0b63ff);
}

.top-bar__tagline {
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
    color: var(--tb-color, #d4a017);
    font-size: var(--tb-tagline, 26px);
}

.top-bar__qr {
    height: var(--tb-logo, 74px);
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

/* With the top bar present, the nav row has no brand — center the menu. */
.has-topbar .nav-shell {
    justify-content: center;
    min-height: 60px;
}

.has-topbar .home-hero {
    padding-top: 226px;
}

.has-topbar .page-hero {
    padding-top: 220px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav a:not(.btn) {
    position: relative;
    padding: 10px 0;
}

.site-nav a:not(.btn)::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    background: var(--blue-2);
    transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--grad-brand);
    background-size: 160% 160%;
    background-position: 0% 50%;
    box-shadow: var(--glow-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), background-position var(--t);
}

.btn:hover {
    transform: translateY(-2px);
    background-position: 100% 50%;
    box-shadow: 0 22px 54px rgba(11, 99, 255, .5);
}

.btn:active {
    transform: translateY(0);
}

.btn--nav {
    min-height: 42px;
    padding-inline: 24px;
}

.btn--wide {
    min-width: 290px;
}

.btn--full {
    width: 100%;
    justify-content: space-between;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.home-hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.home-hero {
    min-height: 690px;
    padding: 155px 0 70px;
}

.home-hero::before,
.page-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: linear-gradient(90deg, rgba(4, 20, 37, .86), rgba(4, 20, 37, .42), rgba(4, 20, 37, .76)), var(--hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.home-hero::after,
.page-hero::after,
.dark-band::before,
.site-footer::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(0, 163, 255, .12), transparent 30%),
        radial-gradient(circle at 72% 18%, rgba(39, 196, 107, .12), transparent 28%);
}

/* vibrant animated aurora blobs over the hero photo */
.home-hero::after {
    background:
        radial-gradient(40% 55% at 18% 22%, rgba(0, 163, 255, .55), transparent 60%),
        radial-gradient(38% 50% at 82% 28%, rgba(20, 224, 192, .42), transparent 62%),
        radial-gradient(45% 60% at 60% 88%, rgba(124, 77, 255, .4), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(8px);
    animation: heroAurora 16s var(--ease) infinite alternate;
}

@keyframes heroAurora {
    0% {
        transform: translate3d(-3%, -2%, 0) scale(1.05);
        opacity: .85;
    }
    50% {
        transform: translate3d(3%, 2%, 0) scale(1.12);
        opacity: 1;
    }
    100% {
        transform: translate3d(-2%, 3%, 0) scale(1.06);
        opacity: .9;
    }
}

.hero-slide {
    display: none;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 465px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.home-hero__copy {
    max-width: 780px;
    text-align: center;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .4);
}

.home-hero h1 {
    margin: 0;
    background: none;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: clamp(54px, 7vw, 92px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.02em;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .45));
}

.home-hero p {
    margin: 18px 0 0;
    color: #ffd400;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-card-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.hero-card {
    position: relative;
    display: flex;
    min-height: 168px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, .14), rgba(7, 28, 48, .58));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    text-align: center;
    backdrop-filter: blur(14px);
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.hero-card::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(120% 80% at 50% -10%, rgba(0, 163, 255, .45), transparent 70%);
    transition: opacity var(--t);
}

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

.hero-card i {
    transition: transform var(--t), border-color var(--t), background var(--t);
}

.hero-card:hover i {
    transform: translateX(4px);
    border-color: transparent;
    background: var(--grad-accent);
}

.hero-card strong {
    font-size: 13px;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero-card small {
    min-height: 37px;
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
}

.hero-card i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    color: var(--white);
    font-style: normal;
}

.hero-card:hover {
    border-color: rgba(0, 163, 255, .8);
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 163, 255, .3);
}

.hero-card strong,
.hero-card small,
.hero-card .icon-ring,
.hero-card i {
    position: relative;
    z-index: 1;
}

.icon,
.hero-card svg,
.contact-list svg,
.text-link svg {
    width: 22px;
    height: 22px;
}

.icon-ring,
.icon-bubble,
.floating-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--blue-2);
    border-radius: 50%;
}

.icon-ring {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(0, 163, 255, .56);
    background: var(--grad-brand-soft, rgba(11, 99, 255, .12));
    box-shadow: inset 0 0 18px rgba(0, 163, 255, .22);
}

.icon-ring svg {
    width: 28px;
    height: 28px;
}

.icon-bubble {
    width: 58px;
    height: 58px;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: 0 12px 28px rgba(11, 99, 255, .35);
}

.icon-bubble--green {
    background: linear-gradient(135deg, #0f9b5e, #27c46b);
    box-shadow: 0 12px 28px rgba(39, 196, 107, .35);
}

.icon-bubble--purple {
    background: linear-gradient(135deg, #6a2dff, #a06bff);
    box-shadow: 0 12px 28px rgba(124, 77, 255, .35);
}

.slider-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(0, 0, 0, .35);
    cursor: pointer;
}

.slider-arrow--prev {
    left: 18px;
}

.slider-arrow--next {
    right: 18px;
}

.page-hero {
    min-height: 470px;
    padding: 150px 0 76px;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
}

.page-hero__copy {
    max-width: 660px;
}

.page-hero h1 {
    max-width: 720px;
    margin: 16px 0;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;
    font-weight: 900;
}

.page-hero p {
    max-width: 610px;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
}

.page-hero--stats {
    min-height: 565px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.page-hero--stats .hero-features {
    grid-template-columns: repeat(5, 1fr);
    padding: 26px 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
}

.hero-feature p {
    margin: 3px 0 0;
    font-size: 12px;
}

.page-hero--stats .hero-feature strong {
    font-size: 25px;
}

.section {
    padding: 74px 0;
}

.section--pale {
    background: linear-gradient(180deg, #fbfdff, #f6f9fd);
}

.split-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 76px;
}

.section-copy h2,
.section-heading h2,
.tri-grid h2,
.contact-card h2,
.list-heading h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.16;
    font-weight: 900;
}

.section-copy p,
.tri-grid p,
.section-heading p {
    color: #233247;
}

.section-copy p {
    text-align: justify;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    background: var(--grad-accent);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--blue-2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-label span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: currentColor;
}

.image-panel {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.image-panel::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(160deg, transparent 55%, rgba(11, 99, 255, .28));
}

.image-panel img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.image-panel:hover img {
    transform: scale(1.05);
}

.about-home-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.about-home-details .icon-bubble {
    margin-inline: auto;
}

.about-home-details .info-card h3,
.about-home-details .info-card > h4 {
    text-align: center;
}

.info-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.info-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--grad-accent);
    transition: transform var(--t);
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-hover);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card--wide {
    grid-column: span 2;
}

.info-card h3 {
    margin: 18px 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.info-card h4 {
    margin: 18px 0 8px;
    font-size: 16px;
}

.info-card p {
    margin: 0 0 12px;
    color: #304159;
    text-align: justify;
}

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

.core-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfdff;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
}

.core-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 255, .4);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.core-card__icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 12px;
    color: var(--blue);
    background: var(--grad-brand-soft);
    transition: transform var(--t);
}

.core-card:hover .core-card__icon {
    transform: translateY(-2px) scale(1.05);
}

.core-card__icon svg {
    width: 22px;
    height: 22px;
}

.core-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.3;
}

.core-card p {
    margin: 0;
    color: #53667d;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
}

.strength-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 18px;
}

.strength-columns .dot-list {
    margin: 0;
}

.investment-note {
    margin-top: 20px;
    padding: 18px;
    border-radius: var(--radius);
    background: #f3f7fc;
}

.investment-note h4 {
    margin-top: 0;
}

.experience-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
    padding: 32px 40px;
    overflow: hidden;
    border-radius: 18px;
    color: var(--white);
    background:
        radial-gradient(55% 130% at 92% 8%, rgba(0, 163, 255, .42), transparent 60%),
        radial-gradient(50% 130% at 4% 100%, rgba(20, 224, 192, .3), transparent 60%),
        linear-gradient(135deg, var(--navy), #0b3d69);
    box-shadow: 0 24px 60px rgba(8, 40, 66, .28);
}

.experience-card__icon {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
    background: var(--grad-brand);
    box-shadow: var(--glow-blue);
}

.experience-card__icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.experience-card__count {
    display: flex;
    flex: 0 0 auto;
    align-items: baseline;
    gap: 12px;
}

.experience-card__count strong {
    background: var(--grad-brand-text);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
}

.experience-card__count span {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.experience-card p {
    margin: 0 0 0 auto;
    color: rgba(255, 255, 255, .92);
    font-size: 20px;
    font-weight: 700;
    text-align: right;
}

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

.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Fixed column count set from the CMS (About Us → dealer columns). */
.dealer-grid--fixed {
    grid-template-columns: repeat(var(--dealer-cols, 5), minmax(0, 1fr));
}

/* Product detail page: "Key Offerings" card (light section, readable text). */
.product-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}
.product-detail-card .icon-bubble {
    flex: 0 0 auto;
}
.product-detail-card h3 {
    margin: 4px 0 14px;
    font-size: 22px;
    color: var(--ink);
}
.product-detail-card .value-list li {
    color: #233247;
}

/* Product detail page image gallery. */
.product-gallery__main {
    margin: 0;
}
.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.product-thumb {
    padding: 0;
    border: 2px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--t), transform var(--t);
}
.product-thumb img {
    display: block;
    width: 100%;
    height: 64px;
    object-fit: cover;
}
.product-thumb:hover {
    transform: translateY(-2px);
}
.product-thumb.is-active {
    border-color: var(--blue);
}

/* Clickable logo wrapper: transparent to layout, but makes the logo a link. */
.logo-link {
    display: contents;
    cursor: pointer;
}
.logo-link img,
.logo-link .dealer-logo {
    cursor: pointer;
}

.dealer-grid li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 6px 16px rgba(20, 40, 68, .05);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.dealer-grid li:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-soft);
}

.dealer-logo {
    display: grid;
    width: 100%;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
}

.dealer-logo img {
    max-width: 88%;
    max-height: 42px;
    object-fit: contain;
}

.dealer-grid__logo {
    min-height: 96px;
}

.dealer-grid__logo .dealer-logo {
    height: 58px;
}

.dealer-grid__logo .dealer-logo img {
    max-width: 92%;
    max-height: 58px;
}

.dealer-logo--mono {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: 0 8px 18px rgba(11, 99, 255, .3);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .02em;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center h2::after,
.contact-card h2::after,
.list-heading h2::after {
    display: block;
    width: 64px;
    height: 4px;
    margin: 16px auto 0;
    content: "";
    border-radius: 999px;
    background: var(--grad-accent);
}

.contact-card h2::after,
.list-heading h2::after {
    margin-left: 0;
}

.icon-tile-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 22px;
}

.icon-tile {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-align: center;
}

.icon-tile svg {
    width: 34px;
    height: 34px;
    color: var(--blue);
}

.icon-tile strong {
    font-size: 13px;
    line-height: 1.35;
}

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

.seg-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.seg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 99, 255, .35);
    box-shadow: var(--shadow-hover);
}

.seg-card--wide {
    grid-column: span 2;
}

.seg-card__media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.seg-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.seg-card:hover .seg-card__media img {
    transform: scale(1.06);
}

.seg-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 28, 49, .05), rgba(6, 28, 49, .32));
}

.seg-card__icon {
    position: absolute;
    bottom: -26px;
    left: 24px;
    z-index: 2;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: 0 12px 28px rgba(11, 99, 255, .35);
}

.seg-card__icon svg {
    width: 26px;
    height: 26px;
}

.seg-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 42px 26px 26px;
}

.seg-card__body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.seg-card__body > p {
    margin: 0 0 20px;
    color: #475569;
    font-size: 15px;
}

.seg-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.seg-card--wide .seg-checks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seg-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.seg-card__cta {
    margin-top: auto;
}

.seg-card__cta span {
    transition: transform var(--t);
}

.seg-card:hover .seg-card__cta span {
    transform: translateX(5px);
}

.partner-panel {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    align-items: center;
    padding: 44px;
    overflow: hidden;
    border-radius: 20px;
    color: var(--white);
    background:
        radial-gradient(60% 120% at 12% 10%, rgba(0, 163, 255, .4), transparent 60%),
        radial-gradient(50% 120% at 90% 90%, rgba(20, 224, 192, .3), transparent 60%),
        linear-gradient(135deg, var(--navy), #0b3d69);
    box-shadow: 0 28px 60px rgba(8, 40, 66, .28);
}

.partner-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
}

.partner-panel p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.partner-list li {
    position: relative;
    min-height: 44px;
    padding: 12px 14px 12px 34px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    font-weight: 800;
}

.partner-list li::before {
    position: absolute;
    top: 18px;
    left: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: var(--blue-2);
}

.partner-strip,
.commitment-strip,
.cta-strip,
.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 24px 28px;
    border-radius: var(--radius);
    background: #edf5ff;
}

.partner-strip strong,
.commitment-strip h2,
.cta-strip h2,
.newsletter h2 {
    margin: 0;
    font-size: 20px;
}

.partner-strip p,
.commitment-strip p,
.cta-strip p,
.newsletter p {
    margin: 6px 0 0;
    color: #41546d;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px 26px;
}

.partner-logos span {
    color: #173b79;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.tri-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tri-grid article {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.tri-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-hover);
}

.tri-grid article + article {
    border-left: 1px solid var(--line);
    padding-left: 32px;
}

.check-list,
.dot-list,
.mini-list {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.dot-list li,
.mini-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 23px;
}

.check-list li::before,
.mini-list li::before {
    position: absolute;
    top: .45em;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    content: "";
    background: var(--blue);
    box-shadow: inset 0 0 0 3px var(--white);
}

.dot-list li::before {
    position: absolute;
    top: .72em;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: "";
    background: var(--blue);
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.contact-list svg {
    flex: 0 0 auto;
    color: var(--blue);
}

.contact-list--light a,
.contact-list--light p {
    color: var(--ink);
}

.tri-grid blockquote {
    margin: 22px 0;
    padding-left: 18px;
    border-left: 3px solid var(--blue);
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
}

/* contact feature card */
.contact-feature {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 44px;
    align-items: stretch;
    overflow: hidden;
    padding: 48px !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 22px;
    color: var(--white);
    background:
        radial-gradient(55% 120% at 6% 0%, rgba(0, 163, 255, .42), transparent 55%),
        radial-gradient(55% 120% at 100% 100%, rgba(20, 224, 192, .32), transparent 55%),
        linear-gradient(135deg, var(--navy), #0b3d69) !important;
    box-shadow: 0 30px 70px rgba(8, 40, 66, .32) !important;
}

.contact-feature:hover {
    transform: none;
    border-color: rgba(255, 255, 255, .12) !important;
    box-shadow: 0 30px 70px rgba(8, 40, 66, .32) !important;
}

.contact-feature h2 {
    margin: 0 0 10px;
    color: var(--white);
}

.contact-feature .eyebrow {
    background: var(--grad-brand-text);
    background-clip: text;
    -webkit-background-clip: text;
}

.contact-feature__lead {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .82) !important;
}

.contact-feature__cta {
    display: flex;
    justify-content: center;
}

.contact-rows {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.contact-rows li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    transition: transform var(--t), border-color var(--t), background var(--t);
}

.contact-rows li:hover {
    transform: translateX(5px);
    border-color: rgba(0, 163, 255, .55);
    background: rgba(255, 255, 255, .09);
}

.contact-badge {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: 0 10px 24px rgba(11, 99, 255, .35);
}

.contact-badge svg {
    width: 22px;
    height: 22px;
}

.contact-rows strong {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-rows p {
    margin: 3px 0 0;
    color: var(--white) !important;
    font-weight: 700;
    line-height: 1.4;
}

.contact-rows a {
    color: var(--white);
    transition: color var(--t);
}

.contact-rows a:hover {
    color: var(--blue-2);
}

.contact-feature__visual {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 18px;
}

.contact-map {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
    background: #05192c;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
}

.contact-map__label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: var(--white);
    background: rgba(6, 24, 42, .82);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    backdrop-filter: blur(6px);
}

.contact-map__label svg {
    width: 16px;
    height: 16px;
    color: var(--blue-2);
}

.contact-quote {
    margin: 0 !important;
    padding: 18px 22px !important;
    border: 0 !important;
    border-left: 3px solid var(--blue-2) !important;
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, .05);
    color: var(--white) !important;
    font-size: 16px !important;
    font-style: italic;
}

.dark-band,
.site-footer,
.gallery-page,
.contact-page {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-2) 54%, #06243c);
}

.dark-band .section-heading h2,
.dark-band h3,
.dark-band p {
    color: var(--white);
}

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

.glass-card,
.contact-card {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
}

.glass-card {
    padding: 28px;
}

.glass-card h3 {
    margin: 18px 0 10px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
}

.value-card .icon-bubble {
    flex: 0 0 auto;
}

.value-card h3 {
    margin: 4px 0 12px;
    font-size: 22px;
}

.value-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.value-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.check-list--compact {
    margin: 0;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

.timeline::before {
    position: absolute;
    z-index: 0;
    top: 28px;
    right: 10%;
    left: 10%;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: var(--grad-accent);
}

.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-item span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: 0 0 0 6px var(--white), 0 12px 26px rgba(11, 99, 255, .35);
    transition: transform var(--t);
}

.timeline-item:hover span {
    transform: translateY(-4px) scale(1.05);
}

.timeline-item svg {
    width: 24px;
    height: 24px;
}

.timeline-year {
    display: block;
    color: var(--blue);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .02em;
}

.timeline-item h3 {
    margin: 4px 0 8px;
    font-size: 17px;
    line-height: 1.25;
}

.timeline-item p {
    margin: 0;
    color: #516276;
    font-size: 14px;
}

.product-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.project-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-card,
.project-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(20, 40, 68, .08);
}

.card-media {
    position: relative;
    height: 155px;
    overflow: hidden;
}

.project-card .card-media {
    height: 170px;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-icon {
    position: absolute;
    bottom: -24px;
    left: 18px;
    width: 54px;
    height: 54px;
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

.card-body {
    padding: 34px 18px 18px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.24;
}

.card-body p {
    margin: 0;
    color: #304159;
    font-size: 15px;
}

.mini-list {
    display: none;
    margin: 14px 0;
    color: #53667d;
    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.center-action {
    display: flex;
    justify-content: center;
    margin: 28px 0 34px;
}

.commitment-strip > div:first-child {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-strip {
    margin: 32px 0 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #083b64);
}

.cta-strip h2,
.cta-strip p {
    color: var(--white);
}

.table-toolbar,
.list-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.table-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-box,
.select-box {
    position: relative;
    display: block;
}

.search-box input,
.select-box select {
    width: 240px;
    height: 46px;
    padding: 0 42px 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 6px 16px rgba(20, 40, 68, .05);
    transition: border-color var(--t), box-shadow var(--t);
}

.search-box input:focus,
.select-box select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 99, 255, .14);
}

.select-box select {
    width: 170px;
    padding-right: 18px;
    cursor: pointer;
}

.search-box svg {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: var(--blue-2);
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.projects-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    font-size: 14.5px;
}

.projects-table thead {
    position: sticky;
    z-index: 2;
    top: 0;
}

.projects-table th {
    padding: 16px 18px;
    color: rgba(255, 255, 255, .92);
    background: linear-gradient(135deg, var(--navy), #0b3d69);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: left;
    white-space: nowrap;
}

.projects-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    color: #2b3a4f;
    vertical-align: middle;
}

.projects-table tbody tr:last-child td {
    border-bottom: 0;
}

.projects-table tbody tr:nth-child(even) {
    background: #f7faff;
}

.projects-table tbody tr:hover {
    background: #eaf3ff;
}

.projects-table td:first-child {
    color: var(--muted);
    font-weight: 700;
}

.projects-table td:nth-child(2) {
    color: var(--ink);
    font-weight: 700;
}

.projects-table td:nth-child(5) {
    color: var(--blue);
    font-weight: 800;
    white-space: nowrap;
}

.projects-table th:first-child,
.projects-table td:first-child,
.projects-table th:nth-child(4),
.projects-table td:nth-child(4),
.projects-table th:nth-child(5),
.projects-table td:nth-child(5) {
    text-align: center;
}

.projects-table th button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
}

.projects-table th button:hover {
    color: var(--blue-2);
}

.table-footnote {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

.announcement-list {
    display: grid;
    gap: 12px;
}

.announcement-card {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 34px;
    align-items: center;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(20, 40, 68, .07);
}

.announcement-card img {
    width: 100%;
    height: 188px;
    object-fit: cover;
}

.announcement-card > div {
    padding: 22px 28px 22px 0;
}

.announcement-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
}

.announcement-card p,
.announcement-card .ann-body {
    color: #33445c;
}

.announcement-card .ann-body {
    margin: 0 0 12px;
}

.announcement-card .ann-body p {
    margin: 0 0 8px;
}

.announcement-card .ann-body ul,
.announcement-card .ann-body ol {
    margin: 0 0 8px;
    padding-left: 20px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    color: #6a788b;
    font-size: 13px;
}

.meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-row svg {
    width: 16px;
    height: 16px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 28px;
}

.pagination a,
.pagination span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--white);
}

.pagination a.active {
    color: var(--white);
    border-color: var(--blue);
    background: var(--blue);
}

.newsletter {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0b3d69);
}

.newsletter h2,
.newsletter p {
    color: var(--white);
}

.newsletter form {
    display: flex;
    gap: 12px;
    min-width: 460px;
}

.newsletter input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.gallery-page {
    padding: 44px 0 70px;
}

.page-gallery .site-footer,
.page-contact .site-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 34px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
}

.filter-bar button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.filter-bar button.active {
    border-color: var(--blue);
    background: var(--blue);
}

.filter-bar svg {
    width: 18px;
    height: 18px;
}

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

.gallery-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    color: var(--white);
    background: var(--navy);
    cursor: pointer;
    text-align: left;
}

.gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .74;
    transition: transform .25s ease;
}

.gallery-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 30%, rgba(2, 12, 24, .9));
}

.gallery-card span,
.gallery-card strong {
    position: absolute;
    z-index: 2;
    left: 18px;
}

.gallery-card span {
    bottom: 56px;
    padding: 4px 9px;
    border-radius: 4px;
    background: var(--blue);
    font-size: 12px;
}

.gallery-card strong {
    right: 18px;
    bottom: 18px;
    font-size: 19px;
    line-height: 1.25;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    color: var(--white);
    background: rgba(2, 10, 18, .88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__stage {
    margin: 0;
    display: grid;
    gap: 14px;
    justify-items: center;
    max-width: min(1000px, 92vw);
}

.lightbox img {
    max-width: 100%;
    max-height: 76vh;
    border-radius: var(--radius);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.lightbox figcaption {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    font-weight: 700;
}

.lightbox__count {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    font-size: 13px;
    font-weight: 800;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    font-size: 28px;
    cursor: pointer;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.lightbox__nav:hover {
    background: var(--grad-brand);
    border-color: transparent;
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.gallery-card__count {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(6, 24, 42, .82);
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.gallery-card__count svg {
    width: 14px;
    height: 14px;
}

.contact-page {
    padding: 42px 0 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
}

.contact-card {
    padding: 36px;
}

.contact-card h2,
.contact-card p {
    color: var(--white);
}

.contact-detail-list {
    display: grid;
    gap: 22px;
    margin: 32px 0;
    padding: 0;
    list-style: none;
}

.contact-detail-list li {
    display: flex;
    gap: 18px;
}

.contact-detail-list li > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
}

.contact-detail-list svg {
    width: 20px;
    height: 20px;
}

.contact-detail-list strong {
    display: block;
}

.contact-detail-list p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .82);
}

.world-map-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 70% 45%, rgba(0, 163, 255, .35), transparent 8%),
        linear-gradient(90deg, transparent 48%, rgba(0, 163, 255, .1) 49%, transparent 51%),
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(255, 255, 255, .04) 11px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 255, 255, .04) 11px);
}

.world-map-card span {
    position: absolute;
    right: 28%;
    bottom: 62px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
}

.world-map-card p {
    position: absolute;
    right: 15%;
    bottom: 20px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .12);
    font-size: 13px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, .05);
}

.contact-form input {
    height: 54px;
    padding: 0 16px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
    padding: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.newsletter input::placeholder {
    color: rgba(255, 255, 255, .62);
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .86);
}

.checkbox-row a {
    color: var(--blue-2);
}

.form-message {
    min-height: 20px;
    margin: 0;
    color: var(--green);
    font-weight: 700;
}

.site-footer {
    padding: 46px 0 20px;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.05fr 1fr 1.25fr;
    gap: 52px;
}

.page-projects-table .footer-grid {
    grid-template-columns: 1fr .7fr 1fr 1fr 1.25fr;
}

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

.footer-block h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
}

.footer-block h2::after {
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 8px;
    content: "";
    background: var(--blue-2);
}

.site-footer .contact-list {
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
}

.site-footer .contact-list svg {
    color: rgba(255, 255, 255, .72);
}

.quick-links {
    display: grid;
    gap: 5px;
    align-content: start;
}

.quick-links a {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-map {
    position: relative;
    height: 172px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-list {
    display: grid;
    gap: 18px;
}

.social-list a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-list strong {
    display: block;
}

.social-list span:last-child {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.social-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.visitor-total {
    margin: 0 0 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, .82);
}

.visitor-total strong {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-right: 6px;
}

.visitor-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
    gap: 12px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.visitor-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
}

.visitor-list .flag {
    width: 28px;
    height: 20px;
    flex: 0 0 auto;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
}

.visitor-list strong {
    font-size: 14px;
    font-weight: 800;
}

.country-code {
    display: inline-grid;
    min-width: 28px;
    height: 20px;
    place-items: center;
    border-radius: 3px;
    color: var(--navy);
    background: #dcecff;
    font-size: 10px;
    font-weight: 900;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 20;
    display: none;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    color: var(--white);
    background: rgba(8, 40, 66, .86);
    cursor: pointer;
}

.back-to-top.is-visible {
    display: grid;
}

.empty-state {
    display: grid;
    gap: 8px;
    padding: 56px 28px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--muted);
    text-align: center;
    font-size: 17px;
}

.empty-state svg {
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    color: var(--blue-2);
}

/* legal pages (privacy / terms) */
.legal {
    max-width: 880px;
}

.legal-updated {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.legal-intro {
    margin: 0 0 8px;
    color: #233247;
    font-size: 18px;
}

.legal h2 {
    margin: 36px 0 12px;
    color: var(--ink);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 900;
}

.legal p {
    color: #304159;
}

.legal .check-list {
    margin: 14px 0 0;
}

.legal-contact {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.legal-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 700;
}

.legal-contact svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--blue);
}

/* authorized dealer / strategic partners */
.dealer-section {
    position: relative;
    overflow: hidden;
}

.dealer-section::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .6;
    background-image: radial-gradient(rgba(11, 99, 255, .09) 1.4px, transparent 1.6px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}

.dealer-section > .container {
    position: relative;
    z-index: 1;
}

.dealer-top {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.dealer-copy h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.01em;
}

.dealer-copy > p {
    color: #304159;
}

.dealer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
}

.dealer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.dealer-stat:last-child {
    border-right: 0;
}

.dealer-stat__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--blue);
}

.dealer-stat__icon svg {
    width: 30px;
    height: 30px;
}

.dealer-stat strong {
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.dealer-stat > span {
    color: var(--muted);
    font-size: 13px;
}

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

.dealer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(20, 40, 68, .05);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.dealer-item:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-soft);
}

.dealer-item__logo {
    display: grid;
    width: 40px;
    height: 32px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: var(--white);
}

.dealer-item__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dealer-item strong {
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

.dealer-item__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.dealer-item__country {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
}

.dealer-item__country svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.partner-network {
    margin-top: 58px;
}

.logo-carousel {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(20, 40, 68, .06);
    font-size: 18px;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}

.logo-arrow:hover {
    color: var(--white);
    background: var(--grad-brand);
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.logo-track {
    display: flex;
    flex: 1;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 2px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.logo-track::-webkit-scrollbar {
    display: none;
}

.logo-chip {
    display: grid;
    width: 170px;
    height: 92px;
    flex: 0 0 auto;
    place-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(20, 40, 68, .06);
    scroll-snap-align: start;
    text-align: center;
    transition: transform var(--t), box-shadow var(--t);
}

.logo-chip:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.logo-chip img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.logo-chip span {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .02em;
}

/* strategic strengths */
.strengths-head {
    max-width: 760px;
}

.strengths-head__icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: var(--glow-blue);
}

.strengths-head__icon svg {
    width: 30px;
    height: 30px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.strength-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.strength-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-hover);
}

.strength-card header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.strength-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--grad-brand-soft);
    box-shadow: inset 0 0 16px rgba(0, 163, 255, .18);
}

.strength-card__icon svg {
    width: 26px;
    height: 26px;
}

.strength-card header h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
}

.strength-card > p {
    margin: 0 0 18px;
    color: #304159;
}

.strength-card__media {
    flex: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}

.strength-card__media img {
    width: 100%;
    height: 100%;
    min-height: 224px;
    object-fit: cover;
}

.strength-checks {
    margin: 0;
    padding: 0;
    list-style: none;
}

.strength-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 2px;
    border-bottom: 1px dashed var(--line);
    color: #26384f;
    font-size: 15px;
    font-weight: 600;
}

.strength-checks li:last-child {
    border-bottom: 0;
}

.check-ic {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--grad-brand);
}

.check-ic svg {
    width: 13px;
    height: 13px;
}

.investment-strip {
    margin-top: 26px;
    padding: 28px 32px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfdff, #eef4fb);
}

.investment-strip__copy {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.investment-strip__icon {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: var(--grad-brand-soft);
}

.investment-strip__icon svg {
    width: 26px;
    height: 26px;
}

.investment-strip__copy h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.investment-strip__copy p {
    margin: 0;
    color: #304159;
    font-size: 18px;
    line-height: 1.6;
}

.investment-strip__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.invest-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-left: 1px solid var(--line);
    text-align: center;
}

.invest-stat:first-child {
    border-left: 0;
}

.invest-stat__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--blue);
}

.invest-stat__icon svg {
    width: 26px;
    height: 26px;
}

.invest-stat strong {
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.invest-stat > span {
    color: var(--muted);
    font-size: 12px;
}

/* why choose us */
.why-top {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: stretch;
}

.why-copy h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.16;
    font-weight: 900;
}

.why-copy > p {
    color: #304159;
    text-align: justify;
}

.why-lead {
    margin: 22px 0 18px;
    color: var(--ink) !important;
    font-weight: 800;
}

.why-lead span {
    color: var(--blue);
}

.why-strengths {
    display: grid;
    gap: 16px;
}

.why-strength {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.why-strength:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-hover);
}

.why-strength h3 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.3;
}

.why-strength p {
    margin: 0;
    color: #304159;
    font-size: 15px;
}

.why-stats-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(160deg, var(--navy), #0b3d69);
    box-shadow: var(--shadow-soft);
}

.why-stats-card__media {
    flex: 0 0 auto;
    height: 230px;
    overflow: hidden;
}

.why-stats-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-stats {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
}

.why-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: var(--white);
}

.why-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.why-stat__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: 0 10px 22px rgba(11, 99, 255, .35);
}

.why-stat__icon svg {
    width: 22px;
    height: 22px;
}

.why-stat__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.why-stat__value {
    display: block;
    font-size: 26px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.02em;
}

.why-stat__label {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 800;
}

.why-stat__sub {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}

.why-apart {
    margin-top: 62px;
    text-align: center;
}

.why-apart > h3 {
    margin: 0 0 36px;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 900;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.feature-card:last-child {
    border-right: 0;
}

.feature-card .icon-ring {
    transition: transform var(--t);
}

.feature-card:hover .icon-ring {
    transform: translateY(-4px) scale(1.05);
}

.feature-card h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    color: #53667d;
    font-size: 14px;
}

/* project highlights — impact section */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 44px;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.impact-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-hover);
}

.impact-stat__icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: var(--grad-brand-soft);
    box-shadow: inset 0 0 16px rgba(0, 163, 255, .18);
}

.impact-stat__icon svg {
    width: 24px;
    height: 24px;
}

.impact-stat__value {
    display: block;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.01em;
}

.impact-stat__label {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 800;
}

.impact-stat__sub {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

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

.impact-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.impact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 99, 255, .4);
    box-shadow: var(--shadow-hover);
}

.impact-card__media {
    position: relative;
    height: 184px;
    overflow: hidden;
}

.impact-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.impact-card:hover .impact-card__media img {
    transform: scale(1.06);
}

.impact-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 13px;
    border-radius: 999px;
    color: var(--white);
    background: var(--grad-brand);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.impact-badge--aviation {
    background: linear-gradient(135deg, #0b63ff, #00a3ff);
}

.impact-badge--healthcare {
    background: linear-gradient(135deg, #0f9b5e, #27c46b);
}

.impact-badge--agriculture {
    background: linear-gradient(135deg, #d98512, #f2a71b);
}

.impact-badge--environment {
    background: linear-gradient(135deg, #0f9b8e, #14e0c0);
    color: #043029;
}

.impact-badge--energy {
    background: linear-gradient(135deg, #f2670b, #f2a71b);
}

.impact-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
}

.impact-card__body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.impact-card__body p {
    flex: 1;
    margin: 0;
    color: #304159;
    font-size: 15px;
}

.impact-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.impact-meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.impact-meta svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
}

.impact-card__footer .text-link {
    margin-top: 0;
}
