/* ========================================================
   COILHOOK CATALOG PAGE V2
   PART 1A: BASE + BUTTONS
   ACG Industrial Technical UI
   ======================================================== */

.cg-page {
    --cg-blue: #0c53a5;
    --cg-blue-deep: #06417d;
    --cg-navy: #022041;
    --cg-navy-deep: #011629;
    --cg-text: #314457;
    --cg-muted: #697887;
    --cg-line: #c6d0da;
    --cg-soft: #edf2f6;
    --cg-soft-light: #f7f9fc;
    --cg-white: #ffffff;

    width: 100%;
    overflow: hidden;

    color: var(--cg-text);
    background: #ffffff;

    font-family:
        Shabnam,
        Tahoma,
        Arial,
        sans-serif;
}

.cg-page *,
.cg-page *::before,
.cg-page *::after {
    box-sizing: border-box;
}

.cg-page a {
    text-decoration: none;
}

.cg-page img {
    max-width: 100%;
}

.cg-page button,
.cg-page input,
.cg-page select,
.cg-page textarea {
    font: inherit;
}

.cg-shell {
    width: min(
        100%,
        1540px
    );

    margin-inline: auto;

    padding-inline:
        clamp(
            20px,
            4.8vw,
            88px
        );
}

.cg-section {
    padding-block:
        clamp(
            90px,
            8vw,
            140px
        );
}

.cg-kicker {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--cg-blue);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 950;
    line-height: 1.5;
    letter-spacing: 0.085em;

    direction: ltr;
    text-transform: uppercase;
}

.cg-kicker::before {
    content: "";

    width: 44px;
    height: 2px;

    background: currentColor;
}

.cg-kicker--light {
    color: #8cc8f8;
}

.cg-section-head {
    max-width: 750px;
}

.cg-section-head--wide {
    max-width: 920px;

    margin-bottom:
        clamp(
            45px,
            5vw,
            72px
        );

    padding-right: 25px;

    border-right:
        4px solid
        var(--cg-blue);
}

.cg-section-head h2,
.cg-request h2,
.cg-availability h2,
.cg-final h2 {
    margin: 14px 0 0;

    color: var(--cg-navy);

    font-size:
        clamp(
            31px,
            3.4vw,
            53px
        );

    font-weight: 950;
    line-height: 1.42;
    letter-spacing: -0.035em;
}

.cg-section-head p,
.cg-request p,
.cg-availability p,
.cg-final p {
    margin: 15px 0 0;

    color: var(--cg-muted);

    font-size: 15px;
    font-weight: 550;
    line-height: 2.1;
}

/* ========================================================
   BUTTONS
   ======================================================== */

.cg-btn {
    min-height: 53px;

    padding-inline: 25px;

    border: 1px solid transparent;
    border-radius: 2px;

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

    color: var(--cg-navy);
    background: #ffffff;

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

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

.cg-btn:hover,
.cg-btn:focus-visible {
    transform: translateY(-3px);
}

.cg-btn--primary {
    color: #ffffff;

    border-color: var(--cg-blue);
    background: var(--cg-blue);

    box-shadow:
        0 15px 35px
        rgba(
            12,
            83,
            165,
            0.22
        );
}

.cg-btn--primary:hover,
.cg-btn--primary:focus-visible {
    border-color: var(--cg-navy);
    background: var(--cg-navy);
}

.cg-btn--outline {
    color: var(--cg-navy);

    border-color:
        rgba(
            2,
            32,
            65,
            0.28
        );

    background:
        rgba(
            255,
            255,
            255,
            0.55
        );
}

.cg-btn--outline:hover,
.cg-btn--outline:focus-visible {
    color: var(--cg-blue);

    border-color: var(--cg-blue);
    background: #ffffff;
}

.cg-btn--light {
    color: var(--cg-navy);

    border-color: #ffffff;
    background: #ffffff;
}

.cg-btn--transparent {
    color: #ffffff;

    border-color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    background:
        rgba(
            255,
            255,
            255,
            0.035
        );
}

.cg-btn--transparent:hover,
.cg-btn--transparent:focus-visible {
    color: var(--cg-navy);

    border-color: #ffffff;
    background: #ffffff;
}

/* END CATALOG CSS V2 PART 1A */

/* ========================================================
   CATALOG CSS V2 PART 1B
   HERO CONTENT
   ======================================================== */

.cg-hero {
    position: relative;

    min-height: 835px;

    overflow: hidden;
    isolation: isolate;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        linear-gradient(
            112deg,
            #e9eef2 0%,
            #f8fafc 45%,
            #ffffff 100%
        );
}

.cg-hero::before {
    content: "";

    position: absolute;
    z-index: 5;

    top: 0;
    right: 0;

    width: 5px;
    height: 100%;

    background: var(--cg-blue);
}

.cg-hero::after {
    content: "";

    position: absolute;
    z-index: 5;

    right: 0;
    bottom: 0;
    left: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--cg-blue) 0 34%,
            rgba(
                2,
                32,
                65,
                0.14
            ) 34%
        );
}

.cg-hero__technical-bg {
    position: absolute;
    z-index: 0;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(
                2,
                32,
                65,
                0.04
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                2,
                32,
                65,
                0.04
            )
            1px,
            transparent 1px
        );

    background-size:
        92px 92px,
        92px 92px;
}

.cg-hero__technical-bg::before {
    content: "TECHNICAL CATALOGS";

    position: absolute;

    top: 34px;
    left: 2vw;

    color:
        rgba(
            2,
            32,
            65,
            0.035
        );

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size:
        clamp(
            62px,
            8.8vw,
            155px
        );

    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.065em;

    direction: ltr;
    white-space: nowrap;
}

.cg-hero__grid {
    position: relative;
    z-index: 3;

    min-height: 700px;

    padding-top:
        clamp(
            85px,
            7vw,
            120px
        );

    padding-bottom:
        clamp(
            48px,
            5vw,
            78px
        );

    display: grid;

    grid-template-columns:
        minmax(
            500px,
            1.03fr
        )
        minmax(
            470px,
            0.97fr
        );

    grid-template-areas:
        "visual content";

    align-items: center;

    gap:
        clamp(
            60px,
            7vw,
            125px
        );

    direction: ltr;
}

.cg-hero__content {
    grid-area: content;

    max-width: 770px;

    direction: rtl;
}

.cg-eyebrow {
    min-height: 38px;

    padding-inline: 15px;

    border:
        1px solid
        rgba(
            12,
            83,
            165,
            0.24
        );

    border-radius: 2px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--cg-blue-deep);

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

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.055em;

    direction: ltr;
}

.cg-eyebrow i {
    color: var(--cg-blue);
}

.cg-hero h1 {
    max-width: 760px;

    margin: 25px 0 0;

    color: var(--cg-navy);

    font-size:
        clamp(
            40px,
            3.85vw,
            60px
        );

    font-weight: 950;
    line-height: 1.38;
    letter-spacing: -0.045em;
}

.cg-hero h1 strong {
    display: block;

    color: var(--cg-blue);

    font-weight: 950;
}

.cg-hero h1::after {
    content: "";

    display: block;

    width: 100px;
    height: 4px;

    margin-top: 20px;

    background: var(--cg-blue);
}

.cg-hero__lead {
    max-width: 710px;

    margin: 24px 0 0;

    color: #263d53;

    font-size:
        clamp(
            18px,
            1.55vw,
            24px
        );

    font-weight: 850;
    line-height: 1.95;
}

.cg-hero__desc {
    max-width: 710px;

    margin: 14px 0 0;

    color: var(--cg-muted);

    font-size: 15px;
    font-weight: 550;
    line-height: 2.1;
}

.cg-hero__actions {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.cg-keywords {
    max-width: 720px;

    margin-top: 33px;
    padding-top: 22px;

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

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.cg-keywords span {
    min-height: 31px;

    padding-inline: 10px;

    border:
        1px solid
        rgba(
            2,
            32,
            65,
            0.14
        );

    border-radius: 2px;

    display: inline-flex;
    align-items: center;

    color: #5d6d7d;

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

    font-size: 10px;
    font-weight: 800;
}

/* END CATALOG CSS V2 PART 1B */

/* ========================================================
   CATALOG CSS V2 PART 1C
   DOCUMENT VISUAL + HERO METRICS
   ======================================================== */

.cg-hero__visual {
    grid-area: visual;

    position: relative;

    min-height: 630px;

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

    direction: ltr;
}

.cg-document-stage {
    position: relative;

    width: 100%;
    min-height: 620px;

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

.cg-document-stage::before,
.cg-document-stage::after {
    content: "";

    position: absolute;
    z-index: 0;

    pointer-events: none;
}

.cg-document-stage::before {
    top: 7%;
    bottom: 7%;
    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            transparent,
            rgba(
                12,
                83,
                165,
                0.23
            ),
            transparent
        );
}

.cg-document-stage::after {
    top: 50%;
    right: 6%;
    left: 6%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                12,
                83,
                165,
                0.23
            ),
            transparent
        );
}

.cg-document-stage__axis {
    position: absolute;
    z-index: 1;

    top: 11%;
    left: 10%;

    width: 38px;
    height: 38px;

    border-top:
        1px solid
        rgba(
            12,
            83,
            165,
            0.42
        );

    border-left:
        1px solid
        rgba(
            12,
            83,
            165,
            0.42
        );
}

.cg-document {
    position: relative;
    z-index: 3;

    width:
        min(
            77%,
            450px
        );

    min-height: 570px;

    border:
        1px solid
        #bdc9d4;

    border-radius: 2px;

    display: grid;

    grid-template-rows:
        auto
        1fr
        auto;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #edf2f6 100%
        );

    box-shadow:
        0 20px 25px
        rgba(
            2,
            32,
            65,
            0.13
        ),
        0 42px 70px
        rgba(
            2,
            32,
            65,
            0.18
        );

    transform:
        perspective(1300px)
        rotateY(5deg)
        rotateX(1deg)
        translateY(-4px);

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

.cg-document::before {
    content: "";

    position: absolute;
    z-index: 4;

    top: 0;
    right: 0;

    width: 95px;
    height: 5px;

    background: var(--cg-blue);
}

.cg-document::after {
    content: "";

    position: absolute;
    z-index: 4;

    top: 17px;
    right: 17px;
    bottom: 17px;
    left: 17px;

    border:
        1px solid
        rgba(
            2,
            32,
            65,
            0.07
        );

    pointer-events: none;
}

.cg-document-stage:hover .cg-document {
    transform:
        perspective(1300px)
        rotateY(2deg)
        rotateX(0)
        translateY(-13px);

    box-shadow:
        0 25px 30px
        rgba(
            2,
            32,
            65,
            0.14
        ),
        0 52px 88px
        rgba(
            2,
            32,
            65,
            0.22
        );
}

.cg-document__head {
    position: relative;
    z-index: 5;

    min-height: 78px;

    padding:
        23px 26px;

    border-bottom:
        1px solid
        var(--cg-line);

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

    gap: 15px;

    direction: ltr;
}

.cg-document__head span {
    min-width: 54px;
    min-height: 31px;

    padding-inline: 10px;

    border-radius: 2px;

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

    color: #ffffff;
    background: var(--cg-blue);

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

    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.06em;
}

.cg-document__head small {
    color: var(--cg-navy);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.cg-document__render {
    position: relative;
    z-index: 3;

    min-height: 395px;

    padding:
        35px
        38px;

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

    background-image:
        linear-gradient(
            rgba(
                2,
                32,
                65,
                0.034
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                2,
                32,
                65,
                0.034
            )
            1px,
            transparent 1px
        );

    background-size:
        52px 52px,
        52px 52px;
}

.cg-document__render img {
    display: block;

    width: 100%;
    height: 370px;

    object-fit: contain;

    background: transparent;

    filter:
        drop-shadow(
            0 8px 8px
            rgba(
                2,
                32,
                65,
                0.16
            )
        )
        drop-shadow(
            0 22px 22px
            rgba(
                2,
                32,
                65,
                0.23
            )
        )
        drop-shadow(
            0 38px 34px
            rgba(
                2,
                32,
                65,
                0.15
            )
        );

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.cg-document-stage:hover
.cg-document__render img {
    transform:
        translateY(-7px)
        scale(1.025);

    filter:
        drop-shadow(
            0 9px 9px
            rgba(
                2,
                32,
                65,
                0.18
            )
        )
        drop-shadow(
            0 27px 25px
            rgba(
                2,
                32,
                65,
                0.27
            )
        )
        drop-shadow(
            0 44px 38px
            rgba(
                2,
                32,
                65,
                0.18
            )
        );
}

.cg-document__foot {
    position: relative;
    z-index: 5;

    min-height: 82px;

    padding:
        21px 26px;

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

    display: flex;
    flex-direction: column;
    justify-content: center;

    direction: ltr;
}

.cg-document__foot strong {
    color: var(--cg-navy);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 19px;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.cg-document__foot span {
    margin-top: 4px;

    color: var(--cg-blue);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.cg-document-note {
    position: absolute;
    z-index: 5;

    min-width: 160px;

    padding:
        13px
        15px;

    border:
        1px solid
        rgba(
            2,
            32,
            65,
            0.17
        );

    border-radius: 2px;

    color: var(--cg-navy);

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

    box-shadow:
        0 16px 40px
        rgba(
            2,
            32,
            65,
            0.1
        );

    direction: ltr;
}

.cg-document-note span {
    display: block;

    color: var(--cg-blue);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.cg-document-note strong {
    display: block;

    margin-top: 4px;

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 850;
}

.cg-document-note--format {
    top: 17%;
    right: 0;
}

.cg-document-note--status {
    left: 0;
    bottom: 18%;
}

/* ========================================================
   HERO METRICS
   ======================================================== */

.cg-hero__metrics {
    position: relative;
    z-index: 4;

    padding-bottom: 34px;

    display: grid;

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

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

.cg-hero__metrics > div {
    min-height: 83px;

    padding:
        20px 24px;

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

    display: flex;
    align-items: center;

    gap: 14px;
}

.cg-hero__metrics > div:last-child {
    border-left: 0;
}

.cg-hero__metrics strong {
    color: var(--cg-blue);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 20px;
    font-weight: 950;

    direction: ltr;
}

.cg-hero__metrics span {
    color: #536577;

    font-size: 12px;
    font-weight: 850;
}

/* END CATALOG CSS V2 PART 1C */

/* ========================================================
   CATALOG CSS V2 PART 1D
   CATALOG SECTION + CARD STRUCTURE
   ======================================================== */

.cg-catalogs {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(
                12,
                83,
                165,
                0.08
            )
            1px,
            transparent 1.6px
        ),
        linear-gradient(
            rgba(
                2,
                32,
                65,
                0.033
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                2,
                32,
                65,
                0.033
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #edf2f6 100%
        );

    background-size:
        24px 24px,
        92px 92px,
        92px 92px,
        cover;
}

.cg-catalogs::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 34%;
    height: 4px;

    background: var(--cg-blue);
}

.cg-catalogs::after {
    content: "CATALOG FILES";

    position: absolute;

    left: 2vw;
    bottom: -12px;

    color:
        rgba(
            2,
            32,
            65,
            0.025
        );

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size:
        clamp(
            75px,
            11vw,
            180px
        );

    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.07em;

    direction: ltr;
    white-space: nowrap;

    pointer-events: none;
}

.cg-catalog-grid {
    position: relative;
    z-index: 2;

    display: grid;

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

    gap: 22px;
}

.cg-catalog-card {
    position: relative;
    overflow: hidden;

    min-height: 570px;

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

    border-radius: 2px;

    display: grid;

    grid-template-columns:
        minmax(
            260px,
            0.82fr
        )
        minmax(
            0,
            1.18fr
        );

    grid-template-areas:
        "visual body";

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

    box-shadow:
        0 18px 48px
        rgba(
            2,
            32,
            65,
            0.075
        );

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

.cg-catalog-card:first-child {
    grid-column:
        1 / -1;

    grid-template-columns:
        minmax(
            390px,
            0.8fr
        )
        minmax(
            0,
            1.2fr
        );

    min-height: 510px;
}

.cg-catalog-card::before {
    content: "";

    position: absolute;
    z-index: 5;

    top: 0;
    right: 0;

    width: 0;
    height: 4px;

    background: var(--cg-blue);

    transition:
        width 0.3s ease;
}

.cg-catalog-card:hover {
    border-color:
        rgba(
            12,
            83,
            165,
            0.58
        );

    transform:
        translateY(-7px);

    box-shadow:
        0 30px 72px
        rgba(
            2,
            32,
            65,
            0.15
        );
}

.cg-catalog-card:hover::before {
    width: 100%;
}

/* END CATALOG CSS V2 PART 1D */

/* ========================================================
   CATALOG CSS V2 PART 1E
   CARD VISUAL + RENDER + META
   ======================================================== */

.cg-catalog-card__visual {
    grid-area: visual;

    position: relative;
    overflow: hidden;

    min-height: 100%;

    padding:
        70px
        38px
        50px;

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

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

    background:
        linear-gradient(
            rgba(
                2,
                32,
                65,
                0.035
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                2,
                32,
                65,
                0.035
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #e9eef2 100%
        );

    background-size:
        54px 54px,
        54px 54px,
        cover;
}

.cg-catalog-card__visual::before {
    content: "";

    position: absolute;

    top: 17px;
    right: 17px;
    bottom: 17px;
    left: 17px;

    border:
        1px solid
        rgba(
            2,
            32,
            65,
            0.07
        );

    pointer-events: none;
}

.cg-catalog-card__visual::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 75px;
    height: 4px;

    background: var(--cg-blue);

    transition:
        width 0.28s ease;
}

.cg-catalog-card:hover
.cg-catalog-card__visual::after {
    width: 100%;
}

.cg-catalog-card__visual img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 330px;

    object-fit: contain;

    background: transparent;

    filter:
        drop-shadow(
            0 8px 8px
            rgba(
                2,
                32,
                65,
                0.15
            )
        )
        drop-shadow(
            0 22px 22px
            rgba(
                2,
                32,
                65,
                0.22
            )
        )
        drop-shadow(
            0 38px 34px
            rgba(
                2,
                32,
                65,
                0.14
            )
        );

    transition:
        transform 0.34s ease,
        filter 0.34s ease;
}

.cg-catalog-card:first-child
.cg-catalog-card__visual img {
    height: 370px;
}

.cg-catalog-card:hover
.cg-catalog-card__visual img {
    transform:
        translateY(-7px)
        scale(1.03);

    filter:
        drop-shadow(
            0 9px 9px
            rgba(
                2,
                32,
                65,
                0.17
            )
        )
        drop-shadow(
            0 27px 25px
            rgba(
                2,
                32,
                65,
                0.26
            )
        )
        drop-shadow(
            0 44px 38px
            rgba(
                2,
                32,
                65,
                0.17
            )
        );
}

.cg-catalog-card__meta {
    position: absolute;
    z-index: 4;

    top: 22px;
    right: 22px;
    left: 22px;

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

    direction: ltr;
}

.cg-catalog-card__meta span {
    color:
        rgba(
            2,
            32,
            65,
            0.34
        );

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 950;
}

.cg-catalog-card__meta small {
    color: var(--cg-blue);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.cg-catalog-card__status {
    position: absolute;
    z-index: 4;

    right: 22px;
    bottom: 22px;

    min-height: 35px;

    padding-inline: 12px;

    border:
        1px solid
        rgba(
            12,
            83,
            165,
            0.2
        );

    border-radius: 2px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--cg-blue-deep);

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

    font-size: 10px;
    font-weight: 850;
}

.cg-catalog-card__status i {
    color: var(--cg-blue);
}

/* END CATALOG CSS V2 PART 1E */

/* ========================================================
   CATALOG CSS V2 PART 1F
   CARD BODY + ACTIONS + RESPONSIVE
   ======================================================== */

.cg-catalog-card__body {
    grid-area: body;

    position: relative;

    padding:
        clamp(
            35px,
            3.8vw,
            57px
        );

    display: flex;
    flex-direction: column;

    direction: rtl;
}

.cg-catalog-card__en {
    color: var(--cg-blue);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.075em;

    direction: ltr;
    text-transform: uppercase;
}

.cg-catalog-card h3 {
    margin: 13px 0 0;

    color: var(--cg-navy);

    font-size:
        clamp(
            23px,
            2vw,
            32px
        );

    font-weight: 950;
    line-height: 1.55;
    letter-spacing: -0.025em;
}

.cg-catalog-card__body > p {
    margin: 14px 0 0;

    color: #627486;

    font-size: 13px;
    font-weight: 550;
    line-height: 2.05;
}

.cg-catalog-card ul {
    margin:
        26px 0 0;

    padding: 0;

    list-style: none;

    display: grid;

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

    gap: 10px;
}

.cg-catalog-card li {
    min-height: 46px;

    padding:
        10px
        12px;

    border:
        1px solid
        rgba(
            2,
            32,
            65,
            0.1
        );

    border-radius: 2px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #4c6073;

    background: #f7f9fb;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.7;
}

.cg-catalog-card li i {
    flex: 0 0 auto;

    color: var(--cg-blue);

    font-size: 10px;
}

.cg-catalog-card__actions {
    margin-top: auto;
    padding-top: 30px;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.cg-download-soon,
.cg-catalog-card__actions a {
    min-height: 50px;

    padding-inline: 19px;

    border-radius: 2px;

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

    gap: 9px;

    font-size: 11px;
    font-weight: 900;

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

.cg-download-soon {
    border:
        1px solid
        var(--cg-blue);

    color: #ffffff;
    background: var(--cg-blue);

    cursor: pointer;

    box-shadow:
        0 13px 30px
        rgba(
            12,
            83,
            165,
            0.18
        );
}

.cg-download-soon:hover,
.cg-download-soon:focus-visible {
    border-color: var(--cg-navy);
    background: var(--cg-navy);

    transform: translateY(-3px);
}

.cg-catalog-card__actions a {
    border:
        1px solid
        rgba(
            2,
            32,
            65,
            0.22
        );

    color: var(--cg-navy);
    background: #ffffff;
}

.cg-catalog-card__actions a:hover,
.cg-catalog-card__actions a:focus-visible {
    color: var(--cg-blue);

    border-color: var(--cg-blue);

    transform: translateY(-3px);
}

.cg-catalog-status-note {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin:
        31px auto 0;

    padding:
        15px
        20px;

    border:
        1px solid
        rgba(
            12,
            83,
            165,
            0.16
        );

    border-right:
        3px solid
        var(--cg-blue);

    border-radius: 2px;

    color: #617385;

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

    text-align: center;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.9;
}

/* ========================================================
   RESPONSIVE: TABLET LANDSCAPE
   ======================================================== */

@media (max-width: 1300px) {
    .cg-catalog-card,
    .cg-catalog-card:first-child {
        grid-template-columns:
            minmax(
                245px,
                0.78fr
            )
            minmax(
                0,
                1.22fr
            );
    }

    .cg-catalog-card__visual {
        padding-inline: 28px;
    }

    .cg-catalog-card__visual img {
        height: 300px;
    }
}

/* ========================================================
   RESPONSIVE: TABLET
   ======================================================== */

@media (max-width: 1120px) {
    .cg-hero {
        min-height: auto;
    }

    .cg-hero__grid {
        min-height: auto;

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

        grid-template-areas:
            "content"
            "visual";

        gap: 45px;

        direction: rtl;
    }

    .cg-hero__content {
        max-width: 900px;
    }

    .cg-hero__visual,
    .cg-document-stage {
        min-height: 590px;
    }

    .cg-catalog-grid {
        grid-template-columns:
            minmax(
                0,
                1fr
            );
    }

    .cg-catalog-card:first-child {
        grid-column: auto;
    }

    .cg-catalog-card,
    .cg-catalog-card:first-child {
        grid-template-columns:
            minmax(
                320px,
                0.82fr
            )
            minmax(
                0,
                1.18fr
            );

        min-height: 520px;
    }
}

/* ========================================================
   RESPONSIVE: MOBILE TABLET
   ======================================================== */

@media (max-width: 800px) {
    .cg-shell {
        padding-inline: 20px;
    }

    .cg-section {
        padding-block: 76px;
    }

    .cg-hero__grid {
        padding-top: 68px;
        padding-bottom: 45px;
    }

    .cg-hero h1 {
        font-size:
            clamp(
                35px,
                8.6vw,
                48px
            );
    }

    .cg-hero__lead {
        font-size: 18px;
    }

    .cg-hero__actions {
        width: 100%;

        flex-direction: column;
    }

    .cg-btn {
        width: 100%;
    }

    .cg-keywords {
        display: none;
    }

    .cg-document-note {
        display: none;
    }

    .cg-hero__visual,
    .cg-document-stage {
        min-height: 520px;
    }

    .cg-document {
        width:
            min(
                90%,
                410px
            );

        min-height: 510px;

        transform: none;
    }

    .cg-document-stage:hover
    .cg-document {
        transform:
            translateY(-7px);
    }

    .cg-document__render {
        min-height: 335px;
    }

    .cg-document__render img {
        height: 315px;
    }

    .cg-hero__metrics {
        grid-template-columns:
            minmax(
                0,
                1fr
            );
    }

    .cg-hero__metrics > div {
        border-left: 0;

        border-bottom:
            1px solid
            var(--cg-line);
    }

    .cg-hero__metrics > div:last-child {
        border-bottom: 0;
    }

    .cg-catalogs::after {
        display: none;
    }

    .cg-catalog-card,
    .cg-catalog-card:first-child {
        grid-template-columns:
            minmax(
                0,
                1fr
            );

        grid-template-areas:
            "visual"
            "body";

        min-height: auto;
    }

    .cg-catalog-card__visual {
        min-height: 400px;

        border-left: 0;

        border-bottom:
            1px solid
            var(--cg-line);
    }

    .cg-catalog-card__visual img,
    .cg-catalog-card:first-child
    .cg-catalog-card__visual img {
        height: 310px;
    }
}

/* ========================================================
   RESPONSIVE: MOBILE
   ======================================================== */

@media (max-width: 560px) {
    .cg-shell {
        padding-inline: 16px;
    }

    .cg-section {
        padding-block: 64px;
    }

    .cg-hero::before {
        width: 3px;
    }

    .cg-hero__technical-bg::before {
        display: none;
    }

    .cg-hero__grid {
        padding-top: 55px;
        padding-bottom: 35px;

        gap: 28px;
    }

    .cg-eyebrow {
        min-height: 34px;

        padding-inline: 11px;

        font-size: 8px;
    }

    .cg-hero h1 {
        margin-top: 19px;

        font-size:
            clamp(
                31px,
                9vw,
                39px
            );

        line-height: 1.5;
    }

    .cg-hero h1::after {
        width: 72px;
        height: 3px;

        margin-top: 16px;
    }

    .cg-hero__lead {
        margin-top: 18px;

        font-size: 16px;
    }

    .cg-hero__desc {
        font-size: 13px;
    }

    .cg-hero__visual,
    .cg-document-stage {
        min-height: 435px;
    }

    .cg-document {
        width: 94%;

        min-height: 430px;
    }

    .cg-document__head {
        min-height: 65px;

        padding:
            18px
            19px;
    }

    .cg-document__render {
        min-height: 280px;

        padding:
            22px;
    }

    .cg-document__render img {
        height: 270px;
    }

    .cg-document__foot {
        min-height: 68px;

        padding:
            17px
            19px;
    }

    .cg-hero__metrics {
        padding-bottom: 0;
    }

    .cg-hero__metrics > div {
        min-height: 68px;

        padding:
            15px
            5px;
    }

    .cg-section-head--wide {
        margin-bottom: 35px;

        padding-right: 15px;

        border-right-width: 3px;
    }

    .cg-catalog-grid {
        gap: 16px;
    }

    .cg-catalog-card__visual {
        min-height: 330px;

        padding:
            62px
            22px
            47px;
    }

    .cg-catalog-card__visual img,
    .cg-catalog-card:first-child
    .cg-catalog-card__visual img {
        height: 245px;
    }

    .cg-catalog-card__body {
        padding:
            28px
            20px;
    }

    .cg-catalog-card h3 {
        font-size: 22px;
    }

    .cg-catalog-card ul {
        grid-template-columns:
            minmax(
                0,
                1fr
            );
    }

    .cg-catalog-card__actions {
        flex-direction: column;
    }

    .cg-download-soon,
    .cg-catalog-card__actions a {
        width: 100%;
    }
}

/* ========================================================
   ACCESSIBILITY
   ======================================================== */

.cg-page a:focus-visible,
.cg-page button:focus-visible,
.cg-page input:focus-visible,
.cg-page select:focus-visible,
.cg-page textarea:focus-visible {
    outline:
        3px solid
        rgba(
            12,
            83,
            165,
            0.32
        );

    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .cg-page *,
    .cg-page *::before,
    .cg-page *::after {
        scroll-behavior: auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }
}

/* END CATALOG CSS V2 PART 1F */

/* ========================================================
   CATALOG CSS V2 PART 2A
   TECHNICAL FILE INFORMATION
   ======================================================== */

.cg-file-info {
    position: relative;
    overflow: hidden;

    background: #ffffff;
}

.cg-file-info::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 6px;

    background:
        linear-gradient(
            180deg,
            var(--cg-blue) 0%,
            var(--cg-navy) 100%
        );
}

.cg-file-info::after {
    content: "TECHNICAL DATA";

    position: absolute;

    top: 60px;
    left: 2vw;

    color:
        rgba(
            2,
            32,
            65,
            0.025
        );

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size:
        clamp(
            65px,
            9vw,
            145px
        );

    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.065em;

    direction: ltr;
    white-space: nowrap;

    pointer-events: none;
}

.cg-file-info .cg-section-head {
    position: relative;
    z-index: 2;

    margin-bottom:
        clamp(
            42px,
            5vw,
            72px
        );

    padding-right: 24px;

    border-right:
        4px solid
        var(--cg-blue);
}

.cg-file-feature-grid {
    position: relative;
    z-index: 2;

    display: grid;

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

    gap: 16px;
}

.cg-file-feature {
    position: relative;
    overflow: hidden;

    min-height: 290px;

    padding:
        30px
        27px;

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

    border-radius: 2px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            155deg,
            #ffffff 0%,
            #f3f6f9 100%
        );

    box-shadow:
        0 16px 42px
        rgba(
            2,
            32,
            65,
            0.065
        );

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

.cg-file-feature::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 0;
    height: 4px;

    background: var(--cg-blue);

    transition:
        width 0.3s ease;
}

.cg-file-feature::after {
    content: "";

    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 26px;
    height: 26px;

    border-right:
        1px solid
        rgba(
            12,
            83,
            165,
            0.3
        );

    border-bottom:
        1px solid
        rgba(
            12,
            83,
            165,
            0.3
        );

    pointer-events: none;
}

.cg-file-feature:hover {
    border-color:
        rgba(
            12,
            83,
            165,
            0.5
        );

    transform:
        translateY(-7px);

    background: #ffffff;

    box-shadow:
        0 28px 65px
        rgba(
            2,
            32,
            65,
            0.14
        );
}

.cg-file-feature:hover::before {
    width: 100%;
}

.cg-file-feature__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    direction: ltr;
}

.cg-file-feature__top span {
    color:
        rgba(
            2,
            32,
            65,
            0.32
        );

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.06em;
}

.cg-file-feature__top i {
    width: 58px;
    height: 58px;

    border:
        1px solid
        rgba(
            12,
            83,
            165,
            0.22
        );

    border-radius: 2px;

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

    color: var(--cg-blue);

    background:
        rgba(
            12,
            83,
            165,
            0.055
        );

    font-size: 22px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.cg-file-feature:hover
.cg-file-feature__top i {
    color: #ffffff;

    border-color: var(--cg-blue);
    background: var(--cg-blue);

    transform:
        translateY(-4px);
}

.cg-file-feature h3 {
    margin:
        auto
        0
        0;

    padding-top: 42px;

    color: var(--cg-navy);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size:
        clamp(
            18px,
            1.45vw,
            23px
        );

    font-weight: 950;
    line-height: 1.45;
    letter-spacing: -0.025em;

    direction: ltr;
}

.cg-file-feature p {
    margin: 11px 0 0;

    color: #697b8c;

    font-size: 12px;
    font-weight: 650;
    line-height: 1.95;
}

/* ========================================================
   TECHNICAL FILE RESPONSIVE
   ======================================================== */

@media (max-width: 1120px) {
    .cg-file-feature-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }
}

@media (max-width: 800px) {
    .cg-file-info::after {
        display: none;
    }

    .cg-file-info .cg-section-head {
        margin-bottom: 38px;
    }

    .cg-file-feature {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .cg-file-info::before {
        width: 3px;
    }

    .cg-file-info .cg-section-head {
        padding-right: 15px;

        border-right-width: 3px;
    }

    .cg-file-feature-grid {
        grid-template-columns:
            minmax(
                0,
                1fr
            );

        gap: 13px;
    }

    .cg-file-feature {
        min-height: 230px;

        padding:
            24px
            21px;
    }

    .cg-file-feature__top i {
        width: 50px;
        height: 50px;

        font-size: 19px;
    }

    .cg-file-feature h3 {
        padding-top: 34px;

        font-size: 19px;
    }
}

/* END CATALOG CSS V2 PART 2A */

/* ========================================================
   CATALOG CSS V2 PART 2B
   CATALOG REQUEST FORM
   ======================================================== */

.cg-request {
    position: relative;
    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            124deg,
            #011629 0%,
            #022041 54%,
            #073d75 100%
        );
}

.cg-request::before {
    content: "";

    position: absolute;
    inset: 0;

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

    background-size:
        86px 86px,
        86px 86px;

    pointer-events: none;
}

.cg-request::after {
    content: "REQUEST CATALOG";

    position: absolute;

    right: 2vw;
    bottom: -18px;

    color:
        rgba(
            255,
            255,
            255,
            0.025
        );

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size:
        clamp(
            70px,
            10vw,
            165px
        );

    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.065em;

    direction: ltr;
    white-space: nowrap;

    pointer-events: none;
}

.cg-request__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(
            0,
            0.9fr
        )
        minmax(
            500px,
            1.1fr
        );

    align-items: start;

    gap:
        clamp(
            55px,
            7vw,
            110px
        );
}

.cg-request__content {
    position: sticky;
    top: 120px;

    padding-top: 18px;
}

.cg-request h2 {
    color: #ffffff;
}

.cg-request__content > p {
    max-width: 650px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}

.cg-request__steps {
    margin-top: 42px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.16
        );

    display: grid;

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

.cg-request__steps > div {
    min-height: 130px;

    padding:
        25px
        18px;

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            0.16
        );

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 8px;
}

.cg-request__steps > div:last-child {
    border-left: 0;
}

.cg-request__steps span {
    color: #75bdf6;

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

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

    direction: ltr;
}

.cg-request__steps strong {
    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 11px;
    font-weight: 850;
    line-height: 1.8;
}

/* ========================================================
   REQUEST FORM
   ======================================================== */

.cg-request-form {
    position: relative;

    padding:
        clamp(
            30px,
            4vw,
            54px
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.17
        );

    border-radius: 2px;

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

    box-shadow:
        0 34px 85px
        rgba(
            0,
            0,
            0,
            0.26
        );

    backdrop-filter: blur(10px);
}

.cg-request-form::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 110px;
    height: 4px;

    background: #5fb8ff;
}

.cg-request-form::after {
    content: "";

    position: absolute;

    top: 17px;
    right: 17px;
    bottom: 17px;
    left: 17px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.05
        );

    pointer-events: none;
}

.cg-form-row {
    position: relative;
    z-index: 2;

    display: grid;

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

    gap: 14px;
}

.cg-request-form label {
    position: relative;
    z-index: 2;

    margin-bottom: 16px;

    display: block;
}

.cg-request-form label > span {
    display: block;

    margin-bottom: 8px;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 11px;
    font-weight: 850;
}

.cg-request-form input,
.cg-request-form select,
.cg-request-form textarea {
    width: 100%;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.2
        );

    border-radius: 2px;

    color: #ffffff;

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

    outline: none;

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

.cg-request-form input,
.cg-request-form select {
    height: 55px;

    padding-inline: 16px;
}

.cg-request-form textarea {
    min-height: 145px;

    padding:
        15px
        16px;

    resize: vertical;
}

.cg-request-form input::placeholder,
.cg-request-form textarea::placeholder {
    color:
        rgba(
            255,
            255,
            255,
            0.42
        );
}

.cg-request-form select {
    cursor: pointer;
}

.cg-request-form select option {
    color: var(--cg-navy);
    background: #ffffff;
}

.cg-request-form input:focus,
.cg-request-form select:focus,
.cg-request-form textarea:focus {
    border-color: #70c0ff;

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

    box-shadow:
        0 0 0 3px
        rgba(
            95,
            184,
            255,
            0.13
        );
}

.cg-request-form button[type="submit"] {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 57px;

    padding-inline: 24px;

    border: 1px solid #ffffff;
    border-radius: 2px;

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

    gap: 11px;

    color: var(--cg-navy);
    background: #ffffff;

    font-size: 12px;
    font-weight: 950;

    cursor: pointer;

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

.cg-request-form button[type="submit"]:hover,
.cg-request-form button[type="submit"]:focus-visible {
    color: #ffffff;

    border-color: #5fb8ff;
    background: var(--cg-blue);

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(
            0,
            0,
            0,
            0.22
        );
}

/* ========================================================
   REQUEST RESPONSIVE
   ======================================================== */

@media (max-width: 1120px) {
    .cg-request__grid {
        grid-template-columns:
            minmax(
                0,
                1fr
            );

        gap: 50px;
    }

    .cg-request__content {
        position: relative;
        top: auto;

        max-width: 850px;
    }
}

@media (max-width: 800px) {
    .cg-request::after {
        display: none;
    }

    .cg-request__steps {
        grid-template-columns:
            minmax(
                0,
                1fr
            );
    }

    .cg-request__steps > div {
        min-height: 82px;

        border-left: 0;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.15
            );

        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .cg-request__steps > div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .cg-form-row {
        grid-template-columns:
            minmax(
                0,
                1fr
            );

        gap: 0;
    }

    .cg-request-form {
        padding:
            28px
            20px;
    }

    .cg-request-form::after {
        display: none;
    }

    .cg-request-form input,
    .cg-request-form select {
        height: 52px;
    }
}

/* END CATALOG CSS V2 PART 2B */

/* ========================================================
   CATALOG CSS V2 PART 2C
   AVAILABILITY + FINAL CTA + NOTICE
   ======================================================== */

.cg-availability {
    position: relative;
    overflow: hidden;

    padding-block:
        clamp(
            72px,
            7vw,
            110px
        );

    background:
        linear-gradient(
            135deg,
            #eef3f7 0%,
            #ffffff 60%,
            #edf2f6 100%
        );
}

.cg-availability::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(
                2,
                32,
                65,
                0.035
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                2,
                32,
                65,
                0.035
            )
            1px,
            transparent 1px
        );

    background-size:
        82px 82px,
        82px 82px;

    pointer-events: none;
}

.cg-availability__grid {
    position: relative;
    z-index: 2;

    display: grid;

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

    align-items: center;

    gap:
        clamp(
            45px,
            7vw,
            100px
        );
}

.cg-availability h2 {
    font-size:
        clamp(
            30px,
            3vw,
            46px
        );
}

.cg-availability__status {
    position: relative;

    min-height: 230px;

    padding:
        38px
        40px;

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

    border-right:
        5px solid
        var(--cg-blue);

    border-radius: 2px;

    display: flex;
    flex-direction: column;
    justify-content: center;

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

    box-shadow:
        0 24px 60px
        rgba(
            2,
            32,
            65,
            0.11
        );
}

.cg-availability__status::before {
    content: "";

    position: absolute;

    top: 18px;
    left: 18px;

    width: 34px;
    height: 34px;

    border-top:
        1px solid
        rgba(
            12,
            83,
            165,
            0.3
        );

    border-left:
        1px solid
        rgba(
            12,
            83,
            165,
            0.3
        );
}

.cg-availability__status > span {
    color: var(--cg-blue);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.085em;

    direction: ltr;
    text-transform: uppercase;
}

.cg-availability__status strong {
    display: block;

    margin-top: 13px;

    color: var(--cg-navy);

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size:
        clamp(
            22px,
            2.2vw,
            32px
        );

    font-weight: 950;
    line-height: 1.45;
    letter-spacing: -0.035em;

    direction: ltr;
}

.cg-availability__status small {
    display: block;

    margin-top: 14px;
    padding-top: 14px;

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

    color: #657789;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.9;
}

/* ========================================================
   FINAL CTA
   ======================================================== */

.cg-final {
    position: relative;
    overflow: hidden;

    padding-block:
        clamp(
            95px,
            9vw,
            150px
        );

    color: #ffffff;

    background:
        linear-gradient(
            125deg,
            #011629 0%,
            #022041 48%,
            #0c53a5 100%
        );
}

.cg-final::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            circle,
            rgba(
                255,
                255,
                255,
                0.08
            )
            1px,
            transparent 1.5px
        );

    background-size:
        24px 24px;

    opacity: 0.38;

    pointer-events: none;
}

.cg-final::after {
    content: "ACG ENGINEERING";

    position: absolute;

    left: 2vw;
    bottom: -15px;

    color:
        rgba(
            255,
            255,
            255,
            0.025
        );

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size:
        clamp(
            75px,
            11vw,
            175px
        );

    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.07em;

    direction: ltr;
    white-space: nowrap;

    pointer-events: none;
}

.cg-final__content {
    position: relative;
    z-index: 2;

    max-width: 1020px;

    text-align: center;
}

.cg-final__content > span {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #8ac9fa;

    font-family:
        Inter,
        Montserrat,
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.085em;

    direction: ltr;
    text-transform: uppercase;
}

.cg-final__content > span::before,
.cg-final__content > span::after {
    content: "";

    width: 42px;
    height: 1px;

    background: currentColor;
}

.cg-final h2 {
    max-width: 900px;

    margin:
        18px auto 0;

    color: #ffffff;

    font-size:
        clamp(
            32px,
            4vw,
            57px
        );

    line-height: 1.52;
}

.cg-final p {
    max-width: 760px;

    margin:
        18px auto 0;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}

.cg-final__actions {
    margin-top: 35px;

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

    gap: 10px;
}

/* ========================================================
   FLOATING NOTICE
   ======================================================== */

.cg-notice {
    position: fixed;
    z-index: 99999;

    right:
        clamp(
            16px,
            3vw,
            38px
        );

    bottom:
        clamp(
            16px,
            3vw,
            38px
        );

    width:
        min(
            calc(
                100vw - 32px
            ),
            430px
        );

    min-height: 92px;

    padding:
        17px
        18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.17
        );

    border-right:
        4px solid
        #5fb8ff;

    border-radius: 2px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #ffffff;

    background:
        rgba(
            2,
            32,
            65,
            0.97
        );

    box-shadow:
        0 24px 65px
        rgba(
            0,
            0,
            0,
            0.3
        );

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(25px);

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.cg-notice.is-visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);

    pointer-events: auto;
}

.cg-notice > i {
    flex:
        0 0
        auto;

    width: 42px;
    height: 42px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.17
        );

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

    color: #70c0ff;

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

    font-size: 17px;
}

.cg-notice > div {
    flex: 1 1 auto;

    min-width: 0;
}

.cg-notice strong {
    display: block;

    overflow: hidden;

    color: #ffffff;

    font-size: 12px;
    font-weight: 900;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.cg-notice span {
    display: block;

    margin-top: 5px;

    color:
        rgba(
            255,
            255,
            255,
            0.67
        );

    font-size: 10px;
    font-weight: 650;
    line-height: 1.8;
}

.cg-notice button {
    flex:
        0 0
        auto;

    width: 34px;
    height: 34px;

    padding: 0;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );

    border-radius: 2px;

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

    color: #ffffff;

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

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

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.cg-notice button:hover,
.cg-notice button:focus-visible {
    color: var(--cg-navy);

    border-color: #ffffff;
    background: #ffffff;
}

/* ========================================================
   FINAL SECTIONS RESPONSIVE
   ======================================================== */

@media (max-width: 1000px) {
    .cg-availability__grid {
        grid-template-columns:
            minmax(
                0,
                1fr
            );

        gap: 38px;
    }

    .cg-availability__status {
        max-width: 720px;
    }
}

@media (max-width: 800px) {
    .cg-final::after {
        display: none;
    }

    .cg-final__actions {
        flex-direction: column;

        width: 100%;
    }

    .cg-final__actions .cg-btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .cg-availability {
        padding-block: 65px;
    }

    .cg-availability__status {
        min-height: 205px;

        padding:
            31px
            24px;

        border-right-width: 3px;
    }

    .cg-final {
        padding-block: 78px;
    }

    .cg-final__content > span::before,
    .cg-final__content > span::after {
        width: 22px;
    }

    .cg-final h2 {
        font-size: 29px;
    }

    .cg-notice {
        right: 12px;
        bottom: 12px;

        width:
            calc(
                100vw - 24px
            );

        min-height: 84px;

        padding:
            14px
            13px;

        gap: 10px;
    }

    .cg-notice > i {
        width: 37px;
        height: 37px;

        font-size: 15px;
    }

    .cg-notice button {
        width: 31px;
        height: 31px;
    }
}

/* END CATALOG CSS V2 PART 2C */
