/* ============================================
   MODELS SECTION
   ============================================ */

.models-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.25rem;
}

/* ============================================
   GRID
   ============================================ */

.models-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Tablet + Desktop */
@media (min-width: 700px) {
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* ============================================
   MODEL CARD
   ============================================ */

.model-card {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
    .model-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 70px rgba(0, 200, 83, 0.3);
    }
}

/* ============================================
   HEADER
   ============================================ */

.model-header {
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.model-header.coreva {
    background: linear-gradient(135deg, #00c853, #00a843);
}

.model-badge {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.model-header h3 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.model-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================
   BODY
   ============================================ */

.model-body {
    padding: 1.75rem 1.5rem;
}

.model-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   LABELS
   ============================================ */

.model-label {
    margin: 1.5rem 0 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.model-label::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    margin-top: 0.4rem;
    background: currentColor;
    opacity: 0.4;
}

.model-label-live {
    color: var(--primary);
}

.model-label-upcoming {
    color: rgba(44, 62, 80, 0.55);
}

/* ============================================
   FEATURES
   ============================================ */

.model-features {
    list-style: none;
    margin-bottom: 1.75rem;
}

.model-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: var(--text);
}

.model-features li::before {
    content: "✓";
    font-weight: 700;
    color: var(--primary);
}

.model-features-upcoming li {
    font-style: italic;
    opacity: 0.65;
}

/* ============================================
   CTA
   ============================================ */

.model-cta {
    text-align: center;
}

/* ============================================
   DESKTOP POLISH
   ============================================ */

@media (min-width: 900px) {
    .models-section {
        margin: 4rem auto;
        padding: 0 2rem;
    }

    .model-header h3 {
        font-size: 2rem;
    }

    .model-description,
    .model-features li {
        font-size: 1rem;
    }
}
