:root {
    /* Color Palette - Premium Nature Theme */
    --primary: #065f46; /* Emerald 800 */
    --primary-light: #10b981; /* Emerald 500 */
    --secondary: #1e293b; /* Slate 800 */
    --accent: #f59e0b; /* Amber 500 */
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--secondary);
}

.btn-accent:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    height: 100px;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--surface);
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-nav-toggle:hover {
    background: #ecfdf5;
    color: var(--primary);
}

.mobile-nav-toggle i {
    font-size: 1.05rem;
    pointer-events: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    white-space: nowrap;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    padding: 10px 0;
}

.dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 240px;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--secondary) !important;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--surface);
    color: var(--primary-light) !important;
    padding-left: 1.25rem;
}

/* Hero Section */
.sticky-cta-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.1);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.sticky-cta-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    .logo {
        font-size: 1.2rem;
    }

    .video-test-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 1100px) {
    header {
        height: auto;
        min-height: 64px;
    }

    .nav {
        gap: 0.8rem;
        padding: 0.55rem 0;
        position: relative;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none;
    }

    .tool-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, #ecfdf5 0%, #ffffff 50%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: var(--secondary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-badges {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 185, 129, 0.22);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    font-weight: 600;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.search-label {
    width: 100%;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--secondary);
    padding-left: 0.75rem;
    white-space: nowrap;
}

.search-container input {
    flex: 1;
    border: none;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    outline: none;
}

/* Rebate Section */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.video-test-section {
    background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 72%);
    padding-bottom: 42px;
}

.video-test-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
}

.video-test-copy {
    background: linear-gradient(145deg, #ecfdf5, #ffffff);
    border: 1px solid rgba(6, 95, 70, 0.12);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.video-test-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #d1fae5;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.video-test-copy h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.video-test-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.video-test-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.video-test-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--secondary);
    font-weight: 600;
}

.video-test-list i {
    color: var(--primary-light);
}

.video-test-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(6, 95, 70, 0.14);
    box-shadow: var(--shadow-xl);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.video-test-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    object-fit: cover;
    object-position: center;
}

.video-test-caption {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.video-test-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px -18px rgba(6, 95, 70, 0.35);
    border-color: rgba(16, 185, 129, 0.35);
}

.rebate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rebate-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 42px;
}

.rebate-section .rebate-content {
    padding-right: 0.25rem;
}

.rebate-section .rebate-content p:last-of-type {
    max-width: 42ch;
}

.rebate-summary-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(6, 95, 70, 0.1);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 1.25rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.rebate-summary-header {
    display: grid;
    gap: 0.65rem;
}

.rebate-summary-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary);
    text-transform: uppercase;
}

.rebate-summary-header h4 {
    font-size: 1.5rem;
    color: var(--secondary);
}

.rebate-summary-header p {
    color: var(--text-muted);
}

.rebate-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.rebate-summary-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.rebate-summary-item i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: var(--primary);
}

.rebate-summary-item strong,
.rebate-summary-item span {
    display: block;
}

.rebate-summary-item strong {
    color: var(--secondary);
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

.rebate-summary-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.rebate-summary-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rebate-summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 18px 32px -20px rgba(6, 95, 70, 0.4);
}

.rebate-summary-item:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.32);
    background: #f8fffb;
    box-shadow: var(--shadow-lg);
}

.rebate-summary-note:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.rebate-summary-note i {
    margin-top: 0.15rem;
}

.rebate-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.rebate-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Trust Section */
.trust-section {
    background-color: var(--secondary);
    color: var(--white);
}

.trust-section h2 {
    color: var(--white);
}

.trust-section .feature-card h4 {
    color: var(--white);
}

.trust-section .feature-card p {
    color: #e2e8f0;
}

.trust-section .feature-card {
    text-align: left;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 185, 129, 0.35);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    display: block;
}

.service-area-card {
    background: linear-gradient(145deg, #ecfdf5, #ffffff);
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 1rem;
    margin: 1rem 0 1.5rem;
}

.service-area-card h4 {
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.service-area-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}

.service-area-link {
    align-items: center;
    color: var(--primary);
    display: inline-flex;
    font-weight: 700;
    gap: 0.45rem;
}

.service-visual {
    background: radial-gradient(circle at top left, #d1fae5, #f8fafc 58%);
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 2rem;
    min-height: 360px;
}

.service-visual-icon {
    align-items: center;
    background: var(--primary);
    border-radius: 22px;
    color: var(--white);
    display: flex;
    font-size: 2rem;
    height: 76px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 76px;
}

.service-visual-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.25rem 0;
}

.service-visual-list li {
    align-items: center;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(6, 95, 70, 0.08);
    border-radius: 14px;
    display: flex;
    gap: 0.7rem;
    padding: 0.85rem;
}

.service-visual-list i {
    color: var(--primary-light);
}

.infographic-showcase {
    margin-top: 4rem;
}

.infographic-showcase .section-title {
    margin-bottom: 2rem;
}

.infographic-frame {
    background: var(--white);
    border: 1px solid rgba(6, 95, 70, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.infographic-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.infographic-caption {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.infographic-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px -18px rgba(6, 95, 70, 0.35);
    border-color: rgba(16, 185, 129, 0.35);
}

.infographic-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
}

.related-links {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 24px;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border: 1px solid rgba(6, 95, 70, 0.12);
    box-shadow: var(--shadow);
}

.related-links--neighborhoods {
    padding: 1.75rem;
}

.related-links__header {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.related-links__eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.related-links__summary {
    max-width: 34rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.related-links h2,
.related-links h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.related-links-grid--featured {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
}

.related-link-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-link-card--interactive {
    cursor: pointer;
}

.related-link-card--featured {
    padding: 1.25rem 1.25rem 1.15rem;
    background: linear-gradient(145deg, rgba(6, 95, 70, 0.06), rgba(255, 255, 255, 0.98));
    border-color: rgba(6, 95, 70, 0.18);
    box-shadow: 0 12px 30px rgba(6, 95, 70, 0.08);
    grid-column: span 2;
}

.related-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.28);
    box-shadow: var(--shadow-lg);
}

.related-link-card--interactive:focus-visible {
    outline: 3px solid rgba(16, 185, 129, 0.35);
    outline-offset: 2px;
}

.related-link-card a {
    color: var(--secondary);
    font-weight: 700;
}

.related-link-card--featured a {
    font-size: 1.08rem;
}

.related-link-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 0.35rem;
}

.related-link-card__tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(6, 95, 70, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.related-link-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-start;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white) !important;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.tool-hub-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
}

.tool-hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.tool-hub-card {
    display: grid;
    gap: 0.85rem;
    align-content: start;
    padding: 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tool-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 185, 129, 0.22);
}

.tool-hub-card h3 {
    font-size: 1.35rem;
}

.tool-hub-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.tool-hub-pill {
    width: fit-content;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.tool-hub-card--canopy {
    border-color: rgba(16, 185, 129, 0.18);
}

.tool-hub-card--risk {
    border-color: rgba(239, 68, 68, 0.18);
}

.tool-hub-card--oak {
    border-color: rgba(185, 28, 28, 0.16);
}

.tool-hub-card--grant {
    border-color: rgba(245, 158, 11, 0.18);
}

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

.guide-content h2 {
    margin: 2rem 0 1rem;
    color: var(--primary);
    font-size: 1.85rem;
}

.guide-content h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--secondary);
    font-size: 1.25rem;
}

.guide-content p {
    margin-bottom: 1.1rem;
}

.guide-content ul,
.guide-content ol {
    margin: 0 0 1.25rem 1.5rem;
}

.guide-content ul {
    list-style: disc;
}

.guide-content ol {
    list-style: decimal;
}

.guide-content li {
    margin-bottom: 0.65rem;
}

.guide-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.callout {
    margin: 2rem 0;
    padding: 1.35rem 1.5rem;
    border-left: 5px solid var(--accent);
    background: linear-gradient(145deg, #fffbeb, #ffffff);
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow-sm);
}

.callout.callout-success {
    border-left-color: var(--primary-light);
    background: linear-gradient(145deg, #ecfdf5, #ffffff);
}

.callout.callout-danger {
    border-left-color: #ef4444;
    background: linear-gradient(145deg, #fef2f2, #ffffff);
}

.callout p:last-child {
    margin-bottom: 0;
}

.neighborhood-map {
    margin: 0 0 2rem;
}

.neighborhood-map .section-title {
    margin-bottom: 1.5rem;
}

.neighborhood-map-frame {
    background: var(--white);
    border: 1px solid rgba(6, 95, 70, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.neighborhood-map-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.neighborhood-map-caption {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.neighborhood-map-mini {
    margin: 1.25rem 0 1.5rem;
}

.neighborhood-map-mini .neighborhood-map-frame {
    border-radius: 18px;
    box-shadow: none;
}

/* Regulatory Section */
.reg-section {
    background: var(--white);
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.comparison-box::after {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--secondary);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--surface);
    z-index: 10;
}

.comp-card {
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.comp-card.grant {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.comp-card.permit {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.comp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    padding: 1.35rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(6, 95, 70, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.28);
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 24px -16px rgba(6, 95, 70, 0.55);
}

/* Oak Wilt Timer */
.oak-wilt-article {
    position: relative;
}

.oak-wilt-hero {
    display: block;
    margin-bottom: 2rem;
    padding: 1.5rem 0 0.5rem;
}

.oak-wilt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.oak-wilt-hero h1 {
    font-size: clamp(2.25rem, 4.6vw, 3.75rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    max-width: 12ch;
}

.oak-wilt-subheadline {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--secondary);
    max-width: 42rem;
}

.oak-wilt-timer-shell {
    margin: 2rem 0 3rem;
}

.oak-wilt-timer {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.oak-wilt-timer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 45%);
    pointer-events: none;
}

.oak-wilt-timer--quarantine {
    background: linear-gradient(145deg, #991b1b 0%, #b91c1c 45%, #7f1d1d 100%);
}

.oak-wilt-timer--safe {
    background: linear-gradient(145deg, #166534 0%, #15803d 45%, #14532d 100%);
}

.oak-wilt-timer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 100%;
}

.oak-wilt-timer__eyebrow-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.oak-wilt-timer__eyebrow,
.oak-wilt-timer__status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.42rem 0.85rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.oak-wilt-timer__eyebrow {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.oak-wilt-timer__status {
    background: rgba(255, 255, 255, 0.1);
}

.oak-wilt-timer__headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 14ch;
    margin-bottom: 0.75rem;
}

.oak-wilt-timer__body {
    max-width: 48rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.oak-wilt-timer__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.oak-wilt-timer__meta-card,
.oak-wilt-timer__countdown,
.oak-wilt-timer__footnote {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
}

.oak-wilt-timer__meta-card {
    padding: 1rem 1.1rem;
}

.oak-wilt-timer__meta-label,
.oak-wilt-timer__countdown-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
}

.oak-wilt-timer__meta-value {
    margin-top: 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
}

.oak-wilt-timer__action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.oak-wilt-timer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
}

.oak-wilt-timer__countdown-panel {
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
}

.oak-wilt-timer__countdown {
    width: 100%;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.oak-wilt-timer__days {
    font-size: clamp(3.5rem, 8vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.oak-wilt-timer__countdown-copy {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.oak-wilt-timer__countdown-title {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.oak-wilt-timer__footnotes {
    display: grid;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
}

.oak-wilt-timer__footnote {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
}

.oak-wilt-copy h2 {
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.oak-wilt-page .sticky-cta-btn {
    display: none;
}

.risk-calculator-page .sticky-cta-btn {
    display: none;
}

.canopy-dashboard-page .sticky-cta-btn {
    display: none;
}

.canopy-dashboard-article {
    position: relative;
}

.canopy-hero {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0 0.5rem;
}

.canopy-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.canopy-hero h1 {
    font-size: clamp(2.35rem, 4.8vw, 4.2rem);
    line-height: 1.03;
    max-width: 14ch;
}

.canopy-subheadline {
    max-width: 58rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--secondary);
}

.canopy-dashboard-shell {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(6, 95, 70, 0.05), rgba(15, 23, 42, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-xl);
}

.canopy-dashboard-controls {
    display: grid;
    gap: 1rem;
}

.canopy-control {
    display: grid;
    gap: 0.8rem;
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.canopy-control-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
}

.canopy-control-hint {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.canopy-select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    color: var(--secondary);
    font: inherit;
    padding: 0.95rem 1rem;
}

.canopy-progress-track {
    position: relative;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.canopy-progress-bar {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 0.45s ease, background-color 0.45s ease;
    background: #16a34a;
}

.canopy-goal-marker {
    position: absolute;
    left: 34%;
    top: -0.75rem;
    bottom: -0.75rem;
    width: 0;
    border-left: 3px solid rgba(7, 89, 133, 0.9);
    z-index: 2;
}

.canopy-goal-marker span {
    position: absolute;
    top: -2rem;
    left: 0.35rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(7, 89, 133, 0.92);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.canopy-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.canopy-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.canopy-cta {
    display: grid;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border-radius: 24px;
    background: linear-gradient(145deg, #ecfdf5, #ffffff);
    border: 1px solid rgba(16, 185, 129, 0.16);
    box-shadow: var(--shadow);
}

.canopy-cta p {
    color: var(--secondary);
    line-height: 1.7;
    font-weight: 500;
}

.canopy-cta__button {
    width: fit-content;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
}

.canopy-cta__button:hover {
    background: var(--primary-light);
}

.canopy-copy h2 {
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.canopy-callout {
    margin-top: 3rem;
    padding: 2.6rem;
    border-radius: 28px;
    background: linear-gradient(145deg, #ecfdf5, #ffffff);
    border: 1px solid rgba(16, 185, 129, 0.18);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.canopy-callout h3 {
    margin-bottom: 0.8rem;
}

.canopy-callout p {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.risk-calculator-article {
    position: relative;
}

.risk-hero {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0 0.5rem;
}

.risk-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.risk-hero h1 {
    font-size: clamp(2.35rem, 4.8vw, 4.2rem);
    line-height: 1.03;
    max-width: 13ch;
}

.risk-subheadline {
    max-width: 55rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--secondary);
}

.risk-calculator-shell {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(6, 95, 70, 0.04), rgba(15, 23, 42, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-xl);
}

.risk-calculator-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.risk-control {
    display: grid;
    gap: 0.8rem;
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.risk-control-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
}

.risk-control-hint {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.risk-range {
    width: 100%;
    accent-color: var(--primary-light);
}

.risk-select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    color: var(--secondary);
    font: inherit;
    padding: 0.95rem 1rem;
}

.risk-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.risk-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 28px;
    min-height: 100%;
    box-shadow: var(--shadow-lg);
}

.risk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 55%);
    pointer-events: none;
}

.risk-card--proactive {
    background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.risk-card--reactive {
    background: linear-gradient(160deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.risk-card__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.risk-card__title {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 0.6rem;
}

.risk-card__lede {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.risk-card__lines {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.risk-card__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.risk-card__line span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.risk-card__line strong {
    font-size: 1.05rem;
}

.risk-card__result {
    display: grid;
    gap: 0.3rem;
    padding: 1.15rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.risk-card__result span {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.risk-card__result strong {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1;
    font-weight: 900;
}

.risk-card__result--positive {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

.risk-card__result--negative {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

.risk-card__footnote {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.risk-copy h2 {
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.risk-cta-card {
    margin-top: 3rem;
    padding: 2.6rem;
    border-radius: 28px;
    background: linear-gradient(145deg, #ecfdf5, #ffffff);
    border: 1px solid rgba(16, 185, 129, 0.18);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.risk-cta-card h3 {
    margin-bottom: 0.8rem;
}

.risk-cta-card p {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.risk-calculator-page main[style*="padding-top: 140px"] {
    padding-top: 112px !important;
}

.canopy-dashboard-page main[style*="padding-top: 140px"] {
    padding-top: 112px !important;
}

@media (min-width: 1024px) {
    .oak-wilt-timer__grid {
        padding: 2rem;
    }

    .oak-wilt-timer__countdown {
        padding: 1.75rem 1.5rem;
    }

    .risk-calculator-shell {
        padding: 2rem;
    }

    .canopy-dashboard-shell {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .oak-wilt-hero {
        padding-top: 1rem;
    }

    .oak-wilt-timer__meta-grid {
        grid-template-columns: 1fr;
    }

    .oak-wilt-timer__headline {
        max-width: none;
    }

    .risk-calculator-controls,
    .risk-cards-grid {
        grid-template-columns: 1fr;
    }

    .risk-calculator-shell {
        padding: 1rem;
        border-radius: 24px;
    }

    .risk-card {
        padding: 1.25rem;
    }

    .risk-cta-card {
        padding: 1.5rem;
    }

    .canopy-dashboard-shell {
        padding: 1rem;
        border-radius: 24px;
    }

    .canopy-callout {
        padding: 1.5rem;
    }

    .canopy-hero {
        padding-top: 1rem;
    }

    .canopy-hero h1 {
        max-width: none;
    }

    .canopy-stats {
        flex-direction: column;
    }

    .canopy-stats span {
        width: 100%;
        justify-content: flex-start;
    }

    .tool-hub-card {
        padding: 1.25rem;
    }
}

/* Footer */
footer {
    background: var(--surface);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    main[style*="padding-top: 140px"] {
        padding-top: 88px !important;
    }

    main.service-page {
        padding-top: 92px !important;
    }

    main.service-page > section.container {
        max-width: 100%;
        margin-bottom: 2.5rem !important;
    }

    main.service-page h1 {
        font-size: clamp(2.2rem, 10vw, 3rem) !important;
        line-height: 1.05;
        margin-bottom: 1rem !important;
    }

    main.service-page > section.container > p {
        font-size: 1.05rem !important;
        margin-bottom: 2rem !important;
    }

    main.service-page .rebate-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    main.service-page .service-feature-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    main.service-page .service-benefit-grid {
        grid-template-columns: 1fr !important;
        gap: 0.9rem !important;
        margin-top: 1.35rem !important;
    }

    main.service-page .service-visual {
        min-height: 0;
        padding: 1.35rem;
    }

    main.service-page .rebate-grid > div:last-child,
    main.service-page .service-feature-grid > div:last-child {
        order: -1;
    }

    main.service-page .rebate-grid > div:first-child,
    main.service-page .service-feature-grid > div:first-child {
        order: 0;
    }

    main.service-page .service-visual h3 {
        font-size: 1.35rem;
    }

    main.service-page .service-visual-list {
        margin: 1rem 0;
    }

    main.service-page .infographic-showcase {
        margin-top: 2.25rem;
    }

    main.service-page .infographic-showcase .section-title {
        margin-bottom: 1.25rem;
    }

    main.service-page .faq-section {
        margin-top: 2.5rem !important;
    }

    main.service-page .faq-question h4 {
        font-size: 1rem;
    }

    main.service-page .faq-answer {
        padding-right: 0.25rem;
    }

    main.service-page section.container[style*="background: #f0fdf4"],
    main.service-page section.container > div[style*="background: #f0fdf4"] {
        padding: 1.5rem !important;
        margin-top: 2.25rem !important;
    }

    .container {
        padding: 0 1rem;
    }

    header {
        height: auto;
        min-height: 64px;
    }

    .nav {
        gap: 0.8rem;
        padding: 0.55rem 0;
        position: relative;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .rebate-grid, .features-grid, .comparison-box, .footer-grid {
        grid-template-columns: 1fr;
    }

    .video-test-grid {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
    }

    .video-test-card {
        order: -1;
        max-width: 720px;
        margin: 0 auto;
    }

    .hero {
        padding: 104px 0 64px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: clamp(2rem, 8.5vw, 2.9rem);
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-badges {
        gap: 0.75rem;
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }

    .hero-badges span {
        padding: 0.5rem 0.8rem;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .video-test-section {
        padding: 46px 0 28px;
    }

    .video-test-copy {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .video-test-copy h2 {
        font-size: 1.55rem;
    }

    .video-test-copy p {
        font-size: 0.98rem;
    }

    .video-test-list {
        margin-top: 1rem;
    }

    .video-test-list li {
        padding: 0.8rem 0.9rem;
    }

    .video-test-list li:nth-child(3) {
        display: none;
    }

    .video-test-caption {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .rebate-section .rebate-content {
        padding-right: 0;
    }

    .rebate-section {
        padding-top: 28px;
    }

    .rebate-summary-card {
        padding: 1.15rem;
        border-radius: 20px;
    }

    .rebate-summary-grid {
        grid-template-columns: 1fr;
    }

    .rebate-summary-item {
        padding: 0.9rem;
    }

    .infographic-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .timeline-item {
        padding: 1rem 1.1rem;
        gap: 1rem;
    }

    main.service-page .timeline-item {
        flex-direction: column;
        gap: 0.85rem;
    }

    main.service-page .timeline-number {
        width: 44px;
        height: 44px;
    }

    .video-test-card:hover,
    .rebate-summary-card:hover,
    .rebate-summary-item:hover,
    .rebate-summary-note:hover,
    .feature-card:hover,
    .infographic-frame:hover,
    .related-link-card:hover,
    .comp-card:hover {
        transform: none;
        box-shadow: inherit;
    }

    .search-container {
        flex-direction: column;
        gap: 0.75rem;
        border-radius: 24px;
        padding: 0.75rem;
    }

    .search-container input {
        width: 100%;
        min-width: 0;
        border-radius: 16px;
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .search-container {
        align-items: stretch;
    }

    .search-label {
        padding-left: 0.1rem;
        white-space: normal;
        text-align: left;
    }

    .search-container .btn {
        width: 100%;
        justify-content: center;
    }

    .pillar-stats {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        box-shadow: var(--shadow-xl);
        max-height: calc(100dvh - 92px);
        overflow-y: auto;
        z-index: 2000;
    }

    .mobile-nav-open .nav-links {
        display: flex;
    }

    .nav-links a {
        white-space: normal;
    }

    .nav-links .btn {
        width: 100%;
        justify-content: center;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 0;
    }

    .dropdown-menu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0.5rem 0.75rem;
        margin-top: 0.25rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .dropdown.dropdown-open .dropdown-menu {
        display: flex;
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-menu a {
        padding: 0.7rem 0.85rem;
    }

    .sticky-cta-btn {
        display: none;
    }

    .infographic-showcase {
        margin-top: 3rem;
    }
    .infographic-caption {
        font-size: 0.9rem;
    }

    .related-links {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .related-links-grid {
        grid-template-columns: 1fr;
    }

    .related-links__header {
        flex-direction: column;
    }

    .related-links-grid--featured {
        grid-template-columns: 1fr;
    }

    .related-link-card--featured {
        grid-column: auto;
    }

    .neighborhood-map-caption {
        font-size: 0.9rem;
    }

    .neighborhood-map-mini {
        margin: 1rem 0 1.25rem;
    }

    main img[data-lightbox] {
        cursor: zoom-in;
    }

    .trust-section .feature-card {
        text-align: left;
    }

    .trust-section .feature-card i {
        margin-bottom: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-question i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 900px;
    padding-bottom: 1.5rem;
    opacity: 1;
}

/* Lead Generation Tool Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: min(92vw, 560px);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.tool-step {
    display: none;
}

.tool-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

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

.step-indicator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.step-dot {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
}

.step-dot.active {
    background: var(--primary-light);
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.input-group input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-light);
}

.result-card {
    background: var(--surface);
    padding: 1.35rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 1rem 0;
}

.value-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

#step3 h3 {
    font-size: 1.45rem;
}

#step3 .result-card {
    font-size: 0.95rem;
}

#step3 .value-badge {
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.2;
}

#step3 hr {
    margin: 1.25rem 0 !important;
}

#step3 .input-group input {
    padding: 0.75rem 1rem;
}

.premium-flag {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

@media (max-height: 760px) {
    .modal-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .step-indicator {
        margin-bottom: 1rem;
    }

    .result-card {
        padding: 1rem;
    }
}

@media (max-width: 560px) {
    .modal-overlay {
        align-items: stretch;
        padding: 0.5rem;
    }

    .modal-container {
        width: 100%;
        max-height: calc(100dvh - 1rem);
        padding: 1.25rem;
        border-radius: 18px;
    }
}

.halt-message {
    text-align: center;
    padding: 2rem;
}

.halt-message i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 3000;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox-panel {
    position: relative;
    max-width: min(94vw, 1100px);
    max-height: min(94dvh, 1100px);
    width: auto;
}

.image-lightbox-panel img {
    display: block;
    max-width: 94vw;
    max-height: 94dvh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.image-lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: var(--white);
    color: var(--secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.image-lightbox-close:hover {
    color: var(--primary);
}
