﻿/* ========================================
   Font Family
   ======================================== */

@font-face {
    font-family: 'bebas-neue';
    src: url('../fonts/bebas-neue.ttf') format('truetype');
}

@font-face {
    font-family: 'dm-sans';
    src: url('../fonts/dm-sans.ttf') format('truetype');
}

@font-face {
    font-family: 'dm-mono';
    src: url('../fonts/dm-mono.ttf') format('truetype');
}

/* ========================================
   root
   ======================================== */

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

:root {
    --c-bg: #f4f3f0;
    --c-surface: #ffffff;
    --c-surface-2: #edecea;
    --c-text: #141410;
    --c-text-2: #4a4a45;
    --c-text-muted: #7a7a72;
    --c-accent: #00a0d2;
    --c-accent-dark: #007ba8;
    --c-accent-2: #1a1a16;
    --c-border: rgba(0,0,0,0.10);
    --c-hero-overlay: rgba(10,10,8,0.55);
    --nav-h: 72px;
    --radius: 4px;
    --font-display: 'bebas-neue', sans-serif;
    --font-body: 'dm-sans', sans-serif;
    --font-mono: 'dm-mono', monospace;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --c-bg: #0e0e0c;
    --c-surface: #181816;
    --c-surface-2: #222220;
    --c-text: #f0efe8;
    --c-text-2: #b8b8b0;
    --c-text-muted: #78786e;
    --c-accent: #00c2ff;
    --c-accent-dark: #0099cc;
    --c-accent-2: #f0efe8;
    --c-border: rgba(255,255,255,0.10);
    --c-hero-overlay: rgba(5,5,4,0.65);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

/* ========================================
   Products
   ======================================== */

/* ── Banner ── */
.orb-banner {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    background: #080c14;
    display: flex;
    align-items: flex-end;
}

.orb-banner-ph {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #080c14 0%, #060e18 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

    .orb-banner-ph svg {
        opacity: .15;
    }

    .orb-banner-ph span {
        font-family: var(--font-mono);
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.3);
    }

    .orb-banner-ph small {
        font-size: .6rem;
        opacity: .5;
        color: rgba(255,255,255,.25);
    }

.orb-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,8,18,.85) 0%, rgba(5,8,18,.35) 55%, rgba(5,8,18,.1) 100%);
}

.orb-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.orb-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 52px;
    width: 100%;
}

    .orb-banner-content .pg-eyebrow {
        display: inline-block;
        font-family: var(--font-mono);
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .2em;
        color: #00c2ff;
        margin-bottom: .75rem;
    }

    .orb-banner-content h1 {
        font-family: var(--font-display);
        font-size: clamp(2.6rem, 5.5vw, 4.5rem);
        color: #fff;
        line-height: 1;
        letter-spacing: .02em;
        margin: 0 0 .5rem;
    }

    .orb-banner-content p {
        color: rgba(255,255,255,.7);
        font-size: 1rem;
        max-width: 560px;
        line-height: 1.65;
        margin: 0;
    }

/* ── Page wrapper ── */
.orb-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.orb-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--c-border, rgba(0,0,0,.08));
}

    .orb-section:last-of-type {
        border-bottom: none;
    }

/* ── Typography helpers ── */
.orb-label {
    font-family: var(--font-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #00a0d2;
    margin-bottom: .75rem;
    display: block;
}

.orb-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: .02em;
    line-height: 1.05;
    color: var(--c-text, #141410);
    margin: 0 0 1.25rem;
}

.orb-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-text-2, #4a4a45);
    max-width: 780px;
}

.orb-body {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--c-text-2, #4a4a45);
}

/* ── Grid helpers ── */
.orb-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.orb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.orb-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.orb-grid-video {
    grid-template-columns: repeat(1, 1fr);
}
/* ── Image / video placeholders ── */
.img-ph {
    width: 100%;
    background: var(--c-surface-2, #edecea);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    color: var(--c-text-muted, #7a7a72);
    border: 1.5px dashed rgba(0,0,0,.12);
}
.csr-img-bg {
    background-image: url(../images/general/csr-05.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width:100%;
    height:100vh;
}

.img-ph svg {
    opacity: .28;
}

    .img-ph span {
        font-family: var(--font-mono);
        font-size: .65rem;
        text-transform: uppercase;
        letter-spacing: .14em;
    }

    .img-ph small {
        font-size: .6rem;
        opacity: .55;
    }

    .img-ph img {
        border-radius: 10px;
    }

.img-ph-csr img {
    width: 100%;
}

.img-ph-post {
    background: #fff;
}

    .img-ph-post img {
        padding: 5px;
    }

.img-tlc {
    background-color: #fff;
    padding: 10px;
}

    .img-tlc img {
        width: 75%;
    }

.vid-ph {
    width: 100%;
    background: #080c14;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: rgba(255,255,255,.28);
    position: relative;
    overflow: hidden;
}

    .vid-ph::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,160,210,.07), transparent);
    }

    .vid-ph > * {
        position: relative;
        z-index: 1;
    }

    .vid-ph svg {
        opacity: .25;
    }

    .vid-ph span {
        font-family: var(--font-mono);
        font-size: .65rem;
        text-transform: uppercase;
        letter-spacing: .14em;
    }

    .vid-ph small {
        font-size: .6rem;
        opacity: .5;
    }

/* ── Image Slider ── */
.img-ph-slider, .img-ph-slider3 {
    width: 100%;
    height: 425px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    gap: .6rem;
    color: var(--c-text-muted, #7a7a72);
    border: 1.5px dashed rgba(0,0,0,.12);
}

    .img-ph-slider img, .img-ph-slider3 img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0;
    }

.img-csr-slider {
    background: none;
    border: none;
    height: 400px;
}

    .img-csr-slider img {
        border-radius: 10px;
        object-fit: initial;
    }

.img-ph-slider img {
    animation: slideShow 20s infinite;
}

    .img-ph-slider img:nth-child(1) {
        animation-delay: 0s;
    }

    .img-ph-slider img:nth-child(2) {
        animation-delay: 4s;
    }

    .img-ph-slider img:nth-child(3) {
        animation-delay: 8s;
    }

    .img-ph-slider img:nth-child(4) {
        animation-delay: 12s;
    }

    .img-ph-slider img:nth-child(5) {
        animation-delay: 16s;
    }

@keyframes slideShow {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.img-ph-slider3 img {
    animation: slideShow3 12s infinite;
}

    .img-ph-slider3 img:nth-child(1) {
        animation-delay: 0s;
    }

    .img-ph-slider3 img:nth-child(2) {
        animation-delay: 4s;
    }

    .img-ph-slider3 img:nth-child(3) {
        animation-delay: 8s;
    }

/* Animation */
@keyframes slideShow3 {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* ── Full-width strip ── */
.orb-fw {
    width: 100%;
    overflow: hidden;
}

    .orb-fw .fw-ph {
        width: 100%;
        height: 460px;
        background: linear-gradient(135deg, #080c14, #06100c);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .75rem;
        color: rgba(255,255,255,.22);
    }

        .orb-fw .fw-ph svg {
            opacity: .15;
        }

        .orb-fw .fw-ph span {
            font-family: var(--font-mono);
            font-size: .7rem;
            text-transform: uppercase;
            letter-spacing: .18em;
        }

        .orb-fw .fw-ph small {
            font-size: .6rem;
            opacity: .5;
        }

/* ── Stat cards ── */
.stat-bar {
    background: #00a0d2;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat-bar-item {
    padding: 2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.2);
}

    .stat-bar-item:last-child {
        border-right: none;
    }

.stat-val {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #00a0d2;
    line-height: 1;
}

.stat-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #00a0d2;
    margin-top: .3rem;
}

.stat-val-wt, .stat-lbl-wt {
    color: #fff;
}
/* ── Feature list ── */
.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

    .feat-list li {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        font-size: 1rem;
        color: var(--c-text-2, #4a4a45);
        line-height: 1.55;
    }

        .feat-list li::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #00a0d2;
            flex-shrink: 0;
            margin-top: .45rem;
        }

/* ── Application tags ── */
.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}

.app-tag {
    background: var(--c-surface-2, #edecea);
    border: 1px solid var(--c-border, rgba(0, 0, 0, .08));
    border-radius: 100px;
    padding: .3rem .9rem;
    font-size: 1rem;
    color: var(--c-text-2, #4a4a45);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .01em;
}

/* ── DIN badge ── */
.din-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0,160,210,.08);
    border: 1px solid rgba(0,160,210,.2);
    border-radius: 100px;
    padding: .35rem 1rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #00a0d2;
    margin-right: .5rem;
    margin-bottom: .5rem;
}

/* ── Why choose dark block ── */
.why-block {
    background: #080c14;
    border-radius: 14px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

    .why-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        font-size: .9rem;
        color: rgba(255,255,255,.72);
        line-height: 1.55;
    }

.why-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(0,194,100,.15);
    border: 1px solid rgba(0,194,100,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c864;
    font-size: .75rem;
    margin-top: .1rem;
}

/* ══════════════════════════════════════════
   TAB-BASED PRODUCT GALLERY
══════════════════════════════════════════ */
.gallery-wrap {
    margin-top: 0;
}

/* Tab nav */
.gallery-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--c-border, rgba(0,0,0,.08));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .gallery-tabs::-webkit-scrollbar {
        display: none;
    }

.gtab {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
    font-size: .82rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-2, #4a4a45);
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .25s, border-color .25s;
    white-space: nowrap;
}

    .gtab:hover {
        color: #00a0d2;
    }

    .gtab.active {
        color: #00a0d2;
        border-bottom-color: #00a0d2;
    }

/* Tab panels */
.gallery-panel {
    display: none;
    padding: 2.5rem 0 0;
}

    .gallery-panel.active {
        display: block;
    }

/* Image grid inside a panel */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

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

/* Each gallery item — clickable */
.gitem {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: var(--c-surface-2, #edecea);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
}

    .gitem img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
        transition: transform .45s cubic-bezier(.4,0,.2,1);
    }

    .gitem:hover img {
        transform: scale(1.06);
    }

    .gitem .gitem-ph {
        width: 100%;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .55rem;
        color: var(--c-text-muted, #7a7a72);
    }

        .gitem .gitem-ph svg {
            opacity: .28;
        }

        .gitem .gitem-ph span {
            font-family: var(--font-mono);
            font-size: .62rem;
            text-transform: uppercase;
            letter-spacing: .13em;
        }

        .gitem .gitem-ph small {
            font-size: .58rem;
            opacity: .55;
        }

/* Hover overlay with title */
.gitem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,8,18,.82) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gitem:hover .gitem-overlay {
    opacity: 1;
}

.gitem-overlay span {
    font-size: .78rem;
    color: #fff;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.35;
}
/* Expand icon */
.gitem-overlay::before {
    content: '⤢';
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,.6);
}

/* Span full width for featured image */
.gitem.span-2 {
    grid-column: span 2;
}

.gitem.span-row {
    grid-row: span 2;
}

/* ══════════════════════════════════════════
   MODAL / LIGHTBOX
══════════════════════════════════════════ */
.orb-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5,8,18,.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

    .orb-modal.open {
        display: flex;
    }

.orb-modal-inner {
    position: relative;
    max-width: 960px;
    width: 100%;
    animation: modalIn .3s cubic-bezier(.4,0,.2,1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.96) translateY(12px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.orb-modal-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    background: #0a0e1a;
}
/* Placeholder shown when no real image loaded */
.orb-modal-ph {
    width: 100%;
    height: 60vh;
    background: #0e1220;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,.3);
}

    .orb-modal-ph svg {
        opacity: .2;
    }

    .orb-modal-ph span {
        font-family: var(--font-mono);
        font-size: .75rem;
        text-transform: uppercase;
        letter-spacing: .18em;
    }

.orb-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 0;
    gap: 1rem;
}

.orb-modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: .03em;
    line-height: 1.1;
}

.orb-modal-caption {
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.45);
    margin-top: .2rem;
}

.modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #141410;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

    .modal-close:hover {
        background: #f0f0ee;
        transform: scale(1.08);
    }
/* Prev / Next */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

    .modal-nav:hover {
        background: rgba(255,255,255,.22);
    }

.modal-prev {
    left: -56px;
}

.modal-next {
    right: -56px;
}

/* ══════════════════════════════════════════
   PRODUCT SECTION CARDS
══════════════════════════════════════════ */
.prod-section-card {
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 14px;
    overflow: hidden;
}

.prod-section-card-header {
    background: linear-gradient(135deg, #060a12 0%, #0a1018 50%, #050e0a 100%);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.prod-section-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(0,194,255,.5);
    line-height: 1;
    flex-shrink: 0;
}

.prod-section-card-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    letter-spacing: .02em;
    margin: 0;
    font-weight: 500;
}

.prod-section-card-header p {
    color: rgba(255,255,255,.55);
    font-size: 1rem;
    margin: .4rem 0 0;
}

.prod-section-body {
    padding: 2.5rem;
}

.prod-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.prod-col-title {
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #00a0d2;
    margin: 0 0 .75rem;
    font-family: var(--font-display);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .stat-bar-item:nth-child(2) {
        border-right: none;
    }

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

@media (max-width: 900px) {
    .orb-page {
        padding: 0 24px;
    }

    .orb-banner-content {
        padding: 0 24px 40px;
    }

    .orb-banner {
        height: 360px;
    }

    .orb-grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .orb-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .orb-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

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

    .gitem.span-2 {
        grid-column: span 1;
    }

    .prod-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prod-section-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }

    .modal-prev {
        left: -10px;
    }

    .modal-next {
        right: -10px;
    }

    .why-block {
        padding: 2rem;
    }
}

@media (max-width: 560px) {
    .gallery-grid, .gallery-grid.cols-3 {
        grid-template-columns: 1fr 1fr;
    }

    .orb-banner {
        height: 300px;
    }

    .orb-banner-content h1 {
        font-size: 2.2rem;
    }

    .orb-grid-3, .orb-grid-4 {
        grid-template-columns: 1fr;
    }

    .stat-bar {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   Infrastructure
   ======================================== */

.infra-pg {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.infra-sec {
    padding: 88px 0;
    border-bottom: 1px solid var(--c-border, rgba(0,0,0,.08));
}

    .infra-sec:last-of-type {
        border-bottom: none;
    }

/* Typography */
.i-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #00a0d2;
    margin-bottom: .8rem;
}

.i-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: .02em;
    margin: 0 0 .65rem;
}

.i-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: .02em;
    line-height: 1.05;
    color: var(--c-text, #141410);
    margin: 0 0 1.2rem;
}

.i-h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    letter-spacing: .02em;
    line-height: 1.1;
    color: var(--c-text, #141410);
    margin: 0 0 1rem;
}

.i-lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--c-text-2, #4a4a45);
    max-width: 800px;
}

.i-body {
    font-size: .93rem;
    line-height: 1.82;
    color: var(--c-text-2, #4a4a45);
}

/* Grids */
.i-g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.i-g3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.i-g4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem;
}

/* ─────────────────────────────────────────────
   IMAGE PLACEHOLDER
───────────────────────────────────────────── */
.iph {
    width: 100%;
    border-radius: 10px;
    background: var(--c-surface-2, #edecea);
    border: 1.5px dashed rgba(0,0,0,.11);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: var(--c-text-muted, #7a7a72);
    overflow: hidden;
}

    .iph svg {
        opacity: .26;
        flex-shrink: 0;
    }

    .iph .iph-title {
        font-family: var(--font-mono);
        font-size: .63rem;
        text-transform: uppercase;
        letter-spacing: .14em;
        text-align: center;
        padding: 0 1rem;
    }

    .iph .iph-hint {
        font-size: .58rem;
        opacity: .52;
    }
    /* Once you add a real image: <div class="iph"><img src="..." alt="..."></div> */
    .iph img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

/* dark variant */
.iph-dark {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.1);
}

    .iph-dark svg {
        stroke: rgba(255,255,255,.28) !important;
    }

    .iph-dark .iph-title {
        color: rgba(255,255,255,.28);
    }

    .iph-dark .iph-hint {
        color: rgba(255,255,255,.18);
    }

/* ─────────────────────────────────────────────
   VIDEO PLACEHOLDER
───────────────────────────────────────────── */
.vph {
    width: 100%;
    border-radius: 10px;
    background: #07090f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    color: rgba(255,255,255,.28);
    position: relative;
    overflow: hidden;
}

    .vph::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,162,210,.07) 0%, transparent 65%);
    }

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

    .vph svg {
        opacity: .22;
    }

    .vph .vph-title {
        font-family: var(--font-mono);
        font-size: .63rem;
        text-transform: uppercase;
        letter-spacing: .14em;
    }

    .vph .vph-hint {
        font-size: .58rem;
        opacity: .5;
    }

/* ─────────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────────── */
.i-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #060910;
    display: flex;
    align-items: flex-end;
}

.i-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060910 0%, #08110d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

    .i-banner-bg svg {
        opacity: .13;
    }

    .i-banner-bg .b-lbl {
        font-family: var(--font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.28);
    }

    .i-banner-bg .b-hint {
        font-size: .58rem;
        opacity: .45;
        color: rgba(255,255,255,.22);
        font-family: var(--font-mono);
    }

.i-banner-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,6,14,.9) 0%, rgba(4,6,14,.42) 50%, rgba(4,6,14,.1) 100%);
}

.i-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.i-banner-copy {
    position: relative;
    z-index: 2;
    padding: 0 60px 56px;
    width: 100%;
}

    .i-banner-copy p {
        color: rgba(255,255,255,.68);
        font-size: 1rem;
        max-width: 600px;
        line-height: 1.7;
        margin: .5rem 0 0;
    }

/* ─────────────────────────────────────────────
   STATS RIBBON
───────────────────────────────────────────── */
.i-stats {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    background: #00a0d2;
    border-radius: 12px;
    overflow: hidden;
}

.i-stat {
    padding: 1.75rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.18);
}

    .i-stat:last-child {
        border-right: none;
    }

.i-stat-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
}

.i-stat-lbl {
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.72);
    margin-top: .3rem;
    line-height: 1.3;
}

/* ─────────────────────────────────────────────
   CERT PILLS
───────────────────────────────────────────── */
.cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.75rem;
}

.cert-pill {
    border: 1px solid var(--c-border, rgba(0,0,0,.1));
    border-radius: 100px;
    padding: .32rem 1rem;
    font-family: var(--font-mono);
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-2, #4a4a45);
    background: var(--c-surface-2, #edecea);
}

/* ─────────────────────────────────────────────
   BULLET LIST
───────────────────────────────────────────── */
.dot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

    .dot-list li {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        font-size: .9rem;
        color: var(--c-text-2, #4a4a45);
        line-height: 1.6;
    }

        .dot-list li::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #00a0d2;
            flex-shrink: 0;
            margin-top: .48rem;
        }

        .dot-list li strong {
            color: var(--c-text, #141410);
        }

    .dot-list.white-dots li {
        color: rgba(255,255,255,.72);
    }

        .dot-list.white-dots li::before {
            background: #00c2ff;
        }

        .dot-list.white-dots li strong {
            color: #fff;
        }

/* ─────────────────────────────────────────────
   FULL-WIDTH STRIPS
───────────────────────────────────────────── */
.i-fw {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .i-fw img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

.i-fw-ph {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #060910, #08120d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: rgba(255,255,255,.2);
}

    .i-fw-ph svg {
        opacity: .13;
    }

    .i-fw-ph .fw-lbl {
        font-family: var(--font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .18em;
    }

    .i-fw-ph .fw-hint {
        font-size: .58rem;
        opacity: .48;
    }

.i-fw-ol {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

    .i-fw-ol.left {
        background: linear-gradient(to right, rgba(4,6,14,.86) 0%, rgba(4,6,14,.42) 52%, transparent 100%);
    }

    .i-fw-ol.right {
        background: linear-gradient(to left, rgba(4,6,14,.86) 0%, rgba(4,6,14,.42) 52%, transparent 100%);
        justify-content: flex-end;
    }

.i-fw-copy {
    max-width: 500px;
}

    .i-fw-copy h2 {
        font-family: var(--font-display);
        font-size: clamp(1.9rem,3.2vw,3rem);
        color: #fff;
        line-height: 1.05;
        margin: 0 0 .9rem;
        letter-spacing: .02em;
    }

    .i-fw-copy p {
        color: rgba(255,255,255,.7);
        font-size: .92rem;
        line-height: 1.75;
        margin: 0;
    }

    .i-fw-copy .i-eyebrow {
        color: #00c2ff;
    }

/* ─────────────────────────────────────────────
   MACHINE ACCORDION
───────────────────────────────────────────── */
.mc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
}

.mc-card {
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
}

    .mc-card.open {
        border-color: rgba(0,160,210,.3);
    }

.mc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    cursor: pointer;
    transition: background .2s;
    gap: .75rem;
}

    .mc-head:hover {
        background: var(--c-surface-2, #edecea);
    }

.mc-head-l {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.mc-ico {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,160,210,.13), rgba(0,160,210,.04));
    border: 1px solid rgba(0,160,210,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.mc-head h4 {
    font-size: .88rem;
    font-weight: 700;
    margin: 0 0 .12rem;
    line-height: 1.2;
}

.mc-head p {
    font-size: .73rem;
    color: var(--c-text-2, #4a4a45);
    margin: 0;
}

.mc-chev {
    font-size: .72rem;
    color: var(--c-text-muted, #7a7a72);
    transition: transform .25s;
    flex-shrink: 0;
    line-height: 1;
}

.mc-card.open .mc-chev {
    transform: rotate(180deg);
    color: #00a0d2;
}

.mc-body {
    display: none;
    padding: 0 1.4rem 1.4rem;
}

.mc-card.open .mc-body {
    display: block;
}

.mc-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: .9rem;
}

.mc-specs-01 {
    grid-template-columns: revert-layer;
}

.mc-spec {
    background: var(--c-surface-2, #edecea);
    border-radius: 7px;
    padding: .5rem .75rem;
}

.mc-spec-01 {
    background: var(--c-accent);
    text-align: center;
}

.mc-spec-k {
    font-family: var(--font-mono);
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-text-muted, #7a7a72);
}

.mc-spec-v {
    font-size: .82rem;
    font-weight: 700;
    color: var(--c-text, #141410);
    margin-top: .14rem;
}

.mc-spec-v-01 {
    color: #fff;
    font-weight: 500;
}

/* ─────────────────────────────────────────────
   QUALITY CARDS
───────────────────────────────────────────── */
.q-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.1rem;
}

.q-card {
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
}

.q-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0,160,210,.11), rgba(0,160,210,.03));
    border: 1px solid rgba(0,160,210,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.q-card h4 {
    font-size: .86rem;
    font-weight: 700;
    margin: 0 0 .4rem;
    line-height: 1.25;
}

.q-card p {
    font-size: .8rem;
    color: var(--c-text-2, #4a4a45);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────
   DARK BLOCK
───────────────────────────────────────────── */
.dark-blk {
    background: #07090f;
    border-radius: 14px;
    padding: 3.5rem;
}

    .dark-blk .i-eyebrow {
        color: #00c2ff;
    }

    .dark-blk .i-h2 {
        color: #fff;
    }

    .dark-blk .i-h3 {
        color: #fff;
    }

    .dark-blk .i-body {
        color: rgba(255,255,255,.65);
    }

/* ─────────────────────────────────────────────
   MASONRY BLOCK
───────────────────────────────────────────── */
.masonry-5 {
    display: grid;
    grid-template-rows: 220px 220px;
    gap: .9rem;
}

    .masonry-5 .m-main {
        grid-row: span 2;
        height: 100%;
    }

/* Inline image rows */
.r2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.r3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .9rem;
    margin-top: 2rem;
}

.r4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .9rem;
    margin-top: 2rem;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width:1100px) {
    .i-stats {
        grid-template-columns: repeat(3,1fr);
    }

    .i-stat:nth-child(3) {
        border-right: none;
    }

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

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

@media (max-width:900px) {
    .infra-pg {
        padding: 0 24px;
    }

    .i-banner-copy {
        padding: 0 24px 42px;
    }

    .i-banner {
        height: 370px;
    }

    .i-g2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .i-g3 {
        grid-template-columns: 1fr 1fr;
    }

    .masonry-5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

        .masonry-5 .m-main {
            grid-row: auto;
            grid-column: span 2;
            aspect-ratio: 16/9;
            height: auto;
        }

    .i-fw-ol {
        padding: 0 24px;
    }

    .i-fw-copy {
        max-width: 100%;
    }

    .dark-blk {
        padding: 2rem;
    }

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

    .i-stat:nth-child(2) {
        border-right: none;
    }

    .i-stat:nth-child(4) {
        border-right: none;
    }

    .r3, .r4 {
        grid-template-columns: 1fr 1fr;
    }

    .i-fw-ph {
        height: 360px;
    }
}

@media (max-width:600px) {
    .i-banner {
        height: 310px;
    }

    .i-h1 {
        font-size: 2.4rem;
    }

    .i-g3, .r3, .r4 {
        grid-template-columns: 1fr;
    }

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

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

    .masonry-5 {
        grid-template-columns: 1fr;
    }

        .masonry-5 .m-main {
            grid-column: auto;
        }

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

    .i-fw-ph {
        height: 280px;
    }
}

/* ========================================
   Sustainability
   ======================================== */

.sus-pg {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.sus-sec {
    padding: 88px 0;
    border-bottom: 1px solid var(--c-border, rgba(0,0,0,.08));
}

    .sus-sec:last-of-type {
        border-bottom: none;
    }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.s-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #00a0d2;
    margin-bottom: .8rem;
}

.s-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: .02em;
    margin: 0 0 .65rem;
}

.s-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: .02em;
    line-height: 1.05;
    color: var(--c-text, #141410);
    margin: 0 0 1.2rem;
}

.s-h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    letter-spacing: .02em;
    line-height: 1.1;
    color: var(--c-text, #141410);
    margin: 0 0 .9rem;
}

.s-lead {
    font-size: 1.05rem;
    line-height: 1.88;
    color: var(--c-text-2, #4a4a45);
    max-width: 800px;
}

.s-body {
    font-size: .93rem;
    line-height: 1.82;
    color: var(--c-text-2, #4a4a45);
}

.s-pullquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    color: #00a0d2;
    line-height: 1.15;
    letter-spacing: .02em;
    border-left: 4px solid #00a0d2;
    padding-left: 1.5rem;
    margin: 0;
}

/* ─────────────────────────────────────────────
   GRIDS
───────────────────────────────────────────── */
.s-g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.s-g3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.s-g4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem;
}

/* ─────────────────────────────────────────────
   IMAGE PLACEHOLDER
───────────────────────────────────────────── */
.iph {
    width: 100%;
    border-radius: 10px;
    background: var(--c-surface-2, #edecea);
    border: 1.5px dashed rgba(0,0,0,.11);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: var(--c-text-muted, #7a7a72);
    overflow: hidden;
}

    .iph svg {
        opacity: .27;
        flex-shrink: 0;
    }

    .iph .iph-t {
        font-family: var(--font-mono);
        font-size: .63rem;
        text-transform: uppercase;
        letter-spacing: .14em;
        text-align: center;
        padding: 0 1rem;
    }

    .iph .iph-h {
        font-size: .58rem;
        opacity: .52;
    }

    .iph img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }
    /* Dark variant (inside dark blocks) */
    .iph.dark {
        background: rgba(255,255,255,.05);
        border-color: rgba(255,255,255,.1);
    }

        .iph.dark svg {
            stroke: rgba(255,255,255,.3) !important;
            opacity: 1;
        }

        .iph.dark .iph-t {
            color: rgba(255,255,255,.3);
        }

        .iph.dark .iph-h {
            color: rgba(255,255,255,.2);
        }

/* VIDEO PLACEHOLDER */
.vph {
    width: 100%;
    border-radius: 10px;
    background: #07090f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    color: rgba(255,255,255,.28);
    position: relative;
    overflow: hidden;
}

    .vph::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(0,162,210,.08) 0%,transparent 65%);
    }

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

    .vph svg {
        opacity: .22;
    }

    .vph .vt {
        font-family: 'DM Mono',monospace;
        font-size: .63rem;
        text-transform: uppercase;
        letter-spacing: .14em;
    }

    .vph .vh {
        font-size: .58rem;
        opacity: .5;
    }

/* ─────────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────────── */
.s-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #04090d;
    display: flex;
    align-items: flex-end;
}

.s-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #041408 0%, #060d0a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

    .s-banner-bg svg {
        opacity: .13;
    }

    .s-banner-bg .bl {
        font-family: var(--font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.28);
    }

    .s-banner-bg .bh {
        font-size: .58rem;
        opacity: .45;
        color: rgba(255,255,255,.22);
        font-family: var(--font-mono);
    }

.s-banner-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,9,13,.92) 0%, rgba(4,9,13,.45) 50%, rgba(4,9,13,.12) 100%);
}

.s-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.s-banner-copy {
    position: relative;
    z-index: 2;
    padding: 0 60px 56px;
    width: 100%;
}

    .s-banner-copy p {
        color: rgba(255,255,255,.68);
        font-size: 1rem;
        max-width: 600px;
        line-height: 1.7;
        margin: .5rem 0 0;
    }

/* Accent colour for sustainability — green */
.sus-accent {
    color: #00c864;
}

.sus-eyebrow {
    color: #00c864 !important;
}

.sus-info img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    padding: 5px;
}
/* ─────────────────────────────────────────────
   STATS RIBBON — green
───────────────────────────────────────────── */
.s-stats {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    background: #00a855;
    border-radius: 12px;
    overflow: hidden;
}

.s-stat {
    padding: 1.75rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.18);
}

    .s-stat:last-child {
        border-right: none;
    }

.s-stat-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
}

.s-stat-lbl {
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.8);
    margin-top: .3rem;
    line-height: 1.3;
}

/* ─────────────────────────────────────────────
   CERT PILLS
───────────────────────────────────────────── */
.cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.75rem;
}

.cert-pill {
    border: 1px solid var(--c-border,rgba(0,0,0,.1));
    border-radius: 100px;
    padding: .32rem 1rem;
    font-family: var(--font-mono);
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-2,#4a4a45);
    background: var(--c-surface-2,#edecea);
}

    .cert-pill.green {
        border-color: rgba(0,200,100,.25);
        background: rgba(0,200,100,.07);
        color: #008840;
    }

/* ─────────────────────────────────────────────
   BULLET LIST
───────────────────────────────────────────── */
.dot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

    .dot-list li {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        font-size: .9rem;
        color: var(--c-text-2,#4a4a45);
        line-height: 1.6;
    }

        .dot-list li::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #00a855;
            flex-shrink: 0;
            margin-top: .48rem;
        }

        .dot-list li strong {
            color: var(--c-text,#141410);
        }

    .dot-list.white-d li {
        color: rgba(255,255,255,.72);
    }

        .dot-list.white-d li::before {
            background: #00c864;
        }

        .dot-list.white-d li strong {
            color: #fff;
        }

/* ─────────────────────────────────────────────
   FULL-WIDTH STRIPS
───────────────────────────────────────────── */
.s-fw {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .s-fw img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

.s-fw-ph {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #041408, #060f0c);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: rgba(255,255,255,.2);
}

    .s-fw-ph svg {
        opacity: .13;
    }

    .s-fw-ph .fl {
        font-family: 'DM Mono',monospace;
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .18em;
    }

    .s-fw-ph .fh {
        font-size: .58rem;
        opacity: .48;
    }

.s-fw-ol {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

    .s-fw-ol.left {
        background: linear-gradient(to right, rgba(4,9,13,.88) 0%, rgba(4,9,13,.45) 52%, transparent 100%);
    }

    .s-fw-ol.right {
        background: linear-gradient(to left, rgba(4,9,13,.88) 0%, rgba(4,9,13,.45) 52%, transparent 100%);
        justify-content: flex-end;
    }

.s-fw-copy {
    max-width: 500px;
}

    .s-fw-copy h2 {
        font-family: 'Bebas Neue',sans-serif;
        font-size: clamp(1.9rem,3.2vw,3rem);
        color: #fff;
        line-height: 1.05;
        margin: 0 0 .9rem;
        letter-spacing: .02em;
    }

    .s-fw-copy p {
        color: rgba(255,255,255,.7);
        font-size: .92rem;
        line-height: 1.75;
        margin: 0;
    }

    .s-fw-copy .s-eyebrow {
        color: #00c864;
    }

/* ─────────────────────────────────────────────
   INITIATIVE CARDS (ORBIS pillars)
───────────────────────────────────────────── */
.init-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.init-card {
    background: var(--c-surface,#fff);
    border: 1px solid var(--c-border,rgba(0,0,0,.08));
    border-radius: 14px;
    overflow: hidden;
}

.init-card-top {
    padding: 1.75rem 1.75rem 0;
}

.init-card-ico {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,rgba(0,168,85,.12),rgba(0,168,85,.04));
    border: 1px solid rgba(0,168,85,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.init-card h3 {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 1.35rem;
    letter-spacing: .02em;
    margin: 0 0 .6rem;
    line-height: 1.1;
}

.init-card p {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--c-text-2,#4a4a45);
    margin: 0 0 1.25rem;
}

.init-card .init-img {
    margin: 0;
}

/* ─────────────────────────────────────────────
   DARK ORBIS BLOCK
───────────────────────────────────────────── */
.dark-blk {
    background: #07090f;
    border-radius: 14px;
    padding: 3.5rem;
}

    .dark-blk .s-eyebrow {
        color: #00c864;
    }

    .dark-blk .s-h2 {
        color: #fff;
    }

    .dark-blk .s-h3 {
        color: #fff;
    }

    .dark-blk .s-body {
        color: rgba(255,255,255,.65);
    }

/* ORBIS logo text */
.orbis-logo {
    font-family: 'Bebas Neue',sans-serif;
    font-size: clamp(3rem,6vw,5rem);
    letter-spacing: .12em;
    line-height: 1;
    background: linear-gradient(135deg,#00c864,#00a0d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: .5rem;
}

.orbis-sub {
    font-family: 'DM Mono',monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,255,255,.45);
}

/* ─────────────────────────────────────────────
   SOLAR MILESTONE TIMELINE
───────────────────────────────────────────── */
.solar-timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

    .solar-timeline::before {
        content: '';
        position: absolute;
        left: 7px;
        top: 4px;
        bottom: 4px;
        width: 2px;
        background: linear-gradient(to bottom,#00c864,#00a0d2);
        border-radius: 2px;
    }

.stl-item {
    position: relative;
    margin-bottom: 2rem;
}

    .stl-item:last-child {
        margin-bottom: 0;
    }

.stl-dot {
    position: absolute;
    left: -2rem;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00c864;
    border: 3px solid #07090f;
    box-shadow: 0 0 0 2px #00c864;
}

.stl-year {
    font-family: 'DM Mono',monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #00c864;
    margin-bottom: .25rem;
}

.stl-item h4 {
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .3rem;
    line-height: 1.3;
}

.stl-item p {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────
   SUSTAINABILITY PILLARS GRID
───────────────────────────────────────────── */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.pillar-card {
    background: var(--c-surface,#fff);
    border: 1px solid var(--c-border,rgba(0,0,0,.08));
    border-radius: 12px;
    padding: 1.4rem 1.2rem;
    text-align: center;
}

.pillar-ico {
    font-size: 1.8rem;
    margin-bottom: .75rem;
    display: block;
}

.pillar-card img {
    display: inline;
    width: 100px;
}

.pillar-card h4 {
    font-size: .88rem;
    font-weight: 700;
    margin: 0 0 .4rem;
    line-height: 1.25;
}

.pillar-card p {
    font-size: .78rem;
    color: var(--c-text-2,#4a4a45);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────
   IMAGE ROWS
───────────────────────────────────────────── */
.r2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.r3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .9rem;
    margin-top: 2rem;
}

.r4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .9rem;
    margin-top: 2rem;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width:1100px) {
    .s-stats {
        grid-template-columns: repeat(3,1fr);
    }

    .s-stat:nth-child(3) {
        border-right: none;
    }

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

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

@media (max-width:900px) {
    .sus-pg {
        padding: 0 24px;
    }

    .s-banner-copy {
        padding: 0 24px 42px;
    }

    .s-banner {
        height: 370px;
    }

    .s-g2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .s-g3 {
        grid-template-columns: 1fr 1fr;
    }

    .s-fw-ol {
        padding: 0 24px;
    }

    .s-fw-copy {
        max-width: 100%;
    }

    .dark-blk {
        padding: 2rem;
    }

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

    .s-stat:nth-child(2) {
        border-right: none;
    }

    .s-stat:nth-child(4) {
        border-right: none;
    }

    .r3, .r4 {
        grid-template-columns: 1fr 1fr;
    }

    .s-fw-ph {
        height: 360px;
    }
}

@media (max-width:600px) {
    .s-banner {
        height: 310px;
    }

    .s-h1 {
        font-size: 2.4rem;
    }

    .s-g3, .r3, .r4 {
        grid-template-columns: 1fr;
    }

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

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

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

    .s-fw-ph {
        height: 260px;
    }
}


/* ========================================
   Media
   ======================================== */

.med-pg {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.med-sec {
    padding: 80px 0;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.m-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #00a0d2;
    margin-bottom: .8rem;
}

.m-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: .02em;
    margin: 0 0 .65rem;
}

.m-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: .02em;
    line-height: 1.05;
    color: var(--c-text, #141410);
    margin: 0 0 1rem;
}

.m-lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--c-text-2, #4a4a45);
    max-width: 720px;
}

.m-body {
    font-size: .93rem;
    line-height: 1.8;
    color: var(--c-text-2, #4a4a45);
}

/* ─────────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────────── */
.m-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #060910;
    display: flex;
    align-items: flex-end;
}

.m-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060910 0%, #0a0e1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

    .m-banner-bg svg {
        opacity: .1;
    }

    .m-banner-bg .bl {
        font-family: var(--font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.25);
    }

    .m-banner-bg .bh {
        font-size: .58rem;
        opacity: .4;
        color: rgba(255,255,255,.2);
        font-family: var(--font-mono);
    }

.m-banner-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,9,16,.92) 0%, rgba(6,9,16,.45) 55%, rgba(6,9,16,.1) 100%);
}

.m-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.m-banner-copy {
    position: relative;
    z-index: 2;
    padding: 0 60px 52px;
    width: 100%;
}

    .m-banner-copy p {
        color: rgba(255,255,255,.65);
        font-size: 1rem;
        max-width: 580px;
        line-height: 1.7;
        margin: .5rem 0 0;
    }

/* ─────────────────────────────────────────────
   FILTER TABS
───────────────────────────────────────────── */
.med-filters {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.med-filter-btn {
    padding: .5rem 1.25rem;
    border-radius: 100px;
    border: 1.5px solid var(--c-border, rgba(0,0,0,.1));
    background: var(--c-surface, #fff);
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-2, #4a4a45);
    cursor: pointer;
    transition: all .2s;
}

    .med-filter-btn:hover {
        border-color: #00a0d2;
        color: #00a0d2;
    }

    .med-filter-btn.active {
        background: #00a0d2;
        border-color: #00a0d2;
        color: #fff;
    }

/* ─────────────────────────────────────────────
   POST GRID
───────────────────────────────────────────── */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

/* ─────────────────────────────────────────────
   SINGLE POST CARD
───────────────────────────────────────────── */
.post-card {
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
    display: flex;
    flex-direction: column;
}

    .post-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,.1);
    }

/* Image area */
.post-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--c-surface-2, #edecea);
    flex-shrink: 0;
    position: relative;
}

    .post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .45s cubic-bezier(.4,0,.2,1);
    }

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

/* Image placeholder */
.post-img-ph {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--c-text-muted, #7a7a72);
}

    .post-img-ph svg {
        opacity: .25;
    }

    .post-img-ph span {
        font-family: var(--font-mono);
        font-size: .6rem;
        text-transform: uppercase;
        letter-spacing: .13em;
    }

/* LinkedIn badge overlay */
.post-li-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

    .post-li-badge svg {
        width: 16px;
        height: 16px;
        fill: #fff;
    }

/* Category tag */
.post-cat {
    display: inline-block;
    padding: .22rem .8rem;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 500;
}

.cat-product {
    background: rgba(0,160,210,.1);
    color: #0080a8;
}

.cat-infra {
    background: rgba(80,80,80,.1);
    color: #404040;
}

.cat-sustainability {
    background: rgba(0,168,85,.1);
    color: #007840;
}

.cat-csr {
    background: rgba(220,60,60,.1);
    color: #b02020;
}

.cat-events {
    background: rgba(140,80,200,.1);
    color: #6030a0;
}

.cat-news {
    background: rgba(200,140,0,.1);
    color: #906000;
}

/* Post body */
.post-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-date {
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--c-text-muted, #7a7a72);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.post-title {
    font-size: .97rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--c-text, #141410);
    margin: 0;
}

.post-excerpt {
    font-size: .85rem;
    line-height: 1.7;
    color: var(--c-text-2, #4a4a45);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Post footer */
.post-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--c-border, rgba(0,0,0,.07));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-li-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #0a66c2;
    text-decoration: none;
    transition: opacity .2s;
}

    .post-li-link:hover {
        opacity: .72;
    }

    .post-li-link svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
        flex-shrink: 0;
    }

.post-reactions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.post-reaction {
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--c-text-muted, #7a7a72);
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ─────────────────────────────────────────────
   FEATURED / WIDE POST (1st card spans 2 cols)
───────────────────────────────────────────── */
.post-card.featured {
    grid-column: span 2;
}

    .post-card.featured .post-img {
        aspect-ratio: 21/9;
    }

    .post-card.featured .post-title {
        font-size: 1.15rem;
    }

    .post-card.featured .post-excerpt {
        -webkit-line-clamp: 4;
    }

/* ─────────────────────────────────────────────
   LOAD MORE
───────────────────────────────────────────── */
.load-more-wrap {
    text-align: center;
    margin-top: 3.5rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 2.5rem;
    border-radius: 100px;
    border: 1.5px solid var(--c-border, rgba(0,0,0,.12));
    background: var(--c-surface, #fff);
    font-family: var(--font-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-text-2, #4a4a45);
    cursor: pointer;
    transition: all .22s;
}

    .load-more-btn:hover {
        background: #00a0d2;
        border-color: #00a0d2;
        color: #fff;
    }

/* ─────────────────────────────────────────────
   LINKEDIN CTA STRIP
───────────────────────────────────────────── */
.li-strip {
    background: #0a66c2;
    border-radius: 14px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
}

    .li-strip h3 {
        font-family: var(--font-display);
        font-size: 2rem;
        color: #fff;
        letter-spacing: .02em;
        margin: 0 0 .4rem;
        line-height: 1.1;
        font-weight: 500;
    }

    .li-strip p {
        color: rgba(255,255,255,.75);
        font-size: .92rem;
        line-height: 1.65;
        margin: 0;
    }

.li-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    flex-shrink: 0;
    padding: .9rem 2rem;
    border-radius: 100px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #0a66c2;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s;
}

    .li-follow-btn:hover {
        opacity: .88;
    }

    .li-follow-btn svg {
        width: 16px;
        height: 16px;
        fill: #0a66c2;
        flex-shrink: 0;
    }

/* ─────────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────────── */
.post-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--c-text-muted, #7a7a72);
}

    .post-empty svg {
        opacity: .2;
        margin-bottom: 1rem;
    }

    .post-empty p {
        font-family: var(--font-mono);
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .14em;
    }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .med-pg {
        padding: 0 24px;
    }

    .m-banner-copy {
        padding: 0 24px 42px;
    }

    .m-banner {
        height: 340px;
    }

    .li-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
}

@media (max-width: 620px) {
    .m-banner {
        height: 290px;
    }

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

    .post-card.featured {
        grid-column: span 1;
    }

        .post-card.featured .post-img {
            aspect-ratio: 16/9;
        }
}

/* ========================================
   Contact
   ======================================== */

.ct-pg {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.ct-sec {
    padding: 88px 0;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.ct-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #00a0d2;
    margin-bottom: .8rem;
}

.ct-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: .02em;
    margin: 0 0 .65rem;
}

.ct-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: .02em;
    line-height: 1.05;
    color: var(--c-text, #141410);
    margin: 0 0 1.2rem;
}

.ct-h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: .02em;
    line-height: 1.1;
    color: var(--c-text, #141410);
    margin: 0 0 .75rem;
}

.ct-body {
    font-size: .93rem;
    line-height: 1.8;
    color: var(--c-text-2, #4a4a45);
}

/* ─────────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────────── */
.ct-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #060910;
    display: flex;
    align-items: flex-end;
}

.ct-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060910 0%, #0a0c18 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

    .ct-banner-bg svg {
        opacity: .1;
    }

    .ct-banner-bg .bl {
        font-family: var(--font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: rgba(255,255,255,.25);
    }

    .ct-banner-bg .bh {
        font-size: .58rem;
        opacity: .4;
        color: rgba(255,255,255,.2);
        font-family: var(--font-mono);
    }

.ct-banner-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,9,16,.94) 0%, rgba(6,9,16,.45) 55%, rgba(6,9,16,.1) 100%);
}

.ct-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ct-banner-copy {
    position: relative;
    z-index: 2;
    padding: 0 60px 52px;
    width: 100%;
}

    .ct-banner-copy p {
        color: rgba(255,255,255,.65);
        font-size: 1rem;
        max-width: 560px;
        line-height: 1.7;
        margin: .5rem 0 0;
    }

/* ─────────────────────────────────────────────
   TWO-COLUMN LAYOUT
───────────────────────────────────────────── */
.ct-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

/* ─────────────────────────────────────────────
   CONTACT INFO SIDEBAR
───────────────────────────────────────────── */
.ct-info-card {
    position: sticky;
    top: 2rem;
}

.ct-detail-block {
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ct-detail-header {
    background: #060910;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ct-detail-header-ico {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(0,162,210,.15);
    border: 1px solid rgba(0,162,210,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ct-detail-header-ico svg {
        width: 18px;
        height: 18px;
        stroke: #00c2ff;
    }

.ct-detail-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .04em;
    font-weight: 500;
    margin: 0;
}

.ct-detail-header p {
    font-family: var(--font-mono);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.4);
    margin: .15rem 0 0;
}

.ct-detail-body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ct-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ct-detail-ico {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    flex-shrink: 0;
    background: var(--c-surface-2, #edecea);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}

    .ct-detail-ico svg {
        width: 15px;
        height: 15px;
        stroke: #00a0d2;
    }

.ct-detail-row-text .ct-detail-label {
    font-family: var(--font-mono);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text-muted, #7a7a72);
    margin-bottom: .3rem;
}

.ct-detail-row-text a,
.ct-detail-row-text p {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--c-text, #141410);
    margin: 0;
    text-decoration: none;
}

    .ct-detail-row-text a:hover {
        color: #00a0d2;
    }

.ct-detail-row-text .ct-multi {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

/* TLC sidebar card */
.ct-tlc-card {
    background: #00a0d2;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
}

    .ct-tlc-card .ct-eyebrow {
        color: rgba(255,255,255,.75);
    }

    .ct-tlc-card h3 {
        font-family: var(--font-display);
        font-size: 1.4rem;
        color: #fff;
        letter-spacing: .02em;
        margin: 0 0 .5rem;
        font-weight: 500;
    }

    .ct-tlc-card p {
        font-size: .85rem;
        color: rgba(255,255,255,.8);
        line-height: 1.65;
        margin: 0 0 1rem;
    }

    .ct-tlc-card .ct-tlc-detail {
        font-size: .82rem;
        color: rgba(255,255,255,.9);
        line-height: 1.75;
    }

        .ct-tlc-card .ct-tlc-detail strong {
            color: #fff;
        }

/* ─────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────── */
.ct-form-card {
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 14px;
    overflow: hidden;
}

.ct-form-header {
    background: #060910;
    padding: 2rem 2.5rem;
}

    .ct-form-header h2 {
        font-family: var(--font-display);
        font-size: 2rem;
        color: #fff;
        letter-spacing: .02em;
        margin: 0 0 .3rem;
    }

    .ct-form-header p {
        font-family: var(--font-mono);
        font-size: .65rem;
        text-transform: uppercase;
        letter-spacing: .14em;
        color: rgba(255,255,255,.45);
        margin: 0;
    }

.ct-form-body {
    padding: 2.5rem;
}

/* Field groups */
.ct-field {
    margin-bottom: 1.5rem;
}

.ct-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.ct-label {
    display: block;
    font-family: var(--font-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text-2, #4a4a45);
    margin-bottom: .55rem;
}

    .ct-label .req {
        color: #e04040;
        margin-left: 2px;
    }

.success-label {
    color: var(--c-accent) !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
}

/* ASP.NET TextBox + DropDownList styled via class */
.ct-input,
.ct-select,
.ct-textarea {
    width: 100%;
    padding: .8rem 1.1rem;
    border: 1.5px solid var(--c-border, rgba(0,0,0,.12));
    border-radius: 9px;
    font-size: .9rem;
    line-height: 1.5;
    color: var(--c-text, #141410);
    background: var(--c-surface, #fff);
    font-family: 'DM Sans', sans-serif;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none;
    display: block;
}

    .ct-input:focus,
    .ct-select:focus,
    .ct-textarea:focus {
        outline: none;
        border-color: #00a0d2;
        box-shadow: 0 0 0 3px rgba(0,160,210,.12);
    }

    .ct-input::placeholder,
    .ct-textarea::placeholder {
        color: var(--c-text-muted, #7a7a72);
        opacity: .7;
    }

/* Select arrow */
.ct-select-wrap {
    position: relative;
}

    .ct-select-wrap::after {
        content: '';
        pointer-events: none;
        position: absolute;
        right: 1.1rem;
        top: 50%;
        transform: translateY(-50%);
        border: 5px solid transparent;
        border-top-color: var(--c-text-muted, #7a7a72);
        border-bottom: none;
        margin-top: 3px;
    }

.ct-select {
    cursor: pointer;
    padding-right: 2.5rem;
}

.ct-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Validation message styling */
.ct-val-msg {
    display: block;
    font-size: .75rem;
    color: #e04040;
    margin-top: .35rem;
    font-family: var(--font-mono);
    font-style: normal;
    letter-spacing: .06em;
}

/* Submit button */
.ct-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.ct-submit-note {
    font-size: .78rem;
    color: var(--c-text-muted, #7a7a72);
    line-height: 1.5;
}

.ct-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .9rem 2.25rem;
    border-radius: 100px;
    background: #00a0d2;
    border: none;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    font-weight: 700;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}

    .ct-btn-submit:hover {
        background: #008dbf;
        box-shadow: 0 6px 20px rgba(0,160,210,.3);
        transform: translateY(-1px);
    }

    .ct-btn-submit:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .ct-btn-submit svg {
        width: 16px;
        height: 16px;
        stroke: #fff;
        flex-shrink: 0;
    }

/* Success / error message panel */
.ct-msg-panel {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 9px;
    font-size: .88rem;
    line-height: 1.6;
    margin-top: 1.25rem;
}

    .ct-msg-panel.success {
        background: rgba(0,168,85,.08);
        border: 1px solid rgba(0,168,85,.25);
        color: #006830;
    }

    .ct-msg-panel.error {
        background: rgba(220,60,60,.07);
        border: 1px solid rgba(220,60,60,.2);
        color: #a02020;
    }

/* ─────────────────────────────────────────────
   GOOGLE MAP
───────────────────────────────────────────── */
.ct-map-section {
    padding-top: 0;
    padding-bottom: 88px;
}

.ct-map-wrap {
    width: 100%;
    height: 480px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    background: var(--c-surface-2, #edecea);
    position: relative;
}

    .ct-map-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }
/* Placeholder shown before iframe src is set */
.ct-map-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: var(--c-text-muted, #7a7a72);
}

    .ct-map-ph svg {
        opacity: .25;
    }

    .ct-map-ph span {
        font-family: var(--font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .18em;
    }

    .ct-map-ph small {
        font-size: .6rem;
        opacity: .55;
    }

/* Map info pill overlay */
.ct-map-pin {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    padding: .85rem 1.2rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.13);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    max-width: 320px;
}

.ct-map-pin-ico {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    flex-shrink: 0;
    background: rgba(0,160,210,.1);
    border: 1px solid rgba(0,160,210,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ct-map-pin-ico svg {
        width: 16px;
        height: 16px;
        stroke: #00a0d2;
    }

.ct-map-pin h4 {
    font-size: .82rem;
    font-weight: 700;
    margin: 0 0 .2rem;
    line-height: 1.25;
}

.ct-map-pin p {
    font-size: .74rem;
    color: var(--c-text-2, #4a4a45);
    line-height: 1.5;
    margin: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .ct-layout {
        grid-template-columns: 1fr 1.4fr;
        gap: 3.5rem;
    }
}

@media (max-width: 900px) {
    .ct-pg {
        padding: 0 24px;
    }

    .ct-banner-copy {
        padding: 0 24px 44px;
    }

    .ct-banner {
        height: 340px;
    }

    .ct-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ct-info-card {
        position: static;
    }

    .ct-map-wrap {
        height: 380px;
    }
}

@media (max-width: 560px) {
    .ct-banner {
        height: 290px;
    }

    .ct-h1 {
        font-size: 2.4rem;
    }

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

    .ct-form-body {
        padding: 1.5rem;
    }

    .ct-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ct-btn-submit {
        justify-content: center;
    }

    .ct-map-wrap {
        height: 300px;
    }

    .ct-map-pin {
        display: none;
    }
}

/* ========================================
   Sitemap
   ======================================== */
.sm-pg {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.sm-sec {
    padding: 80px 0;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.sm-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #00a0d2;
    margin-bottom: .8rem;
}

.sm-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    color: var(--c-text, #141410);
    line-height: 1;
    letter-spacing: .02em;
    margin: 0 0 .75rem;
}

.sm-h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: .04em;
    line-height: 1.1;
    color: var(--c-text, #141410);
    margin: 0 0 1.1rem;
}

.sm-body {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--c-text-2, #4a4a45);
}

/* ─────────────────────────────────────────────
   PAGE HEADER (no banner — clean header block)
───────────────────────────────────────────── */
.sm-header {
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--c-border, rgba(0,0,0,.08));
}

.sm-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.sm-header p {
    font-size: .93rem;
    line-height: 1.75;
    color: var(--c-text-2, #4a4a45);
    max-width: 520px;
    margin: .5rem 0 0;
}

.sm-updated {
    font-family: var(--font-mono);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text-muted, #7a7a72);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SITEMAP GRID
───────────────────────────────────────────── */
.sm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

/* ─────────────────────────────────────────────
   SECTION CARD
───────────────────────────────────────────── */
.sm-card {
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 14px;
    overflow: hidden;
}

.sm-card-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #0a1520, #061018);
    display: flex;
    align-items: center;
    gap: .85rem;
}

.sm-card-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(0,162,210,.15);
    border: 1px solid rgba(0,162,210,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sm-card-ico svg {
        width: 16px;
        height: 16px;
        stroke: #00c2ff;
        fill: none;
        stroke-width: 1.5;
    }

.sm-card-header h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: .04em;
    margin: 0;
    font-weight: 500;
}

.sm-card-body {
    padding: 1.25rem 1.5rem;
}

/* ─────────────────────────────────────────────
   LINK ITEMS
───────────────────────────────────────────── */
.sm-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    /* Parent link */
    .sm-link-list > li {
        margin-bottom: .1rem;
    }

.sm-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .65rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--c-text, #141410);
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
    transition: background .18s, color .18s;
}

    .sm-link:hover {
        background: rgba(0,160,210,.07);
        color: #00a0d2;
    }

.sm-link-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00a0d2;
    flex-shrink: 0;
}

/* Child (sub-page) links */
.sm-sub-list {
    list-style: none;
    padding: 0 0 0 1.6rem;
    margin: 0 0 .35rem;
}

    .sm-sub-list li {
        margin-bottom: .05rem;
    }

.sm-sub-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .42rem .55rem;
    border-radius: 7px;
    text-decoration: none;
    color: var(--c-text-2, #4a4a45);
    font-size: .82rem;
    line-height: 1.3;
    transition: background .18s, color .18s;
}

    .sm-sub-link:hover {
        background: rgba(0,160,210,.06);
        color: #00a0d2;
    }

.sm-sub-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0,160,210,.4);
    flex-shrink: 0;
}

/* Divider between sections within a card */
.sm-card-divider {
    border: none;
    border-top: 1px solid var(--c-border, rgba(0,0,0,.07));
    margin: .75rem 0;
}

/* ─────────────────────────────────────────────
   FULL-WIDTH SPAN CARD (for main/legal section)
───────────────────────────────────────────── */
.sm-card.span-full {
    grid-column: 1 / -1;
}

    .sm-card.span-full .sm-card-body {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

.sm-card.span-2 {
    grid-column: span 2;
}

/* ─────────────────────────────────────────────
   BREADCRUMB / PATH NOTE
───────────────────────────────────────────── */
.sm-path {
    font-family: var(--font-mono);
    font-size: .6rem;
    color: var(--c-text-muted, #7a7a72);
    opacity: .65;
    display: block;
    padding: 0 .65rem .55rem 2.1rem;
    line-height: 1.3;
    letter-spacing: .06em;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm-card.span-full .sm-card-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm-card.span-2 {
        grid-column: span 2;
    }

    .sm-card.span-full {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .sm-pg {
        padding: 0 24px;
    }

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

    .sm-card.span-2,
    .sm-card.span-full {
        grid-column: auto;
    }

        .sm-card.span-full .sm-card-body {
            grid-template-columns: 1fr 1fr;
        }

    .sm-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .sm-card.span-full .sm-card-body {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Terms of Use
   ======================================== */

.tou-pg {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.tou-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #00a0d2;
    margin-bottom: .8rem;
}

.tou-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    color: var(--c-text, #141410);
    line-height: 1;
    letter-spacing: .02em;
    margin: 0 0 .75rem;
}

.tou-h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: .03em;
    line-height: 1.1;
    color: var(--c-text, #141410);
    margin: 0 0 .85rem;
}

.tou-body {
    font-size: .93rem;
    line-height: 1.85;
    color: var(--c-text-2, #4a4a45);
}

    .tou-body + .tou-body {
        margin-top: .85rem;
    }

    .tou-body a {
        color: #00a0d2;
        text-decoration: none;
    }

        .tou-body a:hover {
            text-decoration: underline;
        }

/* ─────────────────────────────────────────────
   PAGE HEADER
───────────────────────────────────────────── */
.tou-header {
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--c-border, rgba(0,0,0,.08));
}

.tou-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.tou-meta {
    font-family: var(--font-mono);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text-muted, #7a7a72);
    flex-shrink: 0;
    padding-top: .4rem;
}

    .tou-meta p {
        margin: .3rem 0;
    }

/* ─────────────────────────────────────────────
   TWO-COLUMN LAYOUT
   Left: sticky TOC | Right: content
───────────────────────────────────────────── */
.tou-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 5rem;
    padding: 72px 0 88px;
    align-items: start;
}

/* ─────────────────────────────────────────────
   TABLE OF CONTENTS (sticky sidebar)
───────────────────────────────────────────── */
.tou-toc {
    position: sticky;
    top: 2rem;
    background: var(--c-surface, #fff);
    border: 1px solid var(--c-border, rgba(0,0,0,.08));
    border-radius: 12px;
    overflow: hidden;
}

.tou-toc-header {
    padding: 1rem 1.25rem;
    background: #060910;
    font-family: var(--font-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(255,255,255,.55);
}

.tou-toc-list {
    list-style: none;
    padding: .75rem 0;
    margin: 0;
}

    .tou-toc-list li {
        margin: 0;
    }

.tou-toc-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem 1.25rem;
    text-decoration: none;
    font-size: .82rem;
    color: var(--c-text-2, #4a4a45);
    transition: background .18s, color .18s;
    line-height: 1.3;
}

    .tou-toc-link:hover {
        background: rgba(0,160,210,.07);
        color: #00a0d2;
    }

.tou-toc-num {
    font-family: var(--font-mono);
    font-size: .62rem;
    color: #00a0d2;
    flex-shrink: 0;
    width: 18px;
    text-align: right;
}

.tou-toc-divider {
    border: none;
    border-top: 1px solid var(--c-border, rgba(0,0,0,.07));
    margin: .4rem 1.25rem;
}

/* ─────────────────────────────────────────────
   CONTENT SECTIONS
───────────────────────────────────────────── */
.tou-article {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tou-clause {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--c-border, rgba(0,0,0,.07));
}

    .tou-clause:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .tou-clause:first-of-type {
        padding-top: 0;
    }

.tou-clause-num {
    font-family: var(--font-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #00a0d2;
    margin-bottom: .4rem;
    display: block;
}

/* Bullet list inside clauses */
.tou-list {
    list-style: none;
    padding: 0;
    margin: .85rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

    .tou-list li {
        display: flex;
        align-items: flex-start;
        gap: .7rem;
        font-size: .9rem;
        color: var(--c-text-2, #4a4a45);
        line-height: 1.65;
    }

        .tou-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #00a0d2;
            flex-shrink: 0;
            margin-top: .5rem;
        }

/* Highlight box */
.tou-highlight {
    background: rgba(0,160,210,.06);
    border: 1px solid rgba(0,160,210,.18);
    border-left: 4px solid #00a0d2;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--c-text-2, #4a4a45);
}

    .tou-highlight strong {
        color: var(--c-text, #141410);
    }

/* Warning box */
.tou-warning {
    background: rgba(220,140,0,.06);
    border: 1px solid rgba(220,140,0,.2);
    border-left: 4px solid #dc8c00;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--c-text-2, #4a4a45);
}

/* Contact inline block */
.tou-contact-block {
    background: var(--c-surface-2, #edecea);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .tou-contact-block svg {
        flex-shrink: 0;
        margin-top: .2rem;
        stroke: #00a0d2;
    }

    .tou-contact-block p {
        font-size: .88rem;
        line-height: 1.7;
        color: var(--c-text-2, #4a4a45);
        margin: 0;
    }

    .tou-contact-block a {
        color: #00a0d2;
        text-decoration: none;
        font-weight: 500;
    }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
    .tou-pg {
        padding: 0 24px;
    }

    .tou-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 48px 0 72px;
    }

    .tou-toc {
        position: static;
    }
}

@media (max-width: 560px) {
    .tou-header {
        padding: 40px 0 36px;
    }

    .tou-h1 {
        font-size: 2.4rem;
    }

    .tou-header-inner {
        flex-direction: column;
    }
}


/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .prod-col-title {
        font-size: 1.2rem;
    }

    .feat-list li {
        font-size: 0.9rem;
    }

    .app-tag {
        font-size: 0.8rem;
    }

    .prod-section-card-header h3 {
        font-size: 1.6rem;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
