/* Minification failed. Returning unminified contents.
(32,38): run-time error CSS1034: Expected closing parenthesis, found ','
(32,38): run-time error CSS1042: Expected function, found ','
(32,42): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(324,32): run-time error CSS1034: Expected closing parenthesis, found ','
(324,32): run-time error CSS1042: Expected function, found ','
(324,37): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */


.feature-included {
    color: #2fe622;
}


.buttonmargin {
    margin-top: 10px;
    margin-bottom: 20px;
}


.tagnumber {
    font-style: italic;
    font-weight: bold;
}

.even {
    background-color: rgba(230, 126, 34, 0.2);
}

.orangy {
    color: rgba(230, 126, 34, 1) !important;
}

.fady {
    opacity: 0.1;
}

.header-main {
    background-color: rgb(12, 64, 109, .5);
    /*    background: url('../assets/img/Header Banner.png') 50% 50% no-repeat;*/
    background-size: auto;
    background-size: cover;
    color: white;
}

.buffer-top {
    margin-top: 30px;
}

.screen-shots {
    max-height: 400px;
}
/*.wall-text {
    color: white;
}*/

/* ===== Make hero less "blocky" ===== */

/* Add a soft gradient veil so content sits on a smoother surface */
.hero-wrap {
    position: relative;
}

    .hero-wrap:before {
        content: "";
        position: absolute;
        left: -12px;
        right: -12px;
        top: -12px;
        bottom: -12px;
        background: radial-gradient(ellipse at 20% 15%, rgba(0,0,0,.30), rgba(0,0,0,.05) 60%, rgba(0,0,0,0) 100%);
        pointer-events: none;
    }

/* Panel becomes a "glass" card, not a dark block */
.hero-panel {
    background: rgba(10, 12, 14, 0.26); /* lighter */
    border: 1px solid rgba(255,255,255,0.08); /* subtler border */
    border-radius: 14px; /* softer corners */
    padding: 1.25rem 1.25rem; /* slightly smaller */
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
    backdrop-filter: blur(10px);
}

/* Reduce the big FIXSIM word a bit */
.hero-copy .orangy {
    font-size: 2.6rem !important;
}

/* Slightly smaller H1 so it doesn't dominate as a "block" */
.hero-copy h1 {
    font-size: 2.35rem;
}

/* Video frame: soften borders and shadow */
.hero-video-frame {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
    background: rgba(0,0,0,.08);
}

/* Trust strip: make it feel like part of hero, not a separate slab */
.hero-trust {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    padding: .6rem .9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

    /* Tighter trust items */
    .hero-trust .trust-item {
        margin-right: 1rem;
        margin-bottom: .15rem;
    }

/* Mobile: reduce visual weight */
@media (max-width: 991px) {
    .hero-panel {
        padding: 1.1rem;
    }

    .hero-copy h1 {
        font-size: 2.0rem;
    }
}

.hero-video-frame {
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.30);
    background: rgba(0,0,0,.08);
}

/* ===== FIXSIM article polish ===== */

.fixsim-workflow h1 {
    letter-spacing: -0.4px;
}

.fixsim-workflow h2 {
    margin-top: 2.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

    /* section divider */
    .fixsim-workflow h2:not(:first-of-type) {
        padding-top: 1.25rem;
        border-top: 1px solid #eee;
    }

/* stronger cards */
.fixsim-workflow .card {
    border-radius: 8px;
    transition: box-shadow .15s ease;
}

    .fixsim-workflow .card:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
    }

/* comparison columns visual separation */
.fixsim-workflow .border-right {
    border-right: 1px solid #ececec !important;
}

/* callouts */
.fixsim-workflow .border-warning {
    border-left-width: 4px !important;
}

.fixsim-workflow .border-success {
    border-left-width: 4px !important;
}

/* CTA bar improvement */
.fixsim-workflow .bg-primary {
    background: linear-gradient(90deg,#d67a2c,#c96c1f);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* tighten text rhythm */
.fixsim-workflow p {
    line-height: 1.55;
}

/* ===== FIXSIM flow diagram ===== */

.fixsim-flow .mb-2 {
    position: relative;
    padding: 6px 0;
    font-weight: 500;
}

    /* vertical connector line */
    .fixsim-flow .mb-2:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        width: 2px;
        height: 18px;
        background: #e6e6e6;
        transform: translateX(-50%);
    }

/* arrows */
.fixsim-flow .fa-chevron-down {
    display: none; /* hide fontawesome arrows */
}

/* subtle step bubbles */
.fixsim-flow .col-md-6 .mb-2 {
    border-radius: 6px;
}

/* old way */
.fixsim-flow .col-md-6:first-child .mb-2 {
    color: #666;
}

/* new way highlight */
.fixsim-flow .col-md-6:last-child .mb-2 {
    color: #2b2b2b;
}

.fixsim-flow .text-success {
    font-weight: 700;
}

/* timeline bars */

.flow-time {
    max-width: 280px;
    margin: 20px auto 0 auto;
    text-align: center;
}

.flow-bar {
    height: 8px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

    .flow-bar.slow {
        background: linear-gradient(90deg,#e3e3e3,#cfcfcf);
    }

    .flow-bar.fast {
        background: linear-gradient(90deg,#28a745,#7bd88f);
    }

    /* animated indicator */
    .flow-bar::after {
        content: "";
        position: absolute;
        top: 0;
        left: -40px;
        width: 40px;
        height: 100%;
        background: rgba(255,255,255,.6);
        animation: flowmove 2.2s linear infinite;
    }

@keyframes flowmove {
    from {
        left: -40px;
    }

    to {
        left: 100%;
    }
}

.flow-label {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

/* technical credibility line */
.cred-line {
    font-size: 13px;
    opacity: .85;
    letter-spacing: .2px;
}


.bg-primary {
    background: linear-gradient(180deg,#c8742d 0%,#b56423 100%);
}

    .bg-primary .border {
        border-color: rgba(0,0,0,.08) !important;
    }

/* Prevent off-canvas clone from causing layout shift (CLS fix) */
.js-offcanvas-target {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(-100%);
    visibility: hidden;
    z-index: 9999;
    overflow-y: auto;
}

    /* Prevent off-canvas clone from causing layout shift (CLS fix) */
    .js-offcanvas-target:not(.is-open) {
        position: fixed !important;
        top: 0 !important;
        left: -280px !important;
        width: 280px !important;
        height: 100vh !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        display: block !important;
        visibility: visible !important;
    }


/* ===== Contact page ===== */

.contact-hero {
    background: rgb(12, 64, 109, .85);
    color: #fff;
    border-radius: 6px;
    padding: 2.5rem 15px;
    margin-bottom: 2rem;
}

.contact-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 0;
}

.contact-ftc-badge {
    max-width: 100px;
}

/* Trust bar */

.contact-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin: 1.5rem 0;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #495057;
}

.contact-check-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Left column */

.contact-left-heading {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-left-body {
    color: #495057;
    line-height: 1.6;
}

/* Customer quote */

.contact-quote {
    border-left: 3px solid #28a745;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: #333;
    font-style: italic;
}

.contact-quote-attribution {
    font-style: normal;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.4rem;
}

/* What to expect */

.contact-expect {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-expect-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.contact-expect-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-expect-step:last-child {
    margin-bottom: 0;
}

.contact-step-number {
    background: #28a745;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.contact-step-text {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
}

/* Form wrapper */

.contact-form-wrapper {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1.75rem;
}

.contact-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-form-hint {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1.25rem;
}

