/* =========================================================
   OXYTIS MODERN CONTACT SECTION
   Load this AFTER responsive.css
   ========================================================= */


/* SECTION */

.ox-contact-only {
    position: relative;
    overflow: hidden;
}


/* HEADER */

.ox-contact-title {
    max-width: 760px;
    margin: 0 auto 35px !important;
    text-align: center !important;
}

.ox-contact-title span {
    display: inline-block !important;
    margin-bottom: 10px !important;

    color: #29a8ff !important;

    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.7px !important;
}

.ox-contact-title h2 {
    max-width: 720px;
    margin: 0 auto 12px !important;

    color: #ffffff !important;

    font-size: 36px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;

    text-align: center !important;
}

.ox-contact-title p {
    max-width: 720px;
    margin: 0 auto !important;

    color: rgba(255,255,255,0.80) !important;

    font-size: 14px !important;
    line-height: 1.6 !important;

    text-align: center !important;
}


/* FORM CARD */

.ox-contact-card {
    position: relative;

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

    padding: 30px;

    background: rgba(2,14,33,0.88);

    border: 1px solid rgba(84,164,255,0.28);
    border-radius: 10px;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.28);

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.ox-contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 12%;
    right: 12%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(41,168,255,0.85),
            transparent
        );
}


/* FORM GROUPS */

.ox-contact-card .form-group {
    margin-bottom: 18px !important;
}


/* LABELS */

.ox-contact-card .form-group > label,
.ox-topic-label {
    display: block !important;

    margin: 0 0 7px 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;

    opacity: 1 !important;

    text-align: left !important;
}


/* TEXT INPUTS */

.ox-contact-card input.form-control {
    display: block !important;

    width: 100% !important;
    height: 46px !important;

    margin: 0 !important;
    padding: 10px 12px !important;

    color: #ffffff !important;

    background: rgba(15,35,62,0.94) !important;

    border: 1px solid rgba(132,175,220,0.32) !important;
    border-radius: 5px !important;

    box-shadow: none !important;

    font-family: inherit !important;
    font-size: 13px !important;

    opacity: 1 !important;

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

.ox-contact-card input.form-control::placeholder {
    color: #8fa0b5 !important;
    opacity: 1 !important;
}

.ox-contact-card input.form-control:focus {
    color: #ffffff !important;

    background: rgba(18,43,76,0.98) !important;

    border-color: #29a8ff !important;

    outline: none !important;

    box-shadow:
        0 0 0 2px rgba(41,168,255,0.10) !important;
}


/* TOPIC WRAPPER */

.ox-topic-wrap {
    display: block !important;

    width: 100% !important;

    margin: 4px 0 20px 0 !important;
    padding: 0 !important;
}

.ox-topic-label {
    margin-bottom: 9px !important;
}


/* FOUR BUTTON GRID */

.ox-topic-grid {
    display: grid !important;

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

    gap: 10px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* HIDE ACTUAL RADIO CONTROLS */

.ox-topic-radio {
    display: none !important;
}


/* VISIBLE BUTTONS */

.ox-topic-grid .ox-topic-button {
    box-sizing: border-box !important;

    display: flex !important;

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

    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;

    margin: 0 !important;
    padding: 10px 8px !important;

    color: #ffffff !important;

    background: #0c2747 !important;

    border: 1px solid #355f89 !important;
    border-radius: 6px !important;

    font-family: inherit !important;

    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;

    text-align: center !important;

    cursor: pointer !important;

    opacity: 1 !important;

    user-select: none !important;
    -webkit-user-select: none !important;

    text-shadow: none !important;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.1s ease !important;
}


/* BUTTON HOVER */

.ox-topic-grid .ox-topic-button:hover {
    color: #ffffff !important;

    background: #164d7e !important;

    border-color: #42b3ff !important;

    box-shadow:
        0 3px 12px rgba(0,130,255,0.16) !important;
}


/* SELECTED BUTTON */

.ox-topic-radio:checked + .ox-topic-button {
    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #0878e8 0%,
            #159cff 100%
        ) !important;

    border-color: #69c6ff !important;

    box-shadow:
        0 0 0 1px rgba(105,198,255,0.20),
        0 5px 17px rgba(0,126,255,0.28) !important;
}


/* SELECTED HOVER */

.ox-topic-radio:checked + .ox-topic-button:hover {
    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #0b83f5 0%,
            #20a7ff 100%
        ) !important;

    border-color: #8bd4ff !important;
}


/* CLICK */

.ox-topic-grid .ox-topic-button:active {
    transform: translateY(1px) !important;
}


/* MESSAGE */

.ox-message-wrap {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
}

.ox-contact-card textarea.form-control {
    display: block !important;

    width: 100% !important;
    height: 100px !important;
    min-height: 100px !important;

    margin: 0 !important;
    padding: 12px !important;

    color: #ffffff !important;

    background: rgba(15,35,62,0.94) !important;

    border: 1px solid rgba(132,175,220,0.32) !important;
    border-radius: 5px !important;

    box-shadow: none !important;

    font-family: inherit !important;
    font-size: 13px !important;
    line-height: 1.5 !important;

    resize: vertical !important;

    opacity: 1 !important;

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

.ox-contact-card textarea.form-control::placeholder {
    color: #8fa0b5 !important;
    opacity: 1 !important;
}

.ox-contact-card textarea.form-control:focus {
    color: #ffffff !important;

    background: rgba(18,43,76,0.98) !important;

    border-color: #29a8ff !important;

    outline: none !important;

    box-shadow:
        0 0 0 2px rgba(41,168,255,0.10) !important;
}


/* CAPTCHA + CTA */

.ox-contact-actions {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 25px !important;

    width: 100% !important;

    margin-top: 8px !important;
}

.ox-captcha-wrap {
    display: block !important;

    min-height: 78px !important;

    margin: 0 !important;
}

.ox-captcha-error {
    display: block !important;

    margin-top: 5px !important;

    color: #ff6262 !important;

    font-size: 12px !important;
}


/* SUBMIT BUTTON */

.ox-contact-submit {
    display: inline-flex !important;

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

    min-width: 190px !important;

    margin: 0 !important;
    padding: 14px 25px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            90deg,
            #0878e8 0%,
            #159cff 100%
        ) !important;

    border: 1px solid #35afff !important;
    border-radius: 5px !important;

    box-shadow: none !important;

    font-family: inherit !important;

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

    text-transform: none !important;

    cursor: pointer !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
}

.ox-contact-submit span {
    color: #ffffff !important;
}

.ox-contact-submit:hover {
    color: #ffffff !important;

    background:
        linear-gradient(
            90deg,
            #0a84f5 0%,
            #20a7ff 100%
        ) !important;

    transform: translateY(-1px) !important;

    box-shadow:
        0 8px 22px rgba(0,128,255,0.26) !important;
}


/* TABLET */

@media (max-width: 991px) {

    .ox-contact-card {
        padding: 26px;
    }

    .ox-contact-title h2 {
        font-size: 33px !important;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .ox-contact-title {
        margin-bottom: 28px !important;
    }

    .ox-contact-title h2 {
        font-size: 29px !important;
    }

    .ox-contact-title p {
        font-size: 13px !important;
    }

    .ox-contact-card {
        padding: 22px 18px;
    }

    .ox-topic-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr)) !important;
    }

    .ox-contact-actions {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .ox-contact-submit {
        width: 100% !important;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .ox-contact-title h2 {
        font-size: 26px !important;
    }

    .ox-topic-grid {
        grid-template-columns: 1fr !important;
    }

}
/* =========================================================
   OXYTIS PROTECT SECTION - VIDEO
   Load AFTER responsive.css
   ========================================================= */


/* Make right Bootstrap column available to the video */

.protect-area .row.align-items-center > .col-lg-6:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* Video wrapper */

.protect-area .ox-protect-video {
    display: block !important;

    position: relative !important;

    width: 100% !important;
    max-width: none !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 0 0 25px !important;

    text-align: center !important;
}


/* Force YouTube embed to full column size */

.protect-area .ox-protect-video iframe {
    display: block !important;

    width: 100% !important;
    max-width: 620px !important;

    height: 475px !important;
    min-height: 475px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    border: 0 !important;

    position: static !important;

    transform: none !important;

    background: #000 !important;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199px) {

    .protect-area .ox-protect-video {
        padding-left: 20px !important;
    }

    .protect-area .ox-protect-video iframe {
        width: 100% !important;
        height: 410px !important;
        min-height: 410px !important;
    }

}


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

@media (max-width: 991px) {

    .protect-area .ox-protect-video {
        width: 100% !important;

        margin-top: 40px !important;
        padding-left: 0 !important;
    }

    .protect-area .ox-protect-video iframe {
        width: 100% !important;
        max-width: 620px !important;

        height: 475px !important;
        min-height: 475px !important;

        margin: 0 auto !important;
    }

}


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

@media (max-width: 767px) {

    .protect-area .ox-protect-video {
        margin-top: 30px !important;
    }

    .protect-area .ox-protect-video iframe {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 620 / 475 !important;
    }

}
/* =========================================================
   OXYTIS ETHOS
   ========================================================= */

.oxytis-ethos-area {
    position: relative;

    padding: 75px 0 80px !important;

    background: #ffffff;
}


/* MAIN PANEL */

.oxytis-ethos-bg {
    position: relative;

    overflow: hidden;

    max-width: 1000px;

    margin: 0 auto !important;
    padding: 55px 65px !important;

    background:
        linear-gradient(
            135deg,
            #f5f7ff 0%,
            #eef2fb 100%
        ) !important;

    border: 1px solid rgba(23, 111, 211, 0.08);

    box-shadow:
        0 15px 45px rgba(8, 36, 77, 0.06);
}


/* SUBTLE AI / NETWORK GLOW */

.oxytis-ethos-bg::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    top: -190px;
    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(28, 148, 239, 0.13) 0%,
            rgba(28, 148, 239, 0.04) 42%,
            transparent 70%
        );

    pointer-events: none;
}


/* CONTENT */

.oxytis-ethos-content {
    position: relative;
    z-index: 2;

    max-width: 810px;

    margin: 0 auto;

    text-align: left;
}


/* EYEBROW */

.oxytis-ethos-label {
    display: block;

    margin-bottom: 13px;

    color: #168fe9;

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

    letter-spacing: 1.3px;
}


/* HEADLINE */

.oxytis-ethos-content h2 {
    margin: 0 0 22px !important;

    color: #07152d !important;

    font-size: 32px !important;
    font-weight: 700 !important;

    line-height: 1.25 !important;
}


/* BODY */

.oxytis-ethos-copy {
    max-width: 760px;

    margin: 0 !important;

    color: #465978 !important;

    font-size: 15px !important;

    line-height: 1.8 !important;
}


/* DIVIDER */

.oxytis-ethos-rule {
    width: 60px;
    height: 2px;

    margin: 27px 0 20px;

    background:
        linear-gradient(
            90deg,
            #0878e8,
            #25aaff
        );
}


/* FIND FIX FINISH */

.oxytis-ethos-motto {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-bottom: 18px;
}

.oxytis-ethos-motto span {
    position: relative;

    color: #0789ef;

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

    letter-spacing: 1px;
}

.oxytis-ethos-motto span:not(:last-child)::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    top: 50%;
    right: -15px;

    border-radius: 50%;

    background: #91a3ba;

    transform: translateY(-50%);
}


/* NAME ORIGIN */

.oxytis-ethos-origin {
    margin: 0 !important;

    color: #8290a5 !important;

    font-size: 12px !important;

    line-height: 1.6 !important;
}

.oxytis-ethos-origin em {
    color: #5f718c;
    font-weight: 600;
}


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

@media (max-width: 991px) {

    .oxytis-ethos-area {
        padding: 60px 0 65px !important;
    }

    .oxytis-ethos-bg {
        padding: 45px 50px !important;
    }

    .oxytis-ethos-content h2 {
        font-size: 29px !important;
    }

}


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

@media (max-width: 767px) {

    .oxytis-ethos-area {
        padding: 45px 0 50px !important;
    }

    .oxytis-ethos-bg {
        padding: 35px 25px !important;
    }

    .oxytis-ethos-content h2 {
        font-size: 25px !important;
    }

    .oxytis-ethos-copy {
        font-size: 14px !important;
    }

    .oxytis-ethos-motto {
        gap: 19px;
    }

    .oxytis-ethos-motto span {
        font-size: 17px;
    }

    .oxytis-ethos-motto span:not(:last-child)::after {
        right: -12px;
    }

}
/* =========================================================
   OXIDIZE PRODUCT PAGE
   ========================================================= */

.oxidize-product-area {
    background: #f7f9fc;
}

.oxidize-intro {
    max-width: 820px;
    margin: 0 auto 50px;
}

.oxidize-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #128cf0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.oxidize-intro h2 {
    margin-bottom: 18px;
    color: #07152d;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
}

.oxidize-intro p {
    margin: 0;
    color: #526581;
    font-size: 16px;
    line-height: 1.8;
}


/* PRODUCT CARDS */

.oxidize-tier-card {
    position: relative;
    height: 100%;
    padding: 35px 32px;
    background: #ffffff;
    border: 1px solid #e3e9f1;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(8, 36, 77, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oxidize-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(8, 36, 77, 0.10);
}

.oxidize-tier-featured {
    border: 2px solid #168fe9;
}

.oxidize-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    padding: 7px 15px;
    transform: translateX(-50%);
    background: #168fe9;
    color: #ffffff;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.oxidize-tier-header {
    margin-bottom: 24px;
}

.oxidize-tier-label {
    display: block;
    margin-bottom: 7px;
    color: #168fe9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.oxidize-tier-header h3 {
    margin-bottom: 12px;
    color: #07152d;
    font-size: 25px;
    font-weight: 700;
}

.oxidize-tier-header p {
    margin: 0;
    color: #5d6e87;
    font-size: 14px;
    line-height: 1.7;
}

.oxidize-feature-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.oxidize-feature-list li {
    position: relative;
    padding: 9px 0 9px 25px;
    color: #435574;
    font-size: 14px;
    border-bottom: 1px solid #edf1f6;
}

.oxidize-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 9px;
    color: #168fe9;
    font-weight: 700;
}

.oxidize-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
}


/* INFO PANELS */

.oxidize-info-panel {
    height: 100%;
    margin-top: 10px;
    padding: 35px 38px;
    background: #ffffff;
    border-left: 3px solid #168fe9;
    box-shadow: 0 10px 30px rgba(8, 36, 77, 0.05);
}

.oxidize-info-panel h3 {
    margin-bottom: 15px;
    color: #07152d;
    font-size: 24px;
    line-height: 1.35;
}

.oxidize-info-panel p {
    color: #526581;
    font-size: 14px;
    line-height: 1.8;
}


/* BOTTOM CTA */

.oxidize-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 40px;
    padding: 35px 40px;
    background: linear-gradient(135deg, #07152d 0%, #0b2b50 100%);
    border-radius: 8px;
}

.oxidize-bottom-cta .oxidize-eyebrow {
    margin-bottom: 8px;
}

.oxidize-bottom-cta h3 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.45;
}

.oxidize-bottom-cta .default-btn {
    flex: 0 0 auto;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .oxidize-tier-card {
        margin-bottom: 30px;
    }

    .oxidize-intro h2 {
        font-size: 31px;
    }

    .oxidize-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 767px) {

    .oxidize-intro {
        margin-bottom: 35px;
    }

    .oxidize-intro h2 {
        font-size: 27px;
    }

    .oxidize-intro p {
        font-size: 14px;
    }

    .oxidize-tier-card {
        padding: 30px 24px;
    }

    .oxidize-info-panel {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .oxidize-bottom-cta {
        padding: 30px 25px;
    }

    .oxidize-bottom-cta h3 {
        font-size: 19px;
    }

}
/* =========================================================
   HERO SPACING
   ========================================================= */

.banner-area.bg-1 {
    padding-top: 95px !important;
    padding-bottom: 85px !important;
    min-height: 0 !important;
}

.banner-area .banner-content {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.banner-area .banner-image {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.banner-area + .feature-area {
    padding-top: 55px !important;
}
/* =========================================================
   POWERTRAIN
   ========================================================= */

.powertrain-modern {
    background: #f6f8fb;
}


/* =========================================================
   MAIN CARDS
   ========================================================= */

.pt-main-card {
    height: 100%;
    padding: 32px;

    background: #ffffff;

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

    box-shadow:
        0 12px 35px
        rgba(8, 36, 77, 0.06);
}


.pt-card-heading {
    margin-bottom: 25px;
}


.pt-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #087eef;

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

    letter-spacing: 1px;
}


.pt-card-heading h3 {
    margin: 0 0 9px;

    color: #07152d;

    font-size: 24px;
    font-weight: 700;
}


.pt-card-heading p {
    margin: 0;

    color: #687a94;

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


/* =========================================================
   GENERATOR FORM
   ========================================================= */

.pt-form-group {
    margin-bottom: 18px;
}


.pt-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #263b5b;

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


.pt-generator-card .form-control {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    border:
        1px solid #d6dfeb;

    border-radius: 7px;

    background: #ffffff;

    color: #243957;

    font-size: 13px;

    box-shadow: none !important;
}


.pt-generator-card .form-control:focus {
    border-color: #168fe9;
}


.pt-file-upload {
    padding: 12px;

    border:
        1px solid #d6dfeb;

    border-radius: 7px;

    background: #fbfcfe;
}


.pt-file-upload input {
    width: 100%;

    font-size: 12px;
}


.pt-checkbox {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 15px 0 18px;

    color: #536681;

    font-size: 12px;
}


.pt-checkbox input {
    margin: 0;
}


.pt-generate-btn {
    display: flex !important;

    width: 100% !important;

    min-height: 48px !important;

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

    border: none !important;
}


/* =========================================================
   ENGINE
   ========================================================= */

.pt-engine-flow {
    display: flex;

    min-height: 115px;

    padding: 12px 0 22px;

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

    gap: 20px;

    border-bottom:
        1px solid #edf1f6;
}


.pt-engine-icon img {
    display: block;

    width: 90px;

    height: auto;
}


.pt-engine-icon.pt-ai-icon img {
    width: 75px;
}


.pt-flow-arrow img {
    display: block;

    width: 45px;

    height: auto;
}


.pt-checkout-wrap {
    display: flex;

    justify-content: center;

    margin: 20px 0;
}


.checkout-bar {
    display: inline-flex;

    min-height: 40px;

    align-items: center;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            90deg,
            #0877e8,
            #00b5d9
        );

    box-shadow:
        0 7px 20px
        rgba(0,129,225,.18);
}


.checkout-bar .minus-btn,
.checkout-bar .plus-btn {
    display: flex;

    width: 35px;
    height: 40px;

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

    color: #ffffff;

    cursor: pointer;
}


.checkout-bar input {
    width: 38px !important;
    height: 40px !important;

    padding: 0 !important;

    border: 0 !important;

    background:
        transparent !important;

    color:
        #ffffff !important;

    text-align: center;

    font-weight: 700;
}


.checkout-action {
    height: 40px;

    padding: 0 18px;

    border: 0;

    background:
        rgba(255,255,255,.14);

    color: #ffffff;

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

    cursor: pointer;
}


.pt-product-copy p {
    margin-bottom: 12px;

    color: #526581;

    font-size: 13px;
    line-height: 1.75;
}


.pt-product-copy .pt-patent {
    color: #8491a3;

    font-size: 11px;
}


.pt-support-row {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 22px;
}


.pt-support-row strong {
    color: #405575;

    font-size: 12px;
}


.pt-support-row img {
    width: auto;

    max-width: 42px;
    max-height: 36px;
}


/* =========================================================
   BURP SUITE SECTION
   ========================================================= */

.pt-burp-section {
    position: relative;

    overflow: hidden;

    margin: 45px 0;

    padding: 50px;

    border:
        1px solid #dfebf7;

    border-radius: 12px;

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

    box-shadow:
        0 15px 40px
        rgba(8,36,77,.06);
}


.pt-burp-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -230px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(25,143,235,.12),
            transparent 70%
        );
}


.pt-burp-copy {
    position: relative;

    z-index: 2;
}


.pt-burp-copy h2 {
    margin: 7px 0 18px;

    color: #07152d;

    font-size: 35px;
    font-weight: 750;

    line-height: 1.22;
}


.pt-burp-lead {
    max-width: 580px;

    margin-bottom: 28px;

    color: #536682;

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


/* =========================================================
   BURP FEATURE LIST
   ========================================================= */

.pt-burp-feature-list {
    display: grid;

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

    gap: 13px 25px;
}


.pt-burp-feature {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}


.pt-burp-feature > i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #087fea;

    font-size: 18px;
}


.pt-burp-feature strong {
    display: block;

    margin-bottom: 2px;

    color: #233955;

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


.pt-burp-feature span {
    display: block;

    color: #75859a;

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


/* =========================================================
   TALLY + CTA
   ========================================================= */

.pt-tally-line {
    display: flex;

    align-items: center;

    gap: 9px;

    margin: 29px 0 21px;

    color: #3a5070;

    font-size: 12px;
}


.pt-tally-line i {
    color: #087fea;

    font-size: 19px;
}


.pt-tally-line strong {
    color: #087fea;
}


.pt-burp-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.pt-burp-buttons .default-btn span {
    display: flex;

    align-items: center;

    gap: 7px;
}


/* =========================================================
   REAL EXTENSION SCREENSHOTS
   ========================================================= */

.pt-burp-screens {
    position: relative;

    z-index: 2;

    padding-left: 28px;
}


.pt-screen-label {
    margin-bottom: 10px;

    color: #71839a;

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

    letter-spacing: 1px;

    text-align: right;
}


.pt-burp-screen-main,
.pt-burp-screen-secondary {
    overflow: hidden;

    border:
        1px solid #cfdae6;

    border-radius: 7px;

    background: #ffffff;

    box-shadow:
        0 14px 35px
        rgba(7,31,67,.13);
}


.pt-burp-screen-main img,
.pt-burp-screen-secondary img {
    display: block;

    width: 100%;

    height: auto;
}


.pt-burp-screen-main {
    position: relative;

    z-index: 2;
}


.pt-burp-screen-secondary {
    position: relative;

    z-index: 3;

    width: 88%;

    margin:
        -28px
        0
        0
        12%;
}


/* =========================================================
   VALUE STRIP
   ========================================================= */

.pt-burp-value-row {
    display: grid;

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

    gap: 22px;

    margin-top: 38px;

    padding-top: 30px;

    border-top:
        1px solid #dce7f2;
}


.pt-value-item {
    display: flex;

    align-items: center;

    gap: 12px;
}


.pt-value-item > i {
    flex: 0 0 auto;

    color: #087fea;

    font-size: 27px;
}


.pt-value-item strong {
    display: block;

    margin-bottom: 2px;

    color: #223855;

    font-size: 11px;
}


.pt-value-item span {
    display: block;

    color: #7a899d;

    font-size: 9px;
    line-height: 1.4;
}


/* =========================================================
   REPORT TABS
   ========================================================= */

.pt-report-tabs {
    overflow: hidden;

    margin-top: 0 !important;

    padding:
        15px
        20px
        25px;

    border:
        1px solid #e6ecf3;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(8,36,77,.05);
}


.pt-report-tabs .tabs {
    overflow-x: auto;

    white-space: nowrap;
}


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

@media (max-width: 1199px) {

    .pt-burp-section {
        padding: 40px;
    }


    .pt-burp-feature-list {
        gap: 12px 18px;
    }

}


@media (max-width: 991px) {

    .pt-main-card {
        height: auto;

        margin-bottom: 25px;
    }


    .pt-burp-screens {
        margin-top: 40px;

        padding-left: 0;
    }


    .pt-screen-label {
        text-align: left;
    }


    .pt-burp-value-row {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


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

@media (max-width: 767px) {

    .powertrain-modern {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }


    .pt-main-card {
        padding: 25px 20px;
    }


    .pt-burp-section {
        margin: 30px 0;

        padding: 30px 22px;
    }


    .pt-burp-copy h2 {
        font-size: 27px;
    }


    .pt-burp-feature-list {
        grid-template-columns:
            1fr;
    }


    .pt-burp-screen-secondary {
        width: 94%;

        margin:
            -14px
            0
            0
            6%;
    }


    .pt-burp-value-row {
        grid-template-columns:
            1fr;
    }


    .pt-engine-flow {
        gap: 12px;
    }


    .pt-engine-icon img {
        width: 70px;
    }


    .pt-engine-icon.pt-ai-icon img {
        width: 60px;
    }


    .pt-flow-arrow img {
        width: 35px;
    }

}
/* =========================================================
   ABOUT PAGE - WHITE VERSION
   ========================================================= */


/* =========================================================
   PAGE TITLE
   ========================================================= */

.ox-title-origin {
    color: #169cf4;
    font-size: .52em;
    font-weight: 600;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.ox-about-modern {
    position: relative;
    overflow: hidden;

    padding: 80px 0 85px !important;

    background:
        radial-gradient(
            circle at 31% 48%,
            rgba(34, 145, 238, 0.06) 0%,
            rgba(34, 145, 238, 0.02) 30%,
            transparent 58%
        ),
        #ffffff !important;
}


.ox-about-modern::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .12;

    background-image:
        radial-gradient(
            rgba(34, 145, 238, .35) .7px,
            transparent .7px
        );

    background-size: 24px 24px;
}


.ox-about-modern .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   NETWORK COLUMN
   ========================================================= */

.ox-network-column {
    position: relative;

    display: flex;

    min-height: 470px;

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


.ox-network-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 146, 232, .09) 0%,
            rgba(37, 146, 232, .025) 44%,
            transparent 72%
        );

    filter: blur(14px);

    pointer-events: none;
}


/* =========================================================
   NETWORK GRAPHIC
   ========================================================= */

.ox-network-graphic {
    position: relative;

    width: 100%;
    max-width: 420px;

    aspect-ratio: 1 / 1;

    margin: 0 auto;
}


/* =========================================================
   RINGS
   ========================================================= */

.ox-network-ring {
    position: absolute;

    border:
        1px solid
        rgba(35, 137, 218, .42);

    border-radius: 50%;
}


.ox-network-ring-0 {
    inset: 0;

    animation:
        ox-ring-spin
        32s
        linear
        infinite;
}


.ox-network-ring-1 {
    inset: 14%;

    animation:
        ox-ring-spin
        48s
        linear
        infinite
        reverse;
}


.ox-network-ring-2 {
    inset: 28%;

    animation:
        ox-ring-spin
        67s
        linear
        infinite;
}


@keyframes ox-ring-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   NETWORK NODES
   ========================================================= */

.ox-network-node {
    position: absolute;

    width: 38px;
    height: 38px;

    margin-left: -19px;
    margin-top: -19px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(34, 137, 220, .18);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, .95);

    color: #148eea;

    box-shadow:
        0 4px 14px
        rgba(24, 107, 176, .12);

    -webkit-backdrop-filter:
        blur(8px);

    backdrop-filter:
        blur(8px);
}


.ox-network-node svg {
    width: 17px;
    height: 17px;
}


.ox-network-ring-0 .ox-network-node {
    animation:
        ox-counter-spin-0
        32s
        linear
        infinite;
}


.ox-network-ring-1 .ox-network-node {
    animation:
        ox-counter-spin-1
        48s
        linear
        infinite;
}


.ox-network-ring-2 .ox-network-node {
    animation:
        ox-counter-spin-2
        67s
        linear
        infinite;
}


@keyframes ox-counter-spin-0 {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }

}


@keyframes ox-counter-spin-1 {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes ox-counter-spin-2 {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }

}


/* =========================================================
   NETWORK CENTER
   ========================================================= */

.ox-network-center {
    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    pointer-events: none;
}


.ox-network-center-inner {
    position: relative;

    width: 74px;
    height: 74px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(28, 143, 231, .55);

    border-radius: 50%;

    background:
        rgba(233, 246, 255, .92);

    color: #148eea;

    box-shadow:
        0 5px 20px
        rgba(28, 126, 200, .10);
}


.ox-network-center-inner::before {
    content: "";

    position: absolute;

    inset: -9px;

    border:
        1px solid
        rgba(28, 143, 231, .10);

    border-radius: 50%;
}


.ox-network-center-inner svg {
    width: 38px;
    height: 38px;
}


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

.ox-about-content {
    padding-left: 30px;
}


.ox-about-title span {
    display: block;

    margin-bottom: 13px;

    color: #168fe9 !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    letter-spacing: 1px;
}


.ox-about-title h2 {
    max-width: 600px;

    margin-bottom: 24px !important;

    color: #0a1730 !important;

    font-size: 24px !important;
    font-weight: 600 !important;

    line-height: 1.5 !important;
}


/* =========================================================
   ABOUT TABS
   ========================================================= */

.ox-about-tabs {
    margin-top: 0;
}


.ox-about-tabs .tabs {
    display: flex;

    align-items: center;

    gap: 26px;

    margin: 0 0 24px !important;

    padding: 0 !important;

    border-bottom:
        1px solid
        #e3e9f1;

    list-style: none;
}


.ox-about-tabs .tabs li {
    position: relative;

    margin: 0 !important;

    padding:
        0 0 12px !important;

    color: #6e7f96 !important;

    background: transparent !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    cursor: pointer;
}


.ox-about-tabs .tabs li.current,
.ox-about-tabs .tabs li.active {
    color: #168fe9 !important;
}


.ox-about-tabs .tabs li.current::after,
.ox-about-tabs .tabs li.active::after {
    content: "";

    position: absolute;

    bottom: -1px;
    left: 0;

    width: 100%;
    height: 2px;

    background: #168fe9;
}


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

.ox-about-tabs .tabs_item > p {
    margin-bottom: 20px;

    color: #64758b !important;

    font-size: 13px !important;

    line-height: 1.75 !important;
}


.ox-about-tabs .tabs_item > ul {
    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;
}


.ox-about-tabs .tabs_item > ul li {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 10px !important;

    color: #283b57 !important;

    font-size: 13px !important;
}


.ox-about-tabs .tabs_item > ul li i {
    color: #168fe9 !important;

    font-size: 16px !important;
}


/* =========================================================
   ABOUT CALLOUT
   ========================================================= */

.ox-about-callout {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 26px;

    color: #7a899d;

    font-size: 12px;
}


.ox-about-callout i {
    color: #168fe9;

    font-size: 17px;
}


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

@media (max-width: 991px) {

    .ox-about-modern {
        padding:
            65px 0 70px !important;
    }


    .ox-network-column {
        min-height: 430px;

        margin-bottom: 35px;
    }


    .ox-about-content {
        padding-left: 0;
    }


    .ox-about-title h2 {
        max-width: none;
    }

}


@media (max-width: 767px) {

    .ox-title-origin {
        display: block;

        margin-top: 4px;

        font-size: .43em;
    }


    .ox-about-modern {
        padding:
            45px 0 55px !important;
    }


    .ox-network-column {
        min-height: 350px;

        margin-bottom: 25px;
    }


    .ox-network-graphic {
        max-width: 310px;
    }


    .ox-network-node {
        width: 32px;
        height: 32px;

        margin-left: -16px;
        margin-top: -16px;

        border-radius: 9px;
    }


    .ox-network-node svg {
        width: 15px;
        height: 15px;
    }


    .ox-network-center-inner {
        width: 62px;
        height: 62px;
    }


    .ox-network-center-inner svg {
        width: 32px;
        height: 32px;
    }


    .ox-about-title h2 {
        font-size: 21px !important;
    }


    .ox-about-tabs .tabs {
        gap: 17px;
    }


    .ox-about-tabs .tabs li {
        font-size: 11px !important;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

    .ox-network-ring,
    .ox-network-node {
        animation: none !important;
    }

}

/* =========================================================
   MODERN CONTACT PAGE
   ========================================================= */

.ox-contact-page {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(31, 145, 231, .045),
            transparent 32%
        ),
        #f7f9fc;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.ox-contact-card {
    height: 100%;

    padding: 42px 44px;

    background: #ffffff;

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

    box-shadow:
        0 14px 40px
        rgba(7, 35, 73, .06);
}


.ox-contact-heading {
    max-width: 650px;

    margin-bottom: 30px;
}


.ox-contact-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #168fe9;

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

    letter-spacing: 1.1px;
}


.ox-contact-heading h2 {
    margin-bottom: 12px;

    color: #07152d;

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

    line-height: 1.3;
}


.ox-contact-heading p {
    margin: 0;

    color: #687a92;

    font-size: 14px;

    line-height: 1.75;
}


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

.ox-contact-form-group {
    margin-bottom: 20px;
}


.ox-contact-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #334b69;

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


.ox-contact-form-group .form-control {
    width: 100%;

    min-height: 48px;

    padding: 11px 14px;

    background: #fbfcfe;

    border:
        1px solid #dbe3ec;

    border-radius: 6px;

    color: #233956;

    font-size: 13px;

    box-shadow: none !important;

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


.ox-contact-form-group textarea.form-control {
    min-height: 190px;

    resize: vertical;
}


.ox-contact-form-group .form-control:focus {
    background: #ffffff;

    border-color: #168fe9;
}


.ox-contact-form-group .form-control::placeholder {
    color: #9aa7b8;
}


.ox-contact-error {
    margin-bottom: 10px;
}


.ox-contact-submit {
    min-width: 155px;

    min-height: 48px;
}


/* =========================================================
   CONTACT INFO CARD
   ========================================================= */

.ox-contact-info-card {
    height: 100%;

    padding: 38px 32px;

    background:
        linear-gradient(
            160deg,
            #07152d 0%,
            #0c2b4c 100%
        );

    border-radius: 10px;

    box-shadow:
        0 14px 40px
        rgba(7, 35, 73, .12);
}


.ox-contact-info-card .ox-contact-eyebrow {
    color: #42aff5;
}


.ox-contact-info-card h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 23px;
    font-weight: 700;
}


.ox-contact-info-intro {
    margin-bottom: 28px;

    color: #a9b7c8;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   INFO ITEMS
   ========================================================= */

.ox-contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 17px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.ox-contact-info-icon {
    display: flex;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

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

    border-radius: 50%;

    background:
        rgba(31, 151, 240, .12);

    color: #31a2f2;

    font-size: 18px;
}


.ox-contact-info-item span {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

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


.ox-contact-info-item p {
    margin: 0 0 6px;

    color: #9fb0c3;

    font-size: 11px;

    line-height: 1.65;
}


.ox-contact-info-item p:last-child {
    margin-bottom: 0;
}


.ox-contact-info-item a {
    color: #9fd1f5 !important;

    transition:
        color .2s ease;
}


.ox-contact-info-item a:hover {
    color: #ffffff !important;
}


/* =========================================================
   RESPONSE CALLOUT
   ========================================================= */

.ox-contact-response {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 24px;

    padding: 15px;

    border:
        1px solid
        rgba(55, 161, 236, .18);

    border-radius: 7px;

    background:
        rgba(19, 105, 171, .10);
}


.ox-contact-response > i {
    color: #37a7f4;

    font-size: 21px;
}


.ox-contact-response strong {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: 11px;
}


.ox-contact-response span {
    display: block;

    color: #9faec1;

    font-size: 10px;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.ox-contact-trust-row {
    display: grid;

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

    gap: 1px;

    overflow: hidden;

    margin-top: 28px;

    border:
        1px solid #e6ebf2;

    border-radius: 8px;

    background: #e6ebf2;
}


.ox-contact-trust-item {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 92px;

    padding: 22px;

    background: #ffffff;
}


.ox-contact-trust-item > i {
    flex: 0 0 auto;

    color: #168fe9;

    font-size: 24px;
}


.ox-contact-trust-item strong {
    display: block;

    margin-bottom: 3px;

    color: #263c58;

    font-size: 11px;
}


.ox-contact-trust-item span {
    display: block;

    color: #7d8ca0;

    font-size: 10px;

    line-height: 1.5;
}


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

@media (max-width: 991px) {

    .ox-contact-card {
        margin-bottom: 28px;
    }


    .ox-contact-info-card {
        height: auto;
    }


    .ox-contact-trust-row {
        grid-template-columns:
            1fr;
    }

}


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

@media (max-width: 767px) {

    .ox-contact-page {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }


    .ox-contact-card {
        padding: 30px 22px;
    }


    .ox-contact-heading h2 {
        font-size: 25px;
    }


    .ox-contact-info-card {
        padding: 30px 24px;
    }


    .ox-contact-submit {
        width: 100%;
    }


    .ox-contact-trust-item {
        min-height: 0;
    }

}
/* =========================================================
   RANSOMWARE RESPONSE PAGE
   ========================================================= */

.ox-ransomware-page {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(25, 143, 235, .045),
            transparent 30%
        ),
        #f6f8fb;
}


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

.ox-ransom-card {
    height: 100%;

    padding: 38px;

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

    background: #ffffff;

    box-shadow:
        0 14px 40px
        rgba(7, 35, 73, .06);
}


.ox-ransom-heading {
    margin-bottom: 28px;
}


.ox-ransom-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #168fe9;

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

    letter-spacing: 1px;
}


.ox-ransom-heading h2,
.ox-ransom-response h2 {
    margin-bottom: 12px;

    color: #07152d;

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

    line-height: 1.3;
}


.ox-ransom-heading p,
.ox-ransom-lead {
    margin: 0;

    color: #657891;

    font-size: 13px;

    line-height: 1.75;
}


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

.ox-ransom-form-group {
    margin-bottom: 20px;
}


.ox-ransom-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #334b69;

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


.ox-ransom-form-group .form-control {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border: 1px solid #d7e0ea;
    border-radius: 6px;

    background: #fbfcfe;

    color: #263a56;

    font-size: 13px;

    box-shadow: none !important;
}


.ox-ransom-form-group .form-control:focus {
    border-color: #168fe9;

    background: #ffffff;
}


.ox-ransom-file {
    padding: 13px;

    border: 1px solid #d7e0ea;
    border-radius: 6px;

    background: #fbfcfe;
}


.ox-ransom-file input {
    width: 100%;

    font-size: 12px;
}


.ox-ransom-form-group small {
    display: block;

    margin-top: 8px;

    color: #8a98aa;

    font-size: 10px;

    line-height: 1.5;
}


.ox-ransom-captcha {
    margin: 25px 0 20px;
}


.ox-ransom-submit {
    width: 100%;

    min-height: 48px;
}


/* =========================================================
   CHAT NOTE
   ========================================================= */

.ox-ransom-chat-note {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding: 15px;

    border-radius: 7px;

    background: #f2f8fe;

    border: 1px solid #dfedf9;
}


.ox-ransom-chat-note > i {
    color: #168fe9;

    font-size: 22px;
}


.ox-ransom-chat-note strong {
    display: block;

    margin-bottom: 2px;

    color: #293e5c;

    font-size: 11px;
}


.ox-ransom-chat-note span {
    display: block;

    color: #74849a;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   RESPONSE CARD
   ========================================================= */

.ox-ransom-response {
    position: relative;

    overflow: hidden;
}


.ox-ransom-image {
    overflow: hidden;

    margin: 25px 0;

    border-radius: 8px;

    background: #eef4fa;
}


.ox-ransom-image img {
    display: block;

    width: 100%;
    height: auto;
}


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

.ox-ransom-capabilities {
    display: grid;

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

    gap: 12px;
}


.ox-ransom-capabilities > div {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 13px;

    border: 1px solid #e9eef4;
    border-radius: 6px;

    background: #fbfcfe;
}


.ox-ransom-capabilities i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #168fe9;

    font-size: 18px;
}


.ox-ransom-capabilities span {
    color: #718198;

    font-size: 10px;

    line-height: 1.5;
}


.ox-ransom-capabilities strong {
    display: block;

    margin-bottom: 2px;

    color: #2c415e;

    font-size: 11px;
}


/* =========================================================
   DETAILS
   ========================================================= */

.ox-ransom-details {
    margin-top: 30px;

    padding: 36px 38px;

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

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(7, 35, 73, .05);
}


.ox-ransom-details h3 {
    margin-bottom: 15px;

    color: #07152d;

    font-size: 24px;
    font-weight: 700;
}


.ox-ransom-details p {
    margin-bottom: 13px;

    color: #657891;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   EXPECTATIONS
   ========================================================= */

.ox-ransom-expectations {
    height: 100%;

    padding: 23px;

    border-radius: 7px;

    background: #f6f9fc;
}


.ox-ransom-expectations h4 {
    margin-bottom: 15px;

    color: #263b57;

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


.ox-ransom-expectations ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.ox-ransom-expectations li {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 11px;

    color: #52667f;

    font-size: 11px;
}


.ox-ransom-expectations i {
    color: #168fe9;

    font-size: 15px;
}


/* =========================================================
   RESPONSE STRIP
   ========================================================= */

.ox-ransom-response-strip {
    display: flex;

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

    gap: 30px;

    margin-top: 28px;

    padding: 26px 30px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #07152d 0%,
            #0b2c4e 100%
        );
}


.ox-ransom-response-strip > div {
    display: flex;

    align-items: center;

    gap: 13px;
}


.ox-ransom-response-strip i {
    color: #3aa9f3;

    font-size: 27px;
}


.ox-ransom-response-strip strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 12px;
}


.ox-ransom-response-strip span {
    display: block;

    color: #aab8c8;

    font-size: 10px;
}


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

@media (max-width: 991px) {

    .ox-ransom-intake {
        margin-bottom: 28px;
    }


    .ox-ransom-capabilities {
        grid-template-columns:
            1fr;
    }

}


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

@media (max-width: 767px) {

    .ox-ransomware-page {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }


    .ox-ransom-card {
        padding: 28px 22px;
    }


    .ox-ransom-heading h2,
    .ox-ransom-response h2 {
        font-size: 24px;
    }


    .ox-ransom-details {
        padding: 28px 22px;
    }


    .ox-ransom-response-strip {
        flex-direction: column;

        align-items: flex-start;
    }


    .ox-ransom-response-strip .default-btn {
        width: 100%;

        text-align: center;
    }

}
/* =========================================================
   POWERTRAIN SUPPORTED TOOLS GRAPHIC
   ========================================================= */

.powertrain-support-graphic {
    width: 100%;
    margin: 25px 0 28px;
}

.powertrain-support-graphic img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 0;
    border: 0;
}

@media (max-width: 767px) {

    .powertrain-support-graphic {
        margin: 20px 0 24px;
        overflow-x: auto;
    }

    .powertrain-support-graphic img {
        width: 720px;
        max-width: none;
    }
}