
:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --dark-gradient: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
            --cyan-accent: #02f8ff;
        }


/* ===============================================
           1. HERO SECTION - SPLIT DESIGN
           =============================================== */

        .chicago-hero {
            min-height: 600px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }

        /* 
        .hero-left {
            background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .hero-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        } */

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
        }

        .hero-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-weight: 400;
            width: 80%;
        }

        .hero-search-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            padding: 4px;
            display: flex;
            gap: 6px;
            /* width: 80%; */
           
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
         .hero-search-input { height: auto !important;}
        .geo-search-wrapper {
            max-width: 500px;
        }

        .hero-search-input {
            flex: 1;
            border: none;
            padding: 12px 14px;
            font-size: 0.9375rem;
            border-radius: 6px;
            outline: none;
            background: transparent;
             border:none !important;
        }

        .hero-search-btn {
            background: none;
            color: #6b7280;
            border: none;
            padding: 10px 12px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            font-size: 18px;
        }

        .hero-search-btn:hover {
            opacity: 0.9;
        }

        .hero-stats {
            display: flex;
            gap: 0;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
            padding: 0 16px;
            position: relative;
        }

        .hero-stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
        }

        .hero-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            display: block;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.6875rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-social-proof {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.8125rem;
        }

        .hero-social-proof i {
            color: #10B981;
            font-size: 1rem;
        }

        /* 
        .hero-right {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .hero-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.4;
        } */

        .biffy-container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            padding: 40px;
        }

        .biffy-image {
            width: 280px;
            height: auto;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* ===============================================
           2. TRUST BAR
           =============================================== */

        .trust-bar {
            background: #FAFBFC;
            padding: 16px 0;
            border-bottom: 1px solid #E5E7EB;
        }

        .trust-items {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: nowrap;
        }
  

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .trust-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 0.875rem;
        }

        .trust-content {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .trust-value {
            font-size: 0.8125rem;
            font-weight: 700;
            color: #111827;
            line-height: 1.2;
        }

        .trust-label {
            font-size: 0.625rem;
            color: #9CA3AF;
            font-weight: 500;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* ===============================================
           3. TABLE OF CONTENTS - STICKY
           =============================================== */

        .toc-bar {
            background: white;
           
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid #E5E7EB;
        }

        .toc-bar.sticky {
            position: sticky;
            top: 70px;
            z-index: 9;
        }

        .toc-container {
            display: flex;
            overflow-x: auto;
            gap: 0;
            padding: 0;
            scrollbar-width: none;
        }

        .toc-container::-webkit-scrollbar {
            display: none;
        }

        .toc-item {
            display: inline-flex;
            align-items: center;
            justify-content: start;
            gap: 8px;
            padding: 18px 24px;
            font-weight: 600;
            font-size: 0.875rem;
            color: #6B7280;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            text-decoration: none;
        }

        .toc-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .toc-item i {
            font-size: 1.125rem;
        }

        .toc-item:hover {
            background: #F9FAFB;
            color: #667eea;
        }

        .toc-item:hover::before {
            transform: scaleX(0.5);
        }

        .toc-item.active {
            /* background: #F3F4F6; */
            color: #667eea;
        }

        .toc-item.active::before {
            transform: scaleX(1);
        }
        /* TOC Breadcrumb Styles */
        .toc-breadcrumb {
            display: flex;
            align-items: center;
            gap: 4px;
            /* padding: 0 16px 0 0; */
            flex-shrink: 0;
        }

        .breadcrumb-link {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: #111827;
            text-decoration: none;
            transition: all 0.2s ease;
            padding: 4px 8px;
            border-radius: 6px;
        }

        .breadcrumb-link:hover {
            color: #667eea;
            background: #F3F4F6;
        }

        .breadcrumb-link i {
            font-size: 1rem;
        }

        .breadcrumb-separator {
            color: #D1D5DB;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }

        .breadcrumb-separator i {
            font-size: 1rem;
        }

        .breadcrumb-current {
            font-size: 14px;
            font-weight: 600;
            padding: 4px 8px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .toc-divider {
            width: 1px;
            height: auto;
            background: #E5E7EB;
            margin: 0 8px;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .toc-breadcrumb {
                display: none;
            }

            .toc-divider {
                display: none;
            }
        }

        /* ===============================================
           4. PROVIDERS SECTION
           =============================================== */

        .providers-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #fbfbfb 100%);
        }

      

        .filter-pills {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-pill {
            padding: 12px 24px;
            border-radius: 50px;
            border: 2px solid #E5E7EB;
            background: white;
            font-weight: 600;
            font-size: 0.9375rem;
            color: #6B7280;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-pill:hover {
            border-color: #667eea;
            color: #667eea;
        }

        .filter-pill.active {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .provider-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid #E5E7EB;
            transition: all 0.3s ease;
        }

        .provider-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
            border-color: #667eea;
        }

        .provider-logo {
            height: 50px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .provider-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-fiber {
            background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
            color: #92400E;
        }

        .badge-cable {
            background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
            color: #3730A3;
        }

        .badge-5g {
            background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
            color: #1E40AF;
        }

        .provider-speed {
            font-size: 2rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 8px;
        }

        .provider-speed-label {
            font-size: 0.875rem;
            color: #6B7280;
            margin-bottom: 16px;
        }

        .provider-price {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 4px;
        }

        .provider-price-label {
            font-size: 0.875rem;
            color: #6B7280;
            margin-bottom: 20px;
        }

        .provider-features {
            margin-bottom: 24px;
        }

        .provider-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            font-size: 0.9375rem;
            color: #374151;
        }

        .provider-feature i {
            color: #10B981;
            font-size: 1.125rem;
        }

        .provider-cta {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 10px;
            font-weight: 700;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .provider-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        }

        /* ===============================================
           5. USE CASES SECTION
           =============================================== */

        .use-cases-section {
            padding: 80px 0;
            background: white;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .use-case-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            height: 400px;
        }

        .use-case-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .use-case-card:hover .use-case-image {
            transform: scale(1.1);
        }

        .use-case-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            padding: 32px 24px;
            color: white;
        }

        .use-case-chip {
            display: inline-block;
            padding: 6px 12px;
            background: var(--cyan-accent);
            color: #111827;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .use-case-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .use-case-desc {
            font-size: 0.9375rem;
            opacity: 0.9;
            margin-bottom: 12px;
        }

        .use-case-provider {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--cyan-accent);
        }

        /* ===============================================
           6. NEIGHBORHOODS SECTION
           =============================================== */

        .neighborhoods-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #fbfbfb 100%);
        }

      

        .neighborhoods-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .neighborhoods-list::-webkit-scrollbar {
            width: 8px;
        }

        .neighborhoods-list::-webkit-scrollbar-track {
            background: #F3F4F6;
            border-radius: 10px;
        }

        .neighborhoods-list::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
        }

        .neighborhoods-list::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }

        .neighborhood-item {
            background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #E5E7EB;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
          .neighborhood-item:hover{
               border-color: #667eea;
             box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
        }

        .neighborhood-name {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .neighborhood-zip {
            font-size: 0.8125rem;
            color: #6B7280;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .neighborhood-availability {
            position: absolute;
            top: 12px;
            right: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.625rem;
            color: #667eea;
            font-weight: 700;
            padding: 5px 10px;
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border-radius: 20px;
            border: 1px solid #C7D2FE;
        }

        .neighborhood-availability i {
            font-size: 0.625rem;
        }

        .provider-logo-wrapper-box {
            height: 55px;
            min-height: 55px;
            max-width: 100px;
            display: flex;
            align-items: center;
            justify-content: start;
        
        }

        .provider-logo-wrapper-box img {
            max-height: 35px;
            max-width: 100%;
            object-fit: contain;
        }

        .neighborhood-speed-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .neighborhood-speed-item {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .neighborhood-speed-label {
            font-size: 0.75rem;
            color: #6B7280;
        }

        .neighborhood-speed-value {
            font-size: 0.875rem;
            font-weight: 700;
        }

        .neighborhood-speed-min {
            color: #667eea;
        }

        .neighborhood-speed-max {
            color: #10B981;
        }

        .neighborhood-speed-divider {
            color: #E5E7EB;
        }

        .neighborhood-speed-info {
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #F3F4F6;
        }

        .neighborhood-speed-group {
            display: flex;
            align-items: baseline;
            gap: 4px;
            flex: 1;
        }

        .neighborhood-speed-text {
            font-size: 0.6875rem;
            color: #9CA3AF;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .neighborhood-speed-number {
            font-size: 0.875rem;
            font-weight: 700;
            color: #667eea;
        }

        .neighborhood-speed-number.max {
            color: #667eea;
        }

        .neighborhood-speed-separator {
            color: #D1D5DB;
            font-weight: 300;
        }

        .neighborhood-speed-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 4px;
            padding: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .neighborhood-speed-icon svg {
            width: 100%;
            height: 100%;
        }

        .neighborhood-speed-icon svg path,
        .neighborhood-speed-icon svg circle {
            fill: white !important;
        }

        .neighborhood-speed-icon svg path[stroke] {
            stroke: white !important;
        }

        .neighborhood-techs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .tech-badge-small {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* ===============================================
           7. PRICING SECTION
           =============================================== */

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

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: center;
        }
         .pricing-card:first-of-type{
            border-top-right-radius: 0px;
            border-bottom-right-radius: 0px;
         }
           .pricing-card:last-of-type{
            border-top-left-radius: 0px;
            border-bottom-left-radius: 0px;
         }
         .pricing-card:nth-child(2){
                padding-top: 72px;
                padding-bottom: 56px;
                border-color: #667eea;
                box-shadow: 0 24px 48px rgba(102, 126, 234, 0.2);
                transform: scale(1.03);
                z-index: 2;
         }

        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 36px 28px 28px;
            border: 2px solid #E5E7EB;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .pricing-card:hover {
            border-color: #667eea;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
            transform: translateY(-8px);
        }

        /* .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #E5E7EB 0%, #E5E7EB 100%);
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            border-color: #667eea;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
            transform: translateY(-8px);
        } */

        .pricing-card:hover::before {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        }

        .pricing-card.popular {
            border-color: #667eea;
            box-shadow: 0 24px 48px rgba(102, 126, 234, 0.2);
            transform: scale(1.03);
            z-index: 2;
        }
        .pricing-card.popular {
            padding-top: 72px;
            padding-bottom: 56px;
        }

        /* .pricing-card.popular::before {
            height: 5px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        } */

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-8px);
        }

     .popular-badge {
        position: absolute;
        top: 24px;
        right: -52px;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: white;
        padding: 6px 40px;
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transform: rotate(45deg);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    } 

        .pricing-provider-logo {
            width: 100%;
            /* height: 56px; */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 24px 0px;
            padding: 8px;
            /* background: #F9FAFB; */
            border-radius: 12px;
        }

        .pricing-provider-logo img {
            max-width: 100px;
            max-height:46px;
            object-fit: contain;
        }

        .pricing-plan-name {
           font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
        }

        .pricing-plan-type {
            font-size: 0.75rem;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .pricing-plan-type::before,
        .pricing-plan-type::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, #E5E7EB, transparent);
            max-width: 50px;
        }

        .pricing-amount-wrapper {
            text-align: center;
            padding: 20px 16px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
            border-radius: 16px;
            border: 1px solid #E5E7EB;
        }

        .pricing-card:nth-child(2) .pricing-amount-wrapper {
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border-color: #C7D2FE;
        }

        .pricing-amount {
              font-size: 38px;
                font-weight: 600;
                background: linear-gradient(135deg, #111827 0%, #374151 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                margin-bottom: 0;
                line-height: 1;
                display: inline-flex;
                align-items: flex-start;
                margin-bottom: 5px;
        }

        .pricing-card:nth-child(2) .pricing-amount {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricing-period {
            font-size: 0.75rem;
            color: #6B7280;
            margin-top: 4px;
        }

        .pricing-speed {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8125rem;
            font-weight: 600;
            color:#92400E;
            margin-bottom: 0;
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
            border: 1px solid #FCD34D;
            border-top:none;
            padding: 10px 18px;
            border-radius: 0 0 14px 14px;
            z-index: 1;
        }

        .pricing-speed::before {
            content: '\ed3c';
            font-family: 'remixicon';
            font-size: 0.875rem;
        }

        .pricing-features {
            margin-bottom: 24px;
            flex: 1;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid #F3F4F6;
            font-size: 0.875rem;
            color: #374151;
        }

        .pricing-feature:last-child {
            border-bottom: none;
        }

        .pricing-feature i {
            font-size: 1.125rem;
            width: 20px;
            text-align: center;
        }

        .pricing-feature i.ri-check-line {
            color: #10B981;
        }

        .pricing-feature i.ri-alert-line {
            color: #F59E0B;
        }

        .pricing-feature i.ri-information-line {
            color: #667eea;
        }

        .pricing-cta {
            width: 100%;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: auto;
        }

        .pricing-cta-outline {
            background: white;
            border: 2px solid #667eea;
            color: #667eea;
        }

        .pricing-cta-outline:hover {
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
        }

        .pricing-card:nth-child(2) .pricing-cta {
            background: var(--primary-gradient);
            border: 2px solid transparent;
            color: white;
            box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
        }

        .pricing-card:nth-child(2) .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        }

        .pricing-cta i {
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }

        .pricing-cta:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 992px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .pricing-card.popular {
                transform: none;
                order: -1;
            }

            .pricing-card.popular:hover {
                transform: translateY(-8px);
            }
        }

        /* ===============================================
           8. ZIP CODES SECTION
           =============================================== */

        .zip-codes-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
        }

        .zip-codes-grid {
           display: grid;
                grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
                gap: 10px;
        }

        .zip-code-card {
           position: relative;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
        }

        .zip-code-card:nth-child(10n+1) {
            border-left: 1px solid #E5E7EB;
        }

        .zip-code-card:nth-child(-n+10) {
            border-top: 1px solid #E5E7EB;
        }

        .zip-code-card:nth-child(10n) {
            border-right: 1px solid #E5E7EB;
        }


        .zip-code-card:hover {
            background: #F9FAFB;
            border-left: 3px solid #667eea;
            padding-left: 21px;
        }

        .zip-code-number {
            font-size: 16px;
            font-weight: 500;
            color: #111827;
            letter-spacing: 0.3px;
            flex-shrink: 0;
        }

        .zip-code-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8125rem;
            font-weight: 500;
            color: #6B7280;
        }

        .zip-code-badge i {
            font-size: 0.875rem;
            color: #667eea;
        }

        .zip-code-area {
            font-size: 0.6875rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 6px;
        }

        .zip-code-meta {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .zip-code-providers {
            font-size: 0.625rem;
            color: #667eea;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
        }

        .zip-code-providers i {
            font-size: 0.6875rem;
        }

        .zip-code-speed {
            font-size: 0.625rem;
            color: #6B7280;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
        }

        .zip-code-speed i {
            font-size: 0.6875rem;
        }
        .current-zip{
            background: #F9FAFB;
            border-left: 3px solid #667eea;
            padding-left: 21px;
            cursor: not-allowed;
        }
         .current-zip a{
            pointer-events: none;
            color: #667eea;
         }
          .current-zip a .zip-code-number{
              color: #667eea;
         }

        /* ===============================================
           9. FAQ SECTION
           =============================================== */

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

        .accordion-faq {
            display: grid;
            gap: 12px;
            
            margin: 0 auto;
            counter-reset: faq-counter;
        }

        .accordion-item-faq {
            background: white;
            border: 1px solid #E5E7EB;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            counter-increment: faq-counter;
        }

        .accordion-item-faq:hover {
            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .accordion-item-faq.active {
            background: linear-gradient(135deg, #fafbff 0%, #f5f3ff 100%);
            border-color: #667eea;
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
        }

        .accordion-header-faq {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-weight: 600;
            font-size: 1rem;
            color: #1f2937;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-header-faq::before {
            content: counter(faq-counter, decimal-leading-zero);
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border: 1px solid #C7D2FE;
            border-radius: 10px;
            font-size: 0.8125rem;
            font-weight: 700;
            color: #667eea;
            margin-right: 4px;
            transition: all 0.3s ease;
        }

        .accordion-item-faq.active .accordion-header-faq::before {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            color: white;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .accordion-item-faq:hover .accordion-header-faq::before {
            transform: scale(1.05);
        }

        .accordion-question {
            flex: 1;
        }

        .accordion-header-faq:hover {
            color: #667eea;
        }

        .accordion-item-faq.active .accordion-header-faq {
            color: #667eea;
        }

        .accordion-icon {
            width: 26px;
            height: 26px;
            min-width: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            color: #667eea;
            position: relative;
        }

        .accordion-icon .icon-plus {
            display: block;
        }

        .accordion-icon .icon-minus {
            display: none;
        }

        .accordion-item-faq.active .accordion-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .accordion-item-faq.active .accordion-icon .icon-plus {
            display: none;
        }

        .accordion-item-faq.active .accordion-icon .icon-minus {
            display: block;
        }

        .accordion-body-faq {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-item-faq.active .accordion-body-faq {
            max-height: 400px;
        }

        .accordion-content-faq {
            padding: 0 24px 24px 64px;
            color: #6B7280;
            font-size: 0.9375rem;
            line-height: 1.7;
            border-top: 1px solid rgba(102, 126, 234, 0.1);
            padding-top: 16px;
            margin-top: 0;
        }

        .accordion-content-faq strong {
            color: #374151;
        }

        /* ===============================================
           10. CONTACT SUPPORT SECTION
           =============================================== */

        .contact-support-section {
            padding: 40px 0;
            padding-top: 0px;
            background: #fff;
        }

        .contact-support-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 36px 48px;
            border-radius: 20px;
            color: white;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 32px -8px rgba(102, 126, 234, 0.35);
        }

        .contact-support-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact-support-card::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact-support-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-direction: column;
            align-items: start;
        }

        .contact-support-icon-wrapper {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .contact-support-icon-wrapper i {
            font-size: 1.75rem;
            color: white;
        }

        .contact-support-text {
            flex: 1;
        }

        .contact-support-card h3 {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.3;
            color: white;
        }

        .contact-support-card h3 .text-gradient-light {
            background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-support-card p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            line-height: 1.5;
        }

        .contact-support-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .contact-support-btn {
            background: white;
            color: #667eea;
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        }

        .contact-support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            background: #f8fafc;
        }

        .contact-support-btn i {
            font-size: 1rem;
        }

        .contact-support-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .contact-support-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 992px) {
            .contact-support-content {
                flex-direction: column;
                text-align: center;
            }

            .contact-support-text {
                text-align: center;
            }

            .contact-support-actions {
                flex-direction: column;
                width: 100%;
            }

            .contact-support-btn,
            .contact-support-btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }

        /* ===============================================
           11. CTA SECTION
           =============================================== */

        .cta-section {
            display: none;
            padding: 100px 0;
            background: var(--dark-gradient);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        .cta-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 16px;
        }

        .cta-form-input {
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .cta-form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-form-btn {
            background: var(--cyan-accent);
            color: #111827;
            border: none;
            padding: 16px 48px;
            border-radius: 10px;
            font-weight: 800;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .cta-form-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(2, 248, 255, 0.4);
        }

        .cta-security-note {
            margin-top: 16px;
            font-size: 0.875rem;
            opacity: 0.7;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* ===============================================
           RESPONSIVE DESIGN
           =============================================== */

        @media (max-width: 1200px) {
            .chicago-hero {
                grid-template-columns: 1fr;
            }

            .hero-right {
                height: 400px;
            }

            .providers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .use-cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .pricing-card.popular {
                transform: scale(1);
            }

            .zip-codes-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

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

            .trust-items {
                flex-wrap: wrap;
                justify-content: center;
            }

            .trust-item {
                flex: 0 1 auto;
                min-width: 150px;
            }

            .providers-grid,
            .use-cases-grid {
                grid-template-columns: 1fr;
            }

            .neighborhoods-container {
                grid-template-columns: 1fr;
            }

            .stat-cards {
                position: relative;
                bottom: 0;
                margin-top: 24px;
            }

            .cta-form-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .zip-codes-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .zip-code-number {
                font-size: 1.5rem;
            }

            .contact-support-content {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }

            .contact-support-text {
                text-align: center;
            }

            .contact-support-card {
                padding: 40px 24px;
            }

            .contact-support-card h3 {
                font-size: 1.75rem;
            }
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border: 1px solid #C7D2FE;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-badge i {
            font-size: 0.875rem;
        }
        .plans-hero-section {
            padding: 120px 0 40px !important;
        }

        .plans-hero-section .hero-title{
            font-size: 36px;
        }
         .plans-hero-section .hero-title::after{
            display: none;
         }
         .text-gradient-org {
    background: linear-gradient(
135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plans-hero-section .biffy-container {
    padding: 0px !important;
}
.plans-hero-section .biffy-container .biffy-image-plans {
    position: absolute;
    top:-30px;
    right: 0px;
    height: 372px;
}

/*  */

.ca-zip-section {
    padding: 60px 0;
   background: linear-gradient(
135deg, #f0f4ff 0%, #faf5ff 100%);
    position: relative;
}

.ca-zip-container {
    max-width: 900px;
    margin: 0 auto;
}

.ca-zip-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ca-zip-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ca-zip-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.1);
}

.ca-zip-item.active {
    border-color: #667eea;
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
}

.ca-zip-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.ca-zip-header:hover {
    background: #F9FAFB;
}

.ca-zip-item.active .ca-zip-header {
    background: linear-gradient(135deg, #fafbff 0%, #f5f3ff 100%);
}

.ca-zip-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.ca-zip-city-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border: 1px solid #C7D2FE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ca-zip-city-icon i {
    font-size: 1.25rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.ca-zip-item.active .ca-zip-city-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.ca-zip-item.active .ca-zip-city-icon i {
    color: white;
}

.ca-zip-header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ca-zip-city-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    transition: color 0.3s ease;
}

.ca-zip-item.active .ca-zip-city-name,
.ca-zip-header:hover .ca-zip-city-name {
    color: #667eea;
}

.ca-zip-city-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ca-zip-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
}

.ca-zip-meta-item i {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.ca-zip-meta-divider {
    width: 4px;
    height: 4px;
    background: #D1D5DB;
    border-radius: 50%;
}

.ca-zip-arrow {
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ca-zip-arrow i {
    font-size: 1.25rem;
    color: #6B7280;
    transition: all 0.3s ease;
}

.ca-zip-item.active .ca-zip-arrow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ca-zip-item.active .ca-zip-arrow i {
    color: white;
    transform: rotate(180deg);
}

.ca-zip-header:hover .ca-zip-arrow {
    background: #E5E7EB;
}

.ca-zip-header:hover .ca-zip-arrow i {
    color: #667eea;
}

.ca-zip-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ca-zip-item.active .ca-zip-body {
    max-height: 600px;
}

.ca-zip-content {
    padding: 0 24px 24px 24px;
    border-top: 1px solid #F3F4F6;
}

.ca-zip-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 20px 0;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
    border-radius: 12px;
    border-left: 3px solid #667eea;
}

.ca-zip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0px;
}

.ca-zip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.25s ease;
    min-width: 80px;
}

.ca-zip-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.ca-zip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px dashed #E5E7EB;
    flex-wrap: wrap;
    gap: 12px;
}

.ca-zip-footer-text {
    font-size: 0.8125rem;
    color: #6B7280;
}

.ca-zip-footer-text strong {
    color: #111827;
    font-weight: 700;
}

.ca-zip-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ca-zip-view-all:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.ca-zip-view-all i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.ca-zip-view-all:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .ca-zip-section {
        padding: 40px 0;
    }

    .ca-zip-header {
        padding: 16px;
    }

    .ca-zip-city-icon {
        width: 40px;
        height: 40px;
    }

    .ca-zip-city-icon i {
        font-size: 1.125rem;
    }

    .ca-zip-city-name {
        font-size: 1rem;
    }

    .ca-zip-meta-divider {
        display: none;
    }

    .ca-zip-city-meta {
        gap: 8px;
    }

    .ca-zip-content {
        padding: 0 16px 20px 16px;
    }

    .ca-zip-description {
        padding: 12px;
        font-size: 0.8125rem;
    }

    .ca-zip-link {
        padding: 8px 14px;
        font-size: 0.8125rem;
        min-width: 70px;
    }

    .ca-zip-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .ca-zip-view-all {
        justify-content: center;
    }
}

.view-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;     
}   