.packages-page {
    position: relative;
    min-height: 100vh;
    padding: 128px 24px 96px;
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
}

.packages-page__glow {
    position: absolute;
    width: 40%;
    height: 40%;
    border-radius: 999px;
    filter: blur(120px);
    z-index: 0;
}

.packages-page__glow--top {
    top: -10%;
    right: -10%;
    background: rgba(255, 45, 133, 0.08);
}

.packages-page__glow--bottom {
    bottom: -10%;
    left: -10%;
    background: rgba(255, 215, 0, 0.08);
}

.packages-page__shell {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.packages-page__header {
    margin-bottom: 88px;
    text-align: center;
}

.packages-page__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.08);
    color: #ffd700;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.packages-page__badge-icon {
    width: 12px;
    height: 12px;
}

.packages-page__header h1 {
    margin: 0 0 28px;
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.02;
    font-weight: 900;
}

.packages-page__header h1 span {
    background: linear-gradient(90deg, #ff2d85 0%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.packages-page__rule {
    width: 96px;
    height: 4px;
    margin: 0 auto 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff2d85 0%, #ffd700 100%);
}

.packages-page__header p {
    width: min(720px, 100%);
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.42);
    font-size: 15px;
    line-height: 1.8;
}

.packages-page__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 72px;
}

.packages-filter {
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.packages-filter:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.packages-filter.is-active {
    background: #ff2d85;
    border-color: #ff2d85;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 45, 133, 0.3);
}

.packages-section {
    margin-bottom: 72px;
    scroll-margin-top: 140px;
}

.packages-section__head {
    margin-bottom: 28px;
}

.packages-section__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffd700;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.packages-section__head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 800;
}

.packages-section__head p {
    width: min(760px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 14px;
    line-height: 1.8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 40px;
}

.packages-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
}

.packages-card.is-featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 45, 133, 0.3);
    box-shadow: 0 0 40px rgba(255, 45, 133, 0.1);
}

.packages-card__topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 32px 32px 0 0;
    background: linear-gradient(90deg, #d97706 0%, #ffd700 100%);
}

.packages-card.is-featured .packages-card__topbar {
    background: linear-gradient(90deg, #ff2d85 0%, #d97706 100%);
}

.packages-card__media {
    margin: 12px 0 24px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #111;
}

.packages-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.packages-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.packages-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.packages-card__heading h3 {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.15;
    font-weight: 800;
}

.packages-card__price {
    flex-shrink: 0;
    text-align: right;
}

.packages-card__price span,
.packages-card__price small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.packages-card__price strong {
    display: block;
    margin: 2px 0;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: #ffd700;
}

.packages-card.is-featured .packages-card__price strong {
    color: #ff2d85;
}

.packages-card__body {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.packages-card__body > :first-child {
    margin-top: 0;
}

.packages-card__body > :last-child {
    margin-bottom: 0;
}

.packages-card__features {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.packages-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.packages-card__feature-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #ffd700;
}

.packages-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 32px;
    padding: 16px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.packages-card__button:hover {
    background: rgba(255, 215, 0, 0.1);
}

.packages-card.is-featured .packages-card__button {
    border-color: #ff2d85;
    background: #ff2d85;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 45, 133, 0.3);
}

.packages-card.is-featured .packages-card__button:hover {
    transform: scale(1.02);
}

.packages-card__button-icon {
    width: 16px;
    height: 16px;
}

.packages-trust {
    margin-top: 96px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.packages-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 48px;
}

.packages-trust__item {
    text-align: center;
}

.packages-trust__icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 18px;
    color: #ffd700;
}

.packages-trust__item h3 {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.packages-trust__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .packages-grid,
    .packages-trust__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .packages-page {
        padding: 112px 16px 80px;
    }

    .packages-page__header {
        margin-bottom: 72px;
    }

    .packages-card {
        padding: 28px 22px;
    }

    .packages-card__heading {
        flex-direction: column;
    }

    .packages-card__price {
        text-align: left;
    }
}
