/* ==========================================================================
   Individual Step 01 - Plan Selection Page Specific Styles
   ========================================================================== */

/* Plans Grid - Two column layout for plan cards */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl, 2rem);
    margin-bottom: var(--spacing-xl, 2rem);
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* Plan Card */
.plan-card {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius-lg, 12px);
    padding: var(--spacing-xl, 2rem);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.plan-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.08) 100%);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

/* Selected card checkmark indicator - positioned via HTML */
.plan-card-checkmark {
    position: absolute;
    top: 12px;
    right: 12px;
    display: none;
}

.plan-card.selected .plan-card-checkmark {
    display: block;
}

/* Plan Badge (Popular) - Blue with white text */
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Plan Icon */
.plan-icon {
    margin-bottom: var(--spacing-md, 1rem);
    color: var(--primary-color);
}

.plan-icon img,
.plan-icon svg {
    xwidth: 48px;
    xheight: 48px;
}

/* Plan Title */
.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs, 0.5rem) 0;
}

/* Plan Subtitle */
.plan-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-lg, 1.5rem) 0;
}

/* Plan Price */
.plan-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.plan-price-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm, 0.5rem);
}

/* Secondary price (e.g., monthly equivalent when annual is primary) */
.plan-price-secondary {
    font-size: 0.9rem;
    color: var(--text-muted, #9ca3af);
    margin-bottom: var(--spacing-lg, 1.5rem);
}

/* Plan Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm, 0.5rem);
    padding: var(--spacing-sm, 0.75rem) 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li img {
    flex-shrink: 0;
}

.plan-features li.highlight {
    color: var(--text-primary);
    font-weight: 600;
}

/* Wizard Subtitle (page-specific, centered) */
.wizard-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl, 2rem);
}

/* Wider form container for this page */
.wizard-form-wide {
    max-width: 1000px;
}

/* Center the title for this page */
.wizard-title {
    text-align: center;
}
