.plans-header {
    padding: 20px 20px 24px 20px;
    background: linear-gradient(160deg, #E7A98F 0%, #C97A6D 100%);
    border-radius: 0 0 28px 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(201, 122, 109, 0.2);
}
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 6px 14px 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.back-pill:hover { background: rgba(255, 255, 255, 0.26); }

.plans-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 6px;
}
.plans-header h1 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 4px;
}
.plans-subhead {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.85;
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 20px 24px 20px;
}

.plan-card {
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    border-radius: 18px;
    padding: 18px 18px 16px 18px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
}
.plan-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
}
.plan-info { flex: 1; }
.plan-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 2px;
}
.plan-info p {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 300;
}

.plan-progress-bar {
    height: 6px;
    background: #F0EBE4;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}
.plan-progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.plan-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plan-days-label {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 400;
}
.plan-btn {
    background: #F5F0EA;
    border: 1px solid #EFEAE4;
    color: #4A4442;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: 0.15s;
}
.plan-btn.is-started {
    background: linear-gradient(135deg, #C97A6D, #E7A98F);
    border-color: transparent;
    color: #fff;
}

@media (min-width: 768px) {
    .plans-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}
