.premium-card {
    padding: 3rem;
    max-width: 650px;
    min-height: 520px;
    justify-content: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-img {
    width: 220px;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    border-radius: 20px;
    background: white;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
}

h1 {
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--dim-grey);
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modules-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.btn-module {
    background: white;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.btn-module::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--carrot-orange);
    transition: width 0.3s ease;
}

.btn-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(243, 147, 8, 0.15);
    color: var(--carrot-orange);
    background: white;
}

.btn-module:hover::before {
    width: 10px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .premium-card { padding: 2rem; }
}
