:root {
    --color-teal: #1658dc;
    --color-teal-dark: #005f63;
    --color-teal-light: #eef2ff;
    --color-navy: #0a1628;
    --color-navy2: #222;
    --color-orange: #ff6b35;
    --color-orange-dark: #e55a27;
    --color-white: #ffffff;
    --color-offwhite: #f8f9fa;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-text: #111827;
    --brand: #2f4bff;
    --brand-dark: #1b32c9;
    --ink: #0f1222;
    --muted: #7a8194;
    --ring: #cdd6e4;
}
.text-teal {
    color: var(--color-teal) !important;
}
.text-navy {
    color: var(--color-navy) !important;
}
.text-orange {
    color: var(--color-orange) !important;
}
.bg-teal {
    background-color: var(--color-teal) !important;
}
.bg-navy {
    background-color: var(--color-navy) !important;
}
.bg-navy2 {
    background-color: var(--color-navy2) !important;
}
.bg-orange {
    background-color: var(--color-orange) !important;
}
.border-teal {
    border-color: var(--color-teal) !important;
}
.btn-teal {
    background-color: var(--color-teal);
    color: #fff;
    border: 2px solid var(--color-teal);
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 8px;
    transition: all 0.22s ease;
    font-size: 1rem;
}
.btn-teal:hover {
    background-color: var(--color-teal);
    border-color: var(--color-teal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 122 128 / 0.25);
}
.btn-teal:focus {
    color: #fff;
}
.btn-orange-city {
    background-color: #3ba341;
    color: #fff;
    border: 2px solid #3ba341;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.22s ease;
    font-size: 18px !important;
}
.btn-orange-city:hover {
    background-color: #3ba341;
    border-color: #3ba341;
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-white {
    background: #fff0;
    color: #fff;
    border: 2px solid rgb(255 255 255 / 0.6);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.22s ease;
    font-size: 18px !important;
}
.btn-outline-white:hover {
    background: rgb(255 255 255 / 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-teal {
    background: #fff0;
    color: var(--color-teal);
    border: 2px solid var(--color-teal);
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 8px;
    transition: all 0.22s ease;
    font-size: 1rem;
}
.btn-outline-teal:hover {
    background: var(--color-teal);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-navy {
    background: #fff0;
    color: var(--color-navy2);
    border: 2px solid var(--color-navy2);
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 8px;
    transition: all 0.22s ease;
}
.btn-outline-navy:hover {
    background: var(--color-navy2);
    color: #fff;
    transform: translateY(-2px);
}
.section-tag {
    display: inline-block;
    background: #eef2ff;
    color: var(--color-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgb(0 122 128 / 0.2);
    margin-bottom: 20px;
}
.section-py {
    padding-top: 70px;
    padding-bottom: 70px;
}
.section-py-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}
#hero {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-navy);
    overflow: hidden;
    padding: 120px 0 80px;
}
#hero .hero-bg {
    position: absolute;
    inset: 0;
    background: url(/assets/img/florida/hero.png) center right/cover no-repeat;
    opacity: 0.22;
}
#hero h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
}
#hero p.lead {
    color: rgb(255 255 255 / 0.82);
    font-size: 1.15rem;
    line-height: 1.4;
}
.hero-trust-bar {
    border-top: 1px solid rgb(255 255 255 / 0.15);
    padding-top: 28px;
    margin-top: 32px;
}
.hero-trust-bar .trust-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgb(255 255 255 / 0.6);
    font-weight: 700;
    margin-bottom: 14px;
    font-family: "Proxima Nova", "Nunito Sans", sans-serif;
}
.check-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(255 255 255 / 0.88);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 4px;
}
.check-pill .icon {
    color: #fff;
    font-size: 1.1rem;
}
#logos {
    background: #fff;
}
#logos h2 {
    color: #222;
}
.florida-lab-logo {
    height: auto;
    width: 120px;
    margin: 0 30px;
}
#partner {
    background: #f8fafc;
}
.partner-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.28s ease;
    height: 100%;
}
.partner-card:hover {
    box-shadow: 0 12px 40px rgb(0 122 128 / 0.1);
    transform: translateY(-5px);
    border-color: var(--color-teal);
}
.partner-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--color-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: var(--color-teal);
}
.faq-icon::before {
    display: none;
}
.partner-card h5 {
    color: var(--color-navy2);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.cycle-stage {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 1/1;
}
.cycle-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed var(--ring);
    border-radius: 50%;
}
.cycle-center {
    position: absolute;
    top: 52%;
    left: 50%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgb(47 75 255 / 0.08);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cycle-center .core {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px -12px rgb(47 75 255 / 0.55);
}
.cycle-center .core svg {
    width: 46px;
    height: 46px;
    animation: spin 6s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.cycle-node {
    position: absolute;
    width: 220px;
    text-align: center;
    transform: translate(-50%, -50%);
}
.cycle-node .icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    box-shadow:
        0 10px 28px -10px rgb(15 18 34 / 0.18),
        0 0 0 1px rgb(205 214 228 / 0.55);
}
.cycle-node .icon svg {
    width: 34px;
    height: 34px;
}
.cycle-node .label {
    margin-top: 14px;
}
.cycle-node h5 {
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: 0.2px;
}
.cycle-node p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}
.node-digital {
    top: 7%;
    left: 50%;
}
.node-integrated {
    top: 75%;
    left: 99.3%;
}
.node-automated {
    top: 75%;
    left: 1.7%;
}
@media (max-width: 767.98px) {
    .cycle-section {
        padding: 48px 15px;
    }
    .cycle-stage {
        aspect-ratio: auto;
        max-width: 380px;
    }
    .cycle-ring,
    .cycle-center {
        display: none;
    }
    .cycle-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        transform: none;
        width: 100%;
        margin: 0 auto 24px;
        padding: 24px 16px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 24px -16px rgb(15 18 34 / 0.2);
    }
    .chev {
        display: block;
        margin: -6px auto 18px;
        color: var(--brand);
        animation: bounce 1.6s infinite;
    }
    @keyframes bounce {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(6px);
        }
    }
}
@media (min-width: 768px) {
    .chev {
        display: none;
    }
}
#video {
    background: #f8fafc;
    color: #fff;
}
#awards {
    background: #f8fafc;
}
.award-badge {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 12px rgb(0 0 0 / 0.06);
    transition: all 0.25s ease;
}
.award-badge:hover {
    box-shadow: 0 8px 28px rgb(0 122 128 / 0.15);
    transform: translateY(-4px);
    border-color: var(--color-teal);
}
.award-badge .badge-icon {
    font-size: 2rem;
    color: var(--color-orange);
}
.award-badge span {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-navy2);
    text-align: center;
    font-family: "Proxima Nova", "Nunito Sans", sans-serif;
}
#solutions {
    background: #fff;
}
.sol-tabs .nav-link {
    background: #f1f5f9;
    color: #222;
    border-radius: 50px !important;
    padding: 10px 24px;
    font-size: 0.95rem;
    border: none;
    transition: all 0.22s;
    white-space: nowrap;
    font-weight: 600;
}
.sol-tabs .nav-link.active,
.sol-tabs .nav-link:hover {
    background: #3ba341;
    color: #fff;
}
.sol-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.14);
    position: relative;
}
.sol-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.sol-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 122 128 / 0.08);
    pointer-events: none;
}
.sol-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
    transition: all 0.22s;
}
.sol-point:hover {
    background: var(--color-teal-light);
    border-color: var(--color-teal);
}
.sol-point .sol-check {
    color: var(--color-teal);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.sol-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
@media (max-width: 767px) {
    .sol-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .sol-tabs::-webkit-scrollbar {
        display: none;
    }
    .sol-tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}
.sol-point span {
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--color-text);
}
#pagebreaker {
    background: var(--color-navy);
    color: #fff;
    text-align: center;
}
#pagebreaker h2 {
    color: #fff;
    margin: 0 auto 36px;
    font-size: 36px;
    line-height: 1.4;
    font-weight: 700;
}
.solution-lab-icon {
    width: 80px !important;
}
.modalityCard {
    border: none !important;
    background: none;
    box-shadow:
        rgb(0 0 0 / 0.02) 0 1px 3px 0,
        rgb(27 31 35 / 0.15) 0 0 0 1px;
    height: 100%;
    border-radius: 15px;
}
.modalityCard h4 {
    font-size: 1.3rem !important;
}
#clia {
    padding: 70px 0;
}
#clia .card {
    background: var(--color-navy);
    color: #fff;
    text-align: center;
    border-radius: 15px;
    border: none;
    padding: 20px 0;
}
#clia h2 {
    color: #fff;
}
#clia img {
    height: 100px;
}
#ai {
    background: var(--color-navy);
    color: #fff;
    padding: 100px 0;
}
.ai-tag {
    display: inline-block;
    background: rgb(0 122 128 / 0.25);
    color: #eef2ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgb(77 216 224 / 0.3);
    margin-bottom: 20px;
}
#ai h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 14px;
    font-weight: 600;
}
#ai .ai-subtitle {
    color: rgb(255 255 255 / 0.65);
    font-size: 1.05rem;
}
.ai-card {
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
.ai-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #3ba341;
    border-radius: 20px 20px 0 0;
}
.ai-card:hover {
    background: rgb(255 255 255 / 0.09);
    border-color: rgb(0 122 128 / 0.4);
    transform: translateY(-4px);
}
.ai-card-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3ba341;
    margin-bottom: 8px;
}
.ai-card h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.ai-card p {
    color: rgb(255 255 255 / 0.7);
    font-size: 0.92rem;
    line-height: 1.4;
    margin-bottom: 20px;
}
.ai-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.07);
}
.ai-point:last-child {
    border-bottom: none;
}
.ai-point .ai-dot {
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.ai-point span {
    color: rgb(255 255 255 / 0.82);
    font-size: 0.91rem;
}
.ai-image-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}
.ai-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ai-image-col .ai-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgb(10 22 40 / 0.8) 100%);
}
#integrations {
    background: #fff;
}
.int-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
    transition: all 0.22s;
}
.int-item:hover {
    background: var(--color-teal-light);
    border-color: var(--color-teal);
}
.int-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.int-item span {
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--color-text);
}
.int-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.12);
    aspect-ratio: 1;
}
.int-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#modules {
    background: #f8fafc;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.module-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: all 0.25s ease;
    height: 100%;
}
.module-card:hover {
    box-shadow: 0 10px 32px rgb(0 122 128 / 0.12);
    transform: translateY(-4px);
    border-color: var(--color-teal);
}
.module-card .mod-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-teal);
    margin: 0 auto 18px;
}
.module-card h6 {
    color: var(--color-navy2);
    font-size: 0.97rem;
    margin: 0;
    font-weight: 700;
}
#testimonial {
    background: var(--color-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.quote-mark {
    font-size: 8rem;
    color: var(--color-teal);
    opacity: 0.25;
    line-height: 1;
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 0;
}
.testimonial-body blockquote {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-style: italic;
    color: rgb(255 255 255 / 0.9);
    line-height: 1.5;
}
.testimonial-body .author-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}
.testimonial-body .author-role {
    font-size: 0.9rem;
    color: rgb(255 255 255 / 0.6);
}
.impl-stat {
    background: rgb(255 255 255 / 0.07);
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
}
.impl-stat .stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.impl-stat .stat-label {
    color: rgb(255 255 255 / 0.7);
    font-size: 0.95rem;
    margin-top: 8px;
}
#why {
    background: #fff;
}
.why-card {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.25s ease;
}
.why-card:hover {
    box-shadow: 0 10px 32px rgb(0 122 128 / 0.1);
    border-color: #1658dc;
    transform: translateY(-3px);
}
.why-card .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--color-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-teal);
    margin-bottom: 20px;
}
.why-card h5 {
    color: var(--color-navy2);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.why-card p {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}
#implementation {
    background: #f8fafc;
}
.impl-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.impl-timeline::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal-light), var(--color-teal), var(--color-teal-light));
}
@media (max-width: 767px) {
    .impl-timeline::before {
        display: none;
    }
}
.impl-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-teal);
    margin: 0 auto 20px;
    box-shadow: 0 6px 24px rgb(0 122 128 / 0.15);
}
.impl-step h5 {
    color: var(--color-navy2);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.impl-step p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}
.testimonials .testimonial-item {
    background: #ecfcec;
}
#faq {
    background: #fff;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.04);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-question.open {
    background: var(--color-teal-light);
}
.faq-question .faq-q-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy2);
    line-height: 1.45;
}
.faq-question .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-question.open .faq-icon {
    background: var(--color-teal);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 15px 24px 22px;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}
.faq-answer.show {
    display: block;
}
#footercta {
    background: linear-gradient(135deg, var(--color-navy) 0%, #1b3a6b 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
#footercta h2 {
    color: #fff;
    font-size: 36px;
    margin: 0 auto 20px;
    font-weight: 700;
}
#footercta p {
    color: rgb(255 255 255 / 0.75);
    font-size: 1.25rem;
    margin: 0 auto 40px;
}
.section-h2 {
    font-size: 32px;
    color: var(--color-navy2);
    margin-bottom: 14px;
    font-weight: 900;
}
.section-sub {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.4;
}
[data-aos] {
    backface-visibility: hidden;
}
@media (max-width: 991px) {
    .section-py {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .cycle-container {
        height: 480px;
    }
    .impl-timeline::before {
        display: none;
    }
    .sol-image img {
        height: 380px;
    }
    .ai-image-col {
        min-height: 320px;
        margin-top: 32px;
    }
    .newsletter-card {
        padding: 36px 28px;
    }
}
@media (max-width: 767px) {
    #hero {
        min-height: auto;
        padding: 90px 0 70px;
    }
    .cycle-container {
        height: auto;
        position: static;
    }
    .cycle-ring {
        display: none;
    }
    .cycle-center {
        display: none;
    }
    .cycle-node {
        position: static;
        transform: none;
        width: 100%;
    }
    .impl-timeline {
        padding: 0;
    }
    .newsletter-form .form-control {
        border-radius: 10px 10px 0 0;
    }
    .newsletter-form .btn-sub {
        border-radius: 0 0 10px 10px;
        width: 100%;
    }
}
.gap-0 {
    gap: 0 !important;
}
.gap-1 {
    gap: 0.25rem !important;
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.gap-4 {
    gap: 1.5rem !important;
}
.gap-5 {
    gap: 3rem !important;
}
@media (min-width: 576px) {
    .gap-sm-0 {
        gap: 0 !important;
    }
    .gap-sm-1 {
        gap: 0.25rem !important;
    }
    .gap-sm-2 {
        gap: 0.5rem !important;
    }
    .gap-sm-3 {
        gap: 1rem !important;
    }
    .gap-sm-4 {
        gap: 1.5rem !important;
    }
    .gap-sm-5 {
        gap: 3rem !important;
    }
}
@media (min-width: 768px) {
    .gap-md-0 {
        gap: 0 !important;
    }
    .gap-md-1 {
        gap: 0.25rem !important;
    }
    .gap-md-2 {
        gap: 0.5rem !important;
    }
    .gap-md-3 {
        gap: 1rem !important;
    }
    .gap-md-4 {
        gap: 1.5rem !important;
    }
    .gap-md-5 {
        gap: 3rem !important;
    }
}
@media (min-width: 992px) {
    .gap-lg-3 {
        gap: 1rem !important;
    }
    .gap-lg-4 {
        gap: 1.5rem !important;
    }
    .gap-lg-5 {
        gap: 3rem !important;
    }
}
.row.g-0 {
    margin-right: 0;
    margin-left: 0;
}
.row.g-0 > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.row.g-1 {
    margin-right: -0.125rem;
    margin-left: -0.125rem;
}
.row.g-1 > [class*="col-"] {
    padding-right: 0.125rem;
    padding-left: 0.125rem;
    margin-bottom: 0.25rem;
}
.row.g-2 {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
}
.row.g-2 > [class*="col-"] {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
    margin-bottom: 0.5rem;
}
.row.g-3 {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}
.row.g-3 > [class*="col-"] {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}
.row.g-4 {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.row.g-4 > [class*="col-"] {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-bottom: 1.5rem;
}
.row.g-5 {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}
.row.g-5 > [class*="col-"] {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-bottom: 3rem;
}
.ps-0 {
    padding-left: 0 !important;
}
.ps-3 {
    padding-left: 1rem !important;
}
.ps-4 {
    padding-left: 1.5rem !important;
}
.ps-5 {
    padding-left: 3rem !important;
}
@media (min-width: 768px) {
    .ps-md-5 {
        padding-left: 3rem !important;
    }
}
#integrations .media {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 0.5px solid var(--color-border);
    margin-bottom: 15px;
    transition: border-color 0.18s;
}
#integrations .media h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a1a;
}
#integrations .media ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#integrations .media ul li {
    font-size: 12.5px;
    color: #1658dc;
    background: var(--color-teal-light);
    border: 0.5px solid #1658dc;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.marquee-track::before,
.marquee-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-track::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background-primary), transparent);
}
.marquee-track::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background-primary), transparent);
}
.marquee-inner {
    display: flex;
    align-items: center;
    gap: 0;
    animation: scroll 22s linear infinite;
    will-change: transform;
}
.marquee-inner:hover {
    animation-play-state: paused;
}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 36px;
    height: 72px;
}
.logo-item img {
    height: 44px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 600px) {
    .logos-heading {
        font-size: 15px;
    }
    .logo-item {
        padding: 0 24px;
        height: 56px;
    }
    .logo-item img {
        height: 34px;
        max-width: 100px;
    }
    .marquee-track::before,
    .marquee-track::after {
        width: 48px;
    }
}
