    /* ========== INTRO SECTION ========== */
    .comm-intro {
        padding: 5rem 2rem;
        background: white;
    }

    .comm-intro-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .comm-intro h2 { color: var(--green-900); margin-bottom: 2rem; }

    .comm-intro p {
        font-size: 1.125rem;
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    /* ========== APPLICATIONS (Unique section) ========== */
    .comm-apps {
        padding: 5rem 2rem;
        background: var(--cream-100);
    }

    .comm-apps-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .comm-apps-intro {
        max-width: 700px;
        margin: 0 auto 3rem;
        text-align: center;
    }

    .comm-apps-intro p {
        font-size: 1.0625rem;
        color: var(--text-medium);
    }

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

    .comm-app-card {
        background: white;
        border-radius: var(--radius-sm);
        padding: 2rem;
        box-shadow: var(--shadow-sm);
        transition: box-shadow 0.2s ease;
    }

    .comm-app-card:hover { box-shadow: var(--shadow-md); }

    .comm-app-icon {
        width: 56px;
        height: 56px;
        background: var(--green-700);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .comm-app-icon svg { width: 28px; height: 28px; color: white; }

    .comm-app-card h3 {
        font-size: 1.25rem;
        color: var(--green-800);
        margin-bottom: 0.75rem;
    }

    .comm-app-card p {
        font-size: 0.9375rem;
        color: var(--text-medium);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .comm-app-for {
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--green-700);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .comm-app-for svg { width: 14px; height: 14px; }

    /* ========== FENCE TYPES (Unique section) ========== */
    .comm-types {
        padding: 5rem 2rem;
        background: white;
    }

    .comm-types-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .comm-types-intro {
        max-width: 700px;
        margin: 0 auto 3rem;
        text-align: center;
    }

    .comm-types-intro p {
        font-size: 1.0625rem;
        color: var(--text-medium);
    }

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

    .comm-type-card {
        background: var(--cream-50);
        border-radius: var(--radius-sm);
        padding: 2rem;
        transition: box-shadow 0.2s ease;
    }

    .comm-type-card:hover { box-shadow: var(--shadow-md); }

    .comm-type-card h3 {
        font-size: 1.25rem;
        color: var(--green-800);
        margin-bottom: 0.75rem;
    }

    .comm-type-card p {
        font-size: 0.9375rem;
        color: var(--text-medium);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .comm-type-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .comm-type-price {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1rem;
        color: var(--green-700);
    }

    .comm-type-link {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        font-family: var(--font-heading);
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--green-700);
        text-decoration: none;
        text-transform: uppercase;
        transition: gap 0.2s ease;
    }

    .comm-type-link:hover { gap: 0.625rem; }
    .comm-type-link svg { width: 16px; height: 16px; }

    /* ========== WHY US (Unique section) ========== */
    .comm-why {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .comm-why::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('/assets/images/hero-wood-fence.jpg') center/cover no-repeat;
        opacity: 0.08;
        pointer-events: none;
    }

    .comm-why::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 50% at 20% 80%, rgba(174, 219, 91, 0.06) 0%, transparent 70%),
            radial-gradient(ellipse 60% 40% at 85% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
        pointer-events: none;
    }

    .comm-why-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .comm-why h2 { color: white; }

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

    .comm-why-card {
        padding: 2rem;
    }

    .comm-why-icon {
        width: 56px;
        height: 56px;
        background: rgba(255,255,255,0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .comm-why-icon svg { width: 28px; height: 28px; color: var(--brand-400); }

    .comm-why-card h3 {
        color: white;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .comm-why-card p {
        color: var(--green-100);
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    /* ========== SERVICE AREA (Unique section) ========== */
    .comm-area {
        padding: 5rem 2rem;
        background: white;
    }

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

    .comm-area h2 { color: var(--green-900); margin-bottom: 1rem; }

    .comm-area > .comm-area-container > p {
        color: var(--text-medium);
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }

    .comm-area-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .comm-area-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: var(--cream-100);
        border-radius: var(--radius-sm);
        color: var(--green-800);
        text-decoration: none;
        font-family: var(--font-heading);
        font-weight: 600;
        transition: background 0.2s ease;
    }

    .comm-area-link:hover { background: var(--green-100); }
    .comm-area-link svg { width: 18px; height: 18px; }

    .comm-area-counties {
        margin-top: 1.5rem;
        color: var(--text-light);
        font-size: 0.9375rem;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .comm-apps-grid { grid-template-columns: repeat(2, 1fr); }
        .comm-types-grid { grid-template-columns: 1fr; }
        .comm-why-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .comm-apps-grid { grid-template-columns: 1fr; }
        .comm-why-grid { grid-template-columns: 1fr; }
    }
