/* ========================================
   SINGLE FIRM PAGE STYLES
   ======================================== */

.ev-single-wrapper {
    background: #f5f7fa;
    min-height: 100vh;
    padding-bottom: 50px;
}

.ev-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.ev-hero {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 40px 0;
    margin-bottom: 30px;
}

.ev-hero-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ev-hero-logo {
    width: 100px;
    height: 100px;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ev-hero-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ev-hero-initial {
    font-size: 40px;
    font-weight: bold;
    color: #3b82f6;
}

.ev-hero-info {
    flex: 1;
    min-width: 250px;
}

.ev-firm-title {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: #111827;
    font-weight: 800;
}

.ev-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ev-badge-pill {
    background: #eff6ff;
    color: #2563eb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Badge Link Style */
.ev-badge-link {
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ev-badge-link:hover {
    background: #5E42DA;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(94, 66, 218, 0.25);
}

/* ========================================
   HERO ACTIONS
   ======================================== */
.ev-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.ev-btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.ev-btn-call:hover {
    color: #3b82f6;
}

.ev-app-links {
    display: flex;
    gap: 10px;
}

.ev-store-badge {
    display: inline-block;
    transition: transform 0.2s, opacity 0.2s;
}

.ev-store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.ev-store-badge img {
    display: block;
    height: 40px;
    width: auto;
}

/* ========================================
   PRICE CARDS
   ======================================== */
.ev-prices-cards {
    margin-bottom: 30px;
}

.ev-section-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #374151;
}

.ev-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.ev-price-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.ev-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #3b82f6;
}

.ev-card-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.ev-price-card h3 {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ev-big-price {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 5px;
}

.ev-sub-text {
    font-size: 13px;
    color: #9ca3af;
}

.ev-legal-note {
    margin-top: 15px;
    padding: 15px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: 6px;
}

.ev-legal-note small {
    font-size: 12px;
    color: #92400e;
    line-height: 1.5;
}

/* ========================================
   DETAILS SECTION
   ======================================== */
.ev-content-grid {
    display: grid;
    gap: 30px;
}

.ev-firm-details {
    display: grid;
    gap: 20px;
}

.ev-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.ev-box h3 {
    margin-top: 0;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.ev-content {
    color: #4b5563;
    line-height: 1.6;
}

.ev-box-sm {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.ev-btn-outline {
    display: block;
    text-align: center;
    border: 2px solid #e5e7eb;
    padding: 12px;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.ev-btn-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

.ev-btn-outline.full-width {
    width: 100%;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .ev-hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .ev-hero-actions {
        align-items: center;
        width: 100%;
    }

    .ev-app-links {
        width: 100%;
        justify-content: center;
    }

    .ev-hero-info {
        width: 100%;
    }

    .ev-badges {
        justify-content: center;
    }

    .ev-firm-title {
        font-size: 24px;
    }

    .ev-card-grid {
        grid-template-columns: 1fr;
    }
}