
        :root {
            --bg: #F6F4EE;
            --panel: #FFFFFF;
            --ink: #181B1D;
            --steel: #5B6570;
            --steel-line: #DAD5C9;
            --rust: #C1440E;
            --orange: #F26B4A;
            --rust-dark: #9C3609;
            --tag: #E7B94C;
            --teal-deep: #B5251D;
            --light-red: #FDF9F6;
            --line-bright: rgba(230, 51, 41, 0.35);
            --maxw: 1280px;
        }

        * {
            box-sizing: border-box;
        }

         ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        html {
            scroll-behavior: smooth;
        }

        /* WhatsApp Floating Icon Animation */
        .whatsapp-float {
            position: relative;
            transition: all 0.3s ease-in-out;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-float::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background-color: rgba(72, 211, 88, 0.4);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: water-drop 1.8s infinite;
            z-index: -1;
        }

        @keyframes water-drop {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.6;
            }

            100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }
        }
        

        body {
            margin: 0;
            background: var(--bg);
            color: var(--ink);
            font-family: 'IBM Plex Sans', Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3 {
            font-family: 'Oswald', Arial, sans-serif;
            text-transform: uppercase;
            letter-spacing: .01em;
            margin: 0;
            color: var(--ink);
        }

        .mono {
            font-family: 'IBM Plex Mono', monospace;
        }

        a {
            color: inherit;
        }

        .wrap {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 0 28px;
        }

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

        .skip-link {
            position: absolute;
            left: -999px;
            top: 0;
            background: #000;
            color: #fff;
            padding: 10px 16px;
            z-index: 200;
        }

        .skip-link:focus {
            left: 12px;
            top: 12px;
        }

        :focus-visible {
            outline: 2px solid var(--teal-deep);
            outline-offset: 2px;
        }

        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--steel-line);
            position: relative;
            z-index: 50;
        }

        .site-header .bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Oswald', sans-serif;
            font-size: 19px;
            font-weight: 600;
            letter-spacing: .02em;
            text-decoration: none;
            color: var(--ink);
        }

        .brand .mark {
            width: 26px;
            height: 26px;
            background: var(--teal-deep);
            border-radius: 3px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
        }

        nav.primary-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 14.5px;
        }

        nav.primary-nav>div {
            position: relative;
        }

        nav.primary-nav>div>button {
            background: none;
            border: 0;
            font: inherit;
            color: var(--ink);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 0;
        }

        nav.primary-nav .caret {
            font-size: 10px;
            color: var(--steel);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid var(--steel-line);
            min-width: 230px;
            padding: 10px;
            display: none;
            box-shadow: 0 12px 24px rgba(20, 20, 15, .08);
        }

        nav.primary-nav>div:hover .dropdown,
        nav.primary-nav>div:focus-within .dropdown {
            display: block;
        }

        .dropdown .kicker {
            font-size: 10.5px;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--teal-deep);
            padding: 6px 10px 8px;
        }

        .dropdown a {
            display: block;
            padding: 8px 10px;
            font-size: 13.5px;
            text-decoration: none;
            border-radius: 2px;
        }

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

        .dropdown a b {
            display: block;
            font-weight: 600;
            color: var(--ink);
        }

        .dropdown a span {
            display: block;
            font-size: 12px;
            color: var(--steel);
            margin-top: 1px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
        }

        .header-right .locale {
            color: var(--steel);
        }

        .cta-btn {
            background: var(--ink);
            color: #fff;
            padding: 9px 16px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13.5px;
            border-radius: 2px;
        }

        .wa-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 80;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
            text-decoration: none;
        }

        .wa-float svg {
            width: 26px;
            height: 26px;
        }

        @media(max-width:920px) {
            nav.primary-nav {
                display: none;
            }

            .header-right .locale {
                display: none;
            }
        }

        .crumb {
            background: transparent;
            border: 0;
            padding: 16px 0 18px;
        }

        .crumb .wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 40px;
            padding: 0;
            background: transparent;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            font-size: 13px;
            color: var(--steel);
        }
        .crumb .crumb-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-deep);
            flex-shrink: 0;
            position: relative;
        }
        .crumb .crumb-icon::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 50%;
            width: 18px;
            height: 2px;
            transform: translateX(-50%);
            background: var(--teal-deep);
            border-radius: 2px;
            opacity: .7;
        }
        .crumb .crumb-icon svg {
            width: 25px;
            height: 25px;
            display: block;
        }
        .crumb a {
            color: var(--steel);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: .25px;
            transition:  color .2s ease,   transform .2s ease;
        }
        .crumb a:hover {
            color: var(--teal-deep);
        }
        .crumb .sep {
            color: #cfd5da;
            font-size: 17px;
            font-weight: 300;
            margin: 0 2px;
        }
        .crumb b {
            color: var(--teal-deep);
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: .3px;
        }

        @media (max-width: 768px) {

            .crumb {
                padding: 12px 0 14px;
            }

            .crumb .wrap {
                gap: 8px;
                flex-wrap: wrap;
                line-height: 1.5;
            }

            .crumb .crumb-icon {
                width: 28px;
                height: 28px;
            }

            .crumb .crumb-icon svg {
                width: 22px;
                height: 22px;
            }

            .crumb a {
                font-size: 11px;
            }

            .crumb .sep {
                font-size: 15px;
            }

            .crumb b {
                font-size: 13px;
            }
        }

        
@media screen and (max-width: 480px) {

    .crumb {
        padding: 8px 0 10px;
    }

    .crumb .wrap {
        gap: 5px;
        padding: 0 10px;
    }

    .crumb .crumb-icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .crumb .crumb-icon svg {
        width: 19px;
        height: 19px;
    }

    .crumb a {
        font-size: 10px;
    }

    .crumb .sep {
        font-size: 13px;
    }

    .crumb b {
        font-size: 11px;
    }
}
        .hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(700px 350px at 90% 10%,
                    rgba(193, 68, 14, 0.10),
                    transparent 70%),
                linear-gradient(180deg,
                    #FFFDFC 0%,
                    #FFF8F4 100%);

            color: #20262d;
            padding: 36px 0 78px;
        }
        .hero::before {
            content: "";
            position: absolute;
            width: 900px;
            height: 900px;
            right: -400px;
            bottom: -560px;
            border-radius: 50%;
            background:
                radial-gradient(circle at center,
                    rgba(255, 112, 94, 0.16) 0%,
                    rgba(255, 135, 115, 0.10) 35%,
                    rgba(255, 160, 140, 0.04) 58%,
                    transparent 72%);
            pointer-events: none;
        }
        .hero::after {
            content: "";
            position: absolute;
            width: 150%;
            height: 360px;
            left: -20%;
            bottom: -275px;
            border-radius: 50% 50% 0 0;
            background:
                linear-gradient(180deg,
                    rgba(255, 120, 100, 0.10),
                    rgba(255, 120, 100, 0.025));
            transform: rotate(-4deg);
            pointer-events: none;
        }
        .hero .wrap {
            position: relative;
            z-index: 5;
        }
        .hero-content {
            max-width: 1080px;
        }

        .eyebrow-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 34px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .13em;
            text-transform: uppercase;
            color: #292d32;
        }
        .chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border: 1px solid rgba(230, 67, 55, 0.28);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.82);
            color: #292d32;
            box-shadow:
                0 4px 14px rgba(80, 30, 20, 0.035);
            backdrop-filter: blur(8px);
            transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
        }
        .chip:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(230, 67, 55, 0.48);
            transform: translateY(-2px);
            box-shadow:
                0 8px 20px rgba(80, 30, 20, 0.08);
        }
        .chip i {
            font-size: 11px;
            color: #ed493d;
        }
        .chip.rust {
            border-color: rgba(230, 67, 55, 0.30);
            background: rgba(255, 248, 246, 0.95);
            color: #292d32;
        }
        .hero-grid {
            display: block;
            position: relative;
        }
        .hero-copy {
            max-width: 900px;
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .16em;
            color: var(--teal-deep);
        }
        .hero-kicker::before {
            content: "";
            width: 28px;
            height: 2px;
            background: var(--teal-deep);
            box-shadow:
                0 0 8px rgba(230, 51, 41, 0.18);
        }
        .hero h1 {
            margin: 0;
            max-width: 900px;
            font-family: 'Manrope', sans-serif;
            font-size: 40px;
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: -0.025em;
            color: #20262d;
        }
        .hero h1 em {
            display: block;
            margin-top: 7px;
            font-style: normal;
            font-weight: 700;
            background: linear-gradient(90deg,
                    #C1440E 0%,
                    #D45722 45%,
                    #E87545 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .heading-gradient-line {
            width: min(520px, 70%);
            height: 5px;
            margin: 30px 0 25px;
            background:
                linear-gradient(90deg,
                    #e63329 0%,
                    #f26b61 40%,
                    rgba(242, 107, 97, 0) 100%);
            border-radius: 50px;
            box-shadow:
                0 0 14px rgba(230, 51, 41, 0.15);
        }
        .hero p.lede {
            max-width: 720px;
            margin: 0;
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            font-weight: 400;
            color: #41474e;
        }
        .hero .wrap::before {
            content: "";
            position: absolute;
            width: 650px;
            height: 650px;
            right: -430px;
            top: 80px;
            border-radius: 50%;
            border: 1px solid rgba(230, 70, 55, 0.12);
            box-shadow:
                0 0 0 75px rgba(230, 70, 55, 0.035),
                0 0 0 150px rgba(230, 70, 55, 0.025);
            pointer-events: none;
        }
        .hero .wrap::after {
            content: "";
            position: absolute;
            width: 9px;
            height: 9px;
            right: 235px;
            top: 325px;
            border-radius: 50%;
            background: #f18b7e;
            box-shadow:
                115px 40px 0 #f29b8d,
                55px 305px 0 #f19a8c,
                -5px 210px 0 #f3a497;
            pointer-events: none;
        }
        .eyebrow-row::after {
            content: "";
            position: absolute;
            width: 170px;
            height: 130px;
            right: -20px;
            top: -10px;
            background-image:
                radial-gradient(circle,
                    rgba(230, 70, 55, 0.28) 1.5px,
                    transparent 1.8px);
            background-size: 21px 21px;
            opacity: .65;
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 55px 0 60px;
            }
            .eyebrow-row {
                margin-bottom: 27px;
            }
            .hero-copy {
                max-width: 100%;
            }
            .hero h1 {
                font-size: 42px;
                line-height: 1.08;
            }
            .hero h1 em {
                margin-top: 5px;
            }
            .hero p.lede {
                font-size: 15px;
                line-height: 1.7;
            }
            .heading-gradient-line {
                width: 80%;
                margin: 24px 0 22px;
            }
            .hero .wrap::before {
                width: 500px;
                height: 500px;
                right: -350px;
                top: 180px;
            }
            .hero .wrap::after {
                right: 80px;
                top: 400px;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 45px 0 50px;
            }
            .eyebrow-row {
                gap: 7px;
            }
            .chip {
                font-size: 9px;
                padding: 6px 9px;
            }
            .hero-kicker {
                font-size: 9px;
            }
            .hero h1 {
                font-size: 35px;
                letter-spacing: -0.035em;
            }
            .hero p.lede {
                font-size: 14px;
            }
            .heading-gradient-line {
                width: 90%;
                height: 4px;
            }
            .hero .wrap::before {
                width: 350px;
                height: 350px;
                right: -250px;
                top: 300px;
            }
            .hero .wrap::after {
                display: none;
            }
        }
        .quick-answer {
            background: transparent;
            border-bottom: 1px solid var(--steel-line);
            padding: 18px 0 48px;
        }
        .quick-answer .box {
            padding: 0;
        }
        .quick-answer .intro {
            background: var(--light-red);
            border: 1px solid var(--steel-line);
            border-left: 3px solid var(--orange);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 14px;
            box-shadow: 0 3px 12px rgba(20, 30, 40, 0.04);
        }
        .quick-answer h2 {
            font-size: 13px;
            letter-spacing: .12em;
            color: var(--teal-deep);
            margin: 0 0 10px;
        }
        .quick-answer p {
            font-size: 15.5px;
            color: #3F4650;
            line-height: 1.65;
            max-width: 900px;
            margin: 0;
        }
        .quick-answer ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        .quick-answer li {
            min-width: 0;
            background: var(--panel);
            border: 1px solid var(--steel-line);
            border-left: 2px solid var(--orange);
            border-radius: 9px;
            padding: 14px 16px;
            font-size: 13.5px;
            color: var(--steel);
            line-height: 1.5;
            box-shadow: 0 2px 8px rgba(20, 30, 40, 0.03);
            transition:
                transform .2s ease,
                box-shadow .2s ease;
        }
        .quick-answer li:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 16px rgba(20, 30, 40, 0.07);
        }
        .quick-answer .quick-icon {
            width: 48px;
            height: 48px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-bottom: 14px;

            border-radius: 50%;

            background: #fff4ed;
            color: var(--teal-deep);
        }

        .quick-answer .quick-icon svg {
            width: 27px;
            height: 27px;

            display: block;
        }

        .quick-answer li b {
            display: block;

            color: var(--ink);

            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;

            margin-bottom: 5px;
        }

        @media(max-width: 1000px) {

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

        }

        @media(max-width: 600px) {

            .quick-answer ul {
                grid-template-columns: 1fr;
                gap: 9px;
            }

            .quick-answer li {
                padding: 12px 14px;
            }

            .quick-answer .quick-icon {
                width: 42px;
                height: 42px;
                margin-bottom: 10px;
            }

            .quick-answer .quick-icon svg {
                width: 24px;
                height: 24px;
            }

        }

        section {
            padding: 60px 0;
        }



        .eyebrow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;

            color: var(--teal-deep);
            font-family: 'IBM Plex Mono', monospace;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;

            margin-bottom: 18px;

        }

        .eyebrow::before {
            content: "";
            width: 40px;
            height: 3px;
            background: var(--teal-deep);
            display: inline-block;
            flex: 0 0 auto;
        }

        h2.h2 {
            font-size: 29px;
            line-height: 1.22;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            letter-spacing: -0.04em;

            text-align: center;
            max-width: 860px;
            margin: 0 auto 0;
        }



        .challenge {
            background: #ffffff;
            border-top: 1px solid var(--steel-line);
            border-bottom: 1px solid var(--steel-line);
            padding: 68px 0 74px;
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
            gap: 58px;
            align-items: center;
        }

        .challenge-content {
            min-width: 0;
        }

        .challenge-content .eyebrow {
            justify-content: start;
        }

        .challenge-content .h2 {
            text-align: start;
        }

        .challenge-line {
            width: 86px;
            height: 4px;
            margin: 24px 0 30px;
            background: var(--teal-deep);
        }

        .challenge-title {
            margin: 0;
            max-width: 720px;

            font-family: 'Oswald', Arial, sans-serif;
            font-size: 29px;
            line-height: 1.28;
            font-weight: 600;

            letter-spacing: .01em;
            text-transform: uppercase;

            color: var(--ink);
        }

        .challenge-dots {
            width: 44px;
            height: 28px;

            display: grid;
            grid-template-columns: repeat(4, 5px);
            grid-auto-rows: 5px;

            gap: 5px;

            margin: 26px 0 25px;
        }

        .challenge-dots span {
            width: 4px;
            height: 4px;

            background: var(--teal-deep);
            border-radius: 50%;
        }

        .challenge-text {
            margin: 0;
            max-width: 720px;

            color: #3f4c63;

            font-family: 'IBM Plex Sans', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.78;
            font-weight: 400;
        }

        .manifest {
            width: 100%;
            background: #fff;

            border: 1px solid #ddd9d1;
            border-radius: 10px;

            overflow: hidden;

            box-shadow:
                0 8px 24px rgba(24, 27, 29, .045);
        }

        .manifest-head {
            min-height: 64px;

            display: flex;
            align-items: center;

            gap: 16px;

            padding: 0 24px;

            background: linear-gradient(135deg,
                    #252b34 0%,
                    #1c222b 100%);

            color: #f4f1e8;

            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: 500;

            letter-spacing: .11em;
            text-transform: uppercase;
        }

        .manifest-head-icon {
            width: 26px;
            height: 26px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: var(--teal-deep);

            flex: none;
        }

        .manifest-head-icon svg {
            width: 26px;
            height: 26px;
        }


        .manifest-list {
            list-style: none;
            margin: 0;
            padding: 0;
            background: #fff;
        }

        .manifest-item {
            position: relative;
            min-height: 112px;
            display: grid;
            grid-template-columns: 48px 1px minmax(0, 1fr);
            align-items: center;
            gap: 20px;
            padding: 16px 24px 16px 32px;
            border-top: 1px solid #e7e3dc;
            background: #fff;
            transition:
                background .2s ease,
                transform .2s ease;
        }

        .manifest-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 14px;
            bottom: 14px;
            width: 3px;
            background: var(--orange);
            border-radius: 0 2px 2px 0;
        }

        .manifest-number {
            width: 32px;
            height: 32px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #fff8f3;

            border: 1px solid rgba(193, 68, 14, .08);

            color: var(--teal-deep);

            font-family: 'IBM Plex Mono', monospace;

            font-size: 14px;
            font-weight: 600;

            line-height: 1;

            box-shadow: none;
        }

        .manifest-divider {
            width: 1px;
            height: 42px;

            background:
                repeating-linear-gradient(to bottom,
                    #d9d5cd 0 3px,
                    transparent 3px 7px);
        }


        .manifest-item p {
            margin: 0;

            color: #26313e;

            font-family: 'IBM Plex Sans', Arial, sans-serif;

            font-size: 15px;
            line-height: 1.55;

            font-weight: 400;

            max-width: 440px;
        }

        .manifest-item:hover {
            background: #fffdfa;
        }

        .manifest-item:hover::before {
            background: var(--teal-deep);
        }


        .manifest-item:last-child {
            padding-bottom: 18px;
        }

        @media (max-width: 1000px) {

            .challenge-grid {
                grid-template-columns: 1fr;
                gap: 42px;
            }

            .challenge-title {
                max-width: 800px;
            }

            .challenge-text {
                max-width: 850px;
            }
        }

        @media (max-width: 600px) {

            .challenge {
                padding: 48px 0 52px;
            }

            .challenge-grid {
                gap: 34px;
            }

            .challenge-line {
                margin: 18px 0 22px;
            }

            .challenge-title {
                font-size: 26px;
                line-height: 1.25;
            }

            .challenge-text {
                font-size: 15px;
                line-height: 1.7;
            }

            .manifest-head {
                min-height: 58px;

                padding: 0 18px;

                gap: 12px;

                font-size: 10.5px;

                letter-spacing: .07em;
            }

            .manifest-head-icon {
                width: 24px;
                height: 24px;
            }

            .manifest-head-icon svg {
                width: 24px;
                height: 24px;
            }

            .manifest-item {
                min-height: 92px;

                grid-template-columns: 38px 1px minmax(0, 1fr);

                gap: 14px;

                padding: 14px 16px 14px 22px;
            }

            .manifest-number {
                width: 30px;
                height: 30px;

                font-size: 12px;
            }

            .manifest-divider {
                height: 38px;
            }

            .manifest-item p {
                font-size: 13.5px;
                line-height: 1.5;
            }

        }

        .objectives {
            background: var(--bg);
            padding: 52px 0 56px;
        }

        .objectives .eyebrow {
            margin-bottom: 12px;
        }

        .objectives .h2 {
            margin-bottom: 26px;
        }

        .obj-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .obj-item {
            position: relative;

            display: grid;
            grid-template-columns: 80px 1fr;
            align-items: center;

            min-height: 82px;

            background: var(--panel);

            border: 1px solid var(--steel-line);
            border-radius: 6px;

            overflow: hidden;

            transition:
                transform .2s ease,
                box-shadow .2s ease,
                border-color .2s ease;
        }

        .obj-item::before {
            content: "";

            position: absolute;
            inset: 0 auto 0 0;

            width: 5px;

            background: var(--orange);
            z-index: 100;
        }

        .obj-item .no {
            position: relative;

            display: flex;
            align-items: center;
            justify-content: center;

            height: 100%;

            color: var(--teal-deep);

            font-family: 'IBM Plex Mono', monospace;
            font-size: 24px;
            font-weight: 500;
            background: var(--light-red);
        }

        .obj-item .no::after {
            content: "";
            position: absolute;
            top: 0;
            right: -18px;
            width: 36px;
            height: 100%;
            background: var(--light-red);
            clip-path: polygon(50% 0, 100% 50%, 50% 100%);
        }

        .obj-item p {
            margin: 0;
            padding: 14px 30px 14px 34px;
            color: var(--ink);
            font-size: 15.5px;
            line-height: 1.55;
        }

        .obj-item:hover {
            transform: translateX(3px);
            border-color: var(--orange);
            box-shadow:
                0 5px 18px rgba(20, 30, 40, .06);
        }

        @media (max-width: 860px) {
            .objectives {
                padding: 42px 0;
            }

            .obj-item {
                grid-template-columns: 120px 1fr;
                min-height: 76px;
            }

            .obj-item .no {
                font-size: 24px;
            }

            .obj-item p {
                padding: 12px 22px 12px 28px;
            }
        }

        @media (max-width: 600px) {

            .objectives {
                padding: 34px 0;
            }

            .obj-list {
                gap: 5px;
            }

            .obj-item {
                grid-template-columns: 72px 1fr;
                min-height: 68px;
            }

            .obj-item::before {
                width: 3px;
            }

            .obj-item .no {
                font-size: 20px;
            }

            .obj-item .no::after {
                right: -12px;
                width: 24px;
            }

            .obj-item p {
                padding: 10px 14px 10px 20px;

                font-size: 13.5px;
                line-height: 1.5;
            }
        }

        .solution {
            background: var(--panel);
            border-top: 0;
            border-bottom: 0;
        }

        .flow {
            margin-top: 32px;

            display: grid;
            grid-template-columns: repeat(3, 1fr);

            background: #f4f2ed;

            border-radius: 10px;
            overflow: hidden;

            position: relative;
        }

        .flow-step {
            position: relative;

            min-height: 250px;

            padding: 20px 32px 26px;

            background: #f4f2ed;
        }

        .step-top {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .step-number {
            flex: 0 0 auto;

            width: 66px;
            height: 66px;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid var(--orange);
            border-radius: 5px;

            color: var(--rust);

            font-family: 'IBM Plex Mono', monospace;
            font-size: 30px;
            font-weight: 600;

            line-height: 1;
        }

        .step-label {
            padding-top: 11px;
        }


        .step-label>span {
            display: block;

            color: var(--rust);

            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: 600;

            letter-spacing: .06em;
            text-transform: uppercase;

            margin-bottom: 13px;
        }


        .step-label h3 {
            margin: 0;

            font-size: 18px;
            line-height: 1.25;
        }

        .step-line {
            width: 52px;
            height: 3px;

            background: var(--orange);

            margin-top: 18px;
            margin-bottom: 14px;
        }

        .flow-step p {
            margin: 0;

            max-width: 440px;

            color: var(--steel);
            padding-left: 10px;

            font-size: 14.5px;
            line-height: 1.6;
        }

        .flow-step:not(:last-child)::after {
            content: "";

            position: absolute;

            top: 0;
            right: -1px;

            width: 3px;
            height: 100%;

            background: var(--steel-line);

            transform: skewX(8deg);

            transform-origin: top;

            z-index: 3;
        }

        .flow-step:not(:last-child)::before {
            content: "";

            position: absolute;

            top: 0;
            right: -2px;

            width: 2px;
            height: 100%;

            background: var(--rust);

            transform: skewX(8deg);

            transform-origin: top;

            z-index: 4;

            opacity: .9;
        }

        .capability-list {
            margin-top: 26px;

            display: grid;
            grid-template-columns: 1fr 1fr;

            column-gap: 40px;
            row-gap: 0;
        }

        .capability {
            display: flex;
            align-items: flex-start;

            gap: 22px;

            padding: 12px 0 18px;

            border-top: 1px solid var(--steel-line);
        }

        .capability:nth-child(1),
        .capability:nth-child(2) {
            border-top: 0;
        }

        .capability-icon {
            flex: 0 0 auto;

            width: 70px;
            height: 70px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: var(--orange);

            border-radius: 5px;
        }


        .capability-icon svg {
            width: 38px;
            height: 38px;
                color: #fff;


            fill: none;
            stroke: #fff;

            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .capability-content {
            padding-top: 2px;
        }


        .capability h4 {
            margin: 0 0 5px;

            font-family: 'IBM Plex Sans', sans-serif;

            text-transform: none;

            font-size: 15.5px;
            font-weight: 600;

            line-height: 1.35;
        }


        .capability p {
            margin: 0;

            color: var(--steel);

            font-size: 14px;
            line-height: 1.55;
        }

        @media (max-width: 1100px) {

            .flow-step {
                padding: 20px 24px 24px;
            }

            .step-top {
                gap: 14px;
            }

            .step-number {
                width: 58px;
                height: 58px;
                font-size: 27px;
            }

            .step-label h3 {
                font-size: 17px;
            }

            .capability {
                gap: 16px;
            }

            .capability-icon {
                width: 60px;
                height: 60px;
            }

            .capability-icon svg {
                width: 32px;
                height: 32px;
            }
        }

        @media (max-width: 860px) {

            .flow {
                grid-template-columns: 1fr;

                border-radius: 8px;
            }


            .flow-step {
                min-height: auto;

                padding: 22px 24px 24px;
            }


            /* Remove angled dividers */
            .flow-step:not(:last-child)::after,
            .flow-step:not(:last-child)::before {
                display: none;
            }


            /* Horizontal divider */
            .flow-step:not(:last-child) {
                border-bottom: 1px solid var(--steel-line);
            }


            .capability-list {
                grid-template-columns: 1fr;

                column-gap: 0;
            }


            .capability:nth-child(2) {
                border-top: 1px solid var(--steel-line);
            }
        }

        @media (max-width: 520px) {

            .flow-step {
                padding: 20px;
            }


            .step-top {
                gap: 14px;
            }


            .step-number {
                width: 52px;
                height: 52px;

                font-size: 24px;
            }


            .step-label {
                padding-top: 7px;
            }


            .step-label>span {
                font-size: 12px;
                margin-bottom: 9px;
            }


            .step-label h3 {
                font-size: 17px;
            }


            .flow-step p {
                font-size: 14px;
            }


            .capability {
                gap: 14px;
            }


            .capability-icon {
                width: 54px;
                height: 54px;
            }


            .capability-icon svg {
                width: 29px;
                height: 29px;
            }


            .capability h4 {
                font-size: 15px;
            }


            .capability p {
                font-size: 13.5px;
            }
        }

.pairs {
    background: var(--bg);

    background-image:
        linear-gradient(
            rgba(45, 45, 45, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(45, 45, 45, 0.06) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}


/* =========================================
   PAIR LIST
========================================= */

.pair-list {
    margin-top: 24px;

    display: flex;
    flex-direction: column;

    gap: 7px;
}


/* =========================================
   PAIR
========================================= */

.pair {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 1px minmax(0, 1fr);

    min-height: 120px;

    width: 100%;

    background: var(--panel);

    border: 1px solid var(--steel-line);

    border-radius: 9px;

    overflow: visible;

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


/* =========================================
   ORANGE LEFT BORDER
========================================= */

.pair::before {
    content: "";

    position: absolute;

    left: -1px;
    top: -1px;
    bottom: -1px;

    width: 6px;

    background: var(--orange);

    border-radius: 9px 0 0 9px;

    z-index: 3;
}


/* =========================================
   PROBLEM / CHALLENGE
========================================= */

.pair .problem {
    grid-column: 1;

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 15px 22px 15px 28px;

    box-sizing: border-box;

    background: var(--panel);
}


/* =========================================
   ICON
========================================= */

.pair-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid rgba(28, 42, 51, 0.08);

    border-radius: 8px;

    color: var(--teal-deep);

    box-shadow:
        0 3px 9px rgba(24, 36, 44, 0.07);

    box-sizing: border-box;
}


.pair-icon svg {
    width: 32px;
    height: 32px;

    display: block;

    flex-shrink: 0;
}


/* =========================================
   CONTENT
========================================= */

.pair-content {
    min-width: 0;

    flex: 1;
}


/* =========================================
   LABEL
========================================= */

.pair .k {
    display: block;

    margin: 0 0 5px;

    font-family: 'IBM Plex Mono', monospace;

    font-size: 11px;

    line-height: 1;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    font-weight: 600;
}


.pair .problem .k,
.pair .solution-cell .k {
    color: var(--teal-deep);
}


/* =========================================
   HEADING
========================================= */

.pair h4 {
    margin: 0 0 5px;

    font-family: 'IBM Plex Sans', sans-serif;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 600;

    color: var(--ink);

    text-transform: none;
}


/* =========================================
   PARAGRAPH
========================================= */

.pair p {
    margin: 0;

    font-family: 'IBM Plex Sans', sans-serif;

    font-size: 13.5px;

    line-height: 1.45;

    color: var(--steel);
}


/* =========================================
   SOLUTION
========================================= */

.pair .solution-cell {
    grid-column: 3;

    min-width: 0;

    display: flex;

    align-items: center;

    padding: 15px 25px 15px 30px;

    border-left: 1px solid var(--steel-line);

    box-sizing: border-box;

    background:
        linear-gradient(
            90deg,
            rgba(248, 247, 244, 0.65),
            rgba(255, 255, 255, 0.15)
        );
}


.solution-content {
    width: 100%;

    max-width: 620px;

    min-width: 0;
}


/* =========================================
   DESKTOP ARROW
========================================= */

.pair-arrow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    z-index: 10;

    pointer-events: none;
}


.pair-arrow::before {
    content: "";

    position: absolute;

    inset: 0;

    width: 52px;
    height: 52px;

    box-sizing: border-box;

    background: var(--panel);

    border: 2px solid rgba(239, 87, 28, 0.20);

    border-radius: 50%;

    box-shadow:
        0 2px 8px rgba(20, 30, 40, 0.04);
}


.pair-arrow span {
    position: relative;

    z-index: 2;

    display: block;

    color: var(--teal-deep);

    font-family: Arial, sans-serif;

    font-size: 26px;

    line-height: 1;

    font-weight: 300;

    transform: translateY(-1px);
}


/* =========================================
   HOVER
========================================= */

.pair:hover {
    transform: translateY(-1px);

    border-color: rgba(239, 87, 28, 0.20);

    box-shadow:
        0 7px 18px rgba(20, 30, 40, 0.06);
}


.pair:hover .pair-arrow::before {
    border-color: rgba(239, 87, 28, 0.35);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .pair {
        grid-template-columns:
            minmax(0, 1fr) 1px minmax(0, 1fr);

        min-height: 135px;
    }


    .pair .problem {
        grid-column: 1;

        gap: 15px;

        padding:
            13px 18px 13px 25px;
    }


    .pair-icon {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;

        border-radius: 7px;
    }


    .pair-icon svg {
        width: 29px;
        height: 29px;
    }


    .pair .solution-cell {
        grid-column: 3;

        padding:
            13px 20px 13px 24px;
    }


    .pair-arrow {
        width: 48px;
        height: 48px;
    }


    .pair-arrow::before {
        width: 48px;
        height: 48px;
    }


    .pair-arrow span {
        font-size: 24px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

    .pair-list {
        margin-top: 22px;

        gap: 6px;
    }


    /* 
       IMPORTANT:
       Three rows:
       1. Challenge
       2. 0px arrow row
       3. Fix
       
       This makes the arrow sit directly
       on the line between the two sections.
    */
    .pair {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows:
            auto
            0
            auto;

        min-height: 0;

        overflow: visible;
    }


    .pair::before {
        top: 0;
        bottom: 0;

        width: 5px;

        border-radius: 8px 0 0 8px;
    }


    /* =====================================
       CHALLENGE
    ===================================== */

    .pair .problem {
        grid-column: 1;
        grid-row: 1;

        display: flex;

        align-items: center;

        gap: 14px;

        padding:
            16px 16px 16px 22px;

        min-width: 0;
    }


    .pair-icon {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;

        border-radius: 7px;
    }


    .pair-icon svg {
        width: 29px;
        height: 29px;
    }


    /* =====================================
       ARROW
       
       Arrow is placed in a 0px grid row,
       directly on the border line.
    ===================================== */

    .pair-arrow {
        position: relative;

        grid-column: 1;
        grid-row: 2;

        left: auto;
        top: auto;

        width: 100%;
        height: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        transform: none;

        padding: 0;

        z-index: 20;

        pointer-events: none;
    }


    /* Circle */

    .pair-arrow::before {
        content: "";

        position: absolute;

        top: 0;
        left: 50%;

        width: 36px;
        height: 36px;

        transform: translate(-50%, -50%);

        box-sizing: border-box;

        background: var(--panel);

        border: 2px solid rgba(239, 87, 28, 0.28);

        border-radius: 50%;

        box-shadow:
            0 2px 8px rgba(20, 30, 40, 0.04);
    }


    /* Arrow */

    .pair-arrow span {
        position: absolute;

        top: 0;
        left: 50%;

        z-index: 2;

        display: block;

        color: var(--orange);

        font-family: Arial, sans-serif;

        font-size: 19px;

        line-height: 1;

        font-weight: 300;

        transform:
            translate(-50%, -50%)
            rotate(90deg);
    }


    /* =====================================
       FIX / SOLUTION
    ===================================== */

    .pair .solution-cell {
        grid-column: 1;
        grid-row: 3;

        min-width: 0;

        display: flex;

        align-items: center;

        border-left: 0;

        /*
           This creates the horizontal line
           passing directly behind the arrow.
        */
        border-top: 1px solid var(--steel-line);

        padding:
            15px 18px 17px 22px;

        box-sizing: border-box;
    }


    .solution-content {
        width: 100%;

        max-width: none;

        min-width: 0;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pair .problem {
        gap: 12px;

        padding:
            14px 14px 14px 19px;
    }


    .pair-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        border-radius: 7px;
    }


    .pair-icon svg {
        width: 27px;
        height: 27px;
    }


    .pair .k {
        font-size: 10px;

        margin-bottom: 5px;
    }


    .pair h4 {
        font-size: 15px;

        line-height: 1.28;

        margin-bottom: 4px;
    }


    .pair p {
        font-size: 13.5px;

        line-height: 1.45;
    }


    /* =====================================
       CENTER ARROW ON LINE
    ===================================== */

    .pair-arrow {
        width: 100%;

        height: 0;

        justify-content: center;

        padding: 0;
    }


    .pair-arrow::before {
        width: 36px;
        height: 36px;

        top: 0;
        left: 50%;

        transform: translate(-50%, -50%);
    }


    .pair-arrow span {
        top: 0;
        left: 50%;

        font-size: 19px;

        transform:
            translate(-50%, -50%)
            rotate(90deg);
    }


    .pair .solution-cell {
        grid-column: 1;

        padding:
            14px 16px 16px 19px;
    }
}

    .plate-wrap {
            /* padding: 0 0 30px;
            background: var(--bg);
              background-image:
        linear-gradient(
            rgba(45, 45, 45, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(45, 45, 45, 0.06) 1px,
            transparent 1px
        );

    background-size: 50px 50px; */

    margin-top: 32px;
    
        } 

        .plate {
            position: relative;
            display: flex;
            min-height: 225px;

            overflow: hidden;

            background:
                radial-gradient(circle at 92% 18%,
                    rgba(39, 76, 115, 0.16),
                    transparent 28%),
                linear-gradient(135deg,
                    #152b43 0%,
                    #11263d 55%,
                    #172e48 100%);

            color: #f4f1e8;

            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);

            box-shadow: 0 14px 28px rgba(15, 25, 35, .16);
        }

        .plate-left {
            position: relative;

            flex: 0 0 175px;
            min-height: 225px;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .plate-left::after {
            content: "";

            position: absolute;

            top: -20px;
            right: 0;

            width: 2px;
            height: 325px;

            background: linear-gradient(to bottom,
                    #80602d,
                    #f1c56b 50%,
                    #80602d);

            transform: rotate(-14deg);
        }

        .plate-left::before {
            content: "";

            position: absolute;

            width: 115px;
            height: 115px;

            left: 30px;
            top: 75px;

            border-radius: 50%;

            background:
                repeating-radial-gradient(circle,
                    rgba(47, 86, 122, .25) 0,
                    rgba(47, 86, 122, .25) 1px,
                    transparent 1px,
                    transparent 13px);

            opacity: .45;
        }

        .quote-mark {
            position: relative;
            z-index: 2;

            margin-top: -5px;

            font-family: Georgia, "Times New Roman", serif;

            font-size: 68px;
            line-height: .7;

            font-weight: 700;

            letter-spacing: -11px;

            color: #f0c56f;
        }

        .plate-content {
            position: relative;
            z-index: 2;

            flex: 1;

            padding: 30px 35px 25px 30px;

            display: flex;
            flex-direction: column;
        }

        .plate-heading {
            display: flex;
            align-items: center;

            width: 100%;

            margin-bottom: 18px;
        }


        .plate-heading-icon {
            width: 38px;
            height: 38px;

            flex: 0 0 38px;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid #c5953d;
            border-radius: 50%;

            color: #e8b94f;

            font-size: 16px;
        }


        .plate-heading-text {
            margin-left: 11px;

            white-space: nowrap;

            font-family: 'Oswald', sans-serif;

            font-size: 14px;
            line-height: 1;

            font-weight: 500;

            letter-spacing: .02em;

            color: #efb941;
        }



        .plate-heading-line {
            flex: 1;

            height: 1px;

            margin-left: 15px;

            background: linear-gradient(to right,
                    rgba(210, 165, 76, .8),
                    rgba(210, 165, 76, .18));
        }


        .plate-quote {
            margin: 0;

            max-width: 850px;

            font-family: 'Oswald', sans-serif;

            font-size: 18px;
            line-height: 1.55;

            font-weight: 400;

            letter-spacing: .005em;

            color: #f5f5f3;
        }



        .plate-divider {
            width: 100%;
            height: 1px;

            margin-top: 14px;
            margin-bottom: 13px;

            background: rgba(255, 255, 255, .12);
        }

        .plate-source {
            display: flex;
            align-items: center;
        }


        /* Source icon */

        .source-icon {
            width: 52px;
            height: 52px;

            flex: 0 0 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                radial-gradient(circle at 35% 30%,
                    #2d4d70,
                    #203d5d);

            color: #f1c45f;

            font-size: 21px;

            border: 1px solid rgba(255, 255, 255, .04);
        }


        /* Source text */

        .source-text {
            margin-left: 11px;
        }


        .source-name {
            font-family: 'Oswald', sans-serif;

            font-size: 14px;
            line-height: 1.2;

            font-weight: 400;

            color: #efbd57;
        }


        .source-program {
            margin-top: 3px;

            font-family: 'Oswald', sans-serif;

            font-size: 12px;
            line-height: 1.25;

            font-weight: 300;

            color: #c4cbd2;
        }

        @media (max-width: 650px) {

            .plate {
                display: block;
                min-height: auto;
            }

            .plate-left {
                min-height: 65px;
                height: 65px;
            }

            .plate-left::after {
                display: none;
            }

            .plate-left::before {
                width: 90px;
                height: 90px;

                left: 18px;
                top: -12px;
            }

            .quote-mark {
                position: absolute;

                left: 25px;
                top: 30px;

                font-size: 55px;
            }

            .plate-content {
                padding: 20px 18px 22px;
            }

            .plate-heading {
                margin-bottom: 15px;
            }

            .plate-heading-icon {
                width: 34px;
                height: 34px;
                flex-basis: 34px;

                font-size: 14px;
            }

            .plate-heading-text {
                margin-left: 9px;
                font-size: 12px;
            }

            .plate-heading-line {
                margin-left: 10px;
            }

            .plate-quote {
                font-size: 16px;
                line-height: 1.5;
            }

            .plate-divider {
                margin-top: 12px;
                margin-bottom: 11px;
            }

            .source-icon {
                width: 44px;
                height: 44px;
                flex-basis: 44px;

                font-size: 18px;
            }

            .source-text {
                margin-left: 9px;
            }

            .source-name {
                font-size: 13px;
            }

            .source-program {
                font-size: 11px;
            }
        }




        .results {
            background: var(--panel);
            border-top: 1px solid var(--steel-line);
            border-bottom: 1px solid var(--steel-line);
            padding: 72px 0 58px;
        }

        .result-grid {
            margin-top: 52px;

            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));

            gap: 16px;

            background: transparent;
        }


        .result-card {
            position: relative;

            min-height: 200px;

            background: var(--light-red);

            border-radius: 5px;

            padding: 70px 28px 28px;

            display: flex;
            align-items: flex-start;

            box-sizing: border-box;
            
              
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);

    
    color: var(--steel);
        }


        .result-card .ico {
            position: absolute;

            top: -32px;
            left: 50%;

            transform: translateX(-50%);

            width: 64px;
            height: 64px;

            display: flex;
            align-items: center;
            justify-content: center;

            box-sizing: border-box;

            border-radius: 50%;

            background: var(--panel);

            border: 2px solid #e5dfd5;

            color: var(--teal-deep);

            font-family: 'IBM Plex Mono', monospace;
            font-size: 22px;
            font-weight: 600;
            line-height: 1;

            z-index: 3;
        }


        .result-card::before {
            content: "";

            position: absolute;

            top: -16px;
            left: 10px;
            right: 10px;

            height: 2px;

            background: #e5dfd5;

            border-radius: 2px;
        }

        .result-card::after {
            content: "";

            position: absolute;

            top: -17px;
            left: 50%;

            transform: translateX(-50%);

            width: 88px;
            height: 4px;

            background: var(--panel);

            z-index: 2;
        }



        .result-card p {
            margin: 0;
            color: var(--steel);
            

            font-size: 15px;
            line-height: 1.65;
            font-weight: 420;
        }

        @media (max-width: 1100px) {

            .results {
                padding: 64px 0 52px;
            }

            .results .h2 {
                font-size: 38px;
            }

            .result-grid {
                gap: 12px;
                margin-top: 48px;
            }

            .result-card {
                min-height: 210px;
                padding: 68px 22px 24px;
            }

            .result-card p {
                font-size: 14px;
                line-height: 1.6;
            }
        }

        @media (max-width: 860px) {

            .results {
                padding: 55px 0 45px;
            }

            .results .h2 {
                font-size: 34px;
                line-height: 1.15;
            }

            .result-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                margin-top: 48px;
            }

            .result-card {
                min-height: 205px;
                padding: 66px 22px 24px;
            }
        }

        @media (max-width: 560px) {

            .results {
                padding: 45px 0 38px;
            }

            .results .eyebrow {
                font-size: 12px;
                gap: 9px;
            }

            .results .eyebrow::before {
                width: 30px;
                height: 2px;
            }

            .results .h2 {
                font-size: 29px;
                line-height: 1.18;
                letter-spacing: -0.3px;
            }

            .result-grid {
                grid-template-columns: 1fr;
                gap: 34px;
                margin-top: 52px;
            }

            .result-card {
                min-height: 175px;
                padding: 62px 22px 24px;
            }

            .result-card p {
                font-size: 14px;
                line-height: 1.6;
            }

            .result-card .ico {
                width: 68px;
                height: 68px;

                top: -29px;

                font-size: 20px;
            }

            .result-card .ico::after {
                width: 68px;
                height: 34px;
            }
        }

        .conclusion {
            background: var(--bg);
            position: relative;
            overflow: hidden;
        }

        .conclusion-wrap {

            margin-top: 32px;
            position: relative;
            display: grid;
            background: var(--bg);
            padding: 24px 0;
            border-left: 5px solid var(--orange);
            border-radius: 10px;
            grid-template-columns: 6px 108px minmax(0, 840px);
            column-gap: 26px;
            align-items: start;
        }

        .conclusion-icon {
            width: 66px;
            height: 66px;

            margin-top: 2px;

            border-radius: 50%;

            background: #ffffff;

            color: var(--teal-deep);

            display: flex;
            align-items: center;
            justify-content: center;

            box-shadow:
                0 8px 18px rgba(25, 30, 35, 0.12),
                0 2px 5px rgba(25, 30, 35, 0.06);

            flex-shrink: 0;
        }

        .conclusion-icon svg {
            width: 42px;
            height: 42px;

            display: block;
        }

        .conclusion-content {
            min-width: 0;
        }

        .conclusion-content .eyebrow {
            justify-content: start;
        }

        .conclusion-content .h2 {
            justify-content: start;
            max-width: 100%;
            margin: 0 0;

            text-align: start;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.03em;

        }

        .conclusion p {
            font-size: 16px;
            line-height: 1.75;

            color: var(--steel);

            max-width: 840px;

            margin: 26px 0 0;
        }

        @media (max-width: 900px) {

            .conclusion-wrap {
                grid-template-columns: 4px 82px minmax(0, 1fr);

                column-gap: 20px;

                padding-top: 70px;
                padding-bottom: 70px;
            }

            .conclusion-icon {
                width: 68px;
                height: 68px;
            }

            .conclusion-icon svg {
                width: 34px;
                height: 34px;
            }

            .conclusion-accent {
                height: 100%;
                min-height: 400px;
            }
        }


        @media (max-width: 650px) {

            .conclusion-wrap {
                display: block;

                padding: 55px 24px;
            }

            .conclusion-accent {
                position: absolute;

                left: 0;
                top: 55px;

                width: 3px;
                height: calc(100% - 110px);

                min-height: 0;
            }

            .conclusion-icon {
                width: 62px;
                height: 62px;

                margin-left: 22px;
                margin-bottom: 22px;
            }

            .conclusion-icon svg {
                width: 31px;
                height: 31px;
            }

            .conclusion-content {
                margin-left: 22px;
            }

            .conclusion .eyebrow {
                margin-bottom: 20px;
            }

            .conclusion .eyebrow::after {
                width: 150px;
                height: 2px;
            }

            .conclusion p {
                font-size: 16px;
                line-height: 1.7;
            }
        }


        /* =========================================
   TABLET VIEW
   561px - 900px
========================================= */

@media screen and (min-width: 561px) and (max-width: 900px) {

    /* =========================
       RESULTS SECTION
    ========================= */

    .results {
        padding: 60px 0 50px;
    }

    .results .h2 {
        font-size: 34px;
        line-height: 1.2;
    }


    /* =========================
       RESULT GRID
    ========================= */

    .result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;

        margin-top: 50px;
    }


    /* =========================
       RESULT CARD
    ========================= */

    .result-card {
        min-height: 200px;

        padding: 68px 22px 26px;

        border-radius: 6px;
    }

    .result-card p {
        font-size: 14px;
        line-height: 1.65;
    }


    /* =========================
       RESULT CARD ICON
    ========================= */

    .result-card .ico {
        width: 64px;
        height: 64px;

        top: -31px;

        font-size: 20px;
    }

    .result-card::before {
        top: -15px;
        left: 10px;
        right: 10px;
    }

    .result-card::after {
        top: -17px;
        width: 86px;
    }


    /* =========================
       CONCLUSION
    ========================= */

    .conclusion-wrap {
        grid-template-columns: 4px 80px minmax(0, 1fr);

        column-gap: 20px;

        margin-top: 30px;

        padding: 50px 0;
    }


    /* =========================
       CONCLUSION ICON
    ========================= */

    .conclusion-icon {
        width: 64px;
        height: 64px;

        margin-top: 2px;
    }

    .conclusion-icon svg {
        width: 36px;
        height: 36px;
    }


    /* =========================
       CONCLUSION CONTENT
    ========================= */

    .conclusion-content {
        min-width: 0;
    }

    .conclusion-content .eyebrow {
        justify-content: flex-start;
    }

    .conclusion-content .h2 {
        max-width: 100%;

        font-size: 25px;
        line-height: 1.25;

        text-align: left;
    }

    .conclusion p {
        max-width: 100%;

        margin-top: 20px;

        font-size: 15px;
        line-height: 1.7;
    }


    /* =========================
       CONCLUSION ACCENT
    ========================= */

    .conclusion-accent {
        height: 100%;
        min-height: 300px;
    }
}

        .faq {
            background: #ffffff;
            border: 0;
            display: block;
        }

        .faq-wrap {
            background: #ffffff;
            max-width: 1440px;
        }

        .faq-header {
            max-width: 900px;

            margin: 0 auto;

            text-align: center;
        }

        .faq-header .eyebrow {
            display: inline-flex;

            align-items: center;

            margin: 0 0 24px;
        }

        .faq-header .h2 {
            margin: 0;

            text-align: center;

            max-width: 900px;

            margin-left: auto;
            margin-right: auto;
        }

        .faq-intro {
            margin: 20px auto 0;

            max-width: 850px;

            color: var(--steel);

            font-size: 16px;

            line-height: 1.6;

            text-align: center;
        }

        .faq-list {
            width: 100%;

            max-width: 900px;

            margin: 50px auto 0;

            display: flex;

            flex-direction: column;

            gap: 20px;
        }

        .faq-item {
            background: #ffffff;

            border: 1px solid rgba(25, 35, 45, 0.07);

            border-radius: 8px;

            overflow: hidden;

            box-shadow:
                0 7px 20px rgba(25, 35, 45, 0.055);

            transition:
                box-shadow 0.2s ease,
                border-color 0.2s ease;
        }


        .faq-item:hover {
            border-color: rgba(217, 87, 32, 0.12);

            box-shadow:
                0 9px 24px rgba(25, 35, 45, 0.075);
        }

        .faq-item summary {
            min-height: 60px;

            padding: 10px 18px;

            cursor: pointer;

            list-style: none;

            display: grid;

            grid-template-columns: 74px minmax(0, 1fr) 106px;

            align-items: center;

            column-gap: 28px;

            font-weight: 600;

            font-size: 15.5px;

            color: #0E1D31;
        }


        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon {
            width: 42px;
            height: 42px;

            border-radius: 50%;

            background: rgba(217, 87, 32, 0.10);

            color: var(--teal-deep);

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;
        }


        .faq-icon svg {
            width: 32px;
            height: 32px;

            display: block;
        }

        .faq-question {
            display: block;

            min-width: 0;

            line-height: 1.45;

            color: #0E1D31;
        }

        .faq-action {
            width: 100%;

            height: 54px;

            border-left: 1px solid rgba(25, 35, 45, 0.09);

            display: flex;

            align-items: center;

            justify-content: center;



            color: var(--teal-deep);

            font-family: 'IBM Plex Mono', monospace;

            font-size: 29px;

            font-weight: 500;
        }

        .faq-action::after {
            content: "";

            position: absolute;

            width: 42px;
            height: 42px;

            border: 1px solid rgba(25, 35, 45, 0.08);

            border-radius: 50%;

            pointer-events: none;
        }

        .faq-item[open] .faq-action {
            font-size: 0;
        }


        .faq-item[open] .faq-action::before {
            content: "–";

            font-family: 'IBM Plex Mono', monospace;

            font-size: 27px;

            line-height: 1;

            position: relative;

            z-index: 2;
        }


        .faq-item[open] .faq-action::after {
            border-color: rgba(217, 87, 32, 0.18);
        }

        .faq-answer {
            padding: 0 28px 24px 130px;
        }


        .faq-item p {
            margin: 0;

            max-width: 700px;

            font-size: 14.5px;

            line-height: 1.65;

            color: var(--steel);
        }

        @media (max-width: 1000px) {

            .faq-wrap {
                padding-left: 40px;
                padding-right: 40px;
            }

            .faq-list {
                max-width: 100%;
            }
        }


        @media (max-width: 700px) {

            .faq {
                padding: 45px 0;
            }

            .faq-wrap {
                padding: 40px 22px 50px;

                border-radius: 8px;
            }

            .faq-header .eyebrow::before {
                width: 40px;
                height: 4px;
            }

            .faq-list {
                margin-top: 35px;

                gap: 14px;
            }

            .faq-item summary {
                min-height: 86px;

                padding: 15px 16px;

                grid-template-columns: 52px minmax(0, 1fr) 52px;

                column-gap: 14px;
            }

            .faq-icon {
                width: 52px;
                height: 52px;
            }

            .faq-icon svg {
                width: 27px;
                height: 27px;
            }

            .faq-action {
                height: 45px;

                padding-left: 12px;

                font-size: 24px;
            }

            .faq-action::after {
                width: 42px;
                height: 42px;
            }

            .faq-answer {
                padding: 0 16px 20px 82px;
            }
        }


        @media (max-width: 480px) {

            .faq-wrap {
                padding-left: 16px;
                padding-right: 16px;
            }

            .faq-item summary {
                grid-template-columns: 48px minmax(0, 1fr) 44px;

                column-gap: 10px;

                padding: 14px 12px;
            }

            .faq-icon {
                width: 48px;
                height: 48px;
            }

            .faq-question {
                font-size: 15.5px;
            }

            .faq-answer {
                padding-left: 70px;
            }
        }

        .meta-section {
            padding: 52px 0 60px;
            background: var(--bg);
            
        }

        .meta-grid {
            display: grid;
            grid-template-columns: 1fr 1.18fr;
            gap: 24px;
            align-items: stretch;
        }

        .meta-card {
            position: relative;
            overflow: hidden;

            background: #fff;

            border: 1px solid rgba(17, 47, 43, .08);
            border-radius: 10px;

            box-shadow:
                0 5px 14px rgba(25, 35, 34, .07),
                0 1px 4px rgba(25, 35, 34, .03);
        }

        .meta-card-header {
            position: relative;

            min-height: 40px;

            display: flex;
            align-items: center;

            padding: 7px 26px;

            background: linear-gradient(135deg,
                    #252b34 0%,
                    #1c222b 100%);

            overflow: hidden;
        }

        .meta-card-header h3 {
            position: relative;
            z-index: 3;

            margin: 0;

            color: #F7F5EF;

            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: 700;

            letter-spacing: .055em;
            line-height: 1.2;

            text-transform: uppercase;
        }

        .header-icon {
            position: relative;
            z-index: 4;

            width: 34px;
            height: 34px;

            flex: 0 0 34px;

            margin-right: 20px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: var(--teal-deep);
        }

        .header-icon svg {
            width: 24px;
            height: 24px;

            fill: none;
            stroke: #fff;

            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .header-pattern {
            position: absolute;

            right: -15px;
            top: -20px;

            width: 150px;
            height: 110px;

            opacity: .13;

            background:
                repeating-linear-gradient(135deg,
                    transparent 0,
                    transparent 6px,
                    rgba(255, 255, 255, .22) 7px,
                    rgba(255, 255, 255, .22) 8px);

            pointer-events: none;
        }

        .snapshot-list {
            padding: 8px 26px 10px;
        }

        .snapshot-row {
            min-height: 78px;

            display: grid;

            grid-template-columns: 54px 135px minmax(0, 1fr);

            align-items: center;

            column-gap: 17px;

            border-bottom: 1px solid #E7E5DF;
            
            padding: 12px 0 ;
        }

        .snapshot-row:last-child {
            border-bottom: 0;
        }

        .snapshot-icon {
            width: 54px;
            height: 54px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #F5F1E9;
        }

        .snapshot-icon svg {
            width: 28px;
            height: 28px;

            fill: none;
            stroke: var(--teal-deep);

            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .snapshot-label {
            position: relative;

            padding-left: 15px;

            color: #405163;

            font-size: 14px;
            font-weight: 400;

            line-height: 1.35;
        }

        .snapshot-label::before {
            content: "";

            position: absolute;

            left: 0;
            top: 50%;

            width: 2px;
            height: 30px;

            transform: translateY(-50%);

            background: var(--orange);
        }

        .snapshot-value {
            color: #424344;

            font-size: 14px;
            font-weight: 700;

            line-height: 1.4;
        }

        .technology-grid {
            display: grid;

            grid-template-columns: repeat(4, minmax(0, 1fr));

            gap: 13px;

            padding: 25px 22px 22px;
        }

        .technology-item {


            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;

            padding: 17px 8px 13px;

            text-align: center;

            background: #fff;

            border: 1px solid #ECEAE5;
            border-radius: 8px;

            box-shadow:
                0 3px 8px rgba(25, 35, 34, .045),
                0 1px 2px rgba(25, 35, 34, .025);

            transition:
                transform .2s ease,
                box-shadow .2s ease;
        }

        .technology-item:hover {
            transform: translateY(-1px);

            box-shadow:
                0 5px 12px rgba(25, 35, 34, .07);
        }

        .technology-icon {
            width: 48px;
            height: 48px;

            display: flex;
            align-items: center;
            justify-content: center;

            flex: 0 0 48px;

            border-radius: 50%;

            background: #F5F1E9;
        }

        .technology-icon svg {
            width: 32px;
            height: 32px;

            fill: none;
            stroke: var(--rust);

            stroke-width: 1.4;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .technology-line {
            width: 43px;
            height: 2px;

            margin-top: 14px;
            margin-bottom: 14px;

            background: var(--teal-deep);
        }

        .technology-item p {
            margin: 0;

            color: #17212C;

            font-size: 14px;
            font-weight: 400;

            line-height: 1.4;
        }

        @media (max-width: 1100px) {

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

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

        @media (max-width: 800px) {

            .meta-section {
                padding: 35px 0 40px;
            }

            .meta-grid {
                gap: 18px;
            }

            .meta-card-header {
                min-height: 38px;
                padding: 6px 20px;
            }

            .header-icon {
                width: 31px;
                height: 31px;
                flex-basis: 31px;
                margin-right: 15px;
            }

            .header-icon svg {
                width: 22px;
                height: 22px;
            }

            .meta-card-header h3 {
                font-size: 12px;
            }

            .snapshot-list {
                padding: 6px 20px 8px;
            }

            .snapshot-row {
                min-height: 70px;

                grid-template-columns: 48px 120px minmax(0, 1fr);

                column-gap: 14px;
            }

            .snapshot-icon {
                width: 48px;
                height: 48px;
            }

            .snapshot-icon svg {
                width: 25px;
                height: 25px;
            }

            .snapshot-label,
            .snapshot-value {
                font-size: 13px;
            }

            .snapshot-label {
                padding-left: 13px;
            }

            .snapshot-label::before {
                height: 27px;
            }

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

                gap: 12px;

                padding: 20px;
            }

            .technology-item {
                min-height: 185px;
                padding: 14px 7px 11px;
            }

            .technology-icon {
                width: 58px;
                height: 58px;
                flex-basis: 58px;
            }

            .technology-icon svg {
                width: 31px;
                height: 31px;
            }

            .technology-line {
                width: 38px;

                margin-top: 12px;
                margin-bottom: 12px;
            }

            .technology-item p {
                font-size: 13px;
            }
        }

        @media (max-width: 560px) {

            .meta-eyebrow {
                margin-bottom: 20px;
                font-size: 11px;
            }

            .meta-eyebrow-line {
                width: 38px;
            }

            .meta-card-header {
                min-height: 36px;
                padding: 5px 15px;
            }

            .header-icon {
                width: 29px;
                height: 29px;
                flex-basis: 29px;
                margin-right: 12px;
            }

            .header-icon svg {
                width: 20px;
                height: 20px;
            }

            .meta-card-header h3 {
                font-size: 11px;
            }

            .snapshot-list {
                padding: 5px 15px;
            }

            .snapshot-row {
                grid-template-columns: 44px 1fr;

                gap: 7px 12px;

                min-height: auto;

                padding: 12px 0;
            }

            .snapshot-icon {
                width: 44px;
                height: 44px;

                grid-row: span 2;
            }

            .snapshot-icon svg {
                width: 23px;
                height: 23px;
            }

            .snapshot-label {
                padding-left: 11px;
                font-size: 12px;
            }

            .snapshot-value {
                font-size: 12px;
                text-align: left;
            }

            .snapshot-label::before {
                height: 24px;
            }

            .technology-grid {
                grid-template-columns: 1fr 1fr;

                padding: 14px;

                gap: 10px;
            }

            .technology-item {
                min-height: 165px;

                padding: 12px 6px 10px;

                border-radius: 7px;
            }

            .technology-icon {
                width: 52px;
                height: 52px;
                flex-basis: 52px;
            }

            .technology-icon svg {
                width: 28px;
                height: 28px;
            }

            .technology-line {
                width: 34px;

                margin-top: 10px;
                margin-bottom: 10px;
            }

            .technology-item p {
                font-size: 12px;
                line-height: 1.35;
            }
        }

     

.cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            700px 360px at 100% 0%,
            rgba(193, 68, 14, 0.12),
            transparent 68%
        ),
        radial-gradient(
            600px 320px at 0% 100%,
            rgba(193, 68, 14, 0.075),
            transparent 68%
        ),
        linear-gradient(
            135deg,
            #F8F5EF 0%,
            #F7F4EE 48%,
            #F5F0E8 100%
        );

    color: #3A2A24;

    padding: 64px 0;
    text-align: center;
    box-sizing: border-box;

    box-shadow:
        0 10px 35px rgba(58, 42, 36, 0.055);
}


/* =====================================================
   LARGE ABSTRACT CURVE
===================================================== */

.cta::before {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    top: -690px;
    right: -260px;

    border-radius: 50%;

    border: 1px solid rgba(193, 68, 14, 0.13);

    box-shadow:
        0 0 0 55px rgba(193, 68, 14, 0.025),
        0 0 0 110px rgba(193, 68, 14, 0.018),
        0 0 0 165px rgba(193, 68, 14, 0.012),
        0 0 0 220px rgba(193, 68, 14, 0.008);

    pointer-events: none;
    z-index: -1;
}


/* =====================================================
   LOWER ABSTRACT CURVE
===================================================== */

.cta::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    bottom: -590px;
    left: -260px;

    border-radius: 50%;

    border: 1px solid rgba(193, 68, 14, 0.09);

    box-shadow:
        0 0 0 50px rgba(193, 68, 14, 0.022),
        0 0 0 100px rgba(193, 68, 14, 0.015),
        0 0 0 150px rgba(193, 68, 14, 0.009);

    pointer-events: none;
    z-index: -1;
}


/* =====================================================
   CTA CONTENT
===================================================== */

.cta > * {
    position: relative;
    z-index: 2;
}


.cta .wrap {
    position: relative;
    z-index: 1;

    max-width: 860px;
    margin: 0 auto;

    padding: 0 24px;
}


/* Heading */

.cta h2 {
    position: relative;

    max-width: 850px;
    margin: 0 auto 14px;

    color: #3A2A24;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: -.025em;
}

.cta h2::after {
    content: "";
    display: block;

    width: 34px;
    height: 2px;

    margin: 17px auto 0;

    background: #C1440E;
}


/* Paragraph */

.cta p {
    max-width: 590px;

    margin: 0 auto 28px;

    color: #6B5A50;

    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;

    letter-spacing: .005em;
}


/* Buttons */

.cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 12px 22px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: .01em;

    text-decoration: none;

    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


/* Primary Button */

.cta .btn:not(.btn-outline) {
    background: #C1440E;
    color: #fff;

    border: 1px solid #C1440E;

    box-shadow:
        0 5px 16px rgba(193, 68, 14, 0.18);
}


/* Primary Hover */

.cta .btn:not(.btn-outline):hover {
    background: #A9380B;
    border-color: #A9380B;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(193, 68, 14, 0.25);
}


/* Outline Button */

.cta .btn-outline {
    margin-left: 8px;

    background: transparent;

    border: 1px solid #C1440E;

    color: #C1440E;

    box-shadow: none;
}


/* Outline Hover */

.cta .btn-outline:hover {
    background: #f5c3ae;

    border-color: #f5c3ae;

    

    transform: translateY(-2px);

    box-shadow:
        0 6px 16px rgba(193, 68, 14, 0.18);
}


/* Focus */

.cta .btn:focus-visible {
    outline: 2px solid #C1440E;
    outline-offset: 3px;
}


/* Mobile */

@media (max-width: 640px) {

    .cta {
        padding: 48px 0;

        margin: 18px 12px;

        border-radius: 12px;
    }

    .cta::before {
        inset: 0;
    }

    .cta .wrap {
        padding: 0 22px;
    }

    .cta h2 {
        font-size: 25px;
        line-height: 1.25;
    }

    .cta p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 23px;
    }

    .cta .btn {
        width: 100%;
        max-width: 280px;
        min-height: 44px;
    }

    .cta .btn-outline {
        margin: 9px 0 0;
    }
}

     

 /* =====================================================
   RELATED / RESOURCE SECTION
===================================================== */

.related {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 35px 0 40px;

    background: #FFFFFF;
}


/* =====================================================
   WRAPPER
===================================================== */

.related-wrap {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 0 25px;

    box-sizing: border-box;
}


.related-grid {
    width: 100%;
    max-width: 960px;

    margin: 25px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   RELATED CARD
===================================================== */

.related-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 78px;

    padding: 12px 15px;

    box-sizing: border-box;

    border-radius: 8px;

    border: 1px solid transparent;

    text-decoration: none;

    overflow: hidden;

    box-shadow:
        0 4px 13px rgba(30, 30, 30, 0.06);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}


/* =====================================================
   CARD BACKGROUNDS
===================================================== */

.related-card-project {
    background:
        linear-gradient(
            135deg,
            #FFF3EC 0%,
            #FFF9F6 100%
        );

    border-color:
        rgba(233, 74, 27, 0.10);
}


.related-card-workflow {
    background:
        linear-gradient(
            135deg,
            #F2F7FA 0%,
            #F8FBFD 100%
        );

    border-color:
        rgba(40, 117, 164, 0.10);
}


.related-card-video {
    background:
        linear-gradient(
            135deg,
            #F1F8F4 0%,
            #F8FCFA 100%
        );

    border-color:
        rgba(46, 162, 109, 0.10);
}


/* =====================================================
   SUBTLE LIGHT EFFECT
===================================================== */

.related-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    top: -55px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.50);

    filter: blur(17px);

    pointer-events: none;

    transition:
        transform 0.3s ease;
}


/* =====================================================
   ICON
===================================================== */

.related-icon {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    margin-right: 12px;

    border-radius: 50%;

    color: #FFFFFF;

    transition:
        transform 0.22s ease;
}


/* =====================================================
   ICON COLORS
===================================================== */

.related-card-project .related-icon {
    background: #E94A1B;
}


.related-card-workflow .related-icon {
    background: #2875A4;
}


.related-card-video .related-icon {
    background: #2EA26D;
}


/* =====================================================
   ICON SVG
===================================================== */

.related-icon svg {
    display: block;

    width: 20px;
    height: 20px;
}


/* =====================================================
   CONTENT
===================================================== */

.related-content {
    position: relative;

    z-index: 2;

    flex: 1;

    min-width: 0;
}


/* =====================================================
   LABEL
===================================================== */

.related-label {
    display: block;

    margin-bottom: 4px;

    font-family:
        'Manrope',
        sans-serif;

    font-size: 8px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* =====================================================
   LABEL COLORS
===================================================== */

.related-card-project .related-label {
    color: #E94A1B;
}


.related-card-workflow .related-label {
    color: #2875A4;
}


.related-card-video .related-label {
    color: #2EA26D;
}


/* =====================================================
   MAIN TEXT
===================================================== */

.related-card p {
    margin: 0;

    color: #181818;

    font-family:
        'Manrope',
        sans-serif;

    font-size: 13px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.01em;

    white-space: nowrap;
}


/* =====================================================
   ARROW
===================================================== */

.related-arrow {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    margin-left: 8px;

    border-radius: 50%;

    color: #FFFFFF;

    font-family:
        Arial,
        sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1;

    box-sizing: border-box;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}


/* =====================================================
   ARROW COLORS
===================================================== */

.related-card-project .related-arrow {
    background: #E94A1B;
}


.related-card-workflow .related-arrow {
    background: #2875A4;
}


.related-card-video .related-arrow {
    background: #2EA26D;
}


/* =====================================================
   HOVER
===================================================== */

.related-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(30, 30, 30, 0.09);
}


.related-card:hover::before {
    transform:
        translate(-6px, 6px)
        scale(1.08);
}


.related-card:hover .related-icon {
    transform: scale(1.04);
}


.related-card:hover .related-arrow {
    transform: translateX(3px);

    box-shadow:
        0 3px 7px rgba(0, 0, 0, 0.10);
}


/* =====================================================
   ACTIVE
===================================================== */

.related-card:active {
    transform: translateY(-1px);
}


/* =====================================================
   FOCUS
===================================================== */

.related-card:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 2px #FFFFFF,
        0 0 0 4px #C1440E;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .related {
        padding: 32px 0 38px;
    }


    .related-wrap {
        padding: 0 22px;
    }


    .related-grid {
        max-width: 850px;

        gap: 14px;

        margin-top: 23px;
    }


    .related-card {
        min-height: 72px;

        padding: 11px 13px;
    }


    .related-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        margin-right: 10px;
    }


    .related-icon svg {
        width: 19px;
        height: 19px;
    }


    .related-card p {
        font-size: 12px;
    }


    .related-label {
        font-size: 7px;

        margin-bottom: 4px;
    }


    .related-arrow {
        width: 27px;
        height: 27px;

        flex-basis: 27px;

        margin-left: 7px;

        font-size: 16px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .related {
        padding: 30px 0 36px;
    }


    .related-wrap {
        padding: 0 18px;
    }


    .related-grid {
        grid-template-columns: 1fr;

        max-width: 480px;

        margin-top: 22px;

        gap: 10px;
    }


    .related-card {
        min-height: 70px;

        padding: 10px 13px;
    }


    .related-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        margin-right: 11px;
    }


    .related-icon svg {
        width: 19px;
        height: 19px;
    }


    .related-label {
        font-size: 7px;

        margin-bottom: 4px;
    }


    .related-card p {
        font-size: 13px;

        white-space: normal;
    }


    .related-arrow {
        width: 28px;
        height: 28px;

        flex-basis: 28px;

        margin-left: 7px;

        font-size: 17px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 520px) {

    .related {
        padding: 27px 0 32px;
    }


    .related-wrap {
        padding: 0 14px;
    }


    .related-grid {
        margin-top: 20px;

        gap: 9px;
    }


    .related-card {
        min-height: 64px;

        padding: 9px 11px;

        border-radius: 7px;
    }


    .related-icon {
        width: 35px;
        height: 35px;

        flex-basis: 35px;

        margin-right: 9px;
    }


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


    .related-label {
        font-size: 6.5px;

        margin-bottom: 3px;
    }


    .related-card p {
        font-size: 12px;
    }


    .related-arrow {
        width: 25px;
        height: 25px;

        flex-basis: 25px;

        margin-left: 6px;

        font-size: 15px;
    }
}




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

    .related-card,
    .related-card::before,
    .related-icon,
    .related-arrow {
        transition: none;
    }
}