/* Self-hosted fonts (Inter + Outfit, variable weight) — replaces the Google Fonts request */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('fonts/outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('fonts/outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ================================================
   AARGEE — FULL-WIDTH BACKGROUND HERO
   Bright image • Clean text • Like reference design
   ================================================ */

:root {
    /* Aargee Red — used sparingly */
    --red: #C8102E;
    --red-hover: #A00D24;

    /* Black theme colors (deep rich black, not flat #000) */
    --dark: #0A1128;
    --dark-nav: #060B1C;
    --dark-overlay: rgba(8, 8, 10, 0.6);

    /* Text */
    --white: #FFFFFF;
    --white-soft: rgba(255, 255, 255, 0.85);
    --white-muted: rgba(255, 255, 255, 0.6);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --top-bar-h: 0px;
    --nav-h: 70px;
}

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

html {
    /* iOS Safari inflates text in landscape unless told not to */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth !important;
    scroll-padding-top: var(--nav-h, 90px);
    -webkit-font-smoothing: antialiased;
}

body {
    scroll-behavior: smooth !important;
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---- Lenis smooth scroll (desktop only — see initLenis in main.js) ---- */
html.lenis,
html.lenis body {
    height: auto;
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Sections sit flush against each other — a margin here would expose the
   page background as an empty strip between full-width bands. */
section + section {
    margin-top: 0;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

/* ================================================
   TOP INFO BAR
   ================================================ */
.top-bar {
    background: var(--dark-nav);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 101;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: var(--top-bar-h);
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-items {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-muted);
    letter-spacing: 0.02em;
}

.top-bar-item svg {
    color: var(--red);
    flex-shrink: 0;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social a {
    color: var(--white-muted);
    transition: color 0.2s;
    display: flex;
}

.top-bar-social a:hover {
    color: var(--white);
}

/* ================================================
   NAVIGATION BAR
   ================================================ */
.navbar {
    background: var(--dark-nav);
    position: relative;
    z-index: 100;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: var(--nav-h);
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align left */
    justify-content: center;
    text-decoration: none;
}

.nav-tagline {
    font-size: 9px;
    color: var(--white-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 4px;
    white-space: nowrap;
}

.logo-img {
    height: 48px; /* Medium size to fit navbar cleanly */
    width: auto;
    filter: brightness(1.15);
    flex-shrink: 0;
}

/* Nav Links */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    font-size: 14px; /* Reduced from 16.5px for clean fit */
    font-weight: 600;
    color: var(--white-soft);
    padding: 0 14px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

/* Nav CTA */
.nav-cta {
    flex-shrink: 0;
    padding: 10px 28px;
    background: var(--red);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--red-hover);
}

.nav-legal-links {
    display: none;
}

/* New mobile-only nav elements (panel header, quick access, bottom CTA,
   expandable submenus) stay out of the way on desktop, where the plain
   horizontal .nav-links row is used instead. */
.nav-menu-header,
.nav-menu-cta,
.nav-quick-access,
.nav-expand-toggle,
.nav-submenu {
    display: none;
}

.nav-item-row {
    display: contents;
}

/* Prevent nav link wrapping on medium screens */
@media (max-width: 1250px) {
    .nav-link {
        padding: 0 10px;
        font-size: 13px;
    }
    .nav-inner {
        gap: 12px;
    }
    .nav-cta {
        padding: 8px 18px;
        font-size: 15px;
    }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* ================================================
   HERO SECTION — Full-Width Background
   ================================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background Image — Bright, visible */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Layered overlay — solid navy on the left for guaranteed text legibility,
   fading (never to fully transparent) on the right so the photo blends into
   the site's dark background instead of ending in a hard edge; top & bottom
   vignette so the image blends into the navbar above and the next section below */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(6, 11, 28, 0.85) 0%,
            rgba(6, 11, 28, 0.3) 12%,
            transparent 28%,
            transparent 72%,
            rgba(6, 11, 28, 0.55) 100%),
        linear-gradient(90deg,
            rgba(6, 11, 28, 0.92) 0%,
            rgba(6, 11, 28, 0.6) 30%,
            rgba(6, 11, 28, 0.22) 55%,
            rgba(6, 11, 28, 0.06) 100%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 860px;
    margin: 0;
    width: 100%;
    padding: 48px clamp(20px, 4vw, 48px) 0 clamp(48px, 9vw, 160px);
}

.hero-text {
    max-width: 620px;
}

/* Subtitle */
.hero-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-soft);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

/* Headline */
.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.h1-highlight {
    color: var(--red);
}

/* Description */
.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white-soft);
    margin-bottom: 32px;
    max-width: 620px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s var(--ease) 0.6s forwards;
}

/* Buttons */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s var(--ease) 0.8s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--red);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.25s var(--ease);
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
}

/* Wider, lighter primary CTA — home hero only */
#btn-explore {
    padding: 14px 56px;
    font-size: 17px;
    font-weight: 600;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: all 0.25s var(--ease);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ================================================
   BOTTOM STATS STRIP
   ================================================ */
.hero-stats {
    position: relative;
    z-index: 3;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px clamp(20px, 4vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    opacity: 0;
    transform: translateY(12px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.stat-item:nth-child(1) {
    animation: fadeUp 0.5s var(--ease) 1.0s forwards;
}

.stat-item:nth-child(3) {
    animation: fadeUp 0.5s var(--ease) 1.2s forwards;
}

.stat-item:nth-child(5) {
    animation: fadeUp 0.5s var(--ease) 1.4s forwards;
}

.stat-item:nth-child(7) {
    animation: fadeUp 0.5s var(--ease) 1.6s forwards;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    margin-right: 4px;
}

.stat-label {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly brighter for dark background readability */
    white-space: nowrap;
}

.stat-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-h1 {
        font-size: clamp(36px, 5.5vw, 56px);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        position: sticky;
        top: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.45);
    }

    .hero-h1 {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .hide-mobile {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        padding: 14px 16px;
        justify-content: flex-start;
    }

    .stat-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 30px;
    }

    .stat-item {
        flex: 0 0 100%;
        padding: 10px 16px;
    }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: #20326D;
    border-radius: 3px;
}

::selection {
    background: rgba(200, 16, 46, 0.35);
    color: var(--white);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* ================================================
   PAGE BANNER — Inner pages (About, Solutions etc.)
   ================================================ */
.page-banner {
    position: relative;
    background: #060B1C;
    padding: 64px clamp(20px, 5vw, 80px) 56px;
    overflow: hidden;
}

/* Subtle red glow accent */
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200, 16, 46, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.page-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.page-banner-label a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.page-banner-label a:hover {
    color: var(--white);
}

.page-banner-label svg {
    color: rgba(255, 255, 255, 0.3);
}

.page-banner-h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-banner-sub {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ================================================
   ABOUT US SECTION
   ================================================ */
.about {
    position: relative;
    background: #ffffff;
    padding: 60px clamp(20px, 5vw, 80px);
    overflow: hidden;
}

/* Geometric background accents */
.about-geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-geo-1 {
    width: 480px;
    height: 480px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
}

.about-geo-2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.04) 0%, transparent 70%);
}

/* Inner container — two columns */
.about-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---- LEFT: Image column ---- */
.about-image-col {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}

/* Red accent bar on left edge */
.about-img-accent {
    position: absolute;
    top: 24px;
    left: -6px;
    width: 6px;
    height: calc(100% - 48px);
    background: var(--red);
    border-radius: 3px;
}

/* Floating badge — bottom-right of image */
.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(200, 16, 46, 0.35);
    z-index: 2;
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.about-badge-num sup {
    font-size: 24px;
    vertical-align: super;
}

.about-badge-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ---- RIGHT: Content column ---- */
.about-content-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Label */
.about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--red);
    text-transform: uppercase;
}

.about-label-line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

/* Heading */
.about-h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111;
    margin: 0;
}

.about-h2-red {
    color: var(--red);
}

/* Description */
.about-desc {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Stats row */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f8f8f8;
    border-radius: 4px;
    padding: 20px 0;
    border-left: 4px solid var(--red);
}

.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.about-stat-suf {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
}

.about-stat-cert {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    text-align: center;
}

.about-stat-label {
    font-size: 15px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.04em;
    text-align: center;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
    flex-shrink: 0;
}

/* Highlight cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    background: #fff;
    transition: all 0.25s ease;
    cursor: default;
}

.about-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 32px rgba(200, 16, 46, 0.10);
    transform: translateY(-3px);
}

.about-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: background 0.25s;
}

.about-card:hover .about-card-icon {
    background: var(--red);
    color: #fff;
}

.about-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.3;
}

.about-card-desc {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================
   ABOUT RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .about-inner {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 64px clamp(20px, 5vw, 40px);
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img {
        height: 320px;
    }

    .about-badge {
        bottom: -16px;
        right: -8px;
    }

    .about-stats-row {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }

    .about-stat-divider {
        display: none;
    }

    .about-stat {
        flex: 0 0 45%;
        align-items: flex-start;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }
}

/* ====================================================================
   HOME-ABOUT — "About Aargee" Preview Section on Homepage
   ==================================================================== */

/* ── Dark Intro Band ── */
/* ====================================================================
   PARALLAX BANNER — shared GSAP/ScrollTrigger-driven image band
   Used by: .ha-band, .abt-final-banner, #strength, #quality-numbers,
            #hiring-process, #industry-impact
   ==================================================================== */
.parallax-banner {
    position: relative;
    overflow: hidden;
}

.parallax-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Small vertical overscan (3% each side) so the parallax drift never exposes
   an edge — kept tight so `cover` crops as little of the photo as possible. */
.parallax-media img {
    position: absolute;
    top: -3%;
    left: 0;
    width: 100%;
    height: 106%;
    object-fit: cover;
    object-position: center 35%;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(6, 11, 28, 0.72);
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ha-band {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    border-top: 3px solid #C8102E;
    padding: 72px 40px;
}

/* Desktop: band height follows the photo's own 3:1 shape (width ÷ 3) so the
   whole picture shows; 480px keeps room for the heading + stats on narrower
   screens. Height only — an aspect-ratio here would stretch the band's WIDTH
   to satisfy min-height on screens under 1440px. */
@media (min-width: 901px) {
    .ha-band {
        min-height: max(480px, 33.34vw);
    }
}

@media (max-width: 900px) {
    .ha-band {
        min-height: unset;
    }
}

.ha-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.ha-eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 18px;
}

.ha-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
}

.ha-red {
    color: #C8102E;
}

.ha-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
    font-weight: 400;
}

.ha-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: #C8102E;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}

.ha-cta:hover {
    background: #a00d24;
    transform: translateY(-2px);
}

/* Stats row */
.ha-band-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 28px 20px;
}

.ha-big-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.ha-big-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.ha-big-suf {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #C8102E;
    line-height: 1;
}

.ha-big-fixed {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.ha-cert-txt {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #C8102E;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ha-big-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

.ha-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ── White Editorial Section ── */
.ha-editorial {
    background: #fff;
    padding: 80px 40px;
}

.ha-edit-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.ha-edit-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 16px;
}

.ha-edit-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: #C8102E;
}

.ha-edit-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #060B1C;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
}

.ha-edit-para {
    font-family: 'Inter', sans-serif;
    font-size: 1.23rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 14px;
}

.ha-edit-para.ha-lead {
    font-size: 1.3rem;
    color: #444;
}

.ha-edit-para strong {
    color: #111;
    font-weight: 600;
}

.ha-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #C8102E;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(200, 16, 46, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
}

.ha-read-more:hover {
    border-color: #C8102E;
    gap: 14px;
}

/* Capability cards */
.ha-edit-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ha-cap-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    cursor: default;
}

.ha-cap-card:hover {
    border-color: #C8102E;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.08);
    transform: translateX(4px);
}

.ha-cap-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 16, 46, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    flex-shrink: 0;
}

.ha-cap-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
}

.ha-cap-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.12rem;
    line-height: 1.65;
    color: #777;
    margin: 0;
}

/* ── Trust Bar ── */
.ha-trust-bar {
    background: #f7f8fa;
    border-top: 1px solid #eee;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.ha-trust-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.ha-trust-items {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ha-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
}

.ha-trust-chip svg {
    color: #C8102E;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ha-band-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ha-edit-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .ha-band {
        padding: 52px 20px;
    }

    .ha-editorial {
        padding: 56px 20px;
    }

    .ha-trust-bar {
        padding: 20px;
    }

    .ha-band-stats {
        flex-wrap: wrap;
        gap: 0;
    }

    .ha-big-stat {
        flex: 0 0 50%;
        padding: 16px 0;
    }

    .ha-sep {
        display: none;
    }
}



/* -------------------------------------
           FOOTER CTA BUTTON (used inside .pf-footer-cta, in the footer grid)
           ------------------------------------- */
.pf-cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 14px 28px;
    background: #C8102E;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.25);
    transition: all 0.25s ease;
}

.pf-cta-banner-btn:hover {
    background: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
}

.pf-cta-banner-btn svg {
    transition: transform 0.25s ease;
}

.pf-cta-banner-btn:hover svg {
    transform: translateX(3px);
}

/* -------------------------------------
           PREMIUM CORPORATE FOOTER (Integrated CTA)
           ------------------------------------- */
.premium-footer {
    background: #060B1C;
    border-top: 2px solid #C8102E;
    padding: 20px 40px 16px;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.premium-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.3), transparent);
}

.pf-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 4-Column Grid (Industries + Contact share the last column, stacked above the footer CTA) */
.pf-grid {
    display: grid;
    grid-template-columns: 2fr 0.9fr 1.35fr 2fr;
    gap: 32px;
    margin-bottom: 10px;
    align-items: start;
}

.pf-col-ic-wrap {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.pf-ic-row {
    display: flex;
    gap: 24px;
}

.pf-ic-row .pf-col {
    flex: 1;
}

.pf-footer-cta {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-footer-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.pf-footer-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px;
}

.pf-footer-cta .pf-cta-banner-btn {
    padding: 11px 22px;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .pf-ic-row {
        flex-direction: column;
        gap: 26px;
    }
}

.pf-contact-text strong {
    color: #fff;
    font-weight: 600;
}

/* Locations pill bar */
.pf-locations {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    margin-bottom: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-locations-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.pf-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.pf-location-pill:hover {
    border-color: #C8102E;
    background: rgba(200, 16, 46, 0.08);
}

.pf-location-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C8102E;
    flex-shrink: 0;
}

.pf-location-tag {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.pf-location-pill svg {
    opacity: 0.55;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .pf-locations {
        gap: 10px;
    }

    .pf-location-pill {
        font-size: 0.78rem;
        padding: 7px 12px;
    }
}

.pf-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: 0.08em;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(200, 16, 46, 0.35);
}

.pf-col-1 h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.pf-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 16px;
    display: block;
}

.pf-col-1 .pf-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #C8102E;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.pf-col-1 p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 340px;
}

/* -------------------------------------
           FLOATING ACTION BUTTONS (WhatsApp / Message)
           Position only — no click behaviour wired up yet.
           ------------------------------------- */
.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
    transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

/* Tuck the buttons away while the mobile menu is open so they don't sit on
   top of the menu items. */
body.nav-open .floating-actions {
    opacity: 0;
    pointer-events: none;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.floating-whatsapp {
    background: #25D366;
    color: #fff;
}

.floating-message {
    background: #C8102E;
    color: #fff;
}

@media (max-width: 700px) {
    .floating-actions {
        right: 14px;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }

    /* While the (full-width) cookie banner is up, lift the buttons above it
       instead of hiding them. --cc-h is the banner's real height, set from
       JS in cookieConsent(). Falls back to a sensible offset without JS. */
    .cc-banner.cc-show ~ .floating-actions {
        bottom: calc(var(--cc-h, 150px) + 28px + env(safe-area-inset-bottom, 0px));
    }

    /* The banner slides away while the mobile menu is open, so drop the
       buttons back down with it. */
    body.nav-open .cc-banner.cc-show ~ .floating-actions {
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }
}

.pf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-links li {
    margin-bottom: 8px;
}

.pf-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.pf-links a::before {
    content: '>';
    color: #C8102E;
    margin-right: 8px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.pf-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.pf-links a:hover::before {
    transform: translateX(2px);
}

.pf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.pf-contact-icon {
    color: #C8102E;
    flex-shrink: 0;
    margin-top: 2px;
}

.pf-contact-icon svg {
    width: 18px;
    height: 18px;
}

.pf-contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pf-contact-text a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pf-contact-text a:hover {
    color: #fff;
}

/* Copyright Bar */
.pf-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.pf-copy-links {
    display: flex;
    gap: 20px;
}

.pf-copy-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pf-copy-links a:hover {
    color: #fff;
}

@media (max-width: 1200px) {
    .pf-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pf-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pf-copyright {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ================================================
   LEGAL PAGES — Disclaimer, Terms, Privacy Policy
   ================================================ */
.legal-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 120px 24px 100px;
    background: #fff;
}

body:has(.legal-wrap) {
    background: #fff;
}

/* Same result without :has() for browsers that lack it (older Firefox) */
body.legal-page {
    background: #fff;
}

.legal-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.87rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 14px;
}

.legal-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 0.92rem;
    color: #9CA3AF;
    margin-bottom: 36px;
}

.legal-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 12px;
}

.legal-p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #4B5563;
    margin-bottom: 14px;
}

.legal-ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.legal-ul li {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #4B5563;
    margin-bottom: 6px;
}

.legal-p a,
.legal-ul a {
    color: #C8102E;
    text-decoration: none;
}

.legal-p a:hover,
.legal-ul a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .legal-wrap {
        padding: 100px 16px 60px;
    }
}

/* ================================================
   PREMIUM ICON ANIMATIONS
   ================================================ */
.premium-icon-anim svg,
svg.premium-icon-anim {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base states to ensure smooth transition */
svg.premium-icon-anim,
.premium-icon-anim svg {
    transform: scale(1) translateY(0);
}

/* Hover behaviors */
*:hover>.premium-icon-anim svg,
*:hover>svg.premium-icon-anim,
.card:hover svg,
.feat-card:hover svg,
.sol-card:hover svg,
.pq-card:hover svg,
.pe-card:hover svg,
.mvv-card:hover svg,
.cert-card:hover svg {
    transform: scale(1.1) translateY(-2px);
    color: #C8102E;
    filter: drop-shadow(0 4px 12px rgba(200, 16, 46, 0.4));
    stroke: currentColor;
}

/* ================================================
   PREMIUM FORTUNE 500 HEADER OVERRIDES
   ================================================ */
:root {
    --top-bar-h: 45px;
    --nav-h: 96px;
}

.top-bar {
    background: var(--dark-nav) !important;
    border-bottom: none !important;
}

.top-bar-item svg {
    stroke: #C8102E !important;
    fill: none !important;
}

.navbar {
    background: var(--dark-nav) !important;
    /* Premium Deep Navy */
    border-bottom: none !important;
}

.nav-inner {
    max-width: 1400px;
    padding: 0 50px;
    height: auto !important;
    min-height: var(--nav-h);
    align-items: center;
}

/* LOGO FIX — keep logo + tagline contained within the navbar */
.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.logo-img {
    height: 68px !important;
    width: auto !important;
}

.nav-tagline {
    font-size: 11px !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    margin-top: 1px !important;
    text-align: center !important;
    white-space: nowrap;
}

/* NAV LINKS FIX */
.nav-links {
    gap: 40px !important;
}

.nav-link {
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 0 !important;
}

.nav-link::after {
    width: 60px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) scaleX(0) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1) !important;
}

.nav-cta {
    background: #C8102E !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 9px 20px !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
    border: none;
}

.nav-cta:hover {
    background: #a00d25 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 16, 46, 0.3);
}

/* NAV FIT FIX — the unconditional "NAV LINKS FIX" block above (40px gap,
   68px logo) only has room to breathe above ~1420px. Standard laptop
   widths (1280, 1366) sit below that and were overflowing the viewport.
   Compact progressively down to the 992px hamburger breakpoint instead
   of widening it, so the horizontal desktop nav stays horizontal. */
@media (max-width: 1420px) {
    .logo-img {
        height: 52px !important;
    }

    .nav-links {
        gap: 20px !important;
    }

    .nav-link {
        font-size: 13px !important;
        letter-spacing: 0.3px !important;
    }

    .nav-cta {
        padding: 8px 16px !important;
        font-size: 11.5px !important;
    }

    .nav-inner {
        gap: 12px;
    }
}

@media (max-width: 1180px) {
    .nav-tagline {
        display: none !important;
    }

    .nav-links {
        gap: 10px !important;
    }

    .nav-link {
        font-size: 12px !important;
    }

    .nav-cta {
        padding: 7px 12px !important;
        font-size: 10.5px !important;
    }
}

/* 1060–1180px: there is room for the tagline again; below that the nav row is too tight */
@media (min-width: 1060px) and (max-width: 1180px) {
    .nav-tagline {
        display: block !important;
        font-size: 10px !important;
    }
}

/* =========================================================
   HOME PAGE – TRUST STRIP
========================================================= */
.hp-trust-strip {
    background: #111827;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 10;
}

.hp-trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: 52px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
}

.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 20px;
    flex-shrink: 0;
    transition: color 0.3s;
}

.hp-trust-item:first-child {
    padding-left: 0;
}

.hp-trust-item svg {
    color: #C8102E;
    flex-shrink: 0;
}

.hp-trust-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hp-trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* =========================================================
   HOME PAGE – POSITIONING SECTION
========================================================= */
.hp-positioning {
    background: #fff;
    padding: 96px 0;
    border-bottom: 1px solid #f3f4f6;
}

.hp-pos-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hp-pos-lbl {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-pos-lbl::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #C8102E;
    flex-shrink: 0;
}

.hp-pos-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hp-red {
    color: #C8102E;
}

.hp-pos-body {
    font-size: 1.35rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hp-pos-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C8102E;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.hp-pos-cta:hover {
    background: #a00d24;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
}

.hp-pos-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hp-pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    cursor: default;
}

.hp-pillar:hover {
    border-color: #C8102E;
    background: #fff;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.06);
    transform: translateY(-3px);
}

.hp-pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 16, 46, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    flex-shrink: 0;
    transition: all 0.3s;
}

.hp-pillar:hover .hp-pillar-icon {
    background: #C8102E;
    color: #fff;
}

.hp-pillar h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.hp-pillar p {
    font-size: 1.1rem;
    color: #9CA3AF;
}

@media(max-width:900px) {
    .hp-pos-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media(max-width:600px) {
    .hp-pos-pillars {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ABOUT PAGE – NEW COMPONENTS
========================================================= */
body.about-page,
.abt-heritage,
.abt-mvv,
.abt-certs,
.abt-capabilities {
    color: #111827;
}

/* Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

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

/* Label */
.abt-lbl {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 16px;
}

.abt-lbl::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #C8102E;
    flex-shrink: 0;
}

/* Headings */
.abt-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

/* Paragraphs */
.abt-para {
    font-size: 1.3rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.abt-lead {
    font-size: 1.42rem;
    color: #374151;
    font-weight: 500;
}

.red-accent-divider {
    width: 52px;
    height: 3px;
    background: #C8102E;
    border-radius: 2px;
    margin-bottom: 28px;
}

/* Fade animations */
.fade-up, .sol-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible,
.fade-up.is-visible,
.sol-fade.visible,
.sol-fade.is-visible {
    opacity: 1 !important;
    transform: none !important;
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}

.d6 {
    transition-delay: 0.6s;
}

/* ── S1: Story Grid ── */
.abt-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.abt-img-frame {
    border-radius: 16px;
    overflow: hidden;
    height: auto;
    max-height: 520px;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
}

.abt-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.abt-img-badge {
    background: #C8102E;
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
}

.abt-img-year {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.abt-img-caption {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

@media(max-width:900px) {
    .abt-story-grid {
        grid-template-columns: 1fr;
    }
}


/* ── S2: Trust Cards ── */
.abt-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.abt-trust-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(17, 24, 39, 0.06);
}

.abt-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #C8102E;
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.abt-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(200, 16, 46, 0.08);
    border-color: rgba(200, 16, 46, 0.2);
}

.abt-trust-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 16, 46, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    margin: 0 auto 20px;
    transition: all 0.35s;
}

.abt-trust-card:hover .abt-trust-icon {
    background: #C8102E;
    color: #fff;
}

.abt-trust-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #C8102E;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.abt-trust-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.abt-trust-sub {
    font-size: 1.12rem;
    color: #9CA3AF;
}

@media(max-width:900px) {
    .abt-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .abt-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ── S3: Vision Mission ── */
.abt-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.abt-vm-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 52px 44px;
    transition: all 0.4s;
}

.abt-vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.abt-vm-icon {
    width: 72px;
    height: 72px;
    background: rgba(200, 16, 46, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    margin-bottom: 24px;
}

.abt-vm-tag {
    display: inline-block;
    border: 1px solid rgba(200, 16, 46, 0.3);
    color: #C8102E;
    padding: 4px 16px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.abt-vm-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.abt-vm-body {
    font-size: 1.3rem;
    color: #4B5563;
    line-height: 1.8;
}

@media(max-width:768px) {
    .abt-vm-grid {
        grid-template-columns: 1fr;
    }
}

/* ── S4: Capability Cards ── */
.abt-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.abt-cap-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.35s;
}

.abt-cap-card:hover {
    border-color: #C8102E;
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(200, 16, 46, 0.07);
}

.abt-cap-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 16, 46, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    margin-bottom: 20px;
    transition: all 0.35s;
}

.abt-cap-card:hover .abt-cap-icon {
    background: #C8102E;
    color: #fff;
}

.abt-cap-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.abt-cap-card p {
    font-size: 1.2rem;
    color: #6B7280;
    line-height: 1.6;
}

@media(max-width:900px) {
    .abt-cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .abt-cap-grid {
        grid-template-columns: 1fr;
    }
}

/* ── S5: Manufacturing Stats — spec strip ──
   No boxes at rest: one ledger-style row divided by thin rules. Each cell's
   contents wipe in left-to-right; touching/hovering a cell zooms it forward. */
.abt-mfg-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 2px solid #111827;
    border-bottom: 1px solid rgba(17, 24, 39, 0.18);
}

.abt-mfg-stat {
    --line: rgba(17, 24, 39, 0.16);
    --wipe-delay: 0s;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 240px;
    padding: 92px 26px 36px;
    text-align: left;
    overflow: hidden;
    background: #ffffff;
}

.abt-mfg-stat + .abt-mfg-stat {
    border-left: 1px solid var(--line);
}

.abt-mfg-stat:nth-child(1) { --wipe-delay: 0.05s; }
.abt-mfg-stat:nth-child(2) { --wipe-delay: 0.2s; }
.abt-mfg-stat:nth-child(3) { --wipe-delay: 0.35s; }
.abt-mfg-stat:nth-child(4) { --wipe-delay: 0.5s; }
.abt-mfg-stat:nth-child(5) { --wipe-delay: 0.65s; }

/* Reveal: replaces the generic fade-up. The cell itself is never clipped or
   faded — it is the scroll-observer target and counter hook, and a zero-area
   target never reports as intersecting. The wipe runs on its contents.
   The zoom uses the `scale` property because `.fade-up.visible` pins
   `transform: none !important`. */
.abt-mfg-grid .abt-mfg-stat.fade-up {
    opacity: 1;
    transform: none;
    transition:
        scale 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease;
}

.abt-mfg-grid .abt-mfg-stat.fade-up:hover,
.abt-mfg-grid .abt-mfg-stat.fade-up:active {
    z-index: 2;
    scale: 1.07;
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16), 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.abt-mfg-idx,
.abt-mfg-value,
.abt-mfg-label {
    clip-path: inset(0 100% 0 0);
}

.abt-mfg-stat.visible .abt-mfg-idx,
.abt-mfg-stat.visible .abt-mfg-value,
.abt-mfg-stat.visible .abt-mfg-label {
    clip-path: inset(-25% -25% -25% -25%);
}

.abt-mfg-idx {
    position: absolute;
    top: 30px;
    left: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #C8102E;
    transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.15, 1) var(--wipe-delay);
}

.abt-mfg-idx::after {
    content: '';
    width: 22px;
    height: 1px;
    background: currentColor;
}

.abt-mfg-value {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.1vw, 3.3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #111827;
    margin-bottom: 14px;
    transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.15, 1) calc(var(--wipe-delay) + 0.1s);
}

.abt-mfg-suffix {
    color: #C8102E;
}

.abt-mfg-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    color: #4b5563;
    transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.15, 1) calc(var(--wipe-delay) + 0.2s);
}

/* Tablet: two columns, ruled like a table */
@media (max-width: 1100px) {
    .abt-mfg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-mfg-stat {
        min-height: 210px;
        padding: 84px 28px 30px;
        border-left: 0;
    }

    .abt-mfg-stat:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .abt-mfg-stat:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .abt-mfg-stat:nth-child(5) {
        grid-column: 1 / -1;
    }

    .abt-mfg-idx {
        left: 28px;
    }

    .abt-mfg-value {
        font-size: clamp(2.4rem, 6vw, 3.4rem);
    }
}

/* Phone: one column */
@media (max-width: 600px) {
    .abt-mfg-grid {
        grid-template-columns: 1fr;
    }

    .abt-mfg-stat,
    .abt-mfg-stat:nth-child(even) {
        border-left: 0;
        min-height: 0;
        padding: 64px 16px 26px;
    }

    .abt-mfg-stat:nth-child(n+2) {
        border-top: 1px solid var(--line);
    }

    .abt-mfg-stat:nth-child(5) {
        grid-column: auto;
    }

    .abt-mfg-idx {
        left: 16px;
        top: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .abt-mfg-idx,
    .abt-mfg-value,
    .abt-mfg-label {
        clip-path: none;
        transition: none;
    }

    .abt-mfg-grid .abt-mfg-stat.fade-up {
        transition: none;
    }
}

/* ── S6: Industry Reach — radial hub + expanding detail panel ── */
.abt-ir-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: center;
}

.abt-ir-hub {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto;
}

.abt-ir-hub-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(200, 16, 46, 0.25);
}

.abt-ir-hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: #0A1128;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.25);
}

.abt-ir-hub-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #C8102E;
    line-height: 1;
}

.abt-ir-hub-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    line-height: 1.3;
}

.abt-ir-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.abt-ir-node.pos-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.abt-ir-node.pos-right {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.abt-ir-node.pos-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.abt-ir-node.pos-left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.abt-ir-node-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
    transition: all 0.3s;
}

.abt-ir-node-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6B7280;
    white-space: nowrap;
    transition: color 0.3s;
}

.abt-ir-node:hover .abt-ir-node-circle {
    border-color: rgba(200, 16, 46, 0.4);
    transform: translateY(-2px);
}

.abt-ir-node.is-active .abt-ir-node-circle {
    border-color: #C8102E;
    box-shadow: 0 0 0 5px rgba(200, 16, 46, 0.14), 0 10px 24px rgba(200, 16, 46, 0.18);
    transform: scale(1.06);
}

.abt-ir-node.is-active .abt-ir-node-label {
    color: #C8102E;
}

.abt-ir-panel {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 44px 40px;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.abt-ir-panel-inner {
    width: 100%;
    animation: irFadeIn 0.4s ease;
}

@keyframes irFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.abt-ir-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, 0.07);
    color: #C8102E;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.abt-ir-badge-icon {
    display: inline-flex;
    align-items: center;
}

.abt-ir-panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}

.abt-ir-panel-desc {
    font-size: 1.12rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 560px;
}

.abt-ir-panel-solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.abt-ir-chip {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 7px 14px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
}

.abt-ir-panel-tag {
    display: inline-block;
    background: rgba(200, 16, 46, 0.06);
    color: #C8102E;
    padding: 5px 16px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

@media(max-width:900px) {
    .abt-ir-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-ir-hub {
        width: 280px;
        height: 280px;
    }

    .abt-ir-panel {
        padding: 32px 28px;
    }
}

@media(max-width:480px) {
    .abt-ir-hub {
        width: 240px;
        height: 240px;
    }

    .abt-ir-hub-center {
        width: 108px;
        height: 108px;
    }

    .abt-ir-node-circle {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .abt-ir-node-label {
        font-size: 0.75rem;
    }
}


/* ── S7: Our Journey — horizontal scroll-snap timeline (white, alternating) ── */
.abt-journey-track-wrap {
    position: relative;
    z-index: 1;
    margin-top: 8px;
}

.abt-journey-progress {
    position: relative;
    height: 3px;
    margin: 0 clamp(20px, 4vw, 60px) 0;
    background: rgba(17, 24, 39, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.abt-journey-progress-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #C8102E, #ff4d6a);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.abt-journey-scroller {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 36px clamp(20px, 4vw, 60px) 32px;
    scrollbar-width: none;
}

.abt-journey-scroller::-webkit-scrollbar {
    display: none;
}

.abt-journey-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 18px 18px;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
    transition: all 0.35s;
}

.abt-journey-card:nth-child(even) {
    margin-top: 46px;
}

.abt-journey-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 16, 46, 0.4);
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
}

.abt-journey-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #C8102E 0%, #7a0a1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.abt-journey-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.abt-journey-card p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
}

.abt-journey-card.is-active {
    border-color: #C8102E;
    background: rgba(200, 16, 46, 0.04);
}

.abt-journey-card.is-active .abt-journey-year {
    background: linear-gradient(135deg, #ff4d6a 0%, #C8102E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-journey-card.is-future {
    border-style: dashed;
    border-color: #d1d5db;
    background: transparent;
    box-shadow: none;
}

.abt-journey-card.is-future .abt-journey-year {
    background: linear-gradient(135deg, #9CA3AF 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-journey-hint {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-top: 8px;
}

@media(max-width:600px) {
    .abt-journey-card {
        flex-basis: 190px;
    }

    .abt-journey-card:nth-child(even) {
        margin-top: 32px;
    }
}


/* ── S8: Strengths — stacking cards ──
   Each card pins under the header as you scroll and the next one slides up
   over it, leaving a strip of every earlier card peeking out behind. */
.abt-stack {
    position: relative;
}

/* Sticky cards release at the parent's content edge (padding doesn't count), so this
   spacer keeps the finished pile pinned for a beat before the whole stack scrolls away. */
.abt-stack::after {
    content: '';
    display: block;
    height: 90px;
}

.abt-stack-card {
    --card-bg: #ffffff;
    --card-fg: #111827;
    --card-muted: #4b5563;
    --num-stroke: #C8102E;
    --pill-border: #111827;

    position: sticky;
    top: calc(var(--nav-h, 96px) + 28px + var(--i) * 22px);
    display: grid;
    grid-template-columns: minmax(200px, 300px) 1fr;
    gap: 40px 56px;
    align-items: start;
    margin-bottom: 40px;
    padding: 48px 56px 52px;
    min-height: 300px;
    background: var(--card-bg);
    color: var(--card-fg);
    border: 2px solid #0a0a0a;
    border-radius: 28px;
    box-shadow: 5px 7px 0 #0a0a0a;
}

.abt-stack-card:last-child {
    margin-bottom: 0;
}

.abt-stack-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

/* Outlined numeral: a thick stroke sits behind a solid copy of the number,
   so only the clean outer outline shows (no overlapping-contour artefacts). */
.abt-stack-num {
    position: relative;
    isolation: isolate;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(4.6rem, 8vw, 6.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--card-bg);
}

.abt-stack-num::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 4px var(--num-stroke);
}

.abt-stack-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border: 2px solid var(--pill-border);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--card-fg);
}

.abt-stack-pill svg {
    flex-shrink: 0;
}

.abt-stack-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--card-fg);
    margin: 0 0 18px;
}

.abt-stack-body p {
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    line-height: 1.75;
    color: var(--card-muted);
    max-width: 62ch;
    margin: 0;
}

@media (max-width: 900px) {
    .abt-stack-card {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 36px 32px 40px;
        min-height: 0;
    }

    .abt-stack-left {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px 24px;
    }
}

@media (max-width: 600px) {
    .abt-stack-card {
        top: calc(var(--nav-h, 70px) + 14px + var(--i) * 16px);
        padding: 28px 22px 32px;
        border-radius: 22px;
        box-shadow: 4px 5px 0 #0a0a0a;
        margin-bottom: 28px;
    }

    .abt-stack-num {
        font-size: 3.8rem;
    }

    .abt-stack-num::before {
        -webkit-text-stroke-width: 3px;
    }

    .abt-stack-pill {
        padding: 9px 16px;
        font-size: 0.68rem;
    }
}

/* ── S9: Client Logo Grid ── */
.clients-wrapper {
    padding: 64px 0 80px;
    background: #fff;
}

.abt-logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px 12px;
}

.abt-logo-cell {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.35s ease;
}

.abt-logo-cell:hover {
    background: #f9fafb;
}

.abt-logo-cell img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.abt-logo-cell:hover img {
    transform: scale(1.14);
    filter: drop-shadow(0 10px 16px rgba(15, 26, 61, 0.18));
}

@media (prefers-reduced-motion: reduce) {
    .abt-logo-cell img {
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1100px) {
    .abt-logos-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 700px) {
    .abt-logos-grid {
        gap: 4px 8px;
    }

    .abt-logo-cell {
        height: 74px;
        padding: 8px;
    }
}

/* ── S10: Why Trust Aargee ── */
.abt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.abt-why-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s;
}

.abt-why-card:hover {
    transform: translateY(-5px);
    border-color: #C8102E;
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.08);
    background: #fff;
}

.abt-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 16, 46, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8102E;
    margin: 0 auto 20px;
    transition: all 0.35s;
}

.abt-why-card:hover .abt-why-icon {
    background: #C8102E;
    color: #fff;
}

.abt-why-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.abt-why-card p {
    font-size: 1.18rem;
    color: #6B7280;
    line-height: 1.6;
}

@media(max-width:1000px) {
    .abt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .abt-why-grid {
        grid-template-columns: 1fr;
    }
}

/* Final Banner */
.abt-final-banner {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abt-final-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.12) 0%, transparent 70%);
}

.abt-final-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.abt-final-banner p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ================================================
   QUOTE MODAL
   ================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(30px) saturate(200%) brightness(1.12);
    -webkit-backdrop-filter: blur(30px) saturate(200%) brightness(1.12);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    width: 100%;
    max-width: 740px;
    max-height: 96vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 100px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 26px 44px 16px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
    padding: 5px;
}

.modal-close-btn:hover {
    color: #C8102E;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.modal-body {
    padding: 28px 44px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(17, 24, 39, 0.18);
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #111827;
    transition: border-color 0.3s;
    outline: none;
}

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

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-bottom-color: #C8102E;
}

.form-input.error, .form-select.error, .form-textarea.error {
    border-bottom-color: #ef4444;
}

.error-msg {
    position: absolute;
    bottom: -18px;
    right: 0;
    font-size: 0.8rem;
    color: #ef4444;
    opacity: 0;
    transition: opacity 0.2s;
}

.form-group.has-error .error-msg {
    opacity: 1;
}

.modal-footer {
    padding: 18px 44px 22px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    background: transparent;
    border-radius: 0 0 20px 20px;
}

.btn-modal-cancel {
    background: transparent;
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover {
    border-color: #9ca3af;
    color: #111827;
}

.btn-modal-submit {
    background: #C8102E;
    border: 2px solid #C8102E;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.btn-modal-submit:hover:not(:disabled) {
    background: #a00d24;
    border-color: #a00d24;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-modal-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

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

.btn-modal-submit.loading .spinner {
    display: block;
}

.btn-modal-submit.loading .submit-text {
    display: none;
}

/* Success State */
.modal-success {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.modal-success.active {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.success-desc {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
}

@media(max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modal-header, .modal-body, .modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ================================================
   SOLUTION ANALYTICS GRID (SOLUTION 07)
   ================================================ */
.sol-analytics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.sol-analytics-card {
    background: #ffffff; /* Light card background */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-analytics-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 16, 46, 0.3);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.sac-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 24px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-analytics-card:hover .sac-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(200, 16, 46, 0.15);
}

.sac-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.sac-desc {
    font-size: 18.5px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sol-analytics-card .sol-feat-list {
    margin-bottom: auto; /* pushes the image down */
    color: #4B5563;
}

/* Why Choose Section */
.sol-why-choose {
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 40px;
}

.sol-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

@media (max-width: 480px) {
    .sol-why-choose {
        padding: 28px 20px;
    }
}

.sw-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    color: #4B5563;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .sol-analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sol-analytics-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================================
   MANUFACTURING PAGE CSS
   ==================================================================== */

/* ---- GLOBALS & HELPERS ---- */
.mfg-section {
    padding: 60px 0;
}
.mfg-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}
.mfg-header {
    margin-bottom: 72px;
}
.mfg-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.mfg-h2.white {
    color: #fff;
}
.mfg-sub {
    font-size: 1.35rem;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.mfg-sub.white {
    color: rgba(255, 255, 255, 0.65);
}
.mfg-h2 .red {
    color: #C8102E;
}

/* ---- HERO SECTION ---- */
.mfg-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0A1128;
}
.mfg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.mfg-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85); /* Darken slightly to match luxury theme */
}
.mfg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
    z-index: 1;
}
.mfg-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 5%;
    transform: translateY(-40px);
}
.mfg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.mfg-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #C8102E;
}
.mfg-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.mfg-h1 .red {
    color: #C8102E;
}
.mfg-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.mfg-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.mfg-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
}
.mfg-highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #C8102E;
    border-radius: 50%;
}
.mfg-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

/* ---- INFRASTRUCTURE GRID ---- */
.mfg-infra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
@media (max-width: 900px) {
    .mfg-infra-grid {
        grid-template-columns: 1fr;
    }
}
.mfg-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mfg-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(200, 16, 46, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.mfg-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 16, 46, 0.1);
    color: #C8102E;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}
.mfg-card:hover .mfg-card-icon {
    background: #C8102E;
    color: #fff;
    transform: scale(1.05);
}
.mfg-card-num {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
}
.mfg-card:hover .mfg-card-num {
    color: rgba(200, 16, 46, 0.08);
}
.mfg-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}
.mfg-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mfg-card-list li {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.mfg-card-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #C8102E;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ---- HORIZONTAL TIMELINE ---- */
.process-timeline {
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}
.pt-line {
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(200, 16, 46, 0.2);
    z-index: 0;
}
.pt-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
    cursor: pointer;
}
.pt-dot {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid #C8102E;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
    transition: all 0.4s ease;
    margin-top: -10px;
}
.pt-node:hover .pt-dot {
    background: #C8102E;
    box-shadow: 0 0 0 8px rgba(200, 16, 46, 0.2);
    transform: scale(1.2);
}
.pt-lbl {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.pt-node:hover .pt-lbl {
    color: #C8102E;
}
@media (max-width: 1024px) {
    .process-timeline {
        flex-direction: column;
        padding: 40px 0 40px 40px;
        gap: 32px;
    }
    .pt-line {
        top: 40px;
        bottom: 40px;
        left: 51px;
        width: 3px;
        height: auto;
    }
    .pt-node {
        flex-direction: row;
        width: auto;
        text-align: left;
        gap: 24px;
    }
    .pt-dot {
        margin: 0;
    }
}

/* ---- TESTING GRID ---- */
.mfg-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .mfg-test-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .mfg-test-grid {
        grid-template-columns: 1fr;
    }
}
.mfg-test-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 24px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.mfg-test-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(200, 16, 46, 0.3);
}
.tc-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C8102E;
}

/* ---- GALLERY GRID ---- */
.mfg-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .mfg-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .mfg-gallery {
        grid-template-columns: 1fr;
    }
}
.mg-item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.mg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mg-item:hover img {
    transform: scale(1.05);
}
.mg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.4s ease;
}
.mg-item:hover::after {
    background: rgba(0, 0, 0, 0);
}

/* ---- ANIMATED STATS SECTION ---- */
.mfg-stats-sec {
    background: #C8102E;
    padding: 50px 0;
}
.ms-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}
@media (max-width: 1024px) {
    .ms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: center;
    }
    .ms-sep {
        display: none;
    }
}
@media (max-width: 600px) {
    .ms-grid {
        grid-template-columns: 1fr;
    }
}
.ms-item {
    text-align: center;
    color: #fff;
}
.ms-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.ms-suf {
    font-size: 2rem;
    margin-left: 2px;
}
.ms-text-only {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}
.ms-lbl {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ms-sep {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* ====================================================================
   GLOBAL FADE ANIMATION (extracted from solutions.html)
   ==================================================================== */
.sol-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sol-fade.visible {
    opacity: 1;
    transform: translateY(0);
}
.sol-fade.d1 { transition-delay: 0.1s; }
.sol-fade.d2 { transition-delay: 0.2s; }
.sol-fade.d3 { transition-delay: 0.3s; }
.sol-fade.d4 { transition-delay: 0.4s; }
.sol-fade.d5 { transition-delay: 0.5s; }
.sol-fade.d6 { transition-delay: 0.6s; }

/* ====================================================================
   MASTER RESPONSIVE & MOBILE POLISH (320px to 1440px)
   ==================================================================== */

/* 1. Global Safety & Smooth Box Model */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

img, video, canvas, svg, iframe {
    max-width: 100%;
    height: auto;
}

/* 2. Responsive Touch & Accessibility Fixes */
button, a {
    touch-action: manipulation;
}

/* 3. Mobile Navigation Drawer Enhancements */
@media (max-width: 992px) {
    .nav-inner {
        padding: 0 16px;
    }
    
    /* Keep the tagline visible under the logo on phones and tablets too
       (it is only hidden on cramped 993–1140px laptop widths). */
    .nav-tagline {
        display: block !important;
        font-size: 10px !important;
        letter-spacing: 0.02em !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 105;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin-left: 0;
        /* Fully opaque so the page underneath never ghosts through (browsers
           without backdrop-filter don't blur it away). */
        background: #060b1c;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        overflow: hidden;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* Panel header — logo pinned top-left, aligned with the close (✕)
       toggle button which stays fixed top-right via .nav-toggle's own
       z-index, so together they read as one header row. */
    .nav-menu-header {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        height: var(--nav-h);
        min-height: 60px;
        padding: 0 60px 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }

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

    .nav-menu-tagline {
        display: block;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.78);
        white-space: nowrap;
    }

    .nav-menu-scroll {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px 20px 8px;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 10px !important;
        width: 100%;
    }

    .nav-link {
        font-size: 1.02rem;
        font-weight: 700 !important;
        padding: 14px 16px !important;
        height: auto;
        color: rgba(255, 255, 255, 0.9);
        width: 100%;
        text-align: left;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .nav-link:hover, .nav-link.active {
        background: rgba(200, 16, 46, 0.15);
        border-color: rgba(200, 16, 46, 0.35);
        color: #fff;
    }

    .nav-link::after {
        display: none;
    }

    /* Expandable items (Solutions, Industries) — the link still
       navigates to the page; the chevron only opens the submenu. */
    .nav-item-expandable {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        overflow: hidden;
    }

    .nav-item-row {
        display: flex;
        align-items: stretch;
    }

    .nav-item-row .nav-link {
        flex: 1;
        background: none;
        border: none;
        border-radius: 0;
    }

    .nav-expand-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        flex-shrink: 0;
        background: none;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
    }

    .nav-expand-chevron {
        transition: transform 0.3s ease;
    }

    .nav-item-expandable.is-open .nav-expand-chevron {
        transform: rotate(180deg);
    }

    .nav-submenu {
        display: block;
        max-height: 0;
        overflow: hidden;
        list-style: none;
        margin: 0;
        padding: 0 8px;
        transition: max-height 0.35s ease;
    }

    .nav-item-expandable.is-open .nav-submenu {
        max-height: 640px;
        padding: 4px 8px 10px;
    }

    .nav-submenu li {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-submenu a {
        display: block;
        padding: 10px 8px 10px 12px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    .nav-submenu a:hover {
        color: #fff;
    }

    /* Careers & Contact live in Quick Access on mobile instead of the
       main list, so hide their plain entries here to avoid duplicates. */
    #nav-careers,
    #nav-contact {
        display: none;
    }

    .nav-quick-access {
        display: block;
        margin-top: 22px;
    }

    .nav-quick-label {
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 10px;
        padding: 0 4px;
    }

    .nav-quick-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        margin-bottom: 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.96rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

    .nav-quick-link svg {
        color: #4da6ff;
        flex-shrink: 0;
    }

    .nav-quick-link:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .nav-cta {
        display: none;
    }

    .nav-legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 14px;
        width: 100%;
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-legal-links a {
        font-family: 'Inter', sans-serif;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        padding: 4px 2px;
    }

    .nav-legal-links a:hover {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Bottom-pinned CTA — always visible, outside the scrollable area */
    .nav-menu-cta {
        display: block;
        flex-shrink: 0;
        text-align: center;
        margin: 0 20px 20px;
        padding: 15px 20px;
        background: #C8102E;
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.03em;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(200, 16, 46, 0.35);
        transition: background 0.2s;
    }

    .nav-menu-cta:hover {
        background: #A00D24;
    }
}

/* 4. Hero & Banner Adaptivity on Mobile Screens */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 80vh !important;
        min-height: 80dvh !important;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 40px 20px 20px;
    }

    .hero-h1 {
        font-size: clamp(28px, 8vw, 42px) !important;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .stat-item {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        padding: 8px;
    }

    .stat-sep {
        display: none;
    }
}

/* 5. Fluid Grid Adjustments for Small Mobile Phones (< 576px) */
@media (max-width: 576px) {
    .container, .sol-container, .m-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .abt-story-grid,
    .abt-trust-grid,
    .abt-vm-grid,
    .abt-cap-grid,
    .pg-icon-grid,
    .pg-two-col,
    .m-split,
    .sol-cards,
    .sol-grid,
    .ind-grid,
    .mfg-gallery {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .m-h2, .abt-h2, .page-banner-h1 {
        font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
    }

    .abt-trust-card, .abt-vm-card, .abt-cap-card, .pg-icon-card {
        padding: 24px 18px !important;
    }
}

/* ================================================================
   GLASS CARD — shared frosted/crystal-glass hover treatment
   Applied alongside a card's own class, e.g. class="pg-icon-card glass-card"
   ================================================================ */
.glass-card {
    position: relative !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-color: rgba(15, 26, 61, 0.1) !important;
    box-shadow: 0 8px 28px rgba(15, 26, 61, 0.08) !important;
    transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease,
        transform 0.45s ease, backdrop-filter 0.45s ease !important;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(255, 255, 255, 0.75) 50%,
            transparent 65%);
    transform: skewX(-20deg);
    transition: left 0.85s ease;
    pointer-events: none;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-color: rgba(200, 16, 46, 0.25) !important;
    box-shadow:
        0 20px 45px rgba(15, 26, 61, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-6px);
}

.glass-card:hover::after {
    left: 130%;
}

/* Dark variant — for cards that sit on a dark/photo background with light text
   (e.g. Industry Impact). Tints toward navy instead of white so the text stays
   legible, and rest-state is already translucent so the banner behind shows through. */
.glass-card-dark {
    position: relative !important;
    overflow: hidden !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    box-shadow: none !important;
    transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease,
        transform 0.45s ease !important;
}

.glass-card-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(255, 255, 255, 0.25) 50%,
            transparent 65%);
    transform: skewX(-20deg);
    transition: left 0.85s ease;
    pointer-events: none;
}

.glass-card-dark:hover {
    background: rgba(6, 11, 28, 0.15) !important;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-color: rgba(200, 16, 46, 0.4) !important;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-6px);
}

.glass-card-dark:hover::after {
    left: 130%;
}

/* ================================================
   COOKIE CONSENT — simple acknowledgement banner
   ================================================ */
.cc-banner {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 9999;
    width: 300px;
    max-width: calc(100vw - 36px);
    background: #ffffff;
    color: #374151;
    border-radius: 14px;
    padding: 16px 16px 14px;
    box-shadow: 0 16px 36px rgba(10, 17, 40, 0.2), 0 2px 8px rgba(10, 17, 40, 0.08);
    border: 1px solid rgba(15, 26, 61, 0.08);
    transform: translateY(24px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
}

/* Don't compete with the open mobile nav panel for the same screen
   space — the cookie banner reappears as soon as the menu is closed. */
body.nav-open .cc-banner.cc-show {
    transform: translateY(24px);
    opacity: 0;
    visibility: hidden;
}

.cc-banner.cc-show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cc-banner-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(200, 16, 46, 0.1);
    color: #C8102E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cc-banner-icon svg {
    width: 17px;
    height: 17px;
}

.cc-banner-text {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #4B5563;
    margin-bottom: 14px;
}

.cc-banner-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: #0F1A3D;
    margin-bottom: 4px;
}

.cc-banner-text a {
    display: inline-block;
    margin-top: 4px;
    color: #C8102E;
    font-weight: 600;
    text-decoration: none;
}

.cc-banner-text a:hover {
    text-decoration: underline;
}

.cc-banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cc-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 7px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cc-btn-primary {
    background: #C8102E;
    color: #fff;
    border: 1px solid #C8102E;
}

.cc-btn-primary:hover {
    background: #A00D24;
    border-color: #A00D24;
}

.cc-btn-outline {
    background: transparent;
    color: #374151;
    border: 1px solid rgba(15, 26, 61, 0.18);
}

.cc-btn-outline:hover {
    background: rgba(15, 26, 61, 0.05);
    border-color: rgba(15, 26, 61, 0.3);
}

/* 701px and up: a slim bar along the bottom instead of a card, so it never
   sits on top of the hero text / buttons. Width leaves room for the floating
   WhatsApp + message buttons on the right. */
@media (min-width: 701px) {
    .cc-banner {
        left: 50%;
        bottom: 18px;
        width: min(880px, calc(100vw - 180px));
        max-width: none;
        padding: 12px 16px 12px 14px;
        display: flex;
        align-items: center;
        gap: 14px;
        transform: translate(-50%, 24px);
    }

    .cc-banner.cc-show,
    body.nav-open .cc-banner.cc-show {
        transform: translate(-50%, 0);
    }

    body.nav-open .cc-banner.cc-show {
        transform: translate(-50%, 24px);
    }

    .cc-banner-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .cc-banner-text {
        flex: 1;
        margin-bottom: 0;
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .cc-banner-text strong {
        font-size: 0.92rem;
        margin-bottom: 1px;
    }

    .cc-banner-text a {
        margin-top: 0;
    }

    .cc-banner-actions {
        flex-shrink: 0;
    }
}

/* Small screens: keep the cookie banner clear of the screen edge */
@media (max-width: 700px) {
    .cc-banner {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .cc-banner {
        left: 10px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        width: calc(100vw - 20px);
        padding: 12px 14px 12px;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 12px;
        align-items: start;
    }

    .cc-banner-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
    }

    .cc-banner-text {
        font-size: 0.78rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .cc-banner-text strong {
        font-size: 0.92rem;
        margin-bottom: 2px;
    }

    .cc-banner-actions {
        grid-column: 1 / -1;
    }

    .cc-banner-actions .cc-btn {
        flex: 1;
        padding: 10px 12px;
    }
}

/* Phone numbers never break in the middle of a number */
a[href^="tel:"] {
    white-space: nowrap;
}

/* Small screens: a darker wash over the photo banners so the red labels and
   headings that sit directly on the image stay readable. */
@media (max-width: 900px) {
    .parallax-overlay {
        background: rgba(6, 11, 28, 0.84);
    }
}
