@import url("https://use.typekit.net/lng4ttg.css");

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #f5f6f8;
    color: #1a1a1a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --red: #d2252e;
    --red-dark: #a8181f;
    --red-glow: rgba(210, 37, 46, 0.35);
    --blue: #15499b;
    --deep-blue: #0f2e63;
    --soft-blue: #3f6fc6;
    --white: #ffffff;
    --light-grey: #f5f6f8;
    --dark: #1a1a1a;
    --mid: #4a4a4a;
    --border: rgba(0, 0, 0, 0.07);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.13);
    --shadow-blue: 0 12px 36px rgba(21, 73, 155, 0.28);
    --shadow-red: 0 12px 36px rgba(210, 37, 46, 0.32);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: "futura-pt", sans-serif;
    --font-heading: "futura-pt", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.container-sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}
/* .section-tag::before {
    content: "";
    width: 1.8rem;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
} */

.section-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}
.section-heading--white {
    color: white;
}

.section-subtext {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
    color: #5a6175;
    max-width: 980px;
}
.section-subtext--white {
    color: rgba(255, 255, 255, 0.68);
}

/* ============================================================
   BUTTONS — Enhanced with glow, elevation, transitions
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 1.9rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
    will-change: transform;
    z-index: 0;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.25s;
}
.btn:hover::after {
    opacity: 0.07;
}
.btn:active {
    transform: scale(0.97) !important;
}
.btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.btn:hover svg {
    transform: translateX(3px);
}

.btn-red {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 16px rgba(210, 37, 46, 0.25);
}
.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
    background: var(--red);
}

.btn-blue {
    background: var(--blue);
    color: white;
    box-shadow: 0 4px 16px rgba(21, 73, 155, 0.2);
}
.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
    background: var(--deep-blue);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
}

.btn-white {
    background: white;
    color: var(--red);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    background: #fafafa;
}

.btn-ghost-red {
    background: transparent;
    color: var(--red);
    border: 1.5px solid rgba(210, 37, 46, 0.4);
}
.btn-ghost-red:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(210, 37, 46, 0.18);
    background: rgba(210, 37, 46, 0.04);
}

/* ============================================================
   SCROLL-TO-TOP  —  Circular progress ring
   ============================================================ */
#back-to-top {
    position: fixed;
    bottom: 2.2rem;
    right: 2.2rem;
    z-index: 9999;
    width: 54px;
    height: 54px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
#back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* SVG ring — absolutely fills the button */
#back-to-top .btt-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* start arc from 12 o'clock */
    pointer-events: none;
}
#back-to-top .btt-track {
    fill: none;
    stroke: rgba(210, 37, 46, 0.18);
    stroke-width: 2.8;
}
#back-to-top .btt-progress {
    fill: none;
    stroke: #d2252e;
    stroke-width: 2.8;
    stroke-linecap: round;
    /* r=24 → circumference = 2π×24 ≈ 150.8 */
    stroke-dasharray: 150.8;
    stroke-dashoffset: 150.8; /* starts fully empty */
    /* No CSS transition — updated directly via JS for real-time feel */
}

/* Inner arrow button face */
#back-to-top .btt-inner {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d2252e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 18px rgba(210, 37, 46, 0.4);
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#back-to-top .btt-inner svg {
    width: 15px;
    height: 15px;
    display: block;
}
#back-to-top:hover .btt-inner {
    background: #b51e26;
    box-shadow: 0 8px 28px rgba(210, 37, 46, 0.55);
    transform: scale(1.1) translateY(-1px);
}
#back-to-top:active .btt-inner {
    transform: scale(0.94);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(42px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade-left {
    opacity: 0;
    transform: translateX(-42px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade-right {
    opacity: 0;
    transform: translateX(42px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-visible {
    opacity: 1 !important;
    transform: none !important;
}
.anim-d1 {
    transition-delay: 0.08s;
}
.anim-d2 {
    transition-delay: 0.17s;
}
.anim-d3 {
    transition-delay: 0.26s;
}
.anim-d4 {
    transition-delay: 0.35s;
}
.anim-d5 {
    transition-delay: 0.44s;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition:
        padding var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}
#navbar.scrolled {
    padding: 1.5rem 0;
    background: rgba(10, 22, 50, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.28);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 40px;
    /* filter: brightness(0) invert(1); */
    transition: height var(--transition);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1)) drop-shadow(0 6px 12px rgba(255, 255, 255, 0.1));
}
#navbar.scrolled .nav-logo img {
    height: 34px;

    filter: drop-shadow(0 2px 4px rgba(248, 247, 247, 0)) drop-shadow(0 6px 12px rgba(255, 255, 255, 0)) brightness(0)
        invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    position: relative;
    transition: color 0.25s;
    padding-bottom: 8px;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: white;
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(10, 22, 50, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    pointer-events: none;
}
.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.mobile-menu a:hover {
    color: var(--red);
}
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.mobile-close:hover {
    opacity: 1;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Parallax bg layers */
.hero-bg-track {
    position: absolute;
    inset: -8%;
    will-change: transform;
    transition: transform 0.05s linear;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        108deg,
        rgba(10, 22, 50, 0.91) 0%,
        rgba(15, 46, 99, 0.72) 45%,
        rgba(0, 0, 0, 0.28) 100%
    );
    z-index: 1;
}

/* Animated grid lines on hero */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* ── Hero content wrapper ── */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

/* ── Per-slide content panels ── */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    width: 100%;
}
.slide-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
/* Outgoing: slide up and fade */
.slide-content.leaving {
    opacity: 0;
    transform: translateY(-22px);
    position: absolute;
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

/* ── Eyebrow pill ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 0.42rem 1.1rem;
    margin-bottom: 1.6rem;
}
.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: dotPulse 2.4s ease infinite;
}
.hero-eyebrow span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}
@keyframes dotPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.25);
    }
}

/* ── Headline ── */
.hero-headline {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(3.4rem, 7.5vw, 4.8rem);
    line-height: 0.93;
    letter-spacing: -0.005em;
    color: white;
    margin-bottom: 1.4rem;
}
.hero-headline em {
    font-style: normal;
    color: var(--red);
}

/* ── Subtitle ── */
.hero-sub {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    margin-bottom: 2.4rem;
}

/* ── CTAs ── */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Slide counter + progress bar (bottom-left) ── */
.slide-progress-bar {
    position: absolute;
    bottom: 2.6rem;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.slide-counter {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    min-width: 5rem;
    line-height: 1;
    text-align: right;
}
.slide-counter strong {
    color: white;
    font-size: 1.2rem;
}
.slide-tracks {
    display: flex;
    gap: 0.4rem;
}
.slide-track {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: width var(--transition);
}
.slide-track.active {
    width: 72px;
}
.slide-track-fill {
    height: 100%;
    background: var(--red);
    width: 0%;
    border-radius: 3px;
    transition: width 0.15s linear;
}
.slide-track.active .slide-track-fill {
    animation: trackProgress 5.5s linear forwards;
}
@keyframes trackProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Stats bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    animation: fadeUpIn 0.9s 0.6s both;
}
.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat {
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: background var(--transition);
}
.hero-stat:last-child {
    border-right: none;
}
.hero-stat:hover {
    background: rgba(255, 255, 255, 0.06);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}
.hero-stat-num sup {
    color: var(--red);
    font-size: 1.4rem;
}
.hero-stat-label {
    font-family: var(--font-heading);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

/* ── Vertical slide dots (right) ── */
.slide-nav {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    display: none;
}
.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.35s ease;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 8rem;
    right: 5%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.5;
    animation: fadeUpIn 1s 1s both;
}
.scroll-cue span {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
}
.scroll-cue-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollCue 2s ease infinite;
}
@keyframes scrollCue {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   TICKER BAND
   ============================================================ */
.ticker-band {
    background: var(--deep-blue);
    padding: 0.88rem 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerAnim 40s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}
.ticker-dot {
    color: var(--red);
    font-size: 1.1rem;
    line-height: 1;
}
@keyframes tickerAnim {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
    padding: 8rem 0;
    background: white;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5.5rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-main {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}
.about-visual:hover .about-img-main {
    transform: scale(1.01);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.16);
}
.about-img-accent {
    position: absolute;
    bottom: -2.2rem;
    right: -2.2rem;
    width: 210px;
    height: 175px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 5px solid white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}
.about-visual:hover .about-img-accent {
    transform: translateY(-4px);
}
.about-badge {
    position: absolute;
    top: 2.2rem;
    left: -2.2rem;
    background: var(--red);
    color: white;
    border-radius: var(--radius-md);
    padding: 1.3rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-red);
    transition: transform 0.4s ease;
}
.about-visual:hover .about-badge {
    transform: translateY(-4px);
}
.about-badge-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.01em;
}
.about-badge-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-top: 0.2rem;
}

.about-content {
}
.about-content h2 {
    margin-bottom: 1.4rem;
}
.about-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 1.1rem;
}
.cert-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.8rem 0 2rem;
}
.cert-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-grey);
    border-radius: 100px;
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--deep-blue);
    transition: all var(--transition);
    cursor: default;
}
.cert-pill:hover {
    background: var(--deep-blue);
    color: white;
    border-color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}
.cert-pill-icon {
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.about-stat {
    text-align: center;
    padding: 0.5rem 0;
}
.about-stat + .about-stat {
    border-left: 1px solid var(--border);
}
.about-stat-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: 0.01em;
}
.about-stat-label {
    font-family: var(--font-heading);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-top: 0.3rem;
}

/* ============================================================
   PRODUCTS  — 4 equal cards, uniform height
   ============================================================ */
#products {
    padding: 8rem 0;
    background: var(--light-grey);
    position: relative;
    overflow: hidden;
}
#products::before {
    content: "SOLUTIONS";
    position: absolute;
    font-family: var(--font-display);
    font-size: 16rem;
    font-weight: 900;
    color: rgba(15, 46, 99, 0.028);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.03em;
}

/* Section header — centered */
.products-section-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 3.5rem;
}

/* 4-column equal grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* Base card — full equal height */
.prod-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Red accent bar — slides in on hover */
.prod-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--soft-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}
.prod-card:hover::before {
    transform: scaleX(1);
}

.prod-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 28px 60px rgba(15, 46, 99, 0.16),
        0 6px 20px rgba(210, 37, 46, 0.08);
}
.prod-card:hover .prod-img {
    transform: scale(1.07);
}
.prod-card:hover .prod-learn-more-btn {
    background: var(--red);
    color: white;
    border-color: var(--red);
}
.prod-card:hover .prod-learn-more-btn svg {
    transform: translateX(4px);
}

/* Fixed-height image slot — identical on every card */
.prod-img-wrap {
    overflow: hidden;
    background: #dce2ec;
    height: 350px;
    flex-shrink: 0;
    position: relative;
}
.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}

/* Category badge inside image */
.prod-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 46, 99, 0.82);
    backdrop-filter: blur(8px);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Body — flex column to push button to bottom */
.prod-body {
    padding: 1.5rem 1.6rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    color: var(--deep-blue);
    margin-bottom: 0.65rem;
    line-height: 1.22;
}

/* Divider line */
.prod-divider {
    width: 32px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 0.9rem;
    transition: width 0.4s ease;
}
.prod-card:hover .prod-divider {
    width: 56px;
}

.prod-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: #666;
    flex: 1;
    margin-bottom: 1.4rem;
}

/* Spec chips row */
.prod-specs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}
.prod-spec-chip {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(21, 73, 155, 0.07);
    padding: 0.22rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(21, 73, 155, 0.12);
}

/* Learn More — button style at bottom */
.prod-learn-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.72rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--red);
    border: 1.5px solid rgba(210, 37, 46, 0.35);
    border-radius: var(--radius-sm);
    background: transparent;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    margin-top: auto;
    cursor: pointer;
}
.prod-learn-more-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
.prod-learn-more-btn:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 6px 20px rgba(210, 37, 46, 0.3);
}

/* ============================================================
   WHY US — Dark section
   ============================================================ */
#why {
    padding: 8rem 0;
    background: var(--deep-blue);
    position: relative;
    overflow: hidden;
}
.why-orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 111, 198, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}
.why-orb-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210, 37, 46, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.why-visual {
    position: relative;
}
.why-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    filter: brightness(0.88) saturate(1.1);
    transition: filter 0.5s ease;
}
.why-visual:hover .why-img {
    filter: brightness(0.95) saturate(1.15);
}
.why-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(to top, rgba(15, 46, 99, 0.55) 0%, transparent 55%);
}
.why-img-caption {
    position: absolute;
    bottom: 1.8rem;
    left: 1.8rem;
    right: 1.8rem;
    display: flex;
    gap: 1rem;
}
.why-img-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    text-align: center;
    transition: background var(--transition);
}
.why-img-stat:hover {
    background: rgba(255, 255, 255, 0.16);
}
.why-img-stat-n {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.why-img-stat-n sup {
    color: var(--red);
    font-size: 0.9rem;
}
.why-img-stat-l {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 0.2rem;
}

.why-content {
}
.why-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}
.why-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.3rem 1.5rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
    cursor: default;
}
.why-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(210, 37, 46, 0.4);
    transform: translateX(6px);
}
.why-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(210, 37, 46, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition:
        background var(--transition),
        transform var(--transition);
}
.why-feature:hover .why-feature-icon {
    background: rgba(210, 37, 46, 0.25);
    transform: scale(1.08);
}
.why-feature-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
}
.why-feature-text p {
    font-size: 0.83rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.52);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries {
    padding: 8rem 0;
    background: white;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}
.industry-card {
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    background: var(--light-grey);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    cursor: default;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.industry-card:hover {
    background: var(--deep-blue);
    border-color: rgba(63, 111, 198, 0.35);
    transform: translateY(-7px);
    box-shadow: var(--shadow-blue);
}
.industry-card:hover::before {
    transform: scaleX(1);
}
.industry-card:hover .ind-label {
    color: white;
}
.industry-card:hover .ind-desc {
    color: rgba(255, 255, 255, 0.58);
}
.industry-card:hover .ind-icon {
    transform: scale(1.15) rotate(-5deg);
}
.ind-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ind-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}
.ind-desc {
    font-size: 0.78rem;
    line-height: 1.55;
    color: #888;
    transition: color var(--transition);
}

/* ============================================================
   MANUFACTURING
   ============================================================ */
#manufacturing {
    padding: 8rem 0;
    background: var(--light-grey);
}
.mfg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.mfg-content h2 {
    margin-bottom: 1.4rem;
}
.mfg-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 1rem;
}
.mfg-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.mfg-spec {
    padding: 1.3rem 1.4rem;
    background: white;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.mfg-spec:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.mfg-spec-val {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1;
    letter-spacing: 0.01em;
}
.mfg-spec-key {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-top: 0.25rem;
}
.mfg-visual {
    position: relative;
}
.mfg-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}
.mfg-visual:hover .mfg-img-main {
    transform: scale(1.015);
}
.mfg-img-inset {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 185px;
    height: 165px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 5px solid var(--light-grey);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}
.mfg-visual:hover .mfg-img-inset {
    transform: translateY(-5px) rotate(-1deg);
}

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
#sustainability {
    padding: 8rem 0;
    background: linear-gradient(140deg, #062140 0%, var(--deep-blue) 50%, #0c3060 100%);
    position: relative;
    overflow: hidden;
}
.sust-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    letter-spacing: -0.03em;
    line-height: 1;
}
.sust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sust-content .section-tag {
    color: #4ade80;
}
.sust-content .section-tag::before {
    background: #4ade80;
}
.sust-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 1rem;
}
.green-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}
.green-list-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}
.green-list-item span:first-child {
    font-size: 1.2rem;
}

.sust-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.sust-metric {
    padding: 1.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    transition:
        background var(--transition),
        transform var(--transition),
        border-color var(--transition);
    cursor: default;
}
.sust-metric:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-5px);
}
.sust-metric-val {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    color: #4ade80;
    line-height: 1;
    letter-spacing: 0.01em;
}
.sust-metric-key {
    font-family: var(--font-heading);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 0.35rem;
    line-height: 1.4;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
#team {
    padding: 8rem 0;
    background: white;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3.5rem auto 0;
}
.team-card {
    background: var(--light-grey);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.team-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}
.team-card-img {
    height: 290px;
    overflow: hidden;
    background: #c5cede;
}
.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    filter: grayscale(0.1);
}
.team-card:hover .team-card-img img {
    transform: scale(1.05);
    filter: grayscale(0);
}
.team-card-body {
    padding: 1.6rem 1.8rem 1.8rem;
}
.team-role {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.3rem;
}
.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}
.team-quote {
    font-size: 0.85rem;
    line-height: 1.68;
    color: #6a7182;
    font-style: italic;
    border-left: 2px solid var(--red);
    padding-left: 0.9rem;
}

/* ============================================================
   CLIENTS  — Static visible grid, no marquee
   ============================================================ */
#clients {
    padding: 6rem 0;
    background: var(--light-grey);
}
.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.client-tile {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    transition:
        box-shadow var(--transition),
        transform var(--transition),
        border-color var(--transition);
    overflow: hidden;
}
.client-tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(21, 73, 155, 0.18);
}
.client-tile img {
    max-width: 100%;
    max-height: 65px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.8);
    transition:
        filter var(--transition),
        transform var(--transition);
    display: block;
}
.client-tile:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

/* ============================================================
   CTA
   ============================================================ */
#cta {
    padding: 9rem 0;
    background: var(--red);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-watermark {
    position: absolute;
    font-family: var(--font-display);
    font-size: 22rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.04em;
    pointer-events: none;
    white-space: nowrap;
}
.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 870px;
    margin: 0 auto;
}
.cta-inner .section-tag {
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
}
.cta-inner .section-tag::before {
    background: rgba(255, 255, 255, 0.45);
}
.cta-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.01em;
    color: white;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
.cta-sub {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.8rem;
}
.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-divider {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1.6rem auto;
    border-radius: 2px;
}

/* ============================================================
   CONTACT BAND
   ============================================================ */
#contact-band {
    padding: 4rem 0;
    background: var(--deep-blue);
}
.contact-band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.contact-band-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition:
        background var(--transition),
        transform var(--transition),
        border-color var(--transition);
}
.contact-band-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}
.contact-band-icon {
    font-size: 1.7rem;
    flex-shrink: 0;
    line-height: 1.3;
}
.contact-band-text h4 {
    font-family: var(--font-heading);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.4rem;
}
.contact-band-text p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}
.contact-band-text a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}
.contact-band-text a:hover {
    color: white;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #07101f;
    padding: 5rem 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
    padding: 0;
}
.footer-brand img {
    height: 36px;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 1.3rem;
}
.footer-brand p {
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 290px;
    margin-bottom: 1.6rem;
}
.footer-socials {
    display: flex;
    gap: 0.7rem;
}
.footer-social-btn {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition);
}
.footer-social-btn a {
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-btn a:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 8px 20px rgba(210, 37, 46, 0.35);
}
.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.4rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition:
        color 0.2s,
        gap 0.2s;
}
.footer-nav a::before {
    content: "→";
    font-size: 0.6rem;
    color: var(--red);
    opacity: 0;
    transition:
        opacity 0.2s,
        transform 0.2s;
    transform: translateX(-4px);
}
.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.85);
    gap: 0.65rem;
}
.footer-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}
.footer-certs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.footer-cert-badge {
    padding: 0.28rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
}
.footer-cert-badge:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ============================================================
   STATS SECTION  — Separate section below hero/ticker
   ============================================================ */
#stats-section {
    padding: 0;
    background: white;
    position: relative;
    z-index: 4;
}
.stats-section-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-block {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    overflow: hidden;
}
.stat-block:last-child {
    border-right: none;
}
.stat-block::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--soft-blue));
    transition: transform 0.4s ease;
    border-radius: 3px 3px 0 0;
}
.stat-block:hover {
    background: #fafbfd;
}
.stat-block:hover::before {
    transform: translateX(-50%) scaleX(1);
}
.stat-block:hover .stat-icon {
    transform: scale(1.15) rotate(-6deg);
}
.stat-block:hover .stat-num {
    color: var(--deep-blue);
}

.stat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1;
}
.stat-num {
    font-family: var(--font-display);
    /* font-size: 3.4rem; */
    font-size: clamp(2.8rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    letter-spacing: 0.01em;
    transition: color var(--transition);
    margin-bottom: 0.3rem;
}
.stat-num sup {
    font-size: 1.8rem;
    color: inherit;
    vertical-align: top;
    line-height: 1.4;
}
.stat-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}
.stat-sublabel {
    font-size: 0.78rem;
    color: #999;
    font-weight: 400;
    line-height: 1.4;
}
#mission-vision {
    padding: 7rem 0;
    background: var(--deep-blue);
    position: relative;
    overflow: hidden;
}
.mv-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://www.trinitycleantech.com/images/banner1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.08;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.mv-card {
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition:
        background var(--transition),
        transform var(--transition);
}
.mv-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
}
.mv-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}
.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}
.mv-card p {
    font-size: 0.95rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .about-grid {
        gap: 3.5rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 960px) {
    .about-grid,
    .why-grid,
    .mfg-grid,
    .sust-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-accent,
    .mfg-img-inset {
        display: none;
    }
    .about-badge {
        left: 1rem;
        top: 1rem;
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-band-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .stats-section-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-block:nth-child(2) {
        border-right: none;
    }
    .stat-block:nth-child(1),
    .stat-block:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
    .stat-block:nth-child(3),
    .stat-block:nth-child(4) {
        border-bottom: none;
    }
    .stat-block:nth-child(4) {
        border-right: none;
    }
    .stat-block:nth-child(3) {
        border-right: 1px solid var(--border);
    }
    .nav-links,
    .nav-right {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .team-grid {
        max-width: 440px;
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stat:nth-child(2) {
        border-left: 1px solid var(--border);
    }
    .about-stat:nth-child(3) {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 1rem;
        margin-top: 0.5rem;
    }
    .about-stat:nth-child(4) {
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
        padding-top: 1rem;
        margin-top: 0.5rem;
    }
    /* Remove hero stats bar on mobile — stats section handles it */
    .hero-stats-bar {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
    #about,
    #products,
    #why,
    #industries,
    #manufacturing,
    #sustainability,
    #team,
    #clients,
    #cta,
    #mission-vision {
        padding: 5rem 0;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero-headline {
        font-size: 2.8rem;
        line-height: 1;
    }
    .hero-sub {
        font-size: 0.92rem;
    }
    .slide-progress-bar {
        bottom: 1.6rem;
    }
    .slide-counter {
        display: none;
    }
    .mfg-specs {
        grid-template-columns: 1fr 1fr;
    }
    .sust-metrics {
        grid-template-columns: 1fr 1fr;
    }
    #back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .slide-nav {
        display: none;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-section-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-num {
        font-size: 2.6rem;
    }
}

/* ============================================================
   EV CHARGING INFRASTRUCTURE  (brochure page 2)
   ============================================================ */
#ev-infrastructure {
    padding: 8rem 0;
    background: var(--light-grey);
}
.ev-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}
.ev-site-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    position: relative;
}
.ev-site-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.ev-site-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}
.ev-site-card:hover .ev-site-img {
    transform: scale(1.05);
}
.ev-site-body {
    padding: 1rem 1.2rem 1.2rem;
}
.ev-site-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--deep-blue);
    text-transform: uppercase;
}
.ev-site-loc {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.2rem;
    font-weight: 500;
}
.ev-site-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--red);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
    border-radius: 100px;
}

/* EV charger mini-stats */
.ev-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}
.ev-mini-stat {
    background: var(--deep-blue);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.ev-mini-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
}
.ev-mini-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.ev-mini-val sup {
    color: var(--red);
    font-size: 1.2rem;
}
.ev-mini-key {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.strategic-tieups {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.strategic-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.strategic-logo {
    background: var(--light-grey);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    min-width: 140px;
}
.strategic-logo img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}
.strategic-logo:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* ============================================================
   PRODUCT SPECS SECTION  (brochure pages 3–4)
   ============================================================ */
#product-specs {
    padding: 8rem 0;
    background: var(--light-grey);
}
.spec-tabs-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.spec-tab {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: white;
    color: #888;
    transition: all var(--transition);
}
.spec-tab.active {
    background: var(--deep-blue);
    color: white;
    border-color: var(--deep-blue);
    box-shadow: var(--shadow-blue);
}
.spec-tab:hover:not(.active) {
    color: var(--deep-blue);
    border-color: var(--deep-blue);
}

.spec-panel {
    display: none;
}
.spec-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.spec-left {
}
.spec-product-img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}
.spec-features h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.spec-features h4::before {
    content: "⚙";
    font-size: 0.9rem;
}
.spec-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.spec-feature-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.86rem;
    line-height: 1.6;
    color: #555;
}
.spec-feature-item::before {
    content: "✓";
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.spec-right {
}
.spec-table-wrap {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.spec-table-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: var(--deep-blue);
    padding: 0.9rem 1.4rem;
    gap: 1rem;
}
.spec-table-head span {
    font-family: var(--font-heading);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.spec-table-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    padding: 0.75rem 1.4rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.spec-table-row:last-child {
    border-bottom: none;
}
.spec-table-row:hover {
    background: var(--light-grey);
}
.spec-param {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--deep-blue);
}
.spec-value {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE additions
   ============================================================ */
@media (max-width: 1100px) {
    .ev-infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .charger-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ev-mini-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 960px) {
    .spec-panel.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ev-infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .ev-infra-grid {
        grid-template-columns: 1fr;
    }
    .charger-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ev-mini-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .spec-tabs-row {
        gap: 0.4rem;
    }
    #ev-infrastructure,
    #charger-range,
    #product-specs {
        padding: 5rem 0;
    }
}

.dn {
    display: none !important;
}

.pss {
    background-position: bottom right;
}

.meenegry {
    background-size: cover;
}

/* .transformer {
    background-size: 100%;
}

.evchargers {
    background-size: 100%;
    background-position: bottom right;
} */

.aboutus {
    background-position: bottom right;
}

/* #navbar .container{padding: 0; } */

.contactus {
    background-size: 100%;
    background-position: bottom right;
}

.distribution-transformer {
    background-size: 90%;
}

.pp {
    background-size: 87%;
}

.tc {
    background-size: 87%;
}

/* ── Specs header row: title left, button right ── */
.specs-hdr-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    margin: 2rem 0 0 0;
}

/* ── Download button ── */
.spec-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.4rem 0.75rem 1rem;
    background: var(--deep-blue, #0f2e63);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(15, 46, 99, 0.22);
    transition:
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease,
        background 0.2s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}
.spec-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 46, 99, 0.32);
    background: #0a2050;
}
.spec-download-btn:active {
    transform: translateY(0);
}

/* Icon circle */
.spec-dl-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.spec-download-btn:hover .spec-dl-icon {
    background: rgba(210, 37, 46, 0.85);
}
.spec-dl-icon svg {
    width: 17px;
    height: 17px;
    display: block;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.spec-download-btn:hover .spec-dl-icon svg {
    transform: translateY(2px);
}

/* Text stack */
.spec-dl-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.spec-dl-label {
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}
.spec-dl-sub {
    font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

/* Responsive — stack on mobile */
@media (max-width: 640px) {
    .specs-hdr-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    .spec-download-btn {
        align-self: flex-start;
    }
}

#faq {
    padding: 6rem 0;
    background: var(--light-grey, #f5f6f8);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 5rem;
    align-items: start;
}

/* Left column — heading */
.faq-intro {
    position: sticky;
    top: 6rem;
}

.faq-intro .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red, #d2252e);
    margin-bottom: 1rem;
}

.faq-intro h2 {
    font-family: var(--font-display, "Barlow Condensed", sans-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: var(--deep-blue, #0f2e63);
    margin-bottom: 1rem;
}

.faq-intro p {
    font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
    font-size: 1rem;
    line-height: 1.78;
    color: #5a6175;
    margin-bottom: 2rem;
}

.faq-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.1rem 1.3rem;
    background: white;
    border-radius: 12px;
    border-left: 3px solid var(--red, #d2252e);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 3px solid var(--red, #d2252e);
}
.faq-contact-note-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.faq-contact-note-text {
    font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
    font-size: 0.84rem;
    color: #5a6175;
    line-height: 1.6;
}
.faq-contact-note-text a {
    color: var(--blue, #15499b);
    font-weight: 600;
    text-decoration: none;
}
.faq-contact-note-text a:hover {
    text-decoration: underline;
}

/* Right column — accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.faq-item {
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.faq-item.open {
    border-color: rgba(21, 73, 155, 0.18);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
}

/* Question button */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.faq-q:hover {
    background: rgba(0, 0, 0, 0.02);
}
.faq-item.open .faq-q {
    background: rgba(15, 46, 99, 0.03);
}

.faq-q-text {
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-blue, #0f2e63);
    line-height: 1.4;
}
.faq-item.open .faq-q-text {
    color: var(--blue, #15499b);
}

/* Toggle icon */
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-grey, #f5f6f8);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.25s,
        border-color 0.25s,
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item.open .faq-icon {
    background: var(--deep-blue, #0f2e63);
    border-color: var(--deep-blue, #0f2e63);
    transform: rotate(45deg);
}
.faq-icon svg {
    width: 13px;
    height: 13px;
    stroke: #5a6175;
    transition: stroke 0.25s;
}
.faq-item.open .faq-icon svg {
    stroke: #fff;
}

/* Answer */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a {
    max-height: 500px;
}

.faq-a-inner {
    padding: 0 1.4rem 1.3rem;
    font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
    font-size: 0.9rem;
    color: #5a6175;
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
    margin-top: -1px;
}
.faq-a-inner strong {
    color: var(--deep-blue, #0f2e63);
    font-weight: 700;
}
.faq-a-inner a {
    color: var(--blue, #15499b);
    font-weight: 600;
    text-decoration: none;
}
.faq-a-inner a:hover {
    text-decoration: underline;
}

/* Category label */
.faq-cat {
    display: inline-block;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red, #d2252e);
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--light-grey, #f5f6f8);
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-intro {
        position: static;
    }
}
@media (max-width: 480px) {
    #faq {
        padding: 4rem 0;
    }
    .faq-q {
        padding: 1rem 1.1rem;
    }
    .faq-q-text {
        font-size: 0.88rem;
    }
    .faq-a-inner {
        padding: 0 1.1rem 1.1rem;
        padding-top: 0.9rem;
    }
}

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
#latest-news {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent 
#latest-news::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--red, #D2252E) 0%,
    var(--blue, #15499B) 50%,
    transparent 100%);
} */

/* ============================================================
   SECTION HEADER
   ============================================================ */
.ln-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.ln-header-left {
    flex: 1;
    min-width: 0;
}

/* "View All News" link — top right */
.ln-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-blue, #0f2e63);
    text-decoration: none;
    border-bottom: 2px solid rgba(15, 46, 99, 0.2);
    padding-bottom: 2px;
    flex-shrink: 0;
    transition:
        color var(--transition, 0.32s),
        border-color var(--transition, 0.32s),
        gap var(--transition, 0.32s);
}
.ln-view-all svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform var(--transition, 0.32s);
}
.ln-view-all:hover {
    color: var(--red, #d2252e);
    border-color: var(--red, #d2252e);
    gap: 0.75rem;
}
.ln-view-all:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   NEWS GRID
   ============================================================ */
.ln-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1.8rem;
    align-items: start;
}

/* ============================================================
   NEWS CARD — Base
   ============================================================ */
.ln-card {
    background: white;
    height: 100%;
    border-radius: var(--radius-lg, 20px);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.07));
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(0, 0, 0, 0.06));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform var(--transition, 0.32s) cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow var(--transition, 0.32s),
        border-color var(--transition, 0.32s);
}
.ln-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md, 0 8px 32px rgba(0, 0, 0, 0.1));
    border-color: rgba(210, 37, 46, 0.15);
}

/* ============================================================
   FEATURED CARD — first card is taller
   ============================================================ */
/* .ln-card--featured .ln-card-img { height: 260px; } */
.ln-card--featured .ln-title {
    font-size: 1.2rem;
}
.ln-card--featured .ln-desc {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

/* ============================================================
   CARD IMAGE
   ============================================================ */
.ln-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f3f8, #e4eaf5);
    flex-shrink: 0;
}
.ln-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ln-card:hover .ln-card-img img {
    transform: scale(1.05);
}

/* Category badge */
.ln-cat {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 4px;
    color: white;
}
.ln-cat--partner {
    background: var(--blue, #15499b);
}
.ln-cat--funding {
    background: #059669;
}
.ln-cat--award {
    background: #7c3aed;
}
.ln-cat--ev {
    background: var(--deep-blue, #0f2e63);
}

/* ============================================================
   CARD BODY
   ============================================================ */
.ln-card-body {
    padding: 1.5rem 1.7rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta: date · source */
.ln-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}
.ln-date {
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid, #4a4a4a);
}
.ln-source {
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue, #15499b);
}
.ln-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border, rgba(0, 0, 0, 0.15));
    flex-shrink: 0;
}

/* Description */
.ln-desc {
    font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
    font-size: 0.85rem;
    color: #5a6175;
    line-height: 1.72;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.72rem;
}

/* Card footer: link + tag */
.ln-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: 0rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.07));
    flex-wrap: wrap;
}

.ln-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--red, #d2252e);
    text-decoration: none;
    transition: gap var(--transition, 0.32s);
}
.ln-read-more svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform var(--transition, 0.32s);
}
.ln-read-more:hover {
    gap: 0.65rem;
}
.ln-read-more:hover svg {
    transform: translateX(3px);
}

.ln-tag {
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--deep-blue, #0f2e63);
    padding: 0.22rem 0.6rem;
    background: rgba(15, 46, 99, 0.07);
    border-radius: 100px;
    flex-shrink: 0;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.ln-cta {
    text-align: center;
    margin-top: 3rem;
}

/* outline blue button — add to your main stylesheet if not there */
.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 2rem;
    background: transparent;
    color: var(--deep-blue, #0f2e63);
    border: 2px solid var(--deep-blue, #0f2e63);
    border-radius: var(--radius-sm, 6px);
    font-family: var(--font-heading, "Barlow", sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background var(--transition, 0.32s),
        color var(--transition, 0.32s),
        transform var(--transition, 0.32s),
        box-shadow var(--transition, 0.32s);
}
.btn-outline-blue svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform var(--transition, 0.32s);
}
.btn-outline-blue:hover {
    background: var(--deep-blue, #0f2e63);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 46, 99, 0.28);
}
.btn-outline-blue:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ≤ 1024px — 2 col, featured spans full width */
@media (max-width: 1024px) {
    .ln-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .ln-card--featured {
        grid-column: 1 / -1;
        flex-direction: row;
    }
    .ln-card--featured .ln-card-img {
        width: 42%;
        flex-shrink: 0;
        height: auto;
        min-height: 260px;
    }
    .ln-card--featured .ln-card-body {
        padding: 2rem 2.2rem;
    }
    .ln-card--featured .ln-title {
        font-size: 1.3rem;
    }
}

/* ≤ 768px — single column */
@media (max-width: 768px) {
    .ln-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .ln-view-all {
        align-self: flex-start;
    }
    .ln-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .ln-card--featured {
        flex-direction: column;
    }
    .ln-card--featured .ln-card-img {
        width: 100%;
        min-height: 220px;
        height: 220px;
    }
    .ln-card--featured .ln-card-body {
        padding: 1.5rem 1.7rem 1.8rem;
    }
    .ln-card--featured .ln-title {
        font-size: 1.1rem;
    }
}

/* ≤ 480px */
@media (max-width: 480px) {
    #latest-news {
        padding: 4rem 0;
    }
    .ln-header {
        margin-bottom: 2.5rem;
    }
    .ln-card-body {
        padding: 1.3rem 1.4rem 1.5rem;
    }
    .ln-cta {
        margin-top: 2rem;
    }
}
