.pricing-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    font-family: 'ProximaNova', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #1976d2;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Grid Layout */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1 1 300px; /* Responsive sizing */
    max-width: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.card-header {
    background: #1976d2;
    color: white;
    padding: 30px;
    text-align: center;
}

.card-header.hunting { background: #2e7d32; } /* Green for hunting */
.card-header.iot { background: #455a64; }     /* Dark grey for tech */

.card-header h3 { margin-top: 10px; font-size: 1.5rem; }

/* Plan List Styling */
.plan-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex-grow: 1;
}

.plan-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.plan-list li:last-child { border-bottom: none; }

.price {
    font-weight: bold;
    color: #1976d2;
    font-size: 1.2rem;
}

/* Highlighted Plans */
.plan-list li.featured {
    background: #fff9c4;
    margin: 0 -20px;
    padding: 15px 20px;
    position: relative;
}

.badge {
    position: absolute;
    top: -15px;
    right: 10px;
    background: #d32f2f;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-select {
    display: block;
    text-align: center;
    padding: 15px;
    background: #1976d2;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-select:hover { background: #1565c0; }


.compatibility-section {
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.brand-item {
    flex: 1 1 250px;
    max-width: 350px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.brand-item strong {
    display: block;
    color: #1976d2;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .brand-grid {
        flex-direction: column;
        align-items: center;
    }
}