:root {
    --renew-navy: #050d33;
    --renew-blue: #0c5fee;
    --renew-teal: #21c7b8;
    --renew-cloud: #f5f7fb;
    --renew-slate: #4b5675;
}

body {
    background: var(--renew-cloud);
}

.renewal-shell {
    padding: 3rem 0 2rem;
}

.renewal-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.highlight-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid rgba(5, 13, 51, 0.1);
    box-shadow: 0 20px 40px rgba(5, 13, 51, 0.07);
}

.highlight-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(12, 95, 238, 0.1);
    color: var(--renew-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.renewal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.75rem;
}

@media (max-width: 992px) {
    .renewal-layout {
        grid-template-columns: 1fr;
    }
}

.panel-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(5, 13, 51, 0.08);
    box-shadow: 0 40px 70px rgba(5, 13, 51, 0.08);
}

.panel-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(5, 13, 51, 0.08);
}

.panel-header span {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: rgba(5, 13, 51, 0.6);
}

.panel-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    margin: 0.4rem 0;
    font-weight: 800;
    color: var(--renew-navy);
}

.panel-body {
    padding: 2rem 2.5rem;
}

.form-section + .form-section {
    margin-top: 1.75rem;
    border-top: 1px solid rgba(5, 13, 51, 0.08);
    padding-top: 1.5rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--renew-navy);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 1.25rem;
}

.action-button {
    width: 100%;
    border-radius: 999px;
    padding: 0.95rem;
    font-weight: 700;
}

.payment-panel {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px dashed rgba(12, 95, 238, 0.3);
    background: rgba(12, 95, 238, 0.05);
}

.renewal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.status-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(5, 13, 51, 0.08);
    box-shadow: 0 20px 50px rgba(5, 13, 51, 0.07);
}

.stepper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stepper-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.stepper-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(12, 95, 238, 0.3);
}

.stepper-item.active .stepper-dot {
    background: var(--renew-blue);
    border-color: var(--renew-blue);
}

.stepper-item.completed .stepper-dot {
    background: var(--renew-teal);
    border-color: var(--renew-teal);
}

.membership-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(5, 13, 51, 0.75);
}

.membership-summary span {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-weight: 600;
}

.support-links {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(5, 13, 51, 0.75);
}

.support-links li + li {
    margin-top: 0.45rem;
}

.support-links a {
    color: var(--renew-blue);
    font-weight: 600;
    text-decoration: none;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-teal {
    background: rgba(33, 199, 184, 0.15);
    color: var(--renew-teal);
}
