/* Account Type Toggle Buttons */
.account-type-selector {
    background: #e9ecef;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1rem;
    display: flex;
}

.account-type-btn {
    flex: 1;
    padding: 12px 6px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: #6c757d;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-type-btn.active {
    background: #198754;
    color: white;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
    transform: scale(1.05);
}

.account-type-btn.active::after {
    content: "✓";
    display: inline-block;
    margin-left: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
}

.account-type-btn:hover:not(.active) {
    color: #495057;
}

/* Plan Cards */
.plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.plan-card:hover {
    border-color: #198754;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}

.plan-card:hover:not(.selected) {
    background: #f0f9f0;
}

.plan-card.selected {
    border-color: #198754;
    background: #e8f5e8;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.2);
    transform: scale(1.02);
}

.plan-card.selected::after {
    content: "✓";
    position: absolute;
    top: -15px;
    right: -15px;
    background: #198754;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.plan-card.recommended {
    border-color: #198754;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.15);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.plan-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e8f5e8;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.plan-icon i {
    font-size: 1.25rem;
    color: #198754;
}

.plan-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
}

.plan-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #198754;
    text-align: center;
    margin: 0.25rem 0;
}

.plan-price-note {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.plan-features li {
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: #6c757d;
    position: relative;
    padding-left: 1.25rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
}

/* Context Info Box */
.context-info {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
    border: 1px solid #20c997;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.context-info .info-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.context-info .info-icon {
    color: #198754;
    margin-right: 0.5rem;
}

.learn-more-btn {
    background: #198754;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.learn-more-btn:hover {
    background: #157347;
    transform: translateY(-1px);
}

/* Section Labels */
.section-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
}

.plan-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* Promo Section */
.promo-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.promo-toggle {
    color: #198754;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.promo-toggle:hover {
    color: #157347;
}

.promo-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Summary Card */
.summary-card {
    background: white;
    border: 2px solid #198754;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.summary-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.summary-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #198754;
}

.summary-note {
    font-size: 0.875rem;
    color: #6c757d;
}

.discount-info {
    margin-top: 0.25rem;
}


/* Step Navigation */
.step-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Buttons */
.btn-primary-custom {
    background: #198754;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary-custom:hover:not(:disabled) {
    background: #157347;
    transform: translateY(-1px);
}

.btn-primary-custom:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.btn-secondary-custom {
    background: white;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: #f8f9fa;
    border-color: #6c757d;
}


/* Pulse Animation for Continue Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (min-width: 768px) {
    .account-type-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .learn-more-text {
        display: inline;
    }
    
    .learn-more-icon {
        margin-right: 0.25rem;
    }
}

@media (min-width: 992px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .plan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}