.rp-wrapper-6913f93c {
    background-color: #0b2016;
    padding: 5rem 2rem;
    font-family: inherit;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.rp-container-6913f93c {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.rp-header-6913f93c {
    max-width: 600px;
    margin-bottom: 3rem;
}

.rp-label-wrap-6913f93c {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.rp-label-line-6913f93c {
    width: 30px;
    height: 1px;
    background-color: #C9A961;
}

.rp-label-6913f93c {
    color: #C9A961;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.rp-title-6913f93c {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.rp-desc-6913f93c {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Grid Layout */
.rp-grid-6913f93c {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* Cards */
.rp-card-6913f93c {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rp-card-6913f93c:hover {
    border-color: rgba(201, 169, 97, 0.8);
    transform: translateY(-5px);
}

.rp-card-wide-6913f93c {
    grid-column: span 2;
}

.rp-card-wide-6913f93c .rp-features-list-6913f93c {
    column-count: 2;
    column-gap: 2rem;
}

/* Card Header */
.rp-card-header-6913f93c {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rp-tier-label-6913f93c {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #C9A961;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.rp-tier-title-wrap-6913f93c {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.rp-tier-title-6913f93c {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.rp-tier-badge-6913f93c {
    background-color: #C9A961;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.rp-tier-subtitle-6913f93c {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

/* Features List */
.rp-features-list-6913f93c {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.rp-features-list-6913f93c li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    break-inside: avoid-column;
}

.rp-features-list-6913f93c li:last-child {
    margin-bottom: 0;
}

.rp-feature-icon-6913f93c {
    color: #C9A961;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.rp-feature-text-6913f93c {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .rp-grid-6913f93c {
        grid-template-columns: repeat(3, 1fr);
    }
    .rp-card-wide-6913f93c {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .rp-grid-6913f93c {
        grid-template-columns: repeat(2, 1fr);
    }
    .rp-card-wide-6913f93c {
        grid-column: span 2;
    }
    .rp-card-wide-6913f93c .rp-features-list-6913f93c {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .rp-wrapper-6913f93c {
        padding: 3rem 1.5rem;
    }
    .rp-title-6913f93c {
        font-size: 2.2rem;
    }
    .rp-grid-6913f93c {
        grid-template-columns: 1fr;
    }
    .rp-card-wide-6913f93c {
        grid-column: span 1;
    }
}