/* ================================================== */
/* PRANARP STUNNING BASE STYLES */
/* Core design tokens and base utilities for auth/onboarding */
/* ================================================== */

/* ================================================== */
/* 1. DESIGN TOKENS */
/* ================================================== */

:root {
    /* Background Gradients */
    --pranarp-bg-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --pranarp-bg-secondary: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --pranarp-bg-light: #f8f9fa;
    --pranarp-bg-white: #ffffff;
    
    /* Radial Glow Effects */
    --pranarp-bg-radials: 
        radial-gradient(circle at 20% 80%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 51, 234, 0.04) 0%, transparent 50%);
    
    /* Card & Surface */
    --pranarp-card-bg: rgba(15, 23, 42, 0.95);
    --pranarp-card-bg-soft: rgba(15, 23, 42, 0.8);
    --pranarp-card-bg-subtle: rgba(30, 41, 59, 0.5);
    --pranarp-card-bg-light: rgba(255, 255, 255, 0.95);
    
    /* Borders */
    --pranarp-border-light: rgba(148, 163, 184, 0.4);
    --pranarp-border-accent: rgba(147, 51, 234, 0.18);
    --pranarp-border-accent-strong: rgba(147, 51, 234, 0.2);
    --pranarp-border-subtle: rgba(148, 163, 184, 0.2);
    --pranarp-border-gray: rgba(0, 0, 0, 0.1);
    
    /* Shadows */
    --pranarp-shadow-deep: 0 20px 45px rgba(0, 0, 0, 0.45);
    --pranarp-shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --pranarp-shadow-button: 0 10px 25px rgba(147, 51, 234, 0.35);
    --pranarp-shadow-button-hover: 0 14px 30px rgba(147, 51, 234, 0.45);
    --pranarp-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    
    /* Primary Colors */
    --pranarp-primary: #9333ea;
    --pranarp-primary-soft: #7c3aed;
    --pranarp-primary-strong: #6d28d9;
    --pranarp-primary-gradient: linear-gradient(135deg, #9333ea, #7c3aed);
    --pranarp-primary-gradient-hover: linear-gradient(135deg, #7c3aed, #6d28d9);
    
    /* Text Colors */
    --pranarp-text-primary: #f8fafc;
    --pranarp-text-secondary: #cbd5e1;
    --pranarp-text-muted: #94a3b8;
    --pranarp-text-hover: #e5e7eb;
    --pranarp-text-dark: #1e293b;
    --pranarp-text-gray: #64748b;
    
    /* Brand Gradient */
    --pranarp-brand-gradient: linear-gradient(135deg, #f8fafc, #cbd5e1, #9333ea);
    
    /* Border Radius */
    --pranarp-radius-sm: 0.25rem;
    --pranarp-radius-md: 0.75rem;
    --pranarp-radius-lg: 1rem;
    --pranarp-radius-xl: 1.75rem;
    --pranarp-radius-full: 999px;
    
    /* Spacing */
    --pranarp-spacing-section: 3rem 0 4rem;
    --pranarp-spacing-section-mobile: 2rem 0 3rem;
    
    /* Typography */
    --pranarp-font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --pranarp-font-inter: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Legacy Auth Tokens (for compatibility) */
    --auth-bg-primary: var(--pranarp-bg-primary);
    --auth-bg-secondary: var(--pranarp-bg-secondary);
    --auth-card-bg: var(--pranarp-card-bg);
    --auth-border: var(--pranarp-border-accent-strong);
    --auth-text-primary: var(--pranarp-text-primary);
    --auth-text-secondary: var(--pranarp-text-secondary);
    --auth-text-muted: var(--pranarp-text-muted);
}

/* ================================================== */
/* 2. BASE RESET & TYPOGRAPHY */
/* ================================================== */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--pranarp-font-inter);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================== */
/* 3. UTILITY CLASSES */
/* ================================================== */

/* Text Utilities */
.text-primary {
    color: var(--pranarp-text-primary);
}

.text-secondary {
    color: var(--pranarp-text-secondary);
}

.text-muted {
    color: var(--pranarp-text-muted);
}

.text-dark {
    color: var(--pranarp-text-dark);
}

.text-gray {
    color: var(--pranarp-text-gray);
}

/* Background Utilities */
.bg-primary {
    background: var(--pranarp-bg-primary);
}

.bg-secondary {
    background: var(--pranarp-bg-secondary);
}

.bg-light {
    background: var(--pranarp-bg-light);
}

.bg-white {
    background: var(--pranarp-bg-white);
}

/* Spacing Utilities */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 0.75rem; }

.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-3 { margin-left: 0.75rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-4 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }

/* Display Utilities */
.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-none {
    display: none;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

/* Border Radius Utilities */
.rounded {
    border-radius: var(--pranarp-radius-md);
}

.rounded-sm {
    border-radius: var(--pranarp-radius-sm);
}

.rounded-lg {
    border-radius: var(--pranarp-radius-lg);
}

.rounded-xl {
    border-radius: var(--pranarp-radius-xl);
}

.rounded-full {
    border-radius: var(--pranarp-radius-full);
}

/* Shadow Utilities */
.shadow {
    box-shadow: var(--pranarp-shadow-light);
}

.shadow-md {
    box-shadow: var(--pranarp-shadow-card);
}

.shadow-lg {
    box-shadow: var(--pranarp-shadow-deep);
}

/* ================================================== */
/* 4. ANIMATIONS */
/* ================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================== */
/* 5. RESPONSIVE UTILITIES */
/* ================================================== */

@media (max-width: 640px) {
    .d-md-none {
        display: none;
    }
    
    .d-md-block {
        display: block;
    }
    
    .text-center-mobile {
        text-align: center;
    }
}

@media (min-width: 641px) {
    .d-md-flex {
        display: flex;
    }
}

/* ================================================== */
/* 6. ACCESSIBILITY */
/* ================================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --pranarp-border-accent: rgba(147, 51, 234, 0.5);
        --pranarp-border-accent-strong: rgba(147, 51, 234, 0.7);
    }
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--pranarp-primary);
    outline-offset: 2px;
}

/* ================================================== */
/* 7. ONBOARDING STYLES */
/* ================================================== */

/* Onboarding Page */
.onboarding-page {
    min-height: 100vh;
    background: var(--pranarp-bg-primary);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    color: var(--pranarp-text-primary);
    font-family: var(--pranarp-font-inter);
    padding: 2rem 1rem;
}

.onboarding-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--pranarp-bg-radials);
    pointer-events: none;
    z-index: 0;
}

/* Onboarding Header */
.onboarding-header {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.onboarding-header__logo {
    font-family: var(--pranarp-font-family);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--pranarp-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.onboarding-header__logo:hover {
    transform: scale(1.05);
}

.onboarding-header__user {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--pranarp-text-secondary);
}

.onboarding-header__logout {
    color: var(--pranarp-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.onboarding-header__logout:hover {
    color: var(--pranarp-text-hover);
}

/* Onboarding Container */
.onboarding-container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

/* Onboarding Progress */
.onboarding-progress {
    margin-bottom: 2rem;
}

.onboarding-progress__text {
    font-size: 0.875rem;
    color: var(--pranarp-text-secondary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.onboarding-progress__bar {
    height: 4px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.onboarding-progress__fill {
    height: 100%;
    background: var(--pranarp-primary-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Onboarding Card */
.onboarding-card {
    background: var(--pranarp-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--pranarp-border-accent);
    border-radius: var(--pranarp-radius-xl);
    box-shadow: var(--pranarp-shadow-deep), 0 0 0 1px rgba(15, 23, 42, 0.9);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.onboarding-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pranarp-text-primary);
    margin-bottom: 0.75rem;
    font-family: var(--pranarp-font-family);
}

.onboarding-card__subtitle {
    font-size: 1.125rem;
    color: var(--pranarp-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Onboarding Actions */
.onboarding-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: space-between;
}

.onboarding-actions__back {
    background: rgba(30, 41, 59, 0.5);
    color: var(--pranarp-text-secondary);
    border: 1px solid var(--pranarp-border-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--pranarp-radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.onboarding-actions__back:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: var(--pranarp-primary);
    color: var(--pranarp-text-primary);
}

.onboarding-actions__next {
    background: var(--pranarp-primary-gradient) !important;
    color: white !important;
    border: none !important;
    outline: none !important;
    padding: 0.7rem 1.3rem;
    border-radius: var(--pranarp-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: var(--pranarp-shadow-button);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.onboarding-actions__next:hover,
.onboarding-actions__next:focus {
    background: var(--pranarp-primary-gradient-hover) !important;
    color: white !important;
    border: none !important;
    outline: none !important;
    transform: translateY(-1px);
    box-shadow: var(--pranarp-shadow-button-hover);
    text-decoration: none;
}

.onboarding-actions__next:active {
    transform: translateY(0);
    background: var(--pranarp-primary-gradient-hover) !important;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: var(--pranarp-text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--pranarp-border-accent);
    border-radius: var(--pranarp-radius-lg);
    color: var(--pranarp-text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control::placeholder {
    color: var(--pranarp-text-muted);
}

.form-control:focus {
    outline: none;
    border-color: var(--pranarp-primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
    background: rgba(30, 41, 59, 0.7);
}

.form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.invalid-feedback {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check-input {
    appearance: none;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--pranarp-border-accent);
    border-radius: 0.25rem;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.form-check-input:checked {
    background: var(--pranarp-primary);
    border-color: var(--pranarp-primary);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.form-check-input:hover {
    border-color: var(--pranarp-primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-check-label {
    color: var(--pranarp-text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

.form-check-input.is-invalid {
    border-color: #ef4444;
}

/* Selectable Cards */
.onboarding-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.onboarding-card-selectable {
    position: relative;
    display: block;
    cursor: pointer;
}

.onboarding-card-selectable__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.onboarding-card-selectable__content {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--pranarp-border-accent);
    border-radius: var(--pranarp-radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.onboarding-card-selectable__input:checked + .onboarding-card-selectable__content,
.onboarding-card-selectable--checkbox .onboarding-card-selectable__input:checked + .onboarding-card-selectable__content {
    border-color: var(--pranarp-primary);
    background: rgba(147, 51, 234, 0.15);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2), var(--pranarp-shadow-card);
}

.onboarding-card-selectable:hover .onboarding-card-selectable__content {
    border-color: var(--pranarp-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.onboarding-card-selectable__label {
    font-weight: 500;
    color: var(--pranarp-text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Plan Cards */
.onboarding-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.onboarding-plan-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--pranarp-border-accent);
    border-radius: var(--pranarp-radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.2s ease;
}

.onboarding-plan-card:hover {
    border-color: var(--pranarp-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.onboarding-plan-card--selected {
    border-color: var(--pranarp-primary);
    background: rgba(147, 51, 234, 0.15);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2), var(--pranarp-shadow-card);
}

.onboarding-plan-card__badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--pranarp-primary-gradient);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--pranarp-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--pranarp-shadow-button);
}

.onboarding-plan-card__badge--recommended {
    background: linear-gradient(135deg, #10b981, #059669);
}

.onboarding-plan-card__header {
    margin-bottom: 1.5rem;
}

.onboarding-plan-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pranarp-text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--pranarp-font-family);
}

.onboarding-plan-card__tagline {
    font-size: 0.9375rem;
    color: var(--pranarp-text-secondary);
    margin: 0;
}

.onboarding-plan-card__price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--pranarp-border-subtle);
}

.onboarding-plan-card__price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pranarp-text-primary);
}

.onboarding-plan-card__price-period {
    font-size: 1rem;
    color: var(--pranarp-text-secondary);
    margin-left: 0.25rem;
}

.onboarding-plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.onboarding-plan-card__feature {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--pranarp-text-secondary);
    display: flex;
    align-items: center;
}

.onboarding-plan-card__radio {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.onboarding-plan-card__radio input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    accent-color: var(--pranarp-primary);
}

.onboarding-plan-card__radio-label {
    font-weight: 500;
    color: var(--pranarp-text-primary);
    cursor: pointer;
}

/* Summary Styles */
.onboarding-summary-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.onboarding-summary-section {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--pranarp-border-accent);
    border-radius: var(--pranarp-radius-lg);
    padding: 1.5rem;
}

.onboarding-summary-section__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pranarp-text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: var(--pranarp-font-family);
}

.onboarding-summary-section__content {
    color: var(--pranarp-text-secondary);
}

.onboarding-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onboarding-summary-list li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: var(--pranarp-radius-lg);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    animation: slideInDown 0.5s ease;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Button Utilities */
.btn,
button.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--pranarp-radius-full);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    background: transparent;
    color: inherit;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn:hover,
button.btn:hover {
    text-decoration: none;
    outline: none;
}

.btn:focus,
button.btn:focus {
    outline: none;
}

.btn-primary {
    background: var(--pranarp-primary-gradient) !important;
    color: white !important;
    border: none !important;
    outline: none !important;
    box-shadow: var(--pranarp-shadow-button);
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--pranarp-primary-gradient-hover) !important;
    color: white !important;
    border: none !important;
    outline: none !important;
    transform: translateY(-1px);
    box-shadow: var(--pranarp-shadow-button-hover);
    text-decoration: none;
}

.btn-primary:active {
    background: var(--pranarp-primary-gradient-hover) !important;
}

.btn-link {
    background: transparent;
    color: var(--pranarp-text-secondary);
    text-decoration: underline;
    padding: 0.5rem;
}

.btn-link:hover {
    color: var(--pranarp-text-hover);
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-success {
    color: #10b981;
}

.text-danger {
    color: #ef4444;
}

.small {
    font-size: 0.875rem;
}

.h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .onboarding-page {
        padding: 1rem;
    }
    
    .onboarding-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .onboarding-card {
        padding: 2rem 1.5rem;
    }
    
    .onboarding-card__title {
        font-size: 1.5rem;
    }
    
    .onboarding-card__subtitle {
        font-size: 1rem;
    }
    
    .onboarding-actions {
        flex-direction: column;
    }
    
    .onboarding-actions button,
    .onboarding-actions a {
        width: 100%;
    }
    
    .onboarding-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .onboarding-card-selectable__content {
        min-height: 80px;
        padding: 1.25rem;
    }
    
    .onboarding-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .onboarding-summary-section {
        padding: 1.25rem;
    }
}

/* ================================================== */
/* 8. PRINT STYLES */
/* ================================================== */

@media print {
    .no-print {
        display: none !important;
    }
}


