* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1c293d;
    scroll-behavior: smooth;
    background: white;
}

/* Offset for sticky header on anchor links */
section[id] {
    scroll-margin-top: 100px;
}

/* Color Palette from Brand Guide */
:root {
    --primary-blue: #1f417d;
    --dark-blue: #1c293d;
    --bronze: #7e5221;
    --light-gold: #d3b474;
    --light-blue: #b9cfeb;
    --cream: #fff6e4;
    --white: #ffffff;
    --success: #10b981;
}

/* News Ticker */
.news-ticker {
    background: var(--dark-blue);
    color: white;
    padding: 0.6rem 0;
    overflow: hidden;
    position: relative;
}

.news-ticker-content {
    display: flex;
    width: max-content;
    animation: ticker 100s linear infinite;
    white-space: nowrap;
}

    .news-ticker-content:hover {
        animation-play-state: paused;
    }

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.news-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 3rem;
    font-size: 0.9rem;
}

    .news-item::before {
        content: '📰';
    }

    .news-item.trust-point::before {
        content: none;
    }

    .news-item.trust-point {
        color: var(--light-gold);
        font-weight: 500;
        font-style: italic;
        opacity: 0.95;
        border-left: 1px solid rgba(211, 180, 116, 0.4);
        border-right: 1px solid rgba(211, 180, 116, 0.4);
        margin: 0 0.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .news-item a {
        color: var(--light-gold);
        text-decoration: none;
        cursor: pointer;
    }

        .news-item a:hover {
            text-decoration: underline;
            cursor: pointer;
        }

/* Header */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1002;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    height: 70px;
    width: auto;
}

    .logo img {
        height: 100%;
        width: auto;
    }

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark-blue);
        font-weight: 500;
        transition: color 0.3s;
        font-size: 0.95rem;
    }

        .nav-links a:hover {
            color: var(--bronze);
        }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bronze);
    font-weight: 600;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--bronze);
    color: white !important;
    border-radius: 8px;
    transition: all 0.3s;
}

    .nav-cta:hover {
        background: #6a4519;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(126, 82, 33, 0.3);
    }

/* Audience Tab Styles */
.audience-tab {
    position: relative;
    padding-bottom: 4px !important;
}

    .audience-tab.active {
        color: var(--primary-blue) !important;
        font-weight: 600 !important;
    }

        .audience-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--bronze);
            border-radius: 2px;
        }

.audience-tab-mobile {
    display: block !important;
}

    .audience-tab-mobile.active {
        color: var(--primary-blue) !important;
        font-weight: 700 !important;
        border-left: 3px solid var(--bronze) !important;
        padding-left: calc(0.75rem + 3px) !important;
    }

/* Content Toggle */
.audience-content {
    display: none;
}

    .audience-content.active {
        display: block;
    }

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background: var(--dark-blue);
        border-radius: 2px;
        transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 160px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1001;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        color: var(--dark-blue);
        text-decoration: none;
        border-bottom: 1px solid #e5e7eb;
        font-weight: 500;
    }

        .mobile-menu a:hover {
            color: var(--bronze);
            background: #f9fafb;
        }

    .mobile-menu .mobile-cta {
        margin-top: 1rem;
        padding: 1rem 2rem;
        background: var(--bronze);
        color: white;
        text-align: center;
        border-radius: 8px;
        border-bottom: none;
    }

        .mobile-menu .mobile-cta:hover {
            background: #6a4519;
            color: white;
        }

    .mobile-menu .mobile-phone {
        color: var(--bronze);
        font-weight: 600;
        border-bottom: none;
        text-align: center;
    }

        .mobile-menu .mobile-phone:hover {
            color: var(--bronze);
            background: #f9fafb;
        }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, white 50%, var(--light-blue) 100%);
    padding: 5rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(31,65,125,0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

    .hero-left h1 .accent {
        color: var(--bronze);
    }

.hero-tagline {
    font-size: 1.15rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--bronze);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.value-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: bold;
}

.value-text {
    color: var(--dark-blue);
    font-size: 1.02rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-alert-info {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 246, 228, 0.6);
    border-left: 3px solid var(--bronze);
    border-radius: 0 8px 8px 0;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: var(--bronze);
    color: white;
    box-shadow: 0 4px 15px rgba(126, 82, 33, 0.3);
}

    .btn-primary:hover {
        background: #6a4519;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(126, 82, 33, 0.4);
    }

.btn-outline {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

    .btn-outline:hover {
        background: var(--primary-blue);
        color: white;
    }

.hero-member-line {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

    .hero-member-line:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        transform: translateY(-2px);
        background: var(--cream);
    }

    .hero-member-line .count {
        background: var(--primary-blue);
        color: white;
        padding: 0.25rem 0.6rem;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.85rem;
    }

/* Hero Right - Case Study Card */
.case-study-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

    .case-study-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--bronze) 0%, var(--primary-blue) 100%);
    }

.case-label {
    display: inline-block;
    background: var(--cream);
    color: var(--bronze);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.case-quote {
    font-size: 1.15rem;
    color: var(--dark-blue);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.case-result {
    background: var(--cream);
    border-left: 4px solid var(--bronze);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.case-result-title {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-result-text {
    font-size: 1.05rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.case-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

    .testimonial-slide.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--light-blue);
        cursor: pointer;
        transition: all 0.3s;
    }

        .carousel-dots .dot:hover {
            background: var(--bronze);
            transform: scale(1.1);
        }

        .carousel-dots .dot.active {
            background: var(--bronze);
            transform: scale(1.2);
        }

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 5rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.how-it-works-container {
    max-width: 1100px;
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .how-it-works-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.4rem;
        color: var(--dark-blue);
        margin-bottom: 0.75rem;
    }

    .how-it-works-header p {
        color: #6b7280;
        font-size: 1.1rem;
    }

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

    .steps-container::before {
        content: '';
        position: absolute;
        top: 45px;
        left: 16.5%;
        right: 16.5%;
        height: 3px;
        background: linear-gradient(90deg, var(--bronze) 0%, var(--light-gold) 50%, var(--primary-blue) 100%);
        z-index: 0;
    }

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 90px;
    height: 90px;
    background: white;
    border: 4px solid var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(126, 82, 33, 0.15);
}

    .step-number span {
        font-size: 2rem;
        font-weight: 700;
        color: var(--bronze);
    }

.step h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.how-it-works-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--cream);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .how-it-works-note p {
        color: var(--dark-blue);
        font-size: 1rem;
    }

    .how-it-works-note strong {
        color: var(--bronze);
    }

/* Wisconsin Coverage Section */
.coverage-section {
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
    padding: 5rem 2rem;
}

.coverage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
}

.coverage-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coverage-map-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.coverage-stat {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    text-align: center;
    min-width: 160px;
    position: relative;
    z-index: 1;
}

.coverage-map-container {
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.map-brand-logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    height: 40px;
    opacity: 0.9;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.coverage-map {
    position: relative;
    width: 220px;
}

    .coverage-map img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 8px 25px rgba(31, 65, 125, 0.15));
    }

/* Animated pins on the WI map */
.map-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 10;
    cursor: pointer;
}

    .map-pin::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: rgba(126, 82, 33, 0.25);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.map-pin:hover {
    background: var(--light-gold);
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

.map-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    margin-bottom: 8px;
    z-index: 1000;
}

.map-pin:hover {
    background: var(--light-gold);
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
    z-index: 500;
}

    .map-pin:hover .map-tooltip {
        opacity: 1;
    }

/* Wisconsin-accurate pin positions by county */
/* Using Wisconsin map where: top=north, left=west, right=east (Lake Michigan), bottom=south (Illinois border) */

/* SOUTHEAST CLUSTER - Lake Michigan shore */
.pin-milwaukee {
    top: 78%;
    left: 82%;
}
/* SE corner, on Lake Michigan */
.pin-ozaukee {
    top: 70%;
    left: 84%;
}
/* Just north of Milwaukee on lake */
.pin-racine {
    top: 85%;
    left: 80%;
}
/* South of Milwaukee on lake */
.pin-waukesha {
    top: 78%;
    left: 72%;
}
/* Inland from Milwaukee */
.pin-washington {
    top: 68%;
    left: 72%;
}
/* West Bend area, north of Waukesha */
.pin-walworth {
    top: 88%;
    left: 68%;
}
/* Elkhorn, south central */
.pin-jefferson {
    top: 82%;
    left: 62%;
}
/* Between Madison and Milwaukee */

/* SOUTH CENTRAL */
.pin-dane {
    top: 78%;
    left: 52%;
}
/* Madison, south central */
.pin-rock {
    top: 90%;
    left: 55%;
}
/* Janesville, southern border */
.pin-dodge {
    top: 72%;
    left: 62%;
}
/* Juneau/Horicon, east of Madison */
.pin-sauk {
    top: 68%;
    left: 46%;
}
/* Baraboo, Wisconsin Dells area */

/* EAST CENTRAL - Fox Valley & Lake Winnebago */
.pin-brown {
    top: 52%;
    left: 78%;
}
/* Green Bay, on bay */
.pin-outagamie {
    top: 55%;
    left: 70%;
}
/* Appleton, Fox Valley */
.pin-fond-du-lac {
    top: 62%;
    left: 68%;
}
/* South end of Lake Winnebago */
.pin-door {
    top: 41%;
    left: 94%;
}
/* Door Peninsula, NE sticking into lake */

/* CENTRAL */
.pin-marathon {
    top: 38%;
    left: 52%;
}
/* Wausau, center of state */
.pin-wood {
    top: 48%;
    left: 48%;
}
/* Wisconsin Rapids */
.pin-waushara {
    top: 55%;
    left: 55%;
}
/* Wautoma, central */
.pin-clark {
    top: 42%;
    left: 42%;
}
/* Neillsville, west-central */

/* WEST - Mississippi River side */
.pin-la-crosse {
    top: 65%;
    left: 28%;
}
/* La Crosse, on Mississippi */
.pin-monroe {
    top: 62%;
    left: 32%;
}
/* Sparta */
.pin-jackson {
    top: 52%;
    left: 32%;
}
/* Black River Falls */
.pin-vernon {
    top: 72%;
    left: 28%;
}
/* Viroqua, SW */
.pin-eau-claire {
    top: 42%;
    left: 28%;
}
/* Eau Claire */
.pin-chippewa {
    top: 40%;
    left: 35%;
}
/* Chippewa Falls */
.pin-dunn {
    top: 45%;
    left: 25%;
}
/* Menomonie */
.pin-st-croix {
    top: 40%;
    left: 18%;
}
/* Hudson, on St Croix River */

/* NORTHWEST */
.pin-douglas {
    top: 8%;
    left: 18%;
}
/* Superior, far NW corner on Lake Superior */
.pin-sawyer {
    top: 22%;
    left: 32%;
}
/* Hayward */
.pin-ashland {
    top: 12%;
    left: 38%;
}
/* Ashland, on Lake Superior */

/* NORTH CENTRAL - Northwoods */
.pin-vilas {
    top: 18%;
    left: 52%;
}
/* Eagle River, north central */

.map-pin::after {
    animation-delay: inherit;
}

.pin-dane::after {
    animation-delay: 0s;
}

.pin-milwaukee::after {
    animation-delay: 0.3s;
}

.pin-brown::after {
    animation-delay: 0.6s;
}

.pin-eau-claire::after {
    animation-delay: 0.9s;
}

.pin-marathon::after {
    animation-delay: 1.2s;
}

.pin-la-crosse::after {
    animation-delay: 1.5s;
}

.pin-douglas::after {
    animation-delay: 1.8s;
}

.pin-waukesha::after {
    animation-delay: 0.1s;
}

.pin-washington::after {
    animation-delay: 0.4s;
}

.pin-dodge::after {
    animation-delay: 0.7s;
}

.pin-outagamie::after {
    animation-delay: 1.0s;
}

.pin-ozaukee::after {
    animation-delay: 1.3s;
}

.pin-sauk::after {
    animation-delay: 1.6s;
}

.pin-fond-du-lac::after {
    animation-delay: 1.9s;
}

.pin-vilas::after {
    animation-delay: 0.2s;
}

.pin-ashland::after {
    animation-delay: 0.5s;
}

.pin-jackson::after {
    animation-delay: 0.8s;
}

.pin-walworth::after {
    animation-delay: 1.1s;
}

.pin-dunn::after {
    animation-delay: 1.4s;
}

.pin-st-croix::after {
    animation-delay: 1.7s;
}

.pin-vernon::after {
    animation-delay: 0s;
}

.pin-door::after {
    animation-delay: 0.3s;
}

.pin-monroe::after {
    animation-delay: 0.6s;
}

.pin-waushara::after {
    animation-delay: 0.9s;
}

.pin-wood::after {
    animation-delay: 1.2s;
}

.pin-chippewa::after {
    animation-delay: 1.5s;
}

.pin-clark::after {
    animation-delay: 1.8s;
}

.pin-jefferson::after {
    animation-delay: 0.1s;
}

.pin-sawyer::after {
    animation-delay: 0.4s;
}

.pin-racine::after {
    animation-delay: 0.7s;
}

.pin-rock::after {
    animation-delay: 1.0s;
}

.coverage-stat-number {
    font-size: 1.9rem;
    font-weight: bold;
    color: var(--bronze);
    display: block;
    margin-bottom: 0.2rem;
}

.coverage-stat-label {
    font-size: 0.88rem;
    color: #6b7280;
}

.who-uses {
    max-width: 1000px;
    margin: 0 auto;
}

    .who-uses h3 {
        font-size: 1.5rem;
        color: var(--dark-blue);
        margin-bottom: 0.5rem;
        font-weight: 600;
        text-align: center;
    }

.who-uses-hint {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.who-uses-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

    .industry-item:hover {
        background: rgba(255, 246, 228, 0.5);
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        border-radius: 6px;
    }

.industry-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--dark-blue);
    width: 100%;
}

    .industry-name::before {
        content: '→';
        color: var(--bronze);
        font-weight: bold;
        flex-shrink: 0;
    }

    .industry-name::after {
        content: '+';
        font-size: 1.1rem;
        color: var(--bronze);
        font-weight: 400;
        margin-left: auto;
        transition: transform 0.3s;
        flex-shrink: 0;
    }

.industry-item.active .industry-name::after {
    transform: rotate(45deg);
}

.industry-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    padding-left: 1.2rem;
}

.industry-item.active .industry-desc {
    max-height: 200px;
    padding-top: 0.75rem;
}

/* Scrolling Client Logos - Top Banner */
.clients-section {
    background: var(--dark-blue);
    padding: 0.75rem 0;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 0.7rem;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.clients-scroll {
    display: flex;
    animation: scroll 25s linear infinite;
}

    .clients-scroll:hover {
        animation-play-state: paused;
    }

.client-logo {
    flex-shrink: 0;
    padding: 0 3rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0.85;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Why It Matters Section */
.why-matters {
    background: linear-gradient(180deg, rgba(255, 246, 228, 0.4) 0%, white 100%);
    padding: 5rem 2rem;
}

.why-matters-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.why-matters h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.why-matters-intro {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

    .benefit-card .icon {
        width: 50px;
        height: 50px;
        background: var(--bronze);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
        color: var(--dark-blue);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .benefit-card p {
        font-size: 0.95rem;
        color: #6b7280;
        line-height: 1.55;
    }

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .faq-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.3rem;
        color: var(--dark-blue);
        margin-bottom: 0.5rem;
    }

    .faq-header p {
        color: #6b7280;
        font-size: 1.1rem;
    }

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

    .faq-question:hover {
        background: var(--cream);
    }

    .faq-question::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--bronze);
        font-weight: 400;
        transition: transform 0.3s;
    }

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
}

    .faq-cta p {
        color: #6b7280;
        margin-bottom: 1rem;
    }

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .final-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }

.final-cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--light-blue);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-white {
    background: white;
    color: var(--dark-blue);
    font-weight: 600;
}

    .btn-white:hover {
        background: var(--cream);
        transform: translateY(-2px);
    }

.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-ghost:hover {
        background: white;
        color: var(--dark-blue);
    }

/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 3.5rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    padding-right: 2rem;
}

    .footer-brand img {
        height: 55px;
        margin-bottom: 1rem;
        filter: brightness(0) invert(1);
    }

    .footer-brand p {
        color: var(--light-blue);
        line-height: 1.65;
        font-size: 0.95rem;
    }

.footer-tagline {
    margin-top: 1rem;
    font-style: italic;
    color: var(--light-gold);
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--light-gold);
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 0.6rem;
    }

.footer-column a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

    .footer-column a:hover {
        color: white;
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light-blue);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left h1 {
        font-size: 2.6rem;
    }

    .coverage-content {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

        .steps-container::before {
            display: none;
        }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }

    .logo {
        height: 55px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .coverage-map-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats-column {
        flex-direction: row;
        gap: 1rem;
    }

    .coverage-stat {
        min-width: auto;
        flex: 1;
    }

    .who-uses-list {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .trust-bar-inner {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        text-align: center;
    }

    .trust-bar span {
        justify-content: center;
    }
}

/* ==================== FAMILIES PAGE STYLES ==================== */

/* Families Hero */
.families-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, white 50%, var(--light-blue) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .families-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(31,65,125,0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

.families-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.families-hero-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.families-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.families-hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.families-hero-image {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .families-hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* What is CCAP Pro */
.families-what-is {
    padding: 5rem 2rem;
    background: white;
}

.families-what-is-container {
    max-width: 1100px;
    margin: 0 auto;
}

.families-what-is h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.families-what-is-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.families-explanation-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.families-explanation-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.families-explanation-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.families-explanation-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Benefits Section */
.families-benefits {
    padding: 5rem 2rem;
    background: var(--cream);
}

.families-benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.families-benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 0.5rem;
}

.families-benefits-subtitle {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
}

.families-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.families-benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .families-benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.families-benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.families-benefit-card h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.families-benefit-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Families How It Works */
.families-how-it-works {
    padding: 5rem 2rem;
    background: white;
}

.families-how-it-works-container {
    max-width: 800px;
    margin: 0 auto;
}

.families-how-it-works h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.families-timeline {
    position: relative;
}

    .families-timeline::before {
        content: '';
        position: absolute;
        left: 25px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--light-blue);
    }

.families-timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.families-timeline-number {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.families-timeline-content h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.families-timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Families FAQ */
.families-faq {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.families-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.families-faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 3rem;
}

/* Families CTA */
.families-cta {
    padding: 5rem 2rem;
    background: var(--dark-blue);
    text-align: center;
}

.families-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.families-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.families-cta p {
    color: var(--light-blue);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.families-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Families Responsive */
@media (max-width: 768px) {
    .families-hero h1 {
        font-size: 2rem;
    }

    .families-explanation-grid {
        grid-template-columns: 1fr;
    }

    .families-explanation-image {
        order: -1;
    }

    .families-benefits-grid {
        grid-template-columns: 1fr;
    }

    .families-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
