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

:root {
    --theme-primary: #0655d4;
    --theme-primary-strong: #002c6e;
    --theme-primary-soft: rgba(6, 85, 212, 0.08);
    --theme-primary-border: rgba(6, 85, 212, 0.12);
    --theme-primary-85: rgba(6, 85, 212, 0.85);
    --theme-primary-95: rgba(0, 44, 110, 0.95);
    --theme-accent: #3aff33;
    --theme-accent-strong: #28e622;
    --theme-page-bg: #f0efff;
    --theme-surface: #ffffff;
    --theme-surface-alt: #f7f8ff;
    --theme-text: #0c0c0c;
    --theme-muted: #5a5f72;
    --theme-border: #d6d6e7;
    --theme-nav-bg: rgba(240, 239, 255, 0.94);
    --theme-hero-overlay: rgba(0, 44, 110, 0.92);
    --theme-footer-bg: #002c6e;
    --theme-footer-text: rgba(255, 255, 255, 0.78);
    --theme-footer-muted: rgba(255, 255, 255, 0.55);
    --theme-white-90: rgba(255, 255, 255, 0.9);
    --theme-white-85: rgba(255, 255, 255, 0.85);
    --theme-white-82: rgba(255, 255, 255, 0.82);
    --theme-white-80: rgba(255, 255, 255, 0.8);
    --theme-white-78: rgba(255, 255, 255, 0.78);
    --theme-white-75: rgba(255, 255, 255, 0.75);
    --theme-white-72: rgba(255, 255, 255, 0.72);
    --theme-white-62: rgba(255, 255, 255, 0.62);
    --theme-white-55: rgba(255, 255, 255, 0.55);
    --theme-white-50: rgba(255, 255, 255, 0.5);
    --theme-white-30: rgba(255, 255, 255, 0.3);
    --theme-white-20: rgba(255, 255, 255, 0.2);
    --theme-white-12: rgba(255, 255, 255, 0.12);
    --primary: var(--theme-primary);
    --primary-soft: var(--theme-primary-soft);
    --accent: var(--theme-accent);
    --text: var(--theme-text);
    --bg: var(--theme-page-bg);
    --bg-dark: var(--theme-primary-85);
    --muted: var(--theme-muted);
    --border: var(--theme-border);
    --white: var(--theme-surface);
    --font-head: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --h1-size: 56px;
    --h2-size: 45px;
    --h3-size: 36px;
    --h4-size: 28px;
    --max-w: 1200px;
    --gap: 88px;
    --space-section: clamp(58px, 6.4vw, 84px);
    --space-section-tight: clamp(36px, 4.8vw, 56px);
    --space-section-loose: clamp(68px, 7.5vw, 96px);
    --space-layout-gap: clamp(24px, 3.5vw, 44px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
   BUTTONS — CAPSULE ONLY
============================================================ */
/* shared arrow icon inside buttons */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--theme-white-90);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.btn-arrow svg {
    width: 13px;
    height: 13px;
    stroke: var(--bg-dark);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--bg-dark);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 10px 8px 20px;
    border-radius: 9999px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cta:hover {
    background: var(--theme-accent-strong);
}

.btn-cta:hover .btn-arrow {
    transform: translateX(2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--theme-white-75);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px 8px 22px;
    border-radius: 9999px;
    border: 1px solid var(--theme-white-20);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline .btn-arrow {
    background: var(--theme-white-12);
}

.btn-outline .btn-arrow svg {
    stroke: var(--theme-white-80);
}

.btn-outline:hover {
    border-color: var(--theme-white-50);
    color: var(--white);
}

.btn-outline:hover .btn-arrow {
    transform: translateX(2px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px 8px 20px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-dark .btn-arrow svg {
    stroke: var(--primary);
}

.btn-dark:hover {
    background: var(--theme-primary-85);
}

.btn-dark:hover .btn-arrow {
    transform: translateX(2px);
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.2s;
}

.btn-link-arrow:hover {
    color: var(--primary);
}

.btn-link-arrow .btn-arrow {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.btn-link-arrow .btn-arrow svg {
    stroke: #ffffff;
    stroke-width: 2.5;
}

.btn-link-arrow:hover .btn-arrow {
    background: var(--white);
    transform: translateX(2px);
}

.btn-link-arrow:hover .btn-arrow svg {
    stroke: var(--bg-dark);
}

/* ============================================================
   SECTION LABELS
============================================================ */
.eyebrow {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.45;
    margin-bottom: 12px;
    display: block;
}

.eyebrow-light {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--theme-white-30);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: var(--text);
}

.section-title-light {
    color: var(--white);
}

/* ============================================================
   NAV
============================================================ */
.nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 200 !important;
    background: var(--theme-nav-bg) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid var(--border) !important;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 66px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin-left: auto;
}

.nav-links>li>a,
.nav-dropdown-toggle {
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-links>li>a:hover,
.nav-dropdown-toggle:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    min-width: 230px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    list-style: none;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13.5px;
    color: var(--text);
}

.dropdown-menu a:hover {
    background: var(--bg);
    color: var(--primary);
}

.nav-cta {
    flex-shrink: 0;
}

.nav-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 16px;
    height: 2px;
    background: var(--primary);
    display: block;
    border-radius: 2px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-top: 1px solid var(--border);
    background: rgba(240, 239, 255, 0.98);
}

.nav-mobile a {
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--text);
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 44, 110, 0.08);
}

.nav-mobile a:last-child {
    border-bottom: 0;
}

.nav-mobile.open {
    display: flex;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    background: var(--bg-dark);
    min-height: 100vh;
    padding-top: 66px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 64px;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hex-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .hex-canvas {
    opacity: 0.85;
}

.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 22px;
}

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -2px;
}

.hero-heading em {
    font-style: normal;
    color: var(--white);
    opacity: 0.55;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 22px;
    max-width: 440px;
    line-height: 1.75;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

/* Hero image panel - animated mosaic */
.hero-mosaic-wrap {
    position: relative;
    height: 480px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.15s;
}

.mosaic-mask {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(0, 44, 110, 0.9);
    border-radius: 20px;
    pointer-events: none;
    animation: heroMaskWipe 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards 0.5s;
}

.hero-mgrid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: var(--hc0, 1fr) var(--hc1, 1fr);
    grid-template-rows: var(--hr0, 1fr) var(--hr1, 1fr);
    gap: 8px;
    border-radius: 20px;
    overflow: hidden;
    transition: grid-template-columns 950ms cubic-bezier(0.76, 0, 0.24, 1), grid-template-rows 950ms cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-mgrid.single-frame {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2.2s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 50%, rgba(15, 28, 65, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-mgrid.static-layout {
    transition: none;
}

.hero-mgrid[data-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.hero-mgrid[data-count="2"] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.hero-mgrid[data-count="3"] {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
}

.hero-mgrid[data-count="3"] .hero-mcell:first-child {
    grid-row: 1 / span 2;
}

.hero-mcell {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    min-width: 0;
    min-height: 0;
    transform: scale(0);
}

.hero-mgrid.static-layout .hero-mcell {
    transform: none;
}

.hero-mgrid.static-layout .hero-mcell img {
    opacity: 1;
    transition: opacity 0.6s ease;
    animation: none;
}

.hero-mcell.is-hero {
    border-radius: 18px;
}

.hero-mcell.pop-in {
    animation: heroCellPop 440ms cubic-bezier(0.34, 1.52, 0.64, 1) forwards;
}

.hero-mcell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-mcell:nth-child(1) img {
    animation: kb1 14s ease-in-out infinite alternate;
}

.hero-mcell:nth-child(2) img {
    animation: kb2 12s ease-in-out 1s infinite alternate;
}

.hero-mcell:nth-child(3) img {
    animation: kb3 13s ease-in-out 2s infinite alternate;
}

.hero-mcell:nth-child(4) img {
    animation: kb4 11s ease-in-out 0.5s infinite alternate;
}

@keyframes kb1 {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.08) translate(-2%, 1%);
    }
}

@keyframes kb2 {
    from {
        transform: scale(1.05) translate(1%, 0);
    }

    to {
        transform: scale(1) translate(-1%, -2%);
    }
}

@keyframes kb3 {
    from {
        transform: scale(1) translate(0, -1%);
    }

    to {
        transform: scale(1.07) translate(2%, 1%);
    }
}

@keyframes kb4 {
    from {
        transform: scale(1.04) translate(-1%, 1%);
    }

    to {
        transform: scale(1) translate(1%, -1%);
    }
}

.hero-mcell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 50%, rgba(15, 28, 65, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-mgrid.expanding .hero-mcell:not(.is-hero)::after {
    background: rgba(10, 20, 55, 0.6);
}

@keyframes heroMaskWipe {
    from {
        clip-path: inset(0 0 0 0 round 20px);
    }

    to {
        clip-path: inset(0 0 0 100% round 20px);
    }
}

@keyframes heroCellPop {
    from {
        transform: scale(0);
        opacity: 0.4;
    }

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ============================================================
   STATS BAR — ADAPTIVE
============================================================ */
.stats {
    background: var(--primary);
    padding: 56px 0;
}

.stats-inner {
    display: flex;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 8px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    max-width: 400px;
}

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

/* When only 1 stat */
.stats-inner:has(.stat-item:only-child) .stat-item {
    max-width: 500px;
}

/* When only 2 stats */
.stats-inner:has(.stat-item:nth-child(2):last-child) {
    max-width: 700px;
    margin: 0 auto;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 50px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
    padding: var(--gap) 0;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text p {
    font-size: 15.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-text p:last-of-type {
    margin-bottom: 32px;
}

.about-right {
    position: sticky;
    top: 82px;
}

/* Illustrated mosaic grid — adaptive to image count */
.about-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
    gap: 10px;
    border-radius: 16px;
    overflow: hidden;
}

.mosaic-img {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* 1 image: full width */
.about-mosaic:has(.mosaic-img:only-child) {
    grid-template-columns: 1fr;
    grid-template-rows: 300px;
}

.about-mosaic:has(.mosaic-img:only-child) .mosaic-img {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    transform: scale(1.3);
}

/* 2 images: side by side */
.about-mosaic:has(.mosaic-img:nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px;
}

.about-mosaic:has(.mosaic-img:nth-child(2):last-child) .mosaic-img:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / -1;
}

.about-mosaic:has(.mosaic-img:nth-child(2):last-child) .mosaic-img:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / -1;
}

/* 3 images: original layout */
.mosaic-img:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.mosaic-img:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.mosaic-img:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

/* Hide empty mosaic */
.about-mosaic:empty {
    display: none;
}

.mosaic-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--white);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mosaic-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.mosaic-badge-year {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    border-radius: 30px;
    padding: 6px 14px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   PRODUCTS CAROUSEL
============================================================ */
.products {
    padding: var(--gap) 0;
    background: var(--bg);
    overflow: hidden;
}

.products-header {
    margin-bottom: 48px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    /* JS will set transform */
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 340px;
    background: var(--primary);
    cursor: pointer;
}

.carousel-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    transition: opacity 0.3s;
}

.carousel-card:hover .carousel-card-bg {
    opacity: 0.28;
}

.carousel-card-body {
    position: absolute;
    inset: 0;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 44, 110, 0.85) 0%, rgba(0, 44, 110, 0.2) 60%, transparent 100%);
}

.carousel-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.carousel-card-icon svg,
.carousel-card-icon i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: var(--white);
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-card-name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.carousel-card-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.carousel-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 18px;
    padding: 8px 10px 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--theme-white-90);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-card-link .btn-arrow {
    background: rgba(255, 255, 255, 0.14);
}

.carousel-card-link .btn-arrow svg {
    stroke: var(--theme-white-90);
}

.carousel-card-link:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-1px);
}

.carousel-card-link:hover .btn-arrow {
    transform: translateX(2px);
    background: var(--accent);
}

.carousel-card-link:hover .btn-arrow svg {
    stroke: var(--bg-dark);
}

.carousel-card-link::after {
    content: '→';
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: var(--primary);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why {
    background: var(--white);
    padding: var(--gap) 0;
    width: 100%;
}

.why-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 24px;
}

.why-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

/* Hide empty grid */
.why-items:empty {
    display: none;
}

/* 1 item: centered */
.why-items:has(.why-item:only-child) {
    max-width: 400px;
    margin: 0 auto;
}

/* 2 items: 2 columns centered */
.why-items:has(.why-item:nth-child(2):last-child) {
    max-width: 700px;
    margin: 0 auto;
}

/* 3 items: 3 columns */
.why-items:has(.why-item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.why-item {
    background: var(--bg);
    padding: 28px;
    border-radius: 16px;
    min-height: 180px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-item-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 44, 110, 0.15);
}

.why-item-icon i {
    font-size: 24px;
    color: var(--white);
}

.why-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.why-item-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.why-item-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   PRINCIPLES
============================================================ */
.principles {
    padding: var(--gap) 0;
    background: var(--white);
}

.principles-header {
    text-align: center;
    margin-bottom: 64px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* Hide empty grid */
.principles-grid:empty {
    display: none;
}

/* 1 item: centered, max-width */
.principles-grid:has(.principle-item:only-child) {
    max-width: 400px;
    margin: 0 auto;
}

/* 2 items: 2 columns */
.principles-grid:has(.principle-item:nth-child(2):last-child) {
    max-width: 700px;
    margin: 0 auto;
}

.principle-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.theme-card {
    background: var(--bg);
}

.principle-card:hover {
    box-shadow: 0 16px 48px rgba(0, 44, 110, 0.06);
}

.p-icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.p-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.principle-card h3 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.principle-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   ENQUIRY
============================================================ */
.enquiry {
    padding: var(--gap) 0;
    background: var(--bg-dark);
}

.enquiry-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.enquiry-left h2 {
    margin-bottom: 32px;
}

.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.07);
}

.full-width {
    grid-column: span 2;
}

.enquiry-form .btn-cta {
    margin-top: 20px;
    justify-content: center;
    font-size: 15px;
    padding: 12px;
}

/* ============================================================
   BUTTON — PRIMARY (ACCENT BG)
============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--bg-dark);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 10px 8px 20px;
    border-radius: 9999px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--theme-accent-strong);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(2px);
}

/* ============================================================
   CONTACT CTA (PHONE / EMAIL)
============================================================ */
.contact-cta {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.contact-cta-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

.cta-icon-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.cta-icon-value {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.4px;
}

.cta-icon-value a {
    color: var(--white);
}

.cta-icon-value a:hover {
    color: var(--accent);
}

/* ============================================================
   FOOTER (5 COLS: LOGO, QUICK LINKS, SOCIAL, MAP, ADDRESSES)
============================================================ */
.footer {
    background: var(--theme-primary-strong) !important;
    padding: 72px 0 0 !important;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 44px;
}

.footer-brand-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-brand-logo img {
    width: clamp(150px, 15vw, 210px);
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    max-width: 300px;
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 28px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links-contact a {
    word-break: break-word;
}

.footer-map-col {
    min-width: 0;
}

.footer-map-mini {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.footer-map-mini iframe {
    width: 100%;
    min-height: 150px;
    border: 0;
}

.footer-address {
    font-size: 12.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0 24px;
    display: flex;
    justify-content: center;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   MAP STRIP
============================================================ */
.footer-map-strip {
    background: var(--primary);
    padding-top: 40px;
}

.footer-map-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1.2fr;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.footer-map-frame {
    background: rgba(0, 44, 110, 0.95);
}

.footer-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    opacity: 0.8;
}

.footer-map-divider {
    background: rgba(255, 255, 255, 0.05);
}

.footer-map-info {
    padding: 64px 48px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-map-office {
    margin-bottom: 48px;
}

.footer-map-office:last-child {
    margin-bottom: 0;
}

.footer-map-label {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
}

.footer-map-name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-map-addr {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.footer-map-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.6;
}

.footer-map-link:hover {
    opacity: 1;
    color: var(--accent);
}

/* ============================================================
   LOADER
============================================================ */
.loader {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 44, 110, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    color: var(--muted);
    font-size: 14px;
}

/* ============================================================
   PRODUCT TABLE
============================================================ */
.product-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-table th,
.product-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.product-table th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-table tbody tr {
    transition: background 0.2s ease;
}

.product-table tbody tr:hover {
    background: var(--primary-soft);
}

.product-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .container {
        padding: 0 32px;
    }

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

    .hero-heading {
        font-size: 52px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-mosaic-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    :root {
        --gap: 64px;
        --space-section: clamp(48px, 7.5vw, 68px);
        --space-section-tight: clamp(32px, 5.5vw, 44px);
        --space-section-loose: clamp(56px, 8vw, 78px);
        --space-layout-gap: clamp(18px, 4vw, 28px);
    }

    .about-inner,
    .vision-mission-inner,
    .principles-grid,
    .enquiry-inner {
        grid-template-columns: 1fr;
    }

    .why-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .hero-mosaic-wrap {
        height: 380px;
    }

    .about-right {
        position: static;
        margin-top: 40px;
    }

    .carousel-card {
        flex: 0 0 calc(100% - 32px);
    }

    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

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

    .footer-map-grid {
        grid-template-columns: 1fr;
    }

    .footer-map-frame iframe {
        min-height: 220px;
    }

    .footer-map-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

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

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

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

    .hero-heading {
        font-size: 40px;
    }

    .hero-mosaic-wrap {
        height: 320px;
    }

    .nav-logo-img {
        height: 36px;
    }
}

@media (max-width: 960px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: inline-flex;
    }
}

/* ============================================================
   MICRO-ANIMATIONS
============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button lift on hover */
.btn-cta,
.btn-dark,
.btn-outline {
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-cta:hover,
.btn-dark:hover {
    transform: translateY(-1px);
}

/* Product card hover lift */
.carousel-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 44, 110, 0.2);
}

/* ============================================================
   SPACING STANDARDISATION
============================================================ */
section {
    --section-space: var(--space-section);
    padding: var(--section-space) 0;
}

.stats {
    --section-space: clamp(28px, 4vw, 44px);
}

.about,
.products,
.why,
.vision,
.principles,
.enquiry {
    --section-space: var(--space-section);
}

.cta-strip {
    --section-space: var(--space-section-tight);
}

/* Hero keeps its own padding — override section reset */
.hero {
    padding-top: 66px;
    padding-bottom: 0;
}

.hero-inner {
    padding-top: 64px;
    padding-bottom: 60px;
}

.about-inner {
    gap: var(--space-layout-gap);
}

.products-header {
    margin-bottom: clamp(28px, 4vw, 40px);
}

.enquiry-inner {
    gap: var(--space-layout-gap);
}

/* ============================================================
   HERO COMPONENT COMPATIBILITY
============================================================ */

.vision {
    padding: var(--gap) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.vision>.container {
    position: relative;
    z-index: 2;
}

.vision-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.vm-card {
    position: relative;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 52px 48px 56px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.vm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vm-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    border-radius: 0 0 3px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent);
    opacity: 0;
    transition: opacity 0.35s ease, width 0.35s ease;
}

.vm-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.vm-card:hover::after {
    opacity: 1;
    width: 120px;
}

.vm-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}

.vm-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.vm-icon path,
.vm-icon circle {
    stroke: rgba(255, 255, 255, 0.72);
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vm-heading {
    font-family: var(--font-head);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.vm-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent);
    margin-bottom: 20px;
}

.vm-text {
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.principle-item {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 44, 110, 0.06);
}

.principle-icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.principle-icon i {
    font-size: 24px;
    color: var(--white);
}

.principle-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.principle-num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 44, 110, 0.45);
    display: block;
    margin-bottom: 12px;
}

.principle-title {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}

.principle-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

.enquiry-left .section-title {
    color: var(--white);
}

.enquiry-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-top: 24px;
    max-width: 420px;
}

.enquiry-meta {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.enquiry-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.enquiry-meta-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.7;
    flex-shrink: 0;
}

.enquiry-meta-item a {
    color: var(--white);
    opacity: 0.82;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-column: span 2;
}

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

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    grid-column: span 2;
}

.enquiry-tags-wrap {
    display: grid;
    gap: 10px;
}

.enquiry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 34px;
}

.enquiry-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-text);
    border: 1px solid var(--theme-primary-border);
    max-width: 100%;
}

.enquiry-tag-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.enquiry-tag-remove {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 17, 42, 0.12);
    color: rgba(4, 17, 42, 0.7);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.enquiry-tag-remove:hover {
    background: rgba(4, 17, 42, 0.18);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.enquiry-tags-empty {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.enquiry-tags-clear {
    justify-self: start;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.9;
}

.enquiry .enquiry-tags-empty {
    color: rgba(255, 255, 255, 0.62);
}

.enquiry .enquiry-tags-clear {
    color: rgba(255, 255, 255, 0.78);
}

.cta-strip-heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: var(--bg-dark);
}

.cta-strip-heading span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(4, 17, 42, 0.55);
    margin-bottom: 14px;
}

.cta-strip-sub {
    max-width: 420px;
    margin-top: 18px;
    color: rgba(4, 17, 42, 0.72);
}

.cta-strip-right {
    display: grid;
    gap: 18px;
}

.cta-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.6;
}

.cta-icon-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(4, 17, 42, 0.52);
    margin-bottom: 6px;
}

.cta-icon-value {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--bg-dark);
}

.cta-icon-value a {
    color: inherit;
}

.cta-strip-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-strip .btn-outline {
    border-color: rgba(4, 17, 42, 0.18);
    color: var(--bg-dark);
}

.cta-strip .btn-outline .btn-arrow {
    background: rgba(4, 17, 42, 0.12);
}

.cta-strip .btn-outline .btn-arrow svg {
    stroke: var(--bg-dark);
}

.carousel-card-link::after {
    content: none;
}

.footer-map-strip {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 40px 48px 0;
}

.footer-map-info {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-map-divider {
    width: 100%;
    height: 1px;
    margin: 0 0 48px;
}

@media (max-width: 960px) {

    .why-inner,
    .vision-split,
    .form-row,
    .footer-map-strip {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 40px 30px 44px;
    }

    .vm-heading {
        font-size: clamp(26px, 7vw, 34px);
    }

    .footer-map-strip {
        padding: 40px 32px 0;
    }

    .footer-map-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 600px) {

    .cta-strip-btns .btn-cta,
    .cta-strip-btns .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .vm-card {
        padding: 34px 24px 38px;
    }

    .vm-label {
        margin-bottom: 18px;
    }

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

    .vm-text {
        font-size: 15px;
        line-height: 1.75;
    }
}

/* Minimal global fadeInUp for sections */
section {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.1s;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
