/* =========================================================
   SITE.CSS (COMBINED STYLESHEET)
   Order: Shared → Layout → Home → Coming Soon
   ========================================================= */


/* =========================================================
   1. SHARED / GLOBAL COMPONENTS
   These are used across multiple pages (or should be)
   ========================================================= */

/* Glass card component (shared UI pattern) */
.glass-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255, 0, 0, 0.15), 0 0 25px rgba(255, 0, 0, 0.12);
}

/* Shared subtitle style */
.subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

/* Background layers (used by layout currently) */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/HomeBusiness_image.png") center/cover no-repeat;
    z-index: -2;
    filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient( circle at top, rgba(0,0,0,0.35), rgba(0,0,0,0.65) );
    z-index: -1;
}


/* =========================================================
   2. LAYOUT (NAVBAR + FOOTER + SITE STRUCTURE)
   Used by _Layout.cshtml
   ========================================================= */

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(245, 245, 245, 0.55);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

    .nav-links a {
        color: #111;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

        .nav-links a:hover {
            color: var(--primary-color);
        }

.nav-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Dropdown container */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Button */
.nav-dropbtn {
    color: #111;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
}

/* Dropdown menu (hidden by default) */
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17,17,17,0.95);
    min-width: 200px;
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
}

    /* Links inside dropdown */
    .nav-dropdown-content a {
        display: block;
        padding: 0.6rem 1rem;
        color: #aaa;
        font-size: 0.9rem;
        text-decoration: none;
    }

        .nav-dropdown-content a:hover {
            color: var(--primary-color);
            background: rgba(255,255,255,0.05);
        }

/* Show dropdown on hover (desktop) */
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

/* CTA button (shared action button in navbar + pages) */
.cta-btn {
    background: linear-gradient(135deg, #ff2a2a, #cc0000);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
    transition: all 0.2s ease;
}

    .cta-btn:hover {
        background: linear-gradient(135deg, #ff3a3a, #a80000);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35);
    }

/* =========================================================
   3. HOME PAGE STYLES
   Used by Index.cshtml
   ========================================================= */

/* Hero */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem 3rem;
    text-align: center;
}

.hero-card {
    max-width: 700px;
}

    .hero-card h1 {
        color: #fff;
        text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Secondary button */
.secondary-btn {
    border: 1px solid #fff;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    color: #fff;
    transition: all 0.2s ease;
}

    .secondary-btn:hover {
        background: rgba(255,255,255,0.1);
    }

/* Features */
.section-container {
    max-width: 1000px;
    margin: auto;
    padding: 3rem 1rem;
    text-align: center;
}

.features-section {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    justify-items: center;
}
/*.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}*/

    .features-grid .card {
        background: #f2f2f2;
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 6px 14px rgba(0,0,0,0.08);
        transition: all 0.25s ease;
    }
        /* LIGHT override version */
        .features-grid .card.card-light {
            background: #ffffff;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
        }

        .features-grid .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 0 14px rgba(255,0,0,0.18), 0 0 0 1px rgba(255,0,0,0.15);
        }

/* How it works */
.how-section {
    background: #f0f0f0;
}

.works-image {
    width: 125px;
    height: auto;
    margin-bottom: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

    .step span {
        display: inline-block;
        background: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

/* CTA section */
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

    .cta-section .glass-card {
        max-width: 600px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        /* CTA card spacing */
        .cta-section .glass-card h2 {
            margin-bottom: 0.75rem;
        }

        .cta-section .glass-card p {
            margin-bottom: 1.25rem;
        }

    /* spacing above button */
    .cta-section .cta-btn {
        margin-top: 0.5rem;
    }


/* =========================================================
   4. COMING SOON PAGE STYLES
   Used by ComingSoon page
   ========================================================= */

.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 1rem 3rem;
    text-align: center;
    color: #fff;
}

/* Features list */
.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.85);
        position: relative;
    }

        .features li::before {
            content: "✓";
            color: var(--primary-color);
            margin-right: 10px;
            font-weight: bold;
        }

/* CTA box */
.cta-box {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

    .cta-box p {
        margin-bottom: 1rem;
        color: rgba(255,255,255,0.8);
    }

    .cta-box button {
        background-color: var(--primary-color);
        color: #fff;
        padding: 0.9rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        transition: transform 0.2s ease, background 0.3s ease;
    }

        .cta-box button:hover {
            background-color: darkred;
            transform: translateY(-2px);
        }

.cta-section .glass-card {
    color: #fff;
}


/* Form */
.early-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

    .early-form input,
    .early-form select {
        padding: 0.75rem;
        border-radius: 6px;
        border: none;
        outline: none;
        font-size: 0.95rem;
        background: rgba(255,255,255,0.9);
    }

.radio-group {
    text-align: left;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

    .radio-group p {
        margin-bottom: 0.4rem;
    }

    .radio-group label {
        display: block;
        margin-bottom: 0.3rem;
    }

.early-form button {
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
}

    .early-form button:hover {
        background-color: darkred;
        transform: translateY(-2px);
    }

/*Star rating*/
.rating-stars {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.star-filled {
    color: #cc0000;
}

.star-empty {
    color: transparent;
    -webkit-text-stroke: 0.1px rgba(0, 0, 0, 0.85);
}

/*Mobile menu Popup*/

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
}

/* Mobile menu panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
}

    .mobile-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .mobile-menu hr {
        border: 0;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .mobile-menu .cta-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

.mobile-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Main label (Resources) */
.mobile-group-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.mobile-sub-link {
    color: #aaa;
    font-size: 0.95rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255,255,255,0.15);
    margin-left: 0.25rem;
}

    .mobile-sub-link:hover {
        color: var(--primary-color);
    }

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2100;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1500;
}

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Open state */
    .mobile-menu.open {
        right: 0;
    }


/* =========================================================
   PRICING PAGE
   ========================================================= */

.pricing-section {
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    background: #f7f7f7;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all .25s ease;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 30px rgba(0,0,0,.12), 0 0 15px rgba(255,0,0,.15);
    }


    .pricing-card.featured {
        border: 2px solid #cc0000;
        background: #ffffff;
        transform: scale(1.03);
    }


        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-5px);
        }


/* Badge */

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#ff2a2a,#cc0000);
    color: white;
    padding: .35rem 1rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}


/* Plan Name */

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
}


/* Price */

/*.plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #cc0000;
    margin: 1rem 0;
}


    .plan-price span {
        font-size: .95rem;
        color: #555;
        font-weight: normal;
    }*/

.plan-price {
    margin: .75rem 0;
}

    .plan-price strong {
        font-size: 1.5rem;
    }

    .plan-price span {
        color: #777;
        font-size: .85rem;
    }


/* Description */

.plan-description {
    color: #555;
    min-height: 60px;
    margin-bottom: 1.5rem;
}


/* Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.plan-features li {
    padding: .45rem 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    position: relative;
    padding-left: 1.6rem;
}

    .plan-features li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #cc0000;
        font-weight: bold;
    }

    .plan-features li.disabled::before {
        content: "✗";
        color: #000;
    }

    .plan-features li.disabled {
        color: #666;
    }


/* Button alignment */

.pricing-card .cta-btn {
    margin-top: auto;
}

.pricing-trial-message {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #555;
}


/* Mobile */

@media(max-width:768px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }


    .pricing-card.featured {
        transform: none;
    }


        .pricing-card.featured:hover {
            transform: translateY(-5px);
        }
}

/* =========================================================
   Trial
========================================================= */
.trial-banner-section {
    background: #fff;
    padding: 1rem 1rem 0;
}


.trial-banner {
    max-width: 1000px;
    margin: 0 auto;
    min-height: 95px;
    display: grid;
    grid-template-columns: 8px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
}


.trial-accent {
    display: flex;
    height: 100%;
    width: 8px;
}

.trial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem .5rem;
}

    .trial-header h3 {
        margin: 0;
        white-space: nowrap;
        font-size: 1.25rem;
    }

    .trial-header p {
        margin: 0;
        color: #555;
    }

.trial-content {
    padding: 1rem 1.5rem;
}


    .trial-content p {
        margin: 0 0 .6rem;
        color: #555;
        font-size: .95rem;
    }


.trial-benefits {
    grid-column: 2;
    padding: 0 1.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
}
    .trial-benefits span i {
        color: #cc0000;
        font-style: normal;
        font-weight: bold;
        margin-right: .35rem;
    }

/* =========================================================
   MOBILE RESPONSIVE STYLES (max-width: 768px)
   ========================================================= */

@media (max-width: 768px) {

    /* =========================================================
       NAVBAR
       ========================================================= */
    .navbar {
        padding: 0.6rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide desktop nav + right links */
    .nav-links,
    .nav-right {
        display: none;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #111;
    }

    /* Logo sizing */
    .nav-logo {
        height: 28px;
        width: auto;
    }

    /* =========================================================
       HERO SECTION
       ========================================================= */

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

        .hero-buttons a {
            width: 100%;
            text-align: center;
            display: block;
        }


    /* =========================================================
       CTA / GENERAL BUTTONS
       ========================================================= */

    .cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        text-align: center;
    }

    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    /* =========================================================
       HOW IT WORKS / FEATURES - IMAGES
       ========================================================= */
    .works-image {
        width: 200px;
    }

    .feature-image {
        width: 200px;
    }


    /* =========================================================
       FEATURES / STEPS
       ========================================================= */

    .steps {
        flex-direction: column;
        align-items: center;
    }


    /* =========================================================
       GLASS COMPONENTS (SHARED)
       ========================================================= */

    .glass-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

        .glass-card h1 {
            font-size: 2rem;
        }


    /* =========================================================
       COMING SOON LOGO (if used)
       ========================================================= */

    .logo {
        width: 140px;
    }

    /* =========================================================
       Trial Banner
       ========================================================= */
    .trial-banner {
        grid-template-columns: 8px 1fr;
    }

    .trial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: .4rem;
    }

    .trial-benefits {
        flex-direction: column;
        gap: .45rem;
    }
}

.info-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    border-radius: 50%;
    border: 1.5px solid #cc0000;
    background: transparent;
    color: #cc0000;
    font-size: .75rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    cursor: help;
    line-height: 1;
}

    .info-badge:hover {
        background: #cc0000;
        color: #fff;
    }
/* Feature Information Modal */

.feature-image {
    width: 175px;
    height: auto;
    margin-bottom: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(0,0,0,.65);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}


.feature-modal-content {
    background: white;
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}


    .feature-modal-content h2 {
        margin-top: 0;
        color: #cc0000;
    }


    .feature-modal-content h3 {
        margin-top: 1.5rem;
    }


    .feature-modal-content ul {
        text-align: left;
        padding-left: 1.5rem;
    }


    .feature-modal-content li {
        margin-bottom: .5rem;
    }


.feature-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #555;
}


    .feature-modal-close:hover {
        color: #cc0000;
    }

.pricing-disclaimer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 4rem;
}

/* =========================================================
   Widget Preview Split Layout
========================================================= */
.widget-split-layout-wrapper {
    background: #fff;
}

/* Center only specific widget headings */
.center-title {
    text-align: center;
}

.widget-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}


.widget-left {
    text-align: left;
}


.widget-right {
    text-align: left;
    padding-left: 2rem;
    border-left: 1px solid rgba(0,0,0,.08);
}


/* Widget Preview numbered steps */

/*.widget-left .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}


.widget-left .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
}


    .widget-left .step span {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: .5rem;
    }*/

/* Widget Preview numbered steps */

.widget-left .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}


.widget-left .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: none;
}


    .widget-left .step span {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: .5rem;
    }


/* Widget benefits list */
.widget-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}


    .widget-benefits li {
        padding: .75rem 0;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }


        .widget-benefits li::before {
            content: "✓";
            color: #cc0000;
            font-weight: bold;
            margin-right: .5rem;
        }

.widget-preview-button {
    margin-top: 2rem;
}

/* Widget flow chart image */

.widget-flowchart {
    margin-top: 2.5rem;
    text-align: center;
}

    .widget-flowchart img {
        width: 100%;
        max-width: 600px;
        height: auto;
        display: inline-block;
    }

/* =========================================================
CLIENT INTELLIGENCE
========================================================= */

.intelligence-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.intelligence-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intelligence-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
}

.intelligence-content h2 {
    margin-top: 0;
}

.intelligence-content .section-intro {
    margin-bottom: 0;
}

/* =========================================================
COMMUNITY REPORTING
========================================================= */

.community-reporting-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.community-reporting-content {
    min-width: 0;
}

    .community-reporting-content h2 {
        margin-top: 0;
    }

    .community-reporting-content p {
        margin-bottom: 1rem;
    }

.community-reporting-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-reporting-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
}


/* =========================================================
   RECENT CLIENT EXPERIENCES
   ========================================================= */
.recent-comments-section {
    background: #f0f0f0;
    padding: 1rem 0;
}

.recent-comments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.recent-comment-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 260px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
}

    .recent-comment-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        text-decoration: none;
    }


/* =========================================================
   RATING
   ========================================================= */

.recent-comment-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.85rem;
    font-size: 1.35rem;
    line-height: 1;
}

    .recent-comment-stars .star {
        display: inline-block;
    }

        .recent-comment-stars .star.filled {
            color: #dc2626;
        }

        .recent-comment-stars .star.empty {
            color: #000000;
        }


/* =========================================================
   SPECIALTY / LOCATION
   ========================================================= */

.recent-comment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.recent-comment-specialty {
    font-weight: 600;
    color: #1f2937;
}

.recent-comment-location {
    color: #6b7280;
}


/* Separator between specialty and location */

.recent-comment-specialty::after {
    content: "•";
    margin-left: 0.45rem;
    color: #a0a0a0;
}


/* =========================================================
   COMMENT PREVIEW
   ========================================================= */

.recent-comment-preview {
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
    color: #444;
}


/* =========================================================
   FOOTER
   ========================================================= */

.recent-comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #777;
}

.recent-comment-link {
    color: #2563eb;
    font-weight: 600;
}

/* =========================================================
   RECENT COMMENTS CAROUSEL
   ========================================================= */
.recent-comments-carousel {
    position: relative;
    width: 100%;
}

.recent-comments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    overflow: hidden;
}


/* Cards are hidden/shown by JavaScript */

.recent-comment-card {
    display: none;
}


    /* Only active cards are visible */

    .recent-comment-card.carousel-active {
        display: flex;
    }


/* =========================================================
   CAROUSEL DOTS
   ========================================================= */

.recent-comments-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.recent-comments-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c4c4c4;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    .recent-comments-dot.active {
        background: #dc2626;
        transform: scale(1.25);
    }

    .recent-comments-dot:hover {
        background: #999;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .recent-comments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .recent-comments-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {

    .recent-comments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 600px) {

    .recent-comments-section {
        padding: 2.5rem 0;
    }

    .recent-comments-grid {
        grid-template-columns: 1fr;
    }

    .recent-comment-card {
        min-height: 0;
    }
}

/* =========================================================
MOBILE RESPONSIVE STYLES
========================================================= */
@media (max-width: 768px) {
    /* Client Intelligence */
    .intelligence-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }

    .intelligence-visual {
        order: 1;
    }

    .intelligence-content {
        order: 2;
    }

    .intelligence-image {
        width: 210px;
        max-width: 210px;
        margin: 0 auto;
    }

    .intelligence-content h2 {
        margin-top: 0.5rem;
    }

    .intelligence-content .section-intro {
        text-align: center;
    }
    /* Community Reporting */

    .community-reporting-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .community-reporting-content {
        order: 1;
    }

    .community-reporting-image-container {
        order: 2;
    }

    .community-reporting-image {
        width: 210px;
        max-width: 210px;
        margin: 0 auto;
    }

    .community-reporting-content h2 {
        margin-top: 0;
    }
}

/* =========================================================
SMALLER PHONES
========================================================= */

@media (max-width: 400px) {
    .intelligence-image,
    .community-reporting-image {
        width: 190px;
        max-width: 190px;
    }
}



/* Mobile */
@media(max-width:900px) {

    .widget-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .widget-right {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,.08);
        padding-left: 0;
        padding-top: 2rem;
    }

    .widget-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .widget-right {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,.08);
        padding-left: 0;
        padding-top: 2rem;
    }

    /* Stack steps into one centered column */
    .widget-left .steps {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 1.5rem auto 0;
    }

    .widget-left .step {
        text-align: center;
        align-items: center;
    }

    /* Leagal text on pricing */
    .pricing-disclaimer {
        margin-top: 2rem;
        margin-bottom: 4rem;
        margin-inline: auto;
        max-width: 580px;
        padding-inline: 1rem;
        text-align: center;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.6;
        box-sizing: border-box;
    }
}


/* =========================================================
   END OF FILE
   ========================================================= */
