.ocr-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.ocr-card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ocr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ocr-card-header {
    background: #f8fafc;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.ocr-price {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
}

.ocr-credits {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.btn-purchase {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-purchase:hover {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.starter { border-top: 5px solid #94a3b8; }
.pro { border-top: 5px solid #3b82f6; position: relative; }
.enterprise { border-top: 5px solid #1e3a8a; }

.pro-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ef4444;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
