/* =========================================================
   REQUEST DEMO + COMPLIANCE LIFECYCLE
   ========================================================= */

html {
    scroll-behavior: smooth;
}

.demo-page {
    width: 100%;
    min-height: 100vh;

    background: #ffffff;

    font-family: "Inter", sans-serif;
    color: #0b1028;
}

.demo-main {
    width: 100%;
}


/* =========================================================
   SECTION 1 — REQUEST DEMO HERO
   ========================================================= */

.demo-hero {
    position: relative;

    min-height: calc(100vh - 92px);

    padding: 86px 0 70px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 58%,
            #f7faf8 100%
        );
}

.demo-shell {
    position: relative;
    z-index: 2;

    width: min(1320px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(520px, 1.08fr);

    gap: 82px;

    align-items: center;
}


/* =========================================================
   REQUEST DEMO — DECORATIVE DOTS
   ========================================================= */

.demo-dots {
    position: absolute;

    top: 20px;
    right: -10px;

    width: 190px;
    height: 190px;

    pointer-events: none;
}


/* =========================================================
   REQUEST DEMO — LEFT COPY
   ========================================================= */

.demo-copy {
    max-width: 650px;
}

.demo-eyebrow {
    margin-bottom: 23px;

    font-family: "Inter", sans-serif;

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

    letter-spacing: 0.17em;

    text-transform: uppercase;

    color: #008b00;
}

.demo-title {
    margin: 0;

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

    font-size: clamp(48px, 4.2vw, 68px);

    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -0.045em;

    color: #0a1028;
}

.demo-title > span {
    display: block;
}

.demo-title-accent {
    margin-top: 8px;

    font-family: "Playfair Display", serif;

    font-weight: 400;

    color: #dd8d06;
}

.demo-lead {
    max-width: 620px;

    margin: 31px 0 0;

    font-size: 19px;

    line-height: 1.52;

    color: #151c32;
}

.demo-sublead {
    max-width: 615px;

    margin: 17px 0 0;

    font-size: 15.5px;

    line-height: 1.65;

    color: #667085;
}


/* =========================================================
   REQUEST DEMO — PROCESS FLOW
   ========================================================= */

.demo-flow {
    margin-top: 31px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}

.demo-flow-item {
    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 13px;
    font-weight: 500;

    color: #556070;
}

.demo-flow-number {
    color: #008b00;

    font-size: 11px;

    font-weight: 700;
}

.demo-flow-line {
    width: 23px;
    height: 1px;

    background: #ccd4ce;
}


/* =========================================================
   REQUEST DEMO — PROOF MESSAGE
   ========================================================= */

.demo-proof {
    max-width: 590px;

    margin-top: 34px;

    padding: 18px 20px;

    display: flex;

    gap: 14px;

    align-items: flex-start;

    border: 1px solid #e3ebe5;

    border-radius: 14px;

    background: #f8fbf9;
}

.demo-proof-check {
    flex: 0 0 26px;

    width: 26px;
    height: 26px;

    display: flex;

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

    border-radius: 50%;

    background: #e7f5e7;

    color: #008b00;

    font-size: 14px;

    font-weight: 700;
}

.demo-proof strong {
    display: block;

    margin-bottom: 4px;

    font-size: 14px;

    color: #111827;
}

.demo-proof p {
    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    color: #667085;
}


/* =========================================================
   REQUEST DEMO — SECONDARY LINK TO LIFECYCLE
   ========================================================= */

.demo-secondary-link {
    margin-top: 18px;
}

.demo-secondary-link a {
    display: inline-flex;

    align-items: center;

    font-size: 13px;

    font-weight: 600;

    color: #008b00;

    text-decoration: none;

    transition:
        color 0.16s ease,
        transform 0.16s ease;
}

.demo-secondary-link a:hover {
    color: #006f00;

    transform: translateX(2px);
}


/* =========================================================
   REQUEST DEMO — FORM CARD
   ========================================================= */

.demo-form-card {
    position: relative;

    width: 100%;

    padding: 34px 38px 32px;

    border: 1px solid #dfe7e2;

    border-radius: 20px;

    background: rgba(248, 251, 249, 0.98);

    box-shadow:
        0 24px 60px rgba(17, 24, 39, 0.08);
}

.demo-form-card::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 24px;
    right: 24px;

    height: 6px;

    border-radius: 20px 20px 0 0;

    background:
        linear-gradient(
            90deg,
            #dda02b 0%,
            #9aa52a 45%,
            #1a962e 100%
        );
}


/* =========================================================
   REQUEST DEMO — FORM HEADING
   ========================================================= */

.demo-form-heading {
    margin-bottom: 24px;
}

.demo-form-eyebrow {
    margin-bottom: 9px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: #008b00;
}

.demo-form-heading h2 {
    margin: 0;

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

    font-size: 29px;

    line-height: 1.2;

    color: #0a1028;
}

.demo-form-heading p {
    margin: 8px 0 0;

    font-size: 14px;

    line-height: 1.55;

    color: #697386;
}


/* =========================================================
   REQUEST DEMO — FORM OVERRIDES
   ========================================================= */

.demo-form-card .contact-form {
    width: 100%;
}

.demo-form-card .form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.demo-form-card .form-field-block {
    margin-bottom: 12px;
}

.demo-form-card input,
.demo-form-card select,
.demo-form-card textarea,
.demo-form-card .frameworks-header {
    box-sizing: border-box;

    width: 100%;

    border: 1px solid #d7dfdb;

    border-radius: 8px;

    background: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    color: #111827;
}

.demo-form-card input,
.demo-form-card select {
    min-height: 46px;

    padding: 0 13px;
}

.demo-form-card textarea {
    min-height: 96px;

    padding: 12px 13px;

    resize: vertical;
}

.demo-form-card input:focus,
.demo-form-card select:focus,
.demo-form-card textarea:focus,
.demo-form-card .frameworks-header:focus-within {
    outline: none;

    border-color: #149723;

    box-shadow:
        0 0 0 3px rgba(20, 151, 35, 0.08);
}


/* =========================================================
   REQUEST DEMO — SUBMIT
   ========================================================= */

.demo-form-card .btn-submit {
    width: 100%;

    min-height: 49px;

    margin-top: 12px;

    border: 0;

    border-radius: 25px;

    background: #009900;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease,
        background 0.16s ease;
}

.demo-form-card .btn-submit:hover {
    background: #008700;

    transform: translateY(-1px);

    box-shadow:
        0 8px 22px rgba(0, 137, 0, 0.18);
}


/* =========================================================
   SECTION 2 — COMPLIANCE LIFECYCLE
   ========================================================= */

.cl-section {
    position: relative;

    width: 100%;

    min-height: 760px;

    padding: 90px 0 0;

    overflow: hidden;

    border-top: 1px solid #edf1ee;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 58%,
            #f5faf7 100%
        );
}

.cl-shell {
    position: relative;

    z-index: 2;

    width: min(1320px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(580px, 1.12fr);

    gap: 82px;

    align-items: center;

    padding-bottom: 70px;
}


/* =========================================================
   LIFECYCLE — DECORATIVE DOTS
   ========================================================= */

.cl-dots {
    position: absolute;

    top: 18px;
    right: -12px;

    width: 200px;
    height: 200px;

    pointer-events: none;
}


/* =========================================================
   LIFECYCLE — LEFT COPY
   ========================================================= */

.cl-copy {
    max-width: 635px;
}

.cl-eyebrow {
    margin-bottom: 23px;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.17em;

    text-transform: uppercase;

    color: #008b00;
}

.cl-title {
    margin: 0;

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

    font-size: clamp(46px, 4vw, 64px);

    font-weight: 600;

    line-height: 0.99;

    letter-spacing: -0.045em;

    color: #0a1028;
}

.cl-title > span {
    display: block;
}

.cl-title-accent {
    margin-top: 8px;

    font-family: "Playfair Display", serif;

    font-weight: 400;

    color: #dd8d06;
}

.cl-lead {
    max-width: 610px;

    margin: 30px 0 0;

    font-size: 18px;

    line-height: 1.58;

    color: #182037;
}


/* =========================================================
   LIFECYCLE — CTA
   ========================================================= */

.cl-actions {
    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 16px;
}

.cl-btn {
    min-height: 48px;

    padding: 0 27px;

    display: inline-flex;

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

    border-radius: 26px;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.16s ease,
        box-shadow 0.16s ease,
        transform 0.16s ease;
}

.cl-btn-primary {
    border: 1px solid #009900;

    background: #009900;

    color: #ffffff;
}

.cl-btn-primary:hover {
    background: #008700;

    transform: translateY(-1px);

    box-shadow:
        0 8px 22px rgba(0, 137, 0, 0.18);
}


/* =========================================================
   LIFECYCLE — PROCESS LINE
   ========================================================= */

.cl-flow {
    margin-top: 34px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;
}

.cl-flow-item {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    font-size: 12px;

    color: #53606e;
}

.cl-flow-item span {
    color: #009900;

    font-size: 11px;

    font-weight: 700;
}

.cl-flow-item strong {
    font-weight: 500;
}

.cl-flow i {
    display: block;

    width: 23px;
    height: 1px;

    background: #ccd4ce;
}


/* =========================================================
   LIFECYCLE — VISUAL CONTAINER
   ========================================================= */

.cl-cycle {
    position: relative;

    width: 100%;

    max-width: 690px;

    height: 520px;

    margin-left: auto;
}

.cl-cycle::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 480px;
    height: 400px;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(27, 160, 53, 0.10) 0%,
            rgba(27, 160, 53, 0.035) 50%,
            rgba(255, 255, 255, 0) 74%
        );

    pointer-events: none;
}


/* =========================================================
   LIFECYCLE — CENTER
   ========================================================= */

.cl-cycle-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 180px;
    height: 180px;

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

    display: flex;

    flex-direction: column;

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

    text-align: center;

    border: 1px solid #dfe8e2;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 23px 55px rgba(25, 45, 32, 0.08);

    z-index: 4;
}

.cl-cycle-mark {
    width: 36px;
    height: 36px;

    margin-bottom: 7px;

    display: flex;

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

    border-radius: 8px;

    background: #e9f7eb;

    color: #009900;

    font-size: 16px;

    font-weight: 700;
}

.cl-cycle-center strong {
    font-size: 17px;

    font-weight: 600;

    color: #008b00;
}

.cl-cycle-center span {
    max-width: 135px;

    margin-top: 5px;

    font-size: 13px;

    line-height: 1.4;

    color: #253047;
}


/* =========================================================
   LIFECYCLE — RING
   ========================================================= */

.cl-cycle-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 420px;
    height: 330px;

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

    border: 2px solid rgba(0, 153, 0, 0.38);

    border-radius: 50%;

    z-index: 1;
}


/* =========================================================
   LIFECYCLE — CARDS
   ========================================================= */

.cl-cycle-card {
    position: absolute;

    width: 242px;

    min-height: 108px;

    padding: 18px 19px;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    border: 1px solid #e1e9e3;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 17px 42px rgba(24, 45, 30, 0.07);

    z-index: 5;
}

.cl-cycle-card h3 {
    margin: 1px 0 6px;

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

    font-size: 18px;

    font-weight: 600;

    line-height: 1.15;

    color: #0a1028;
}

.cl-cycle-card p {
    margin: 0;

    font-size: 13px;

    line-height: 1.45;

    color: #687487;
}

.cl-cycle-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;

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

    border-radius: 50%;

    background: #e9f7eb;

    color: #009900;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   LIFECYCLE — CARD POSITIONING
   ========================================================= */

.cl-cycle-card-assess {
    top: 0;

    left: 50%;

    transform: translateX(-50%);
}

.cl-cycle-card-remediate {
    top: 50%;

    right: 0;

    transform: translateY(-50%);
}

.cl-cycle-card-validate {
    bottom: 0;

    left: 50%;

    transform: translateX(-50%);
}

.cl-cycle-card-monitor {
    top: 50%;

    left: 0;

    transform: translateY(-50%);
}


/* =========================================================
   LIFECYCLE — DIRECTION MARKERS
   ========================================================= */

.cl-cycle-arrow {
    position: absolute;

    z-index: 3;

    color: #009900;

    font-size: 30px;

    line-height: 1;

    font-weight: 400;
}

.cl-cycle-arrow-a {
    top: 111px;
    right: 119px;

    transform: rotate(45deg);
}

.cl-cycle-arrow-b {
    right: 119px;
    bottom: 109px;

    transform: rotate(135deg);
}

.cl-cycle-arrow-c {
    left: 119px;
    bottom: 109px;

    transform: rotate(225deg);
}

.cl-cycle-arrow-d {
    top: 111px;
    left: 119px;

    transform: rotate(315deg);
}


/* =========================================================
   LIFECYCLE — BENEFITS
   ========================================================= */

.cl-benefits {
    width: 100%;

    border-top: 1px solid #e9efeb;

    background:
        linear-gradient(
            180deg,
            #fbfdfc 0%,
            #f4f9f6 100%
        );
}

.cl-benefits-shell {
    width: min(1320px, calc(100% - 80px));

    margin: 0 auto;

    padding: 34px 0;

    display: grid;

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

.cl-benefit {
    min-height: 102px;

    padding: 0 29px;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    border-right: 1px solid #dce5df;
}

.cl-benefit:first-child {
    padding-left: 0;
}

.cl-benefit:last-child {
    padding-right: 0;

    border-right: 0;
}

.cl-benefit-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

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

    border: 2px solid #009900;

    border-radius: 50%;

    color: #009900;

    font-size: 17px;

    font-weight: 700;
}

.cl-benefit h3 {
    margin: 2px 0 6px;

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

    font-size: 16px;

    font-weight: 600;

    color: #0a1028;
}

.cl-benefit p {
    max-width: 215px;

    margin: 0;

    font-size: 13px;

    line-height: 1.45;

    color: #697386;
}


/* =========================================================
   CONTACT PAGE ONLY — HEADER ALIGNMENT
   ========================================================= */

.demo-page .header {
    display: flex;

    align-items: center;
}

.demo-page .home-parent {
    display: flex;

    align-items: center;
}

.demo-page .home,
.demo-page .products-parent,
.demo-page .en-parent,
.demo-page .button-parent {
    align-items: center;
}

.demo-page .home {
    display: flex;

    align-items: center;

    line-height: 1;
}

.demo-page .products-parent {
    display: flex;

    align-items: center;
}

.demo-page .button-parent {
    display: flex;

    align-items: center;
}

.demo-page .en-parent {
    display: flex;

    align-items: center;
}

.demo-page .request-a-demo {
    display: flex;

    align-items: center;

    line-height: 1;
}


/* =========================================================
   TABLET — REQUEST DEMO + LIFECYCLE
   ========================================================= */

@media (max-width: 1100px) {

    .demo-shell {
        width: min(760px, calc(100% - 40px));

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .demo-copy {
        max-width: 700px;
    }

    .demo-form-card {
        max-width: 700px;
    }


    .cl-section {
        padding-top: 72px;
    }

    .cl-shell {
        width: min(800px, calc(100% - 40px));

        grid-template-columns: 1fr;

        gap: 65px;
    }

    .cl-copy {
        max-width: 700px;
    }

    .cl-cycle {
        margin: 0 auto;
    }

    .cl-benefits-shell {
        width: min(800px, calc(100% - 40px));

        grid-template-columns:
            repeat(2, 1fr);
    }

    .cl-benefit {
        padding: 24px;

        border-right: 0;

        border-bottom: 1px solid #dde5e0;
    }

    .cl-benefit:nth-child(odd) {
        border-right: 1px solid #dde5e0;
    }

    .cl-benefit:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}


/* =========================================================
   MOBILE — REQUEST DEMO + LIFECYCLE
   ========================================================= */

@media (max-width: 640px) {

    .demo-hero {
        padding: 55px 0 45px;
    }

    .demo-shell {
        width: calc(100% - 30px);
    }

    .demo-title {
        font-size: 45px;
    }

    .demo-lead {
        font-size: 17px;
    }

    .demo-form-card {
        padding: 27px 20px;
    }

    .demo-form-card .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .demo-flow-line {
        display: none;
    }

    .demo-flow {
        gap: 15px;
    }


    /* Lifecycle */

    .cl-section {
        min-height: auto;

        padding: 58px 0 0;
    }

    .cl-shell {
        width: calc(100% - 30px);

        gap: 50px;

        padding-bottom: 46px;
    }

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

    .cl-lead {
        font-size: 17px;
    }

    .cl-actions {
        align-items: stretch;
    }

    .cl-btn {
        width: 100%;
    }

    .cl-flow {
        gap: 13px 18px;
    }

    .cl-flow i {
        display: none;
    }


    /* Lifecycle visual becomes stacked */

    .cl-cycle {
        height: auto;

        display: flex;

        flex-direction: column;

        gap: 14px;
    }

    .cl-cycle::before,
    .cl-cycle-ring,
    .cl-cycle-arrow {
        display: none;
    }

    .cl-cycle-center,
    .cl-cycle-card {
        position: static;

        width: 100%;

        min-height: auto;

        transform: none;
    }

    .cl-cycle-center {
        height: auto;

        padding: 26px;

        border-radius: 18px;
    }


    /* Benefits */

    .cl-benefits-shell {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        padding: 18px 0;
    }

    .cl-benefit,
    .cl-benefit:first-child,
    .cl-benefit:last-child,
    .cl-benefit:nth-child(odd) {
        padding: 20px 0;

        border-right: 0;

        border-bottom: 1px solid #dde5e0;
    }

    .cl-benefit:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   SECTION 3 — MULTI-FRAMEWORK INTELLIGENCE
   ========================================================= */

.mf-section {
    position: relative;

    width: 100%;

    min-height: 760px;

    padding: 90px 0 0;

    overflow: hidden;

    border-top: 1px solid #edf1ee;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 58%,
            #f7faf8 100%
        );
}

.mf-shell {
    position: relative;

    z-index: 2;

    width: min(1320px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(580px, 1.12fr);

    gap: 82px;

    align-items: center;

    padding-bottom: 70px;
}


/* =========================================================
   MULTI-FRAMEWORK — DECORATIVE DOTS
   ========================================================= */

.mf-dots {
    position: absolute;

    top: 18px;
    right: -12px;

    width: 200px;
    height: 200px;

    pointer-events: none;
}


/* =========================================================
   MULTI-FRAMEWORK — LEFT COPY
   ========================================================= */

.mf-copy {
    max-width: 635px;
}

.mf-eyebrow {
    margin-bottom: 23px;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.17em;

    text-transform: uppercase;

    color: #008b00;
}

.mf-title {
    margin: 0;

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

    font-size: clamp(46px, 4vw, 64px);

    font-weight: 600;

    line-height: 0.99;

    letter-spacing: -0.045em;

    color: #0a1028;
}

.mf-title > span {
    display: block;
}

.mf-title-accent {
    margin-top: 8px;

    font-family: "Playfair Display", serif;

    font-weight: 400;

    color: #dd8d06;
}

.mf-lead {
    max-width: 610px;

    margin: 30px 0 0;

    font-size: 18px;

    line-height: 1.58;

    color: #182037;
}


/* =========================================================
   MULTI-FRAMEWORK — CTA
   ========================================================= */

.mf-actions {
    margin-top: 30px;

    display: flex;

    align-items: center;
}

.mf-btn {
    min-height: 48px;

    padding: 0 27px;

    display: inline-flex;

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

    border-radius: 26px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.16s ease,
        box-shadow 0.16s ease,
        transform 0.16s ease;
}

.mf-btn-primary {
    border: 1px solid #009900;

    background: #009900;

    color: #ffffff;
}

.mf-btn-primary:hover {
    background: #008700;

    transform: translateY(-1px);

    box-shadow:
        0 8px 22px rgba(0, 137, 0, 0.18);
}


/* =========================================================
   MULTI-FRAMEWORK — PROOF
   ========================================================= */

.mf-proof {
    max-width: 570px;

    margin-top: 32px;

    padding: 18px 20px;

    display: flex;

    gap: 14px;

    align-items: flex-start;

    border: 1px solid #e3ebe5;

    border-radius: 14px;

    background: #f8fbf9;
}

.mf-proof-check {
    flex: 0 0 26px;

    width: 26px;
    height: 26px;

    display: flex;

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

    border-radius: 50%;

    background: #e7f5e7;

    color: #008b00;

    font-size: 14px;

    font-weight: 700;
}

.mf-proof strong {
    display: block;

    margin-bottom: 4px;

    font-size: 14px;

    color: #111827;
}

.mf-proof p {
    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    color: #667085;
}


/* =========================================================
   MULTI-FRAMEWORK — MAPPING VISUAL
   ========================================================= */

.mf-map {
    position: relative;

    width: 100%;

    max-width: 690px;

    height: 520px;

    margin-left: auto;
}


/* =========================================================
   CONTROL CARD
   ========================================================= */

.mf-control-card {
    position: absolute;

    top: 20px;
    left: 50%;

    width: 300px;

    transform: translateX(-50%);

    padding: 18px 20px;

    display: flex;

    gap: 14px;

    align-items: center;

    border: 1px solid #dfe7e2;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 16px 40px rgba(17, 24, 39, 0.07);

    z-index: 4;
}

.mf-control-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;

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

    border-radius: 50%;

    background: #e8f7eb;

    color: #009900;

    font-size: 18px;

    font-weight: 700;
}

.mf-control-copy {
    display: flex;

    flex-direction: column;
}

.mf-control-label {
    margin-bottom: 4px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;

    color: #008b00;
}

.mf-control-copy strong {
    font-size: 16px;

    color: #0a1028;
}

.mf-control-copy p {
    margin: 4px 0 0;

    font-size: 12px;

    color: #687487;
}


/* =========================================================
   EVIDENCE CARD
   ========================================================= */

.mf-evidence-card {
    position: absolute;

    top: 165px;
    left: 50%;

    width: 260px;

    transform: translateX(-50%);

    padding: 17px 20px;

    text-align: center;

    border: 1px solid #dce7df;

    border-radius: 14px;

    background: #f7fbf8;

    z-index: 4;
}

.mf-evidence-label {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;

    color: #008b00;
}

.mf-evidence-card strong {
    display: block;

    font-size: 15px;

    color: #0a1028;
}

.mf-evidence-card p {
    margin: 5px 0 0;

    font-size: 12px;

    line-height: 1.4;

    color: #697386;
}


/* =========================================================
   MAIN CONNECTOR
   ========================================================= */

.mf-main-line {
    position: absolute;

    top: 128px;
    left: 50%;

    width: 2px;
    height: 37px;

    transform: translateX(-50%);

    background: rgba(0, 153, 0, 0.35);
}


/* =========================================================
   FRAMEWORK CARDS
   ========================================================= */

.mf-framework {
    position: absolute;

    width: 145px;
    min-height: 90px;

    padding: 15px 12px;

    text-align: center;

    border: 1px solid #e0e8e2;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 13px 30px rgba(18, 35, 25, 0.06);

    z-index: 4;
}

.mf-framework-status {
    width: 26px;
    height: 26px;

    margin: 0 auto 7px;

    display: flex;

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

    border-radius: 50%;

    background: #e9f7eb;

    color: #009900;

    font-size: 12px;

    font-weight: 700;
}

.mf-framework strong {
    display: block;

    font-size: 14px;

    color: #0a1028;
}

.mf-framework span {
    display: block;

    margin-top: 4px;

    font-size: 10px;

    color: #008b00;
}


/* positions */

.mf-framework-soc2 {
    left: 0;
    top: 285px;
}

.mf-framework-iso27001 {
    left: 170px;
    top: 285px;
}

.mf-framework-nist {
    right: 170px;
    top: 285px;
}

.mf-framework-pipeda {
    right: 0;
    top: 285px;
}

.mf-framework-iso42001 {
    left: 135px;
    bottom: 0;
}

.mf-framework-euai {
    right: 135px;
    bottom: 0;
}


/* =========================================================
   CONNECTING BRANCHES
   ========================================================= */

.mf-branch {
    position: absolute;

    height: 2px;

    background: rgba(0, 153, 0, 0.26);

    transform-origin: left center;

    z-index: 1;
}

.mf-branch-1 {
    width: 225px;

    top: 255px;
    left: 50%;

    transform: rotate(157deg);
}

.mf-branch-2 {
    width: 140px;

    top: 255px;
    left: 50%;

    transform: rotate(135deg);
}

.mf-branch-3 {
    width: 140px;

    top: 255px;
    left: 50%;

    transform: rotate(45deg);
}

.mf-branch-4 {
    width: 225px;

    top: 255px;
    left: 50%;

    transform: rotate(23deg);
}

.mf-branch-5 {
    width: 180px;

    top: 255px;
    left: 50%;

    transform: rotate(112deg);
}

.mf-branch-6 {
    width: 180px;

    top: 255px;
    left: 50%;

    transform: rotate(68deg);
}


/* =========================================================
   MULTI-FRAMEWORK — BENEFITS
   ========================================================= */

.mf-benefits {
    width: 100%;

    border-top: 1px solid #e9efeb;

    background:
        linear-gradient(
            180deg,
            #fbfdfc 0%,
            #f4f9f6 100%
        );
}

.mf-benefits-shell {
    width: min(1320px, calc(100% - 80px));

    margin: 0 auto;

    padding: 34px 0;

    display: grid;

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

.mf-benefit {
    min-height: 102px;

    padding: 0 29px;

    display: flex;

    gap: 14px;

    align-items: flex-start;

    border-right: 1px solid #dce5df;
}

.mf-benefit:first-child {
    padding-left: 0;
}

.mf-benefit:last-child {
    padding-right: 0;

    border-right: 0;
}

.mf-benefit-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

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

    border: 2px solid #009900;

    border-radius: 50%;

    color: #009900;

    font-size: 17px;

    font-weight: 700;
}

.mf-benefit h3 {
    margin: 2px 0 6px;

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

    font-size: 16px;

    font-weight: 600;

    color: #0a1028;
}

.mf-benefit p {
    max-width: 215px;

    margin: 0;

    font-size: 13px;

    line-height: 1.45;

    color: #697386;
}


/* =========================================================
   MULTI-FRAMEWORK — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .mf-section {
        padding-top: 72px;
    }

    .mf-shell {
        width: min(800px, calc(100% - 40px));

        grid-template-columns: 1fr;

        gap: 65px;
    }

    .mf-copy {
        max-width: 700px;
    }

    .mf-map {
        margin: 0 auto;
    }

    .mf-benefits-shell {
        width: min(800px, calc(100% - 40px));

        grid-template-columns:
            repeat(2, 1fr);
    }

    .mf-benefit {
        padding: 24px;

        border-right: 0;

        border-bottom: 1px solid #dde5e0;
    }

    .mf-benefit:nth-child(odd) {
        border-right: 1px solid #dde5e0;
    }

    .mf-benefit:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}


/* =========================================================
   MULTI-FRAMEWORK — MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .mf-section {
        min-height: auto;

        padding: 58px 0 0;
    }

    .mf-shell {
        width: calc(100% - 30px);

        gap: 48px;

        padding-bottom: 46px;
    }

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

    .mf-lead {
        font-size: 17px;
    }

    .mf-btn {
        width: 100%;
    }

    .mf-map {
        height: auto;

        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .mf-control-card,
    .mf-evidence-card,
    .mf-framework {
        position: static;

        width: 100%;

        transform: none;
    }

    .mf-main-line,
    .mf-branch {
        display: none;
    }

    .mf-benefits-shell {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        padding: 18px 0;
    }

    .mf-benefit,
    .mf-benefit:first-child,
    .mf-benefit:last-child,
    .mf-benefit:nth-child(odd) {
        padding: 20px 0;

        border-right: 0;

        border-bottom: 1px solid #dde5e0;
    }

    .mf-benefit:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   TERMS & CONDITIONS
   ========================================================= */

.terms-row {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 12px;
}

.terms-row input[type="checkbox"] {
    flex: 0 0 16px;

    width: 16px;
    height: 16px;

    min-height: 16px;

    margin: 2px 0 0;

    padding: 0;

    cursor: pointer;
}

.terms-row label {
    display: block;

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 11.5px;

    line-height: 1.5;

    color: #667085;

    cursor: pointer;
}

.terms-row label a {
    color: #008b00;

    font-weight: 500;

    text-decoration: underline;

    text-underline-offset: 2px;
}

.terms-row label a:hover {
    color: #006f00;
}