.pkg-section { padding: 8vh 0 8vh 0; text-align: center; }

.pkg-head { max-width: 620px; margin: 0 auto 36px auto; padding: 0 20px; }
.pkg-kicker {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--c-accent); margin-bottom: 10px;
}
.pkg-head h1 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.6vw, 38px); font-weight: 700;
    color: var(--c-text-dark); margin: 0;
}

.pkg-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; width: min(1000px, 92vw); margin: 0 auto;
}
@media (max-width: 760px) { .pkg-grid { grid-template-columns: 1fr; max-width: 360px; } }

.pkg-card {
    background: var(--c-dark2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 22px 18px 24px;
    aspect-ratio: 1 / 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-art {
    flex: 1; width: 100%; min-height: 0;
    display: flex; align-items: center; justify-content: center; padding: 4px 0;
}
.pkg-art img, .pkg-art svg { max-width: 92%; max-height: 100%; }

.pkg-rule { width: 26px; height: 2px; background: var(--c-accent); border-radius: 2px; margin: 14px 0 10px; }

.pkg-card h3 {
    font-family: var(--font-head); color: #fff;
    font-size: 1.15rem; font-weight: 700; margin: 0;
}
.pkg-card p {
    color: #aeb7c4; font-size: 0.74rem; letter-spacing: 1px;
    text-transform: uppercase; margin: 4px 0 0 0;
}
