﻿:root {
    --nexa-dark: #142b2c;
    --nexa-darker: #0d2021;
    --nexa-dark-hover: #1a3638;
    --nexa-teal: #13b8a6;
    --nexa-teal-hover: #20c7b5;
    --nexa-soft: #e8efef;
    --nexa-bg: #f6f8f8;
    --nexa-text: #252b33;
    --nexa-muted: #626b76;
    --nexa-border: #e5eaea;
}

body {
    margin: 0;
    background: #fff;
    color: var(--nexa-text);
    font-family: Arial, sans-serif;
}

.nexa-site {
    overflow: hidden;
}

.nexa-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 42px !important;
    padding-right: 42px !important;
}


/* NAV */

.nexa-nav {
    position: relative;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #edf0f0;
}

.nexa-nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nexa-logo img {
    max-width: 155px;
    max-height: 45px;
}

.nexa-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

    .nexa-nav-links a {
        color: #4f5863;
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
        transition: color .2s ease;
    }

        .nexa-nav-links a:hover {
            color: var(--nexa-teal);
        }

.nexa-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* CLIENT LOGIN */

.nexa-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid #cfd8d8;
    border-radius: 6px;
    background: #fff;
    color: var(--nexa-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

    .nexa-login i {
        color: var(--nexa-teal);
        font-size: 11px;
        transition: color .2s ease;
    }

    .nexa-login:hover {
        border-color: var(--nexa-dark);
        background: var(--nexa-dark);
        color: #fff;
        text-decoration: none;
    }

        .nexa-login:hover i {
            color: var(--nexa-teal);
        }


/* BUTTONS */

.nexa-btn-primary {
    padding: 10px 17px;
    border: 0;
    border-radius: 7px;
    background: var(--nexa-teal);
    color: #071716;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

    .nexa-btn-primary:hover {
        background: var(--nexa-teal-hover);
        color: #071716;
    }

.nexa-btn-lg {
    padding: 13px 21px;
    font-size: 12px;
}


/* HERO */

.nexa-hero {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(145deg, #0d2021 0%, #142b2c 60%, #17413f 100%);
}

.nexa-hero-decoration {
    position: absolute;
    border-radius: 50%;
}

.nexa-hero-decoration-one {
    width: 500px;
    height: 500px;
    top: -320px;
    right: -180px;
    background: rgba(19,184,166,.08);
}

.nexa-hero-decoration-two {
    width: 350px;
    height: 350px;
    bottom: -240px;
    left: 15%;
    background: rgba(255,255,255,.025);
}

.nexa-eyebrow,
.nexa-section-eyebrow {
    margin-bottom: 12px;
    color: var(--nexa-teal);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.nexa-hero h1 {
    max-width: 680px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 54px;
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -1.5px;
}

    .nexa-hero h1 span {
        color: var(--nexa-teal-hover);
    }

.nexa-hero-copy {
    max-width: 650px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.70);
    font-size: 15px;
    line-height: 1.65;
}

.nexa-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.nexa-btn-video {
    padding: 12px 17px;
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

    .nexa-btn-video:hover {
        background: rgba(255,255,255,.06);
        color: #fff;
    }

.nexa-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 26px;
    color: rgba(255,255,255,.60);
    font-size: 12px;
}

    .nexa-hero-points i {
        margin-right: 5px;
        color: var(--nexa-teal);
    }


/* PRODUCT PREVIEW */

.nexa-product-preview {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.nexa-product-preview-top {
    display: flex;
    justify-content: space-between;
    padding: 13px 16px;
    background: #f8f9fa;
    color: #727b80;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .7px;
}

.nexa-product-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--nexa-teal);
}

.nexa-gif-slider {
    position: relative;
    min-height: 390px;
    background: #f4f6f6;
}

.nexa-gif-slide {
    display: none;
}

    .nexa-gif-slide.active {
        display: block;
    }

    .nexa-gif-slide img {
        display: block;
        width: 100%;
    }

.nexa-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 0;
    background: transparent;
    transform: translate(-50%,-50%);
    text-align: center;
}

    .nexa-video-play span {
        width: 68px;
        height: 68px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 5px solid rgba(255,255,255,.40);
        border-radius: 50%;
        background: var(--nexa-teal);
        color: #071716;
        font-size: 20px;
        box-shadow: 0 7px 30px rgba(0,0,0,.25);
    }

    .nexa-video-play small {
        display: block;
        margin-top: 10px;
        padding: 5px 8px;
        border-radius: 4px;
        background: rgba(13,32,33,.88);
        color: #fff;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 1px;
    }

.nexa-preview-footer {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 13px;
    color: #626b76;
    font-size: 11px;
}

    .nexa-preview-footer i {
        margin-right: 4px;
        color: var(--nexa-teal);
    }


/* GENERAL */

.nexa-section {
    padding: 85px 0;
}

.nexa-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

    .nexa-section-heading h2,
    .nexa-left-heading {
        margin: 0 0 12px;
        color: var(--nexa-dark);
        font-size: 32px;
        line-height: 1.2;
        font-weight: 700;
    }

    .nexa-section-heading p,
    .nexa-large-copy {
        color: var(--nexa-muted);
        font-size: 13px;
        line-height: 1.65;
    }


/* SOLUTIONS */

.nexa-solutions {
    background: var(--nexa-bg);
}

.nexa-solution-card {
    padding: 34px;
    border: 1px solid var(--nexa-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 25px rgba(13,32,33,.04);
}

.nexa-solution-cx {
    border-top: 3px solid var(--nexa-teal);
}
.nexa-solution-event {
    border-top: 3px solid var(--nexa-teal);
}

.nexa-solution-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.nexa-solution-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #e8f6f4;
    color: var(--nexa-teal);
}

.nexa-solution-label {
    color: var(--nexa-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.nexa-new-badge {
    padding: 4px 7px;
    border-radius: 20px;
    background: rgba(19,184,166,.11);
    color: #0fa292;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nexa-solution-card h3 {
    max-width: 550px;
    color: var(--nexa-dark);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 700;
}

.nexa-solution-card > p {
    color: var(--nexa-muted);
    font-size: 11px;
    line-height: 1.65;
}

.nexa-solution-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px 20px;
    margin: 22px 0;
    color: #4f5863;
    font-size: 10px;
}

    .nexa-solution-features i {
        margin-right: 5px;
        color: var(--nexa-teal);
    }

.nexa-text-link {
    color: #0fa292;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

    .nexa-text-link i {
        margin-left: 5px;
    }


/* CX */

.nexa-cx-section {
    background: #fff;
}

.nexa-insight-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 13px;
}

.nexa-insight-card {
    padding: 21px;
    border: 1px solid var(--nexa-border);
    border-radius: 9px;
    background: #fff;
}

    .nexa-insight-card > i {
        margin-bottom: 12px;
        color: var(--nexa-teal);
        font-size: 18px;
    }

    .nexa-insight-card h4 {
        color: var(--nexa-dark);
        font-size: 13px;
        font-weight: 700;
    }

    .nexa-insight-card p {
        margin: 0;
        color: var(--nexa-muted);
        font-size: 11px;
        line-height: 1.55;
    }

/* POST EVENT */

.nexa-event-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(145deg, #0d2021, #142b2c);
    color: #fff;
}

    .nexa-event-section h2 {
        max-width: 600px;
        color: #fff;
        font-size: 37px;
        line-height: 1.15;
        font-weight: 700;
    }

    .nexa-event-section p {
        color: rgba(255,255,255,.65);
        font-size: 12px;
        line-height: 1.65;
    }

.nexa-event-lead {
    font-size: 14px !important;
}


/* EVENT FEATURE LIST */

.nexa-event-feature-list {
    margin-top: 25px;
}

    .nexa-event-feature-list > div {
        display: flex;
        gap: 12px;
        margin: 14px 0;
    }

        .nexa-event-feature-list > div > i {
            width: 31px;
            height: 31px;
            min-width: 31px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 7px;
            background: rgba(19,184,166,.12);
            color: var(--nexa-teal);
        }

    .nexa-event-feature-list span {
        color: rgba(255,255,255,.58);
        font-size: 10px;
        line-height: 1.5;
    }

    .nexa-event-feature-list strong {
        display: block;
        color: #fff;
        font-size: 11px;
    }


/* EVENT DASHBOARD */

.nexa-event-dashboard {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,.20);
}

.nexa-event-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .nexa-event-dashboard-header span {
        color: #899195;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .nexa-event-dashboard-header h4 {
        margin-top: 3px;
        color: var(--nexa-dark);
        font-size: 17px;
    }

.nexa-live-badge {
    color: var(--nexa-teal) !important;
}


/* TOP EVENT METRICS */

.nexa-event-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin: 20px 0;
}

    .nexa-event-metrics > div {
        padding: 15px;
        border-radius: 8px;
        background: #f7f9f9;
    }

    .nexa-event-metrics span {
        display: block;
        color: #7c8589;
        font-size: 8px;
    }

    .nexa-event-metrics strong {
        color: var(--nexa-dark);
        font-size: 22px;
    }


/* EVENT PERFORMANCE PREVIEW */

.nexa-event-example {
    padding: 18px;
    border: 1px solid #edf0f0;
    border-radius: 8px;
    background: #fff;
}

.nexa-event-performance-preview {
    position: relative;
}

.nexa-event-preview-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.nexa-event-example-label {
    margin-bottom: 3px;
    color: var(--nexa-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nexa-event-preview-subtitle {
    color: #8a9296;
    font-size: 8px;
    line-height: 1.4;
}


/* GROUP BY */

.nexa-event-preview-group {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

    .nexa-event-preview-group span {
        color: #9ba2a5;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: .6px;
    }

    .nexa-event-preview-group strong {
        padding: 5px 10px;
        border-radius: 4px;
        background: var(--nexa-dark);
        color: #fff;
        font-size: 7px;
        font-weight: 600;
    }


/* GROUP PERFORMANCE CARDS */

.nexa-event-preview-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px;
}

.nexa-event-preview-card {
    min-width: 0;
    padding: 12px;
    border: 1px solid #e8ecec;
    border-radius: 7px;
    background: #fff;
}

.nexa-event-preview-rank {
    margin-bottom: 4px;
    color: #9ba2a5;
    font-size: 7px;
    font-weight: 700;
}

.nexa-event-preview-score-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

    .nexa-event-preview-score-row > strong {
        min-width: 0;
        overflow: hidden;
        color: var(--nexa-dark);
        font-size: 10px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nexa-event-preview-score-row > div {
        flex-shrink: 0;
        text-align: right;
    }

.nexa-event-preview-score {
    display: block;
    color: var(--nexa-dark);
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
}

.nexa-event-preview-score-row small {
    display: block;
    margin-top: 3px;
    font-size: 6px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
}

.nexa-event-positive {
    color: #65b800;
}

.nexa-event-negative {
    color: #e66556;
}


/* PERFORMANCE BAR */

.nexa-event-preview-progress {
    width: 100%;
    height: 4px;
    margin: 11px 0;
    overflow: hidden;
    border-radius: 5px;
    background: #edf0f0;
}

    .nexa-event-preview-progress i {
        display: block;
        height: 100%;
        border-radius: 5px;
        background: var(--nexa-dark);
    }


/* CARD STATS */

.nexa-event-preview-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
}

    .nexa-event-preview-stats span {
        color: #a0a7aa;
        font-size: 6px;
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: .3px;
    }

    .nexa-event-preview-stats strong {
        display: block;
        margin-top: 2px;
        color: #252b33;
        font-size: 9px;
        font-weight: 700;
    }


/* DASHBOARD FOOTER */

.nexa-event-dashboard-footer {
    margin-top: 13px;
    color: #8a9296;
    font-size: 8px;
    text-align: center;
}


/* RESPONSIVE */

@media (max-width: 767.98px) {

    .nexa-event-section {
        padding: 65px 0;
    }

        .nexa-event-section h2 {
            font-size: 31px;
        }

    .nexa-event-dashboard {
        padding: 18px;
    }

    .nexa-event-metrics {
        grid-template-columns: 1fr;
    }

    .nexa-event-preview-heading {
        flex-direction: column;
        gap: 10px;
    }

    .nexa-event-preview-cards {
        grid-template-columns: 1fr;
    }
}


/* FEATURES */

.nexa-feature-card {
    height: 100%;
    padding: 22px;
    border: 1px solid var(--nexa-border);
    border-radius: 9px;
    background: #fff;
}

    .nexa-feature-card > i {
        margin-bottom: 13px;
        color: var(--nexa-teal);
        font-size: 19px;
    }

    .nexa-feature-card h4 {
        color: var(--nexa-dark);
        font-size: 13px;
        font-weight: 700;
    }

    .nexa-feature-card p {
        margin: 0;
        color: var(--nexa-muted);
        font-size: 12px;
        line-height: 1.55;
    }


/* TESTIMONIAL */

.nexa-testimonial-section {
    padding: 75px 0;
    background: var(--nexa-bg);
}

.nexa-testimonial-card {
    max-width: 950px;
    margin: auto;
    text-align: center;
}

.nexa-quote-mark {
    height: 45px;
    color: var(--nexa-teal);
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
}

.nexa-testimonial-card blockquote {
    color: var(--nexa-dark);
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
}

.nexa-testimonial-company {
    margin-top: 16px;
    color: #667074;
    font-size: 10px;
    font-weight: 700;
}

/* TESTIMONIAL CAROUSEL */

#nexaTestimonialCarousel {
    position: relative;
    padding-bottom: 38px;
}

.nexa-testimonial-card {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .nexa-testimonial-card blockquote {
        max-width: 950px;
        margin-left: auto;
        margin-right: auto;
    }

.nexa-testimonial-company {
    margin-top: 20px;
    font-weight: 700;
}


/* ARROWS */

.nexa-testimonial-control {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    border: 1px solid rgba(20,43,44,.12);
    border-radius: 50%;
    background: #fff;
    color: var(--nexa-dark);
    opacity: 1;
    box-shadow: 0 4px 14px rgba(13,32,33,.08);
}

    .nexa-testimonial-control:hover {
        background: var(--nexa-dark);
        color: #fff;
    }

.nexa-testimonial-prev {
    left: 22px;
}

.nexa-testimonial-next {
    right: 22px;
}

.nexa-testimonial-control i {
    font-size: 12px;
}


/* INDICATORS */

.nexa-testimonial-indicators {
    bottom: 0;
    margin-bottom: 0;
}

    .nexa-testimonial-indicators [data-bs-target] {
        width: 7px;
        height: 7px;
        margin: 0 4px;
        border: 0;
        border-radius: 50%;
        background-color: #c8cecf;
        opacity: 1;
    }

    .nexa-testimonial-indicators .active {
        width: 22px;
        border-radius: 10px;
        background-color: var(--nexa-teal);
    }


/* MOBILE */

@media (max-width: 767.98px) {

    .nexa-testimonial-card {
        min-height: 430px;
        padding-left: 55px;
        padding-right: 55px;
    }

    .nexa-testimonial-prev {
        left: 8px;
    }

    .nexa-testimonial-next {
        right: 8px;
    }
}

/* PRICING */

.nexa-pricing-section {
    background: #fff;
}

.nexa-price-card {
    padding: 30px;
    border: 1px solid var(--nexa-border);
    border-radius: 11px;
}

.nexa-price-implementation {
    border-top: 3px solid var(--nexa-teal);
}

.nexa-price-featured {
    border-top: 3px solid var(--nexa-teal);
}

.nexa-price-label {
    color: var(--nexa-teal);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nexa-price-card h3 {
    margin: 8px 0;
    color: var(--nexa-dark);
    font-size: 25px;
    font-weight: 700;
}

.nexa-price-card p,
.nexa-price-card li {
    color: var(--nexa-muted);
    font-size: 10px;
    line-height: 1.6;
}

.nexa-price-card ul {
    padding-left: 18px;
}

.nexa-price-card small {
    color: #92999c;
    font-size: 8px;
}


/* FINAL CTA */

.nexa-final-cta {
    padding: 60px 0;
    background: #fff;
}

.nexa-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px;
    border-radius: 12px;
    background: linear-gradient(110deg, #0d2021, #17413f);
}

.nexa-final-cta h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.nexa-final-cta p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 11px;
}


/* VIDEO */

.nexa-video-modal {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

    .nexa-video-modal.active {
        display: flex;
    }

.nexa-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,14,14,.88);
}

.nexa-video-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px,90vw);
}

    .nexa-video-dialog video {
        display: block;
        width: 100%;
        max-height: 80vh;
        border-radius: 10px;
        background: #000;
    }

.nexa-video-close {
    position: absolute;
    z-index: 3;
    top: -40px;
    right: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
}


/* RESPONSIVE */

@media (max-width: 1199.98px) {

    .nexa-nav-links {
        display: none;
    }

    .nexa-nav-actions {
        margin-left: auto;
    }

    .nexa-hero {
        padding: 65px 0;
    }
}

@media (max-width: 767.98px) {

    .nexa-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .nexa-hero h1 {
        font-size: 38px;
    }

    .nexa-hero-actions,
    .nexa-final-cta-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .nexa-hero-points {
        flex-direction: column;
        gap: 7px;
    }

    .nexa-solution-features,
    .nexa-insight-grid {
        grid-template-columns: 1fr;
    }

    .nexa-event-metrics {
        grid-template-columns: 1fr;
    }

    .nexa-example-bar {
        grid-template-columns: 115px 1fr 30px;
    }
}


/* =====================================================
   GOOGLE REVIEWS
===================================================== */

.nexa-reviews-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: #f7f9f9;
}

.nexa-reviews-heading {
    max-width: 580px;
    margin: 0 0 17px;
    color: var(--nexa-dark);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -.5px;
}

.nexa-reviews-lead {
    max-width: 590px;
    margin-bottom: 13px;
    color: #4f5863;
    font-size: 14px;
    line-height: 1.7;
}

.nexa-reviews-copy {
    max-width: 590px;
    margin-bottom: 0;
    color: #737c81;
    font-size: 11px;
    line-height: 1.7;
}


/* BENEFITS */

.nexa-reviews-benefits {
    margin-top: 26px;
}

    .nexa-reviews-benefits > div {
        display: flex;
        align-items: flex-start;
        gap: 13px;
        margin: 15px 0;
    }

.nexa-reviews-benefit-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e8f6f4;
    color: var(--nexa-teal);
    font-size: 14px;
}

.nexa-reviews-benefits strong {
    display: block;
    margin-bottom: 2px;
    color: var(--nexa-dark);
    font-size: 12px;
    font-weight: 700;
}

.nexa-reviews-benefits > div > div > span {
    display: block;
    max-width: 470px;
    color: #737c81;
    font-size: 11px;
    line-height: 1.55;
}


/* VISUAL */

.nexa-reviews-visual {
    position: relative;
    padding: 20px 25px 25px;
}

    .nexa-reviews-visual:before {
        content: "";
        position: absolute;
        top: -50px;
        right: -80px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(19,184,166,.07);
    }


/* FAKE BROWSER */

.nexa-reviews-browser {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid #e1e6e6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(13,32,33,.10);
}

.nexa-reviews-browser-top {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #edf0f0;
    background: #f8f9f9;
}

.nexa-browser-dots {
    display: flex;
    gap: 5px;
}

    .nexa-browser-dots span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #d4d9da;
    }

.nexa-browser-title {
    margin: auto;
    padding-right: 30px;
    color: #9aa2a5;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nexa-reviews-browser-content {
    padding: 32px;
}

.nexa-reviews-question-label {
    margin-bottom: 7px;
    color: var(--nexa-teal);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nexa-reviews-browser-content > h3 {
    max-width: 500px;
    margin: 0 0 8px;
    color: var(--nexa-dark);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.nexa-reviews-browser-content > p {
    max-width: 550px;
    margin-bottom: 20px;
    color: #7a8387;
    font-size: 9px;
    line-height: 1.6;
}

/* GOOGLE CARD */

.nexa-google-review-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid #e3e8e8;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(13,32,33,.04);
}

.nexa-google-review-logo {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e8e8;
    border-radius: 50%;
    background: #fff;
}

.nexa-google-g {
    color: #4285f4;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.nexa-google-review-content {
    flex: 1;
    min-width: 0;
}

.nexa-google-review-title {
    margin-bottom: 3px;
    color: var(--nexa-dark);
    font-size: 13px;
    font-weight: 700;
}

.nexa-google-stars {
    margin-bottom: 4px;
    color: #fbbc04;
    font-size: 13px;
    letter-spacing: 1px;
}

.nexa-google-review-subtitle {
    color: #8a9296;
    font-size: 11px;
}

.nexa-google-review-button {
    flex-shrink: 0;
    padding: 9px 13px;
    border-radius: 5px;
    background: var(--nexa-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

    .nexa-google-review-button i {
        margin-left: 4px;
        color: var(--nexa-teal);
    }


/* FLOW */

.nexa-reviews-divider {
    position: relative;
    margin: 28px 0 20px;
    text-align: center;
}

    .nexa-reviews-divider:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #edf0f0;
    }

    .nexa-reviews-divider span {
        position: relative;
        padding: 0 10px;
        background: #fff;
        color: #a0a7aa;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1px;
    }

.nexa-reviews-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.nexa-reviews-flow-step {
    min-width: 100px;
    text-align: center;
}

.nexa-reviews-flow-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f6f4;
    color: var(--nexa-teal);
    font-size: 15px;
}

.nexa-reviews-flow-google {
    background: var(--nexa-dark);
    color: var(--nexa-teal);
}

.nexa-reviews-flow-step strong {
    display: block;
    color: var(--nexa-dark);
    font-size: 11px;
    font-weight: 700;
}

.nexa-reviews-flow-step span {
    display: block;
    margin-top: 3px;
    color: #9aa2a5;
    font-size: 10px;
}

.nexa-reviews-flow-arrow {
    color: #c6cdce;
    font-size: 15px;
}


/* BOTTOM CALLOUT */

.nexa-reviews-callout {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    width: 70%;
    margin: -4px auto 0;
    padding: 13px 16px;
    border-radius: 8px;
    background: var(--nexa-dark);
    box-shadow: 0 12px 25px rgba(13,32,33,.16);
}

.nexa-reviews-callout-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(19,184,166,.13);
    color: var(--nexa-teal);
    font-size: 14px;
}

.nexa-reviews-callout span {
    display: block;
    margin-bottom: 2px;
    color: var(--nexa-teal);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nexa-reviews-callout strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}


/* RESPONSIVE */

@media (max-width: 991.98px) {

    .nexa-reviews-section {
        padding: 70px 0;
    }

    .nexa-reviews-visual {
        padding: 10px 0 20px;
    }
}

@media (max-width: 575.98px) {

    .nexa-reviews-heading {
        font-size: 30px;
    }

    .nexa-reviews-browser-content {
        padding: 22px;
    }

    .nexa-google-review-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nexa-google-review-button {
        width: 100%;
        text-align: center;
    }

    .nexa-reviews-flow {
        gap: 8px;
    }

    .nexa-reviews-flow-arrow {
        font-size: 11px;
    }

    .nexa-reviews-callout {
        width: 90%;
    }
}

/* =====================================================
   CONTACT
===================================================== */

.nexa-contact-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: linear-gradient(145deg, #0d2021, #142b2c);
    color: #fff;
}

    .nexa-contact-section:before {
        content: "";
        position: absolute;
        top: -220px;
        left: -180px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(19,184,166,.05);
    }

.nexa-contact-eyebrow {
    margin-bottom: 12px;
    color: var(--nexa-teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.nexa-contact-section h2 {
    max-width: 520px;
    margin: 0 0 18px;
    color: #fff;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
}

.nexa-contact-lead {
    max-width: 540px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.7;
}


/* CONTACT OPTIONS */

.nexa-contact-options {
    max-width: 540px;
    margin-top: 30px;
}

.nexa-contact-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 19px 0;
}

.nexa-contact-option-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(19,184,166,.12);
    color: var(--nexa-teal);
    font-size: 15px;
}

.nexa-contact-option strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.nexa-contact-option span {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    line-height: 1.55;
}

.nexa-contact-demo-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    color: var(--nexa-teal);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

    .nexa-contact-demo-link:hover {
        color: #fff;
    }

    .nexa-contact-demo-link i {
        font-size: 9px;
    }


/* FORM CARD */

.nexa-contact-card {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-left: auto;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,.20);
}

.nexa-contact-card-header {
    margin-bottom: 23px;
}

    .nexa-contact-card-header > span {
        display: block;
        margin-bottom: 5px;
        color: var(--nexa-teal);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .nexa-contact-card-header h3 {
        margin: 0 0 5px;
        color: var(--nexa-dark);
        font-size: 23px;
        line-height: 1.2;
        font-weight: 700;
    }

    .nexa-contact-card-header p {
        margin: 0;
        color: #7a8387;
        font-size: 11px;
        line-height: 1.55;
    }


/* FORM */

.nexa-contact-card .form-label {
    margin-bottom: 5px;
    color: #4f5863;
    font-size: 10px;
    font-weight: 700;
}

    .nexa-contact-card .form-label span {
        color: var(--nexa-teal);
    }

.nexa-contact-card .form-control,
.nexa-contact-card .form-select {
    min-height: 43px;
    padding: 9px 12px;
    border: 1px solid #dfe4e5;
    border-radius: 6px;
    background-color: #fff;
    color: #252b33;
    font-size: 12px;
    box-shadow: none;
}

.nexa-contact-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.nexa-contact-card .form-control:focus,
.nexa-contact-card .form-select:focus {
    border-color: var(--nexa-teal);
    box-shadow: 0 0 0 3px rgba(19,184,166,.08);
}

.nexa-contact-submit {
    width: 100%;
    margin-top: 5px;
    padding: 11px 18px;
    border: 1px solid var(--nexa-dark);
    border-radius: 6px;
    background: var(--nexa-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

    .nexa-contact-submit:hover,
    .nexa-contact-submit:focus {
        border-color: var(--nexa-teal);
        background: var(--nexa-teal);
        color: #fff;
    }

.nexa-contact-error {
    display: block;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 5px;
    background: #fff0ef;
    color: #bd4237;
    font-size: 11px;
}


/* SUCCESS */

.nexa-contact-success {
    padding: 55px 25px;
    text-align: center;
}

.nexa-contact-success-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f6f4;
    color: var(--nexa-teal);
    font-size: 20px;
}

.nexa-contact-success h3 {
    margin-bottom: 7px;
    color: var(--nexa-dark);
    font-size: 23px;
    font-weight: 700;
}

.nexa-contact-success p {
    max-width: 400px;
    margin: auto;
    color: #737c81;
    font-size: 12px;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1199.98px) {

    .nexa-contact-card {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {

    .nexa-contact-section {
        padding: 70px 0;
    }

        .nexa-contact-section h2 {
            font-size: 31px;
        }

    .nexa-contact-card {
        padding: 24px;
    }
}

/* =====================================================
   FOOTER
===================================================== */

.nexa-footer {
    padding: 58px 0 0;
    background: #0d2021;
    color: #fff;
}

.nexa-footer-main {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    padding-bottom: 45px;
}


/* BRAND */

.nexa-footer-brand {
    max-width: 330px;
}

.nexa-footer-logo {
    display: inline-block;
    margin-bottom: 17px;
}

    .nexa-footer-logo img {
        display: block;
        max-width: 155px;
        max-height: 45px;
    }

.nexa-footer-brand p {
    max-width: 280px;
    margin: 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    line-height: 1.6;
}


/* LINKS */

.nexa-footer-links {
    display: grid;
    grid-template-columns: .8fr .7fr 1.3fr;
    gap: 45px;
}

    .nexa-footer-links > div > span {
        display: block;
        margin-bottom: 14px;
        color: var(--nexa-teal);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }

    .nexa-footer-links a {
        display: block;
        margin: 9px 0;
        color: rgba(255,255,255,.62);
        font-size: 11px;
        font-weight: 500;
        text-decoration: none;
        transition: color .2s ease;
    }

        .nexa-footer-links a:hover {
            color: #fff;
        }

    .nexa-footer-links p {
        max-width: 300px;
        margin: 0 0 14px;
        color: rgba(255,255,255,.52);
        font-size: 11px;
        line-height: 1.6;
    }


    /* DEMO */

    .nexa-footer-links .nexa-footer-demo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0;
        padding: 10px 15px;
        border-radius: 6px;
        background: var(--nexa-teal);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
    }

        .nexa-footer-links .nexa-footer-demo:hover {
            background: var(--nexa-teal-hover);
            color: #fff;
        }

.nexa-footer-demo i {
    font-size: 9px;
}


/* BOTTOM */

.nexa-footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.nexa-footer-copyright {
    color: rgba(255,255,255,.38);
    font-size: 10px;
}

.nexa-footer-legal {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .nexa-footer-legal a {
        color: rgba(255,255,255,.48);
        font-size: 10px;
        text-decoration: none;
        transition: color .2s ease;
    }

        .nexa-footer-legal a:hover {
            color: var(--nexa-teal);
        }


/* RESPONSIVE */

@media (max-width: 991.98px) {

    .nexa-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nexa-footer-brand {
        max-width: 500px;
    }
}

@media (max-width: 767.98px) {

    .nexa-footer {
        padding-top: 45px;
    }

    .nexa-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

        .nexa-footer-links > div:last-child {
            grid-column: 1 / -1;
        }

    .nexa-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 18px 0;
    }
}

@media (max-width: 479.98px) {

    .nexa-footer-links {
        grid-template-columns: 1fr;
    }

        .nexa-footer-links > div:last-child {
            grid-column: auto;
        }
}