/* ==========================================
   BANNER SECTION
   ========================================== */
.contact_us a svg path {
    fill: none !important;
    transition: 0.3s all !important;
}

.banner-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #0a0a1a;
    border-radius: 0 0 40px 40px;
}

/* ── Background Video ─────────────────────── */

.banner-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Gradient Overlay (exact values) ──────── */

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(118.48deg, rgba(15, 23, 42, 0) -7.9%, rgba(15, 23, 42, 0.2) 24.14%), linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 100%);
    pointer-events: none;
}

/* ── Hero Content Wrap ────────────────────── */

.banner-content-wrap {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 24px;
}

.banner-inner {
    text-align: center;
    /* max-width: 600px; */
    margin: 0 auto;
}

/* ── Badge ────────────────────────────────── */

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #CD2235;
    backdrop-filter: blur(12px);
    font-size: 11px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 16px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    background: #33333380;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-dot {
    color: #FFFFFF;
    font-size: 16px;
}

.title-M {
    display: flex;
    align-items: baseline;
    justify-content: center;

}

.title-M img {
    margin-right: -5px;
    transition: margin-right 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 0.7em;
    width: auto;
}

.title-M:has(.title-letter.is-visible) img {
    margin-right: 8px;
}

/* ── Title ────────────────────────────────── */

.banner-title {
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.title-ai {
    font-weight: 700;
    color: #ffffff;
}

.title-x {
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #4dd9e8 50%, #1a7aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 4px;
}

.title-by {
    font-weight: 400;
    color: #ffffff;
}

.title-letter {
    display: inline-block;
    width: 0;
    max-width: 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    overflow: hidden;
    white-space: nowrap;
    will-change: transform, opacity, max-width, width;
    transition: width 0.1s ease-out, max-width 0.1s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.title-letter.is-visible,
.page-loaded .title-letter {
    width: auto;
    max-width: 1.5em;
    opacity: 1;
    transform: scaleX(1);
}

.page-loaded .title-letter[data-delay="1"] {
    transition-delay: 0.2s;
}

.page-loaded .title-letter[data-delay="2"] {
    transition-delay: 0.5s;
}

.page-loaded .title-letter[data-delay="3"] {
    transition-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {

    .title-letter,
    .title-letter.is-visible,
    .page-loaded .title-letter {
        width: auto;
        max-width: 1.5em;
        opacity: 1;
        transition: none;
    }
}

/* ── Description ──────────────────────────── */

.banner-desc {
    color: #fff;
    max-width: 580px;
    margin: 0 auto 28px;
    font-size: 15px;
    line-height: 24px;
    padding: 0 16px;
}

/* ── CTA Buttons ──────────────────────────── */

.banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.banner-btns .btn-ai {
    width: 100%;
    max-width: 320px;
    font-size: 14px;
    padding: 10px 20px;
    min-height: 44px;
}

.btn-banner-white {
    background: #ffffff;
    border: 1px solid transparent;
}

.btn-banner-white:hover {
    background-color: transparent;
    border: 1px solid #CD2235;
    color: #fff;
    transition: 0.5s all;
}

.btn-banner-spotify {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid #FFFFFF33
}

.case-tag:hover {
    border: 1px solid #CD2235;
    transition: 0.5s all;
}

.btn-banner-spotify:hover {
    background-color: transparent;
    border: 1px solid #CD2235;
    transition: 0.5s all;
}

.btn-banner-spotify svg {
    flex-shrink: 0;
}

/* ── Client Logos ─────────────────────────── */

.banner-logos-wrap {
    position: relative;
    z-index: 3;
    padding: 20px 20px 28px;
}

.banner-logos-outer {
    overflow: hidden;
    background: #CD2235;
    border-radius: 32px;
    max-width: 1300px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
}

.banner-logos-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    padding: 0 20px;
    animation: logos-scroll 22s linear infinite;
}

.banner-logos-track .logo-item svg,
.banner-logos-track .logo-item img {
    max-height: 24px;
    width: auto;
    height: auto;
}

.cap-card-desc a {
    text-decoration: underline;
}

.cap-card-desc a:hover {
    text-decoration: none;
}

.banner-logos-track:hover {
    animation-play-state: paused;
}

@keyframes logos-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.banner-logos-track svg path,
.banner-logos-track svg rect {
    fill: #ffffff !important;
}

.logo-img-white {
    filter: brightness(0) invert(1);
    max-width: none;
    width: auto;
    opacity: 0.9;
}

/* white logos inside the red pill */

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.logo-item svg {
    width: auto;

}

.logo-item:hover {
    opacity: 0.85;
}

.logo-item.logo-accenture {
    margin-top: 0;
}

.logo-item.logo-sodexo {
    margin-top: 0;
}

@media (min-width: 481px) {
    .banner-badge {
        font-size: 14px;
        gap: 8px;
    }



    .banner-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .banner-btns .btn-ai {
        max-width: 360px;
        font-size: 15px;
    }

    .banner-logos-outer {
        height: 80px;
        border-radius: 40px;
    }

    .banner-logos-track {
        gap: 40px;
    }

    .banner-logos-track .logo-item svg,
    .banner-logos-track .logo-item img {
        max-height: 28px;
    }
}

@media (min-width: 768px) {
    .title-M {
        padding: 0 8px;
    }

    .banner-section {
        border-radius: 0 0 60px 60px;
    }

    .banner-content-wrap {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .banner-badge {

        font-size: 16px;
        margin-bottom: 20px;
    }

    .banner-title {
        gap: 0px;
        margin-bottom: 24px;
    }

    .banner-desc {
        max-width: 700px;
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 28px;
        padding: 0;
    }

    .banner-btns {
        flex-direction: row;
        gap: 16px;
        padding: 0;
    }

    .banner-btns .btn-ai {
        width: auto;
        max-width: none;
        font-size: 16px;
        padding: 12px 32px;
        min-height: 48px;
    }

    .banner-logos-wrap {
        padding: 28px 20px 36px;
    }

    .banner-logos-outer {
        border-radius: 56px;
        height: 100px;
    }

    .banner-logos-track {
        gap: 60px;
        padding: 0 30px;
    }

    .banner-logos-track .logo-item svg,
    .banner-logos-track .logo-item img {
        max-height: none;
    }
}

@media (min-width: 992px) {
    .banner-section {
        min-height: 100vh;
    }

    .banner-content-wrap {
        padding-top: 120px;
        padding-bottom: 98px;
    }

}

@media (min-width: 1024px) {}

@media (min-width: 1200px) {
    .title-M img {
        margin-right: -16px;

    }

    .banner-section {
        border-radius: 0 0 80px 80px;
    }

    .logo-item.logo-accenture {
        margin-top: -20px;
    }

    .logo-item.logo-sodexo {
        margin-top: -18px;
    }

    .banner-logos-outer {
        height: 130px;
    }

    .banner-logos-track {
        gap: 104px;
    }

    .title-M {
        padding: 0 19px 0 9px;
    }

    .banner-desc {
        font-size: 24px;
        line-height: 32px;
    }


}

@media (min-width: 1440px) {}

@media (min-width: 1366px) {}

@media (max-width: 380px) {


    .banner-badge {
        font-size: 10px;
        gap: 6px;
    }

    .banner-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .banner-btns .btn-ai {
        font-size: 13px;
        padding: 8px 16px;
    }

    .banner-logos-outer {
        height: 60px;
        border-radius: 24px;
    }

    .banner-logos-track {
        gap: 20px;
    }

    .banner-logos-track .logo-item svg,
    .banner-logos-track .logo-item img {
        max-height: 20px;
    }
}

/* ==========================================
   CAPABILITIES SECTION
   ========================================== */

.cap-section {
    background: #E7E8EA;
    padding: 80px 0;
}

x .cap-pin-wrap {
    position: relative;
}

.cap-pin {
    padding: 56px 0;
}

.cap-title {
    margin-bottom: 20px;
}

.cap-header {
    margin-bottom: 30px;
}

.cap-br {
    display: none;
}

.cap-subtitle {
    max-width: 720px;
}

/* ── Accordion (all pills) ────────────────── */

.cap-acc {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}

.cap-item {
    flex: 1 1 100%;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    background: #FAFAFB;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* open cards (scroll-driven via .is-open) */
.cap-acc .cap-item.is-open {
    background: #F8FAFC;
    border-radius: 20px;
}

/* open card hides the pill header; title shows inside body */
.cap-acc .cap-item.is-open .cap-item-head {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.cap-item-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    text-align: left;
    color: #14151b;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    cursor: pointer;
    max-height: 200px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.cap-item-title {
    flex: 1;
}

.cap-item-icon {
    display: none;
}

.cap-item-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

/* open card bodies (scroll-driven via .is-open) */
.cap-acc .cap-item.is-open .cap-item-body {
    max-height: 2000px;
    /* high enough for content */
    opacity: 1;
}

/* Stagger the reveal animation for each cap-item */
.cap-item:nth-child(1) .cap-logos {
    transition-delay: 0s;
}

.cap-item:nth-child(2) .cap-logos {
    transition-delay: 0.15s;
}

.cap-item:nth-child(3) .cap-logos {
    transition-delay: 0.3s;
}

.cap-item:nth-child(4) .cap-logos {
    transition-delay: 0.4s;
}

.cap-item:nth-child(5) .cap-logos {
    transition-delay: 0.5s;
}

.cap-item:nth-child(6) .cap-logos {
    transition-delay: 0.6s;
}

.cap-item:nth-child(7) .cap-logos {
    transition-delay: 0.7s;
}

/* card title (only visible inside open card) */
.cap-card-title {
    color: #0F172A;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -3%;
    margin-bottom: 10px;
}


.cap-contents {
    padding: 20px;
    border-radius: 20px;
    background: #F8FAFC;
    margin-top: -18px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Scroll-reveal: logos slide out from under cap-contents ── */

.cap-item-body {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cap-logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    background: linear-gradient(0deg, #161F2F, #161F2F),
        linear-gradient(180deg, #0F172A 0%, rgba(26, 34, 52, 0) 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        padding-top 1s cubic-bezier(0.16, 1, 0.3, 1),
        padding-bottom 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-item.cap-revealed .cap-logos {
    max-height: 250px;
    padding-top: 20px;
    padding-bottom: 30px;
    opacity: 1;
}

.cap-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
    min-width: 0;
}

.cap-logo-img {
    width: 56px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 1;
}

.cap-logo-label {
    font-size: 12px;
    line-height: 14px;
    color: #91949D;
    font-family: "IBM Plex Mono", monospace;
    white-space: nowrap;
    text-align: center;
}

/* ── Card Text ────────────────────────────── */

.cap-card-desc {
    color: #3F4555;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 620px;
}

.cap-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: auto;
    color: #0F172A;
    font-size: 15px;
    font-weight: 500;
    transition: gap 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.cap-card-link::before {
    content: "Explore Industry";
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.70s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.cap-card-link:hover::before {
    max-width: 200px;
    opacity: 1;
}

.cap-card-link:hover {
    gap: 8px;
}

.cap-arrow {
    width: 18px;
    height: auto;
    margin-top: 4px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cap-card-link:hover .cap-arrow {
    transform: translateX(4px);
}

/* ══ Scroll-driven open/close (pinned stage, --x variable) ══ */
/* Matches ai-services-scroll-cards-v9.html approach exactly:
   --x: 0 = collapsed (title-only) | 1 = expanded (full card)
   Title ALWAYS visible; navy strip grows 0→88px; desc+link fade in. */

.cap-scroll .cap-stage {
    position: relative;
}

@media (min-width: 1200px) {
    .cap-scroll .cap-stage {
        height: 420vh;
    }

    .cap-scroll .cap-pin {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 0 !important;
    }

    .cap-scroll .cap-pin>.container {
        width: 100%;
    }

    .cap-scroll .cap-acc {
        align-items: flex-start;
    }

    /* Card height: 80px collapsed → 380px expanded, scrubbed by --x */
    .cap-scroll .cap-acc .cap-item {
        height: calc(80px + var(--x, 0) * 300px) !important;
        transition: none !important;
        overflow: hidden;
    }

    /* Hide collapsed header always — title shows inside body */
    .cap-scroll .cap-acc .cap-item .cap-item-head {
        display: none !important;
    }

    /* Body always visible in scroll mode */
    .cap-scroll .cap-acc .cap-item .cap-item-body {
        max-height: none !important;
        opacity: 1 !important;
        transition: none !important;
        overflow: hidden;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Navy logos strip: height 0→88px, scrubbed by --x (like .svc-head) */
    .cap-scroll .cap-acc .cap-item .cap-logos {
        max-height: calc(var(--x, 0) * 88px) !important;
        padding-top: calc(var(--x, 0) * 14px) !important;
        padding-bottom: calc(var(--x, 0) * 10px) !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        opacity: 1 !important;
        transition: none !important;
        overflow: hidden;
        flex: 0 0 auto;
    }

    /* Logo chips: fade + slide up with quadratic curve (like .svc-head-in) */
    .cap-scroll .cap-acc .cap-item .cap-logo {
        opacity: calc(var(--x, 0) * var(--x, 0)) !important;
        transform: translateY(calc((var(--x, 0) - 1) * 26px)) !important;
        transition: none !important;
    }

    /* Content area: always visible, compact padding (like .svc-body) */
    .cap-scroll .cap-acc .cap-item .cap-contents {
        opacity: 1 !important;
        padding: 20px 24px !important;
        margin-top: 0 !important;
        transition: none !important;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* Title always visible (like .svc-title h3) */
    .cap-scroll .cap-acc .cap-item .cap-card-title {
        opacity: 1 !important;
        font-size: 19px !important;
        line-height: 24px !important;
        margin-bottom: 8px !important;
        transition: none !important;
    }

    /* Description: fade in with quadratic curve (like .svc-more) */
    .cap-scroll .cap-acc .cap-item .cap-card-desc {
        opacity: calc(var(--x, 0) * var(--x, 0)) !important;
        font-size: 13.5px !important;
        line-height: 22px !important;
        margin-bottom: 16px !important;
        transition: none !important;
    }

    /* Link: fade in with quadratic curve, pin to bottom (like .svc-cta) */
    .cap-scroll .cap-acc .cap-item .cap-card-link {
        opacity: calc(var(--x, 0) * var(--x, 0)) !important;
        margin-top: auto !important;
        transition: none !important;
    }
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 380px) {
    .cap-acc {
        gap: 12px;
    }

    .cap-item {
        border-radius: 12px;
    }

    .cap-item-head {
        padding: 14px 14px;
        font-size: 14px;
    }

    .cap-contents {
        padding: 20px;
        border-radius: 16px;
    }

    .cap-logos {
        padding: 16px;
        gap: 10px;
        border-radius: 16px 16px 0 0;
    }

    .cap-item.cap-revealed .cap-logos {
        padding-top: 16px;
        padding-bottom: 30px;
    }

    .cap-logo-img {
        width: 48px;
        height: 34px;
    }

    .cap-logo-label {
        font-size: 10px;
    }

    .cap-card-title {
        font-size: 20px;
    }

    .cap-card-desc {
        font-size: 16px;
        line-height: 20px;
    }

    .cap-card-link::before {
        display: none;
    }
}

@media (min-width: 576px) {

    /* pills (items 4+): 2 per row */
    .cap-acc .cap-item:nth-child(n+4) {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .cap-item-head {
        padding: 18px 22px;
        font-size: 16px;
    }

    .cap-contents {
        padding: 24px;
    }

    .cap-logos {
        padding: 24px;
        gap: 16px;
    }

    .cap-item.cap-revealed .cap-logos {
        padding-top: 24px;
    }

    .cap-logo-img {
        width: 55px;
        height: 56px;
    }

    .cap-logo-label {
        font-size: 13px;
    }

    .cap-card-title {
        font-size: 20px;
        line-height: 26px;
    }

    .cap-card-desc {
        line-height: 24px;
        margin-bottom: 22px;
    }

    .cap-card-link {
        font-size: 16px;
    }

    .cap-arrow {
        width: 20px;
    }
}

@media (min-width: 768px) {
    .cap-pin {
        padding: 72px 0;
    }

    .cap-title {
        margin-bottom: 30px;
    }

    .cap-header {
        margin-bottom: 53px;
    }

    .cap-br {
        display: block;
    }

    /* top cards (items 1-3): always 3 per row, width fixed regardless of open/closed */


    /* pills (items 4+): always 2 per row */
    .cap-acc .cap-item:nth-child(n+4) {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .cap-item-head {
        padding: 22px 28px;
        font-size: 18px;
        line-height: 24px;
    }

    .cap-contents {
        padding: 32px;
        border-radius: 24px;
    }

    .cap-logos {
        padding: 32px;
        gap: 18px;
        border-radius: 24px 24px 0 0;
    }

    .cap-item.cap-revealed .cap-logos {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .cap-logo-img {
        width: 55px;
        height: 56px;
        border-radius: 12px;
    }

    .cap-logo-label {
        font-size: 14px;
    }

    .cap-card-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .cap-card-desc {
        line-height: 28px;
        margin-bottom: 24px;
    }

    .cap-card-link {
        font-size: 18px;
    }

    .cap-arrow {
        width: 20px;
    }

    .cap-acc .cap-item.cap-top-row {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

/* ==========================================
   AI PRODUCTS & ACCELERATORS
   ========================================== */

.prod-section {
    position: relative;
    overflow: hidden;
    background: #0F172A;
    padding: 64px 0 80px;
}

/* ── Header ───────────────────────────────── */

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

.prod-badge {
    display: inline-block;
    background: #CD2235;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.02em;
    padding: 7px 14px;
    border-radius: 8px;
    margin-bottom: 26px;
}

.prod-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -3%;
    margin-bottom: 22px;
}

.prod-subtitle {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    max-width: 570px;
}

/* ── Body Layout ──────────────────────────── */

.prod-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.prod-left {
    width: 100%;
}

/* ── Featured Card ────────────────────────── */

.prod-card {
    background: #161F2F;
    box-shadow: 0px 2px 5px 0px #0000001A;
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 26px 28px 30px;
    margin-bottom: 22px;
}

.prod-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.prod-featured {
    display: inline-flex;
    align-items: center;
    width: 105.33px;
    height: 28.71px;
    gap: 8px;
    border: 1px solid #E02424;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px;
    border-radius: 8px;
    opacity: 1;
}

.prod-live {
    background: #28C72D0F;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 0px 12px;
    border: 1px solid #28C72D;
    border-radius: 8px;
}

.prod-card-name {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.prod-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4F8BFF 0%, #6A5BF0 100%);
    flex-shrink: 0;
}

.prod-card-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -3%;
}

.prod-card-desc {
    color: #9A9AA6;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 26px;
    max-width: 320px;
}

.prod-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: gap 0.25s ease;
}

.prod-card-link:hover {
    gap: 12px;
}

/* ── Tag Pills ────────────────────────────── */

.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prod-tag {
    border: 1px solid #FFFFFF1F;
    background: #1e2537;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 32px;
}

/* ── Dashboard Image ──────────────────────── */

.prod-right {
    width: 100%;
}

.prod-dash {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 992px) {
    .prod-section {
        padding: 80px 0 96px;
    }

    .prod-title {
        font-size: 48px;
    }

    .prod-body {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .prod-left {
        width: 42%;
        flex-shrink: 0;
        padding-right: 32px;
    }

    .prod-right {
        width: 58%;
    }

    .prod-dash {
        width: calc(100% + ((100vw - 945px) / 2));
        max-width: none;
        border-radius: 12px 0 0 12px;
    }
}

@media (min-width: 1380px) {
    .prod-dash {
        width: calc(100% + ((100vw - 1300px) / 2));
    }

    .cap-acc .cap-item:nth-child(n+4) {
        height: auto;
    }
}

/* ==========================================
   EXPLORE ALL AI PRODUCTS
   ========================================== */

.prodx-section {
    position: relative;
    overflow: hidden;
    background: #0F172A;
    padding: 0 0 80px;
}

.prodx-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -3%;
    margin-bottom: 32px;
}

/* ── Grid ─────────────────────────────────── */

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

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
}

.case-card .brand-logo img {
    width: 132px;
    height: auto;
}

/* ── Card ─────────────────────────────────── */

.prodx-card {
    background: #161F2F;
    box-shadow: 0px 2px 5px 0px #0000001A;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.prodx-card:hover {
    background: #CD2235;
    border-color: transparent;
}

.prodx-card.is-featured {
    border-color: #5A56E6;
    box-shadow: 0 0 0 1px rgba(90, 86, 230, 0.35), 0 14px 50px rgba(90, 86, 230, 0.25);
}

.prodx-card--more {
    display: none;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s ease;
    transition-behavior: allow-discrete;
}

.prodx-grid.is-expanded .prodx-card--more {
    display: flex;
    opacity: 1;
    transform: scale(1) translateY(0);
}

@starting-style {
    .prodx-grid.is-expanded .prodx-card--more {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

.prodx-thumb {
    height: 190px;
    margin-bottom: 24px;
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

.prodx-thumb img {
    width: 100%;
    height: 190px;
    border-radius: 8px;
    object-fit: cover;
}

video.prodx-thumb {
    width: 100%;
    height: 190px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.prodx-card:hover .prodx-thumb {
    opacity: 1;
}

.prodx-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    border: 1px solid #333333;
    padding: 6px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.prodx-logo {
    color: #8E8E9A;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.prodx-logo span {
    color: #5C5C68;
    font-weight: 500;
}

.prodx-logo--postpen {
    color: #E23744;
    font-weight: 800;
}

.prodx-status {
    background: #28C72D0F;
    color: #fff;
    border: 1px solid #28C72D;
    font-size: 11px;
    font-weight: 500;
    padding: 0px 12px;
    border-radius: 7px;
    white-space: nowrap;
}

.enterprise.prodx-status {
    border-color: #CD2235;
}

.prodx-card:hover .enterprise.prodx-status {
    border-color: #fff;
}

.prodx-card:hover .prodx-logo-row.white-logo img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.prodx-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 12px;
}

.prodx-desc {
    color: #8A8A8A;
    font-size: 12.5px;
    line-height: 28px;
    margin-bottom: 18px;
}

/* ── Tags ─────────────────────────────────── */

.prodx-tags {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.prodx-tag {
    border: 1px solid #FFFFFF1F;
    background: #1e2537;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    text-align: center;
    padding: 3px 6px;
    border-radius: 100px;
}

.prodx-link {
    display: inline-flex;
    align-items: center;
    color: #C9C9D2;
    margin-top: auto;
    gap: 8px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.schedule {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    display: none;
}

.prodx-link:hover,
.prodx-card:hover .prodx-link {
    color: #ffffff;
    transform: translateX(4px);
}

.prodx-card:hover .schedule {
    display: block;
}

/* ── Show More ────────────────────────────── */

.prodx-more {
    display: flex;
    justify-content: center;
    margin-top: 36px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans';
    padding: 15px 42px;
}

.prodx-more-btn {
    background: #0f172a;
    border: 1px solid #FFFFFF33;
    color: #E6E6EC;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.prodx-more-btn:hover {
    background: #16161F;
    border-color: #3A3A46;
}

.prodx-card:hover .prodx-desc {
    color: #fff;
}

.prodx-card:hover .prodx-tag {
    background-color: #d02f41;
}

.prodx-card:hover .prodx-logo-row {
    border-color: #fff;
}

.prodx-card:hover .prodx-logo-row.white img {
    filter: brightness(0) invert(1);
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .prodx-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .prodx-section {
        padding: 0 0 120px;
    }

    .prodx-title {
        font-size: 30px;
        margin-bottom: 36px;
    }

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

    .prodx-desc {
        font-size: 16px;
    }
}

/* ==========================================
   CASE STUDIES SECTION
   ========================================== */

.case-section {
    background: #CD2235;
    padding: 60px 0 80px;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.case-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.case-title {
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.case-br {
    display: none;
}

.case-subtitle {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    max-width: 460px;
}

.case-cta {
    border: 1px solid #E6E6E633;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 32px;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease;
}

.case-cta:hover {
    background: #20202B;
}

.case-cta-arrow {
    width: 20px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.25s ease;
}

.case-cta:hover .case-cta-arrow {
    transform: translateX(5px);
}

/* ── Stacked Cards (sticky pile-up) ───────── */

.case-stack {
    position: relative;
}

.case-card {
    position: relative;
    box-shadow: 0 24px 60px rgba(14, 14, 20, 0.08);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    transform-origin: center top;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: #0F172A;
    overflow: hidden;
}

.case-stack .case-card {
    padding: 0;
}

.case-card.scaled .case-overlay {
    background-color: #080d17;
}

.case-media {
    position: relative;
    display: block;
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

.case-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-media .case-overlay-top img,
.case-media .case-overlay-top .nova-bupa {
    width: 120px;
    height: auto;
    position: static;
}

.case-overlay-top {
    margin-bottom: 25px;
}

.case-arrow-link {
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.case-arrow-link svg {
    width: 25px;
    height: 25px;
}

.case-card:hover .case-arrow-link {
    transform: translateX(8px);
}

.case-overlay {
    padding: 25px;
    background-color: #080d17;
}

.mailman-logo {
    width: 160px;
}

.sparx-talent {
    width: 30px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 5px
}

.prodx-appname {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    vertical-align: middle;
}

.chatgpt-logo {
    width: 27px;
}

.ai-analyzer-logo {
    width: 55px;
}

.pwd-delhi-logo {
    width: 32px;
}

.case-overlay-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.case-brand {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.case-meta .dots {
    margin: 0 10px;
    position: relative;
}

.case-meta .dots::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
}


.case-meta {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    border-radius: 8px;
    padding: 4px 14px;
    border: 1px solid #CD2235;
    backdrop-filter: blur(12px);
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
}

.case-overlay-title {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 30px;
    max-width: 610px;
    margin-bottom: 30px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 480px;
    margin-bottom: 40px;
}

.case-tag {
    font-size: 18px;
    border: 1px solid #FFFFFF1F;
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    color: #fff;
    padding: 14px 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: border-color 0.25s ease;
}

.case-tag svg {
    width: 12px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

a.case-tag:hover svg {
    transform: translateX(3px);
}

.case-stats {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.case-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
    border: 1.2px solid #CD2235;
    border-radius: 24px;
    background: linear-gradient(118.48deg, rgba(204, 33, 33, 0.2) -7.9%, rgba(0, 0, 0, 0.2) 24.14%);
}

.case-stat-num {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.case-stat-label {
    font-size: 11px;
    color: #fff;
    font-weight: 400;
    line-height: 1.3;
}

.case-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.case-media:hover .case-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .case-overlay-inner {
        background: url("/newassets/images/hisense-bg.png") no-repeat;
        background-size: cover;
        padding: 20px;
        border-radius: 10px;
    }

    .suzuki-bg {
        background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/assets-style/images/case-study-suzuki.webp") no-repeat;
        background-size: cover;
        padding: 20px;
        border-radius: 10px;
    }

    .niva-bg {
        background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/assets-style/images/niva-banner-3.png") no-repeat;
        background-size: cover;
        padding: 20px;
        border-radius: 10px;
    }

    .case-card {
        position: sticky;
        top: calc(90px + var(--i, 0) * 40px);
    }

    .case-card:not(:last-child) {
        margin-bottom: 28px;
    }

    .case-overlay {
        padding: 35px;
    }

    .case-section {
        padding: 80px 0 100px;
    }

    .case-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 44px;
    }

    .case-title {
        font-size: 38px;
    }

    .case-br {
        display: block;
    }

    .case-cta {
        margin-top: 6px;
    }

    .case-section {
        border-radius: 60px 60px 0 0;
    }

    .case-arrow-link svg {
        width: 30px;
        height: 30px;
    }

}

@media (min-width: 1200px) {

    .case-title {
        font-size: 42px;
    }

    .prodx-tags {
        grid-template-columns: 1fr 1fr;
    }

    .case-cta {
        font-size: 16px;
        font-weight: 700;
    }

    .case-arrow-link svg {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 768px) {

    .case-brand {
        font-size: 32px;
    }

    .case-overlay-title {
        font-size: 26px;
    }

    .case-stats {
        gap: 16px;
        justify-content: flex-start;
    }

    .case-stat {
        padding: 16px 20px;
        min-width: 110px;
    }

    .case-stat-num {
        font-size: 26px;
    }
}

@media (min-width: 1024px) {
    .case-overlay-inner {
        padding: 40px;
    }

    .case-meta {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .case-overlay {
        padding: 45px;
    }

    .case-brand {
        font-size: 38px;
    }

    .case-overlay-title {
        font-size: 30px;
    }

    .case-tags {
        gap: 12px;
        margin-bottom: 80px;
    }

    .case-stats {
        gap: 20px;
    }

    .case-stat {
        padding: 24px 30px;
        border-radius: 20px;
    }

    .case-stat-num {
        font-size: 30px;
    }

    .case-stat-label {
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .case-overlay {
        padding: 55px;
    }

    .case-overlay-top {
        margin-bottom: 39px;
    }

    .case-media .case-overlay-top img,
    .case-media .case-overlay-top .nova-bupa {
        width: 167px;
    }
}

@media (min-width: 1366px) {
    .case-overlay {
        padding: 64px;
    }

    .case-overlay-inner {
        padding: 56px;
    }

    .case-brand {
        font-size: 42px;
    }

    .case-overlay-title {
        font-size: 36px;
        letter-spacing: -3%;
        margin-bottom: 40px;
        line-height: 44px;
    }

    .case-stat {
        padding: 28px 40px;
        min-width: 177px;
    }

    .case-stat-num {
        font-size: 36px;
        line-height: 44px;
    }

    .case-stat-label {
        font-size: 14px;
        letter-spacing: -3%;
    }
}

/* ==========================================
   SOVEREIGN AI / COMPLIANCE SECTION
   ========================================== */

.gov-section {
    background: #E7E8EA;
    padding: 40px 0 0px;
}

.gov-header {
    margin-bottom: 32px;
}

.gov-badge {
    border: 1px solid #CD2235;
    display: inline-block;
    background-color: #fff;
    color: #000000;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    border-radius: 8px;
    padding: 0 8px;
    margin-bottom: 18px;
}

.gov-header h2 {
    color: #000000;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.gov-br {
    display: none;
}

.gov-subtitle {
    color: #6F6F78;
    font-size: 14px;
    line-height: 22px;
    max-width: 560px;
}

/* ── Dark Diagram Card ────────────────────── */

.gov-card {
    position: relative;
    background: radial-gradient(120% 80% at 50% 0%, #15151f 0%, #0b0b12 55%, #08080d 100%);
    /* border: 1px solid #1d1d28; */
    border-radius: 40px 40px 0 0;
    padding: 32px 24px 0;
    overflow: hidden;
}

.gov-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 240px;
    background: radial-gradient(60% 100% at 50% 100%, rgba(224, 36, 36, 0.18), transparent 70%);
    pointer-events: none;
}

/* ── Diagram ──────────────────────────────── */

.gov-diagram {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    z-index: 1;
    margin-bottom: 30px;
}

/* SVG background (boxes + shield + lines) — desktop only */
.gov-diagram-bg {
    display: none;
}

/* AI label — desktop only */
.gov-ai {
    display: none;
}

.gov-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
}

.gov-box-icon {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #272e3f;
    border: 1px solid #FFFFFF1F;
    box-shadow: 0px 4px 6px 0px #00000012;
    backdrop-filter: blur(12px);
}

.gov-box-info h3 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
}

.list-wrap {
    display: flex;
    gap: 15px;
    padding-left: 5px;
}

.list-wrap li {
    color: #B5B7BD;
    font-size: 11px;
    font-weight: 400;
    position: relative;
}

.list-wrap li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 11px;
    width: 4px;
    height: 4px;
    background-color: #B5B7BD;
    border-radius: 50%;
}

/* ── Compliance logos ─────────────────────── */

.gov-logos {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    padding: 16px;
    border-radius: 32px;
    max-width: fit-content;
    margin: auto;
    background-color: #cd2235;
}

.gov-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background-color: #cf2b3d;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #FFFFFF14;
}

.gov-logo--fr {
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    color: #E6E6EC;
}

/* ── Stats ────────────────────────────────── */

.gov-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    margin: 50px 0 0px;
    text-align: center;
}

.gov-stat-num {
    display: block;
    color: #ffffff;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.gov-stat-label {
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
}

/* ── Bottom CTA panel ─────────────────────── */

.gov-cta-panel {
    /* background: url("/newassets/images/transform-img.png") no-repeat; */
    /* background-size: cover; */
    background: radial-gradient(120% 80% at 50% 0%, #15151f 0%, #0b0b12 55%, #08080d 100%);
    position: relative;
    z-index: 1;
    padding: 36px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.gov-cta-text {
    position: relative;
    z-index: 1;
}

.gov-cta-text h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.gov-cta-text p {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

.gov-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0F172A;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 27px;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease;
    overflow: hidden;
}

.gov-cta-btn svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
    flex-shrink: 0;
}

.gov-cta-btn:hover {
    background: #20202B;
    color: #fff;
}

.gov-cta-btn:hover svg {
    transform: translateX(6px);
    filter: invert(1);
}

.gov-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .gov-badge {
        font-size: 16px;
    }

    .gov-section {
        padding: 80px 0 0px;
    }

    .gov-title {
        font-size: 38px;
    }

    .gov-br {
        display: block;
    }

    .gov-card {
        padding: 48px 40px 0;
    }

    .gov-diagram {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

    .gov-cta-panel {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
        padding: 44px 48px 48px;
    }

    .gov-cta-text h3 {
        font-size: 30px;
    }

    .gov-cta-btn {
        flex: none;
    }
}

/* ── Desktop: SVG diagram + overlaid content ── */
@media (min-width: 992px) {
    .gov-diagram {
        display: block;
        gap: 0;
        aspect-ratio: 1111 / 443;
        margin: 8px auto 12px;
    }

    .gov-diagram-bg {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .gov-ai {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        top: 45.4%;
        transform: translate(-50%, -50%);
        color: #6B4EFF;
        font-size: 88px;
        font-weight: 500;
        font-family: "IBM Plex Mono", monospace;
        letter-spacing: 0.02em;
    }

    /* boxes become transparent overlays positioned over the svg outlines */
    .gov-box {
        position: absolute;
        width: 27.72%;
        height: 24.83%;
        background: transparent;
        border: 0;
        border-radius: 24px;
        padding: 24px;
        gap: 18px;
    }

    .gov-box--l1,
    .gov-box--l2,
    .gov-box--l3 {
        left: 0;
    }

    .gov-box--r1,
    .gov-box--r2,
    .gov-box--r3 {
        left: 72.18%;
    }

    .gov-box--l1,
    .gov-box--r1 {
        top: 0;
    }

    .gov-box--l2,
    .gov-box--r2 {
        top: 30.59%;
    }

    .gov-box--l3,
    .gov-box--r3 {
        top: 61.07%;
    }

    .gov-cta-text h3 {
        font-size: 34px;
    }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.tst-section {
    background: #b5b7bd;
    padding: 56px 0 72px;
}

.tst-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 32px;
}

.tst-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.tst-readall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0F172A;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 24px;
    border: 1px solid #0F172A;
    border-radius: 999px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.tst-readall svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
    flex-shrink: 0;
}

.tst-readall:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.tst-readall:hover svg {
    transform: translateX(6px);
    filter: invert(1);
}

/* ── Card / Carousel ──────────────────────── */

.tst-card {
    background: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 28px 24px;
}

.tst-viewport {
    overflow: hidden;
}

.tst-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tst-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 4px 2px;
}

.tst-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.tst-avatar {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;

    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.tst-meta h3 {
    color: #0F172A;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.tst-meta p {
    color: #94A3B8;
    font-size: 14px;
}

.tst-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.18);
    margin: 4px 4px;
}

.tst-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 18px;
    line-height: 1;
    color: #FFB323;
}

.tst-quote-title {
    color: #0F172A;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 3%;
    margin-bottom: 16px;
}

.tst-quote {
    color: #0F172A;
    font-size: 15px;
    line-height: 36px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .tst-quote-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tst-quote {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 28px;
    }
}

/* ── Pager ────────────────────────────────── */

.tst-pager {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #0F172A;
    border-radius: 999px;
    padding: 9px 16px;
    margin-top: 30px;
}

.tst-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.tst-nav:hover {
    background: rgba(255, 255, 255, 0.12);
}

.tst-nav.slick-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.tst-count {
    color: #ffffff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 16px;
    letter-spacing: -3%;
    padding: 0 10px;
    font-weight: 600;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .gov-card {
        border-radius: 60px 60px 0 0;
    }

    .tst-section {
        padding: 72px 0 90px;
    }

    .tst-header {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 36px;
    }

    .tst-title {
        font-size: 38px;
    }

    .tst-readall {
        margin-top: 8px;
    }

    .tst-card {
        padding: 40px 44px;
    }

    .tst-quote-title {
        font-size: 26px;
        max-width: 1164px;
    }

    .tst-stars {
        font-size: 25px;
    }
}

@media (min-width: 1200px) {
    .cap-acc .cap-item.cap-top-row:nth-child(1) {
        flex: 0 0 calc((100% - 32px - 370px) / 2);
        height: auto;
    }

    .cap-acc .cap-item.cap-top-row:nth-child(2) {
        flex: 0 0 370px;
        height: auto;
    }

    .cap-acc .cap-item.cap-top-row:nth-child(3) {
        flex: 0 0 calc((100% - 32px - 370px) / 2);
        height: auto;
    }

    .gov-card {
        border-radius: 80px 80px 0 0;
    }

    .tst-title {
        font-size: 42px;
    }

    .tst-readall {
        font-size: 16px;
    }

    .tst-stars {
        font-size: 30px;
    }
}

/* ==========================================
   BUILT IN THE OPEN (Open-source) SECTION
   ========================================== */

.bio-section {
    background: #0F172A;
    padding: 60px 0 80px;
}

.bio-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 30px;
}

.bio-heading h2 {
    color: #fff;
    font-weight: 500;
    line-height: 64px;
}

h2.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

h2.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.prodx-card.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.prodx-card.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.prodx-grid .prodx-card.scroll-reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.prodx-grid .prodx-card.scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.prodx-grid .prodx-card.scroll-reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.prodx-grid .prodx-card.scroll-reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.prodx-grid .prodx-card.scroll-reveal:nth-child(5) {
    transition-delay: 0.25s;
}

.prodx-grid .prodx-card.scroll-reveal:nth-child(6) {
    transition-delay: 0.3s;
}

.prod-right.scroll-reveal {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.tst-card.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.tst-card.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bio-card.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.bio-card.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bio-grid .bio-card.scroll-reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.bio-grid .bio-card.scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.bio-grid .bio-card.scroll-reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.bio-grid .bio-card.scroll-reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.pod-card.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.pod-card.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.part-logos.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.part-logos.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cap-item.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cap-item.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cap-acc .cap-item.scroll-reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.cap-acc .cap-item.scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.cap-acc .cap-item.scroll-reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.cap-acc .cap-item.scroll-reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.cap-acc .cap-item.scroll-reveal:nth-child(5) {
    transition-delay: 0.25s;
}

.cap-acc .cap-item.scroll-reveal:nth-child(6) {
    transition-delay: 0.3s;
}

.cap-acc .cap-item.scroll-reveal:nth-child(7) {
    transition-delay: 0.35s;
}

.bio-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.bio-subtitle {
    color: #8A8A95;
    font-size: 14px;
    line-height: 22px;
    max-width: 460px;
}

.bio-github {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #16161d;
    border: 1px solid #2a2a35;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 32px;
    transition: background 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.bio-github svg:last-child {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.bio-github:hover {
    background: #20202b;
    border-color: #3a3a46;
}

.bio-github:hover svg:last-child {
    transform: translateX(5px);
}

/* ── Bento grid ───────────────────────────── */

.bio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.bio-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: #161f2f;
    border: 1px solid #6B4EFF;
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.bio-content {
    flex: 1;
    min-width: 0;
}

.bio-code {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;
}

.bio-cat {
    display: inline-block;
    color: #fff;
    border: 1px solid #E02424;
    background: #E0242414;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
    padding: 0px 6px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.bio-name {
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -3%;
    margin-bottom: 12px;
}

.bio-desc {
    color: #91949D;
    font-size: 14px;
    line-height: 21px;
    max-width: 380px;
    margin-bottom: 20px;
}

.bio-lang,
.bio-repo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.bio-repo {
    color: #fff;
    margin-bottom: 20px;
}

.bio-lang-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
}

.bio-ts {
    background: #3178C6;
}

.bio-py {
    background: #3776AB;
}

.bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bio-tag {
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: #242c3b;
    border: 1px solid #FFFFFF1F;
    font-size: 12px;
    padding: 6px 12px;
    gap: 8px;
    border-radius: 999px;
}

.bio-card .bio-github {
    background-color: transparent;
    border-color: #E6E6E6;
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.bio-card .bio-content,
.bio-card .bio-art,
.bio-card .bio-code {
    transition: opacity 0.3s ease;
}

.bio-card:hover .bio-content,
.bio-card:hover .bio-art,
.bio-card:hover .bio-code {
    opacity: 0;
}

.bio-card:hover {
    background-color: #CD2235;
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(205, 34, 53, 0.3);
}

.bio-card:hover .bio-github {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 1;
}

/* ── Illustration: podcast ────────────────── */

.bio-art {
    flex: none;
}

.bio-art--podcast {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-browser {
    width: 100%;
    max-width: 320px;
    background: #1a1326;
    background: linear-gradient(160deg, #241a33, #15101f);
    border: 1px solid #2e2440;
    border-radius: 16px;
    padding: 16px;
}

.bio-dots {
    display: flex;
    gap: 6px;

    .case-tags {
        gap: 12px;
        margin-bottom: 80px;
    }

    margin-bottom: 16px;
}

.bio-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4a4a55;
}

.bio-dots i:nth-child(1) {
    background: #ff5f57;
}

.bio-dots i:nth-child(2) {
    background: #febc2e;
}

.bio-dots i:nth-child(3) {
    background: #28c840;
}

.bio-webpage {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.bio-doc {
    width: 20px;
    height: 24px;
    border-radius: 3px;
    background: linear-gradient(#dfe3ea, #c7cdd8);
    flex: none;
}

.bio-episode {
    background: linear-gradient(135deg, #6d28d9, #4f46e5);
    border-radius: 10px;
    padding: 16px;
}

.bio-mic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
}

.bio-episode-label {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
}

.bio-wave i {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    height: 30%;
}

.bio-wave i:nth-child(2n) {
    height: 70%;
}

.bio-wave i:nth-child(3n) {
    height: 100%;
}

.bio-wave i:nth-child(4n) {
    height: 45%;
}

/* ── Illustration: quiz ───────────────────── */

.bio-art--quiz {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-quiz {
    width: 100%;
    max-width: 300px;
    background: #111016;
    border: 1px solid #26262f;
    border-radius: 14px;
    padding: 16px;
}

.bio-quiz-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.bio-quiz-tag {
    color: #E0573F;
    font-size: 11px;
    font-weight: 600;
}

.bio-quiz-num {
    color: #8A8A95;
    background: rgba(255, 255, 255, 0.05);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 6px;
}

.bio-quiz-q {
    color: #E6E6EC;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 14px;
}

.bio-quiz-opts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bio-quiz-opts li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #9A9AA6;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 11px;
    line-height: 15px;
    padding: 10px 12px;
    border-radius: 9px;
}

.bio-quiz-opts li:hover {
    color: #ffffff;
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.6);
}

.bio-opt-k {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 10px;
    font-weight: 600;
}

.is-correct .bio-opt-k {
    background: #22c55e;
    color: #06250f;
}

.bio-opt-tick {
    margin-left: auto;
    flex: none;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .bio-section {
        padding: 80px 0 100px;
    }

    .bio-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 40px;
    }

    .bio-title {
        font-size: 44px;
    }

    .bio-github {
        margin-top: 18px;
    }

    .bio-card--wide {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .bio-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .bio-card--wide .bio-content {
        flex: 1 1 52%;
    }

    .bio-card--wide .bio-art {
        flex: 1 1 31%;
        align-self: stretch;
    }

    .bio-cat,
    .bio-tag {
        font-size: 14px;
    }

    .bio-desc {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .bio-name {
        font-size: 24px;
    }

    .bio-repo {
        margin-bottom: 24px;
    }

    /* row 1: wide (7) + compact (5) ; row 2: compact (5) + wide (7) */
    .bio-grid>.bio-card:nth-child(1) {
        grid-column: span 7;
    }

    .bio-grid>.bio-card:nth-child(2) {
        grid-column: span 5;
    }

    .bio-grid>.bio-card:nth-child(3) {
        grid-column: span 5;
    }

    .bio-grid>.bio-card:nth-child(4) {
        grid-column: span 7;
    }
}

/* ==========================================
   PODCAST SECTION
   ========================================== */

.pod-section {
    background: #E7E8EA;
    padding: 56px 0 72px;
}

.pod-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.pod-badge {
    background-color: #fff;
    display: inline-block;
    color: #000;
    border: 1px solid #CD2235;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    padding: 0px 6px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.pod-title {
    color: #0E0E14;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.pod-subtitle {
    color: #0F172A;
    font-size: 14px;
    line-height: 22px;
}

.pod-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pod-plat {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    border: 1px solid #E6E6E6;
    color: #0F172A;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(14, 14, 20, 0.05);
}

.pod-plat-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

/* .pod-yt { background: #FF0000; }
.pod-sp { background: #1DB954; border-radius: 50%; }
.pod-ap { background: linear-gradient(135deg, #C44CE5, #8A2BE2); border-radius: 50%; } */

/* ── YouTube embed (auto-latest) ─────────── */

.pod-embed-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pod-yt-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(14, 14, 20, 0.08);
    background: #0E0E14;
}

.pod-yt-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pod-yt-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(14, 14, 20, 0.12);
    background: #fff;
    color: #0F172A;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pod-yt-all:hover {
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.04);
    color: #0F172A;
}

/* ── Episode card ─────────────────────────── */

.pod-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #F8FAFC;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 24px 60px rgba(14, 14, 20, 0.06);
}

.pod-embed {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.pod-embed iframe {
    width: 100%;
    border: 0;
    display: block;
}

.pod-cover {
    position: relative;
    flex: none;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 70% 30%, #143b4a 0%, #0a1118 60%),
        #0a1118;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pod-cover-title {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 30px;
}

.pod-cover-title b {
    color: #FFD23F;
    font-size: 34px;
}

.pod-cover-mic {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
}

.pod-cover-band {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFD23F;
    color: #0a0a0a;
    font-weight: 800;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.01em;
    padding: 12px 16px;
}

.pod-cover-rocket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0a0a0a;
    flex: none;
}

.pod-info {
    flex: 1;
    min-width: 0;
}

.pod-ep-title {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    max-width: 683px;
}

.pod-ep-meta {
    color: #94A3B8;
    font-size: 13px;
    margin-bottom: 22px;
}

.pod-ep-meta a {
    color: #94A3B8;
    text-decoration: underline;
}

.pod-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    color: #0F172A;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.pod-card-logo {
    display: flex;
    justify-content: end;
    width: 100%;
}

.pod-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pod-time {
    color: #0F172A;
    font-weight: 500;
    font-size: 13px;
}

.pod-more {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
}

.pod-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #0E0E14;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pod-play:hover {
    transform: scale(1.06);
}

.pod-header h2 {
    font-weight: 500;
    line-height: 64px;
    margin-bottom: 20px;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .pod-section {
        padding: 72px 0 90px;
    }

    .pod-header {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 36px;
    }

    .pod-platforms {
        margin-top: 48px;
    }

    .pod-title {
        font-size: 40px;
    }

    .pod-card {
        flex-direction: row;
        gap: 36px;
        padding: 24px;
    }

    .pod-cover {
        width: 240px;
    }

    .pod-save,
    .pod-time {
        font-size: 16px;
    }


    .pod-controls {
        position: absolute;
        right: 28px;
        bottom: 28px;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    background: #CD2235;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.faq-title {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -0.02em;
}

.faq-section h2 {
    color: #fff;
    font-weight: 500;
    line-height: 64px;
}

.faq-item {
    border-bottom: 1px solid #E899A2;
}

.faq-item:last-of-type {
    border-bottom: 1px solid #E899A2;
}

.faq-q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding: 16px 0;
    letter-spacing: -3%;
}

.faq-icon {
    position: relative;
    flex: none;
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    transition: grid-template-rows 0.4s ease, opacity 0.4s ease;
}

.faq-a>* {
    min-height: 0;
}

.faq-item.is-open .faq-a {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item.is-open .faq-a>* {
    padding-bottom: 24px;
}

.faq-a p {
    color: #fff;
    font-size: 14px;
    line-height: 23px;
    max-width: 940px;
}

.faq-extra {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease, display 0.35s ease;
    transition-behavior: allow-discrete;
}

.faq-list.is-expanded .faq-extra {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@starting-style {
    .faq-list.is-expanded .faq-extra {
        opacity: 0;
        transform: translateY(10px);
    }
}

.faq-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.faq-more-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-more-btn:hover {
    background: #000;
    border-color: #fff;
}

.Certification-badges {
    display: flex;
    justify-content: center;
    margin-bottom: 11px;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 992px) {
    .faq-section {
        padding: 80px 0 100px;
    }

    .faq-grid {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }

    .faq-title {
        font-size: 48px;
    }

    .faq-q {
        font-size: 17px;
    }

    .pod-badge {
        font-size: 14px;
    }

    .pod-subtitle {
        font-size: 18px;
    }

}

/* ==========================================
   PARTNERS / CERTIFICATIONS BAR
   ========================================== */

.part-section {
    background: #ffffff;
    padding: 40px 0 6px;
}

.part-label {
    color: #000;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
    border: 1px solid #CD2235;
    border-radius: 8px;
    padding: 0 6px;
}

.part-line {
    height: 1px;
    background: #E6E6E9;
}

.part-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
    padding: 28px 0;
}

.part-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.part-logo svg {
    display: block;
    opacity: 0.7;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .part-section {
        padding: 72px 0 6px;
        padding-top: 45px;
    }

    .part-logos {
        gap: 32px 26px;
        padding: 36px 0;
    }
}

/* ==========================================
   CONTACT / PROJECT INQUIRY SECTION
   ========================================== */

.inq-section {
    background: #fff;
    padding: 0px 0 72px;
}

.inq-grid {
    background-color: #E7E8EA;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
    border-radius: 24px;
}

.inq-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #0E0E14;
    margin-bottom: 24px;
}

.inq-title {
    color: #0E0E14;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.inq-subtitle {
    color: #0F172A;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

.inq-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.inq-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.inq-features li svg {
    margin-top: 4px;
}

.inq-features h3 {
    color: #0E0E14;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0px;
}

.inq-features p {
    color: #5E6470;
    font-size: 13px;
    line-height: 24px;
}

/* ── Form card ────────────────────────────── */

.inq-card {
    background: #ffffff;
    border: 1px solid #E6E6E9;
    border-radius: 8px;
    padding: 15px 10px;
}

.inq-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inq-input,
.inq-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #B5B7BD;
    border-radius: 12px;
    color: #0F172A;
    font-size: 14px;
    padding: 14px 16px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inq-input::placeholder,
.inq-textarea::placeholder {
    color: #91949D;
}

.inq-input:focus,
.inq-textarea:focus {
    border-color: #0E0E14;
    box-shadow: 0 0 0 3px rgba(14, 14, 20, 0.06);
}

.inq-textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 21px;
}

.inq-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #0E0E14;
    border: 2px solid #0E0E14;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    overflow: hidden;
}

.inq-submit svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.inq-submit svg polyline {
    transition: stroke 0.3s ease;
}

.inq-submit:hover {
    background: transparent;
    border-color: #0E0E14;
    color: #0E0E14;
}

.inq-submit:hover svg {
    transform: translateX(5px);
}

.inq-submit:hover svg polyline {
    stroke: #0E0E14;
}

.inq-nda {
    display: flex;
    align-items: flex-start;
    font-weight: 600;
    gap: 8px;
    color: #0F172A;
    font-size: 14px;
    margin-top: 12px;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .inq-section {
        padding: 0px 0 72px;
    }

    .inq-title {
        font-size: 40px;
    }

    .inq-card {
        padding: 40px;
        border-radius: 24px;
    }
}

@media (min-width: 992px) {
    .inq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .inq-grid {
        padding: 40px;
    }

    .inq-input,
    .inq-textarea {
        font-size: 16px;
        line-height: 18px;
        padding: 19px 20px;
    }

    .inq-submit {
        padding: 17px 20px;
    }

}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background: #0F172A;
    border-radius: 40px 40px 0 0;
    position: relative;
}

.site-footer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: -1;
}

.foot-offices-group {
    padding: 40px 0;
}

.foot-links-group {
    padding: 40px 0;
    background-color: #FFFFFF0F;
    border-radius: 40px;
}

.footer-awards-group {
    padding: 44px 0 17px;
    /* background: url("/newassets/images/footer-bg.png") no-repeat; */
    /* background-size: cover; */
    background: rgba(10, 10, 16, 0.85);
    box-shadow: 0px 2px 5px 0px #0000001A;
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-awards-group::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #FFFFFF0F;
    backdrop-filter: blur(12px);
    pointer-events: none;
}

/* ── Offices ──────────────────────────────── */

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

.foot-office p,
.foot-office a {
    color: #9A9AA6;
    font-size: 12px;
    line-height: 19px;
}

.foot-office a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
}

.foot-office a:hover {
    color: #E6E6EC;
}

.foot-flag {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #E6E6EC;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.foot-flag img {
    border-radius: 3px;
    flex: none;
    display: block;
    width: 32px;
}

.foot-office a img {
    display: inline-block;
    vertical-align: middle;
    flex: none;
    margin-right: 4px;
    width: 16px;
}

.foot-office span {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
}

.foot-office p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

/* ── Links ────────────────────────────────── */

.foot-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.foot-col h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.foot-col a {
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    font-size: 18px;
}

.foot-col a:hover {
    color: #E6E6EC;
}

.foot-sub {
    margin-top: 32px;
}

.foot-sub-icon {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 17px;
    gap: 8px;
}

.foot-sub h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}

.foot-sub p {
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
}

.foot-sub-form {
    display: flex;
    gap: 8px;
}

.form-wrap {
    position: relative;
}

.foot-sub-form input {
    background: transparent;
    border: 1px solid #B0B0B0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    padding: 11px 110px 11px 14px;
    outline: 0;
    width: 100%;
}

.foot-sub-form input::placeholder {
    color: #8A8A95;
    font-size: 13px;
}

.foot-sub-form button {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid #B0B0B0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

/* .foot-sub-form button:hover {
    background: #E6E6EC;
} */

/* ── Awards ───────────────────────────────── */

.foot-awards-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 31px;
    border-bottom: 1px solid #FFFFFF1A;
}

.foot-aw-label {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 500;
    padding: 1px 14px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.foot-awards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    width: 100%;
    justify-content: center;
}

.foot-aw {
    flex: none;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.foot-aw img {
    display: block;
    width: 120px;
    height: auto;
}

.foot-aw:hover {
    opacity: 1;
}

.foot-sub-icon img {
    display: block;
}

/* ── Bottom bar ───────────────────────────── */

.foot-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #8A8A95;
    font-size: 12px;
    text-align: center;
    padding-top: 15px;
}

.foot-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.foot-social a {
    color: #8A8A8A;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    position: relative;
}

.foot-social a:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #8A8A8A;
    border-radius: 50%;
    transform: translateY(-50%);
}

.foot-social a:hover {
    color: #E6E6EC;
}

.foot-social span {
    color: #5a5a66;
}

.foot-copy,
.foot-legal a {
    color: #8A8A8A;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.foot-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
}


.foot-legal a:hover {
    color: #E6E6EC;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 768px) {
    .foot-offices {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .foot-links {
        grid-template-columns: repeat(4, 1fr);
    }

    .foot-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }

    .foot-aw-label {

        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .foot-awards-card {
        flex-direction: row;
        align-items: center;
        gap: 28px;
    }

    .foot-awards-row {
        justify-content: space-between;
    }
}

/* ==========================================
   SECTION PADDING STANDARDIZATION
   (overrides all section-level padding)
   ========================================== */

.cap-section,
.prod-section,
.case-section,
.tst-section,
.bio-section,
.pod-section,
.faq-section {
    padding: 40px 0;
}

@media (min-width: 768px) {

    .cap-section,
    .prod-section,
    .case-section,
    .tst-section,
    .bio-section,
    .pod-section,
    .faq-section {
        padding: 60px 0;
    }
}

@media (min-width: 1200px) {
    .case-section {
        margin-top: -74px;
    }

    .cap-section,
    .prod-section,
    .case-section,
    .tst-section,
    .bio-section,
    .pod-section,
    .faq-section {
        padding: 80px 0;
    }

    .bio-grid {
        gap: 24px;
    }

    .case-tags {
        margin-bottom: 107px;
    }

    .list-wrap li {
        font-size: 12px;
    }

    .gov-box-info h3 {
        font-size: 14px;
        line-height: 3;
    }
}

@media (min-width: 1366px) {

    .cap-section,
    .prod-section,
    .case-section,
    .tst-section,
    .bio-section,
    .pod-section,
    .faq-section {
        padding: 100px 0;
    }

    .prodx-section {
        padding: 0 0 150px;
    }

    .wz-120 {
        width: auto;
    }

    .gov-box-info h3 {
        font-size: 16px;
    }

    .list-wrap li {
        font-size: 14px;
    }

    .gov-section {
        padding: 100px 0 0;
    }
}
