/* ========================================
   INDEX.CSS - Estilos específicos para la página de inicio
   ======================================== */

/* DARK THEME COLOR PALETTE
   ========================
   Background: document image with blue tint + gradient overlay
   Primary Accent: #F0F9FF (Blue 50) - Ultra light blue with excellent contrast
   Text Colors:
   - Navigation: #F0F9FF (Blue 50) - High contrast light blue
   - Navigation Hover: #FFFFFF (Pure white) - Maximum contrast  
   - Primary: #FFFFFF (Pure white)
   - Secondary: #F8FAFC (Slate 50)  
   - Subtle: #94A3B8 (Slate 400)
   Interactive Elements:
   - Active Background: #F0F9FF (Blue 50) 
   - Hover Background: rgba(240, 249, 255, 0.15)
   - Border: rgba(240, 249, 255, 0.15-0.4)
   Dark Surfaces:
   - Cards/Modals: rgba(15, 23, 42, 0.85-0.95) with blur
   - Transparent Cards: rgba(8, 16, 32, 0.3) with blur
   - Hero sections: transparent to show background
   Icons: inherit currentColor from parent text
   Text Shadows: Added for better readability over background
   ======================== */

/* HOME DARK THEME */
.home-dark {
    position: relative;
    background: #0B1830;
    color: #EAF2FF;
}

.home-dark::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: hue-rotate(180deg) saturate(0.6) brightness(0.6) contrast(1.1);
    opacity: 0.8;
    z-index: -1;
}

.home-dark::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(1400px 900px at 80% -100px, 
        rgba(17, 37, 63, 0.4) 0%, 
        rgba(11, 24, 48, 0.6) 40%, 
        rgba(7, 15, 32, 0.8) 100%);
    z-index: -1;
    pointer-events: none;
}

/* NAVBAR DARK OVERRIDES */
.home-dark .navbar {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.12);
}

.home-dark .nav-title { 
    color: #FFFFFF; 
    font-weight: 600;
}

.home-dark .nav-link { 
    color: #FFFFFF !important; /* Blanco puro forzado */
    font-weight: 700 !important; /* Peso más fuerte */
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8) !important; /* Sombra muy intensa */
    opacity: 1 !important; /* Sin opacidad */
}

.home-dark .nav-link:hover { 
    color: #FFFFFF !important; /* Blanco puro en hover forzado */
    background: rgba(255, 255, 255, 0.4) !important; /* Fondo muy visible en hover */
    font-weight: 700 !important; /* Peso consistente */
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9) !important; /* Sombra muy intensa */
    opacity: 1 !important; /* Opacidad completa en hover */
}

.home-dark .nav-link.active:not([href="/"]) { 
    color: #1E293B; 
    background: #F0F9FF; 
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(240, 249, 255, 0.4);
    text-shadow: none;
}

/* Nav-link de inicio debe tener hover normal pero sin estado active */
.home-dark .nav-link.active[href="/"] {
    color: #FFFFFF !important;
    background: transparent !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8) !important;
}

.home-dark .nav-link.active[href="/"]:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.4) !important;
    font-weight: 700 !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9) !important;
    opacity: 1 !important;
}

/* Icons inherit color from parent */
.home-dark .nav-link .nav-icon,
.home-dark .nav-link .icon {
    color: inherit !important;
}

.home-dark .nav-link .nav-icon svg,
.home-dark .nav-link .icon svg {
    fill: currentColor !important;
    stroke: currentColor !important;
}

.home-dark .user-name { 
    color: #F8FAFC; 
    font-weight: 600;
}

.home-dark .user-avatar { 
    background: rgba(147, 197, 253, 0.25); 
    color: #1E293B; 
    font-weight: 700;
    border: 2px solid rgba(147, 197, 253, 0.4);
}

/* USER DROPDOWN DARK THEME */
.home-dark .user-dropdown {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(191, 219, 254, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.home-dark .dropdown-item {
    color: #F0F9FF; /* Mismo azul ultra claro que nav-links */
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.home-dark .dropdown-item:hover {
    background-color: rgba(240, 249, 255, 0.12);
    color: #FFFFFF; /* Mismo hover que nav-links */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.home-dark .dropdown-divider {
    border-top-color: rgba(191, 219, 254, 0.15);
}

/* Icons in dropdown */
.home-dark .dropdown-item .nav-icon,
.home-dark .dropdown-item .icon-sm {
    color: inherit !important;
}

.home-dark .dropdown-item .nav-icon svg,
.home-dark .dropdown-item .icon-sm svg {
    fill: currentColor !important;
    stroke: currentColor !important;
}

.home-dark .user-role {
    color: #94A3B8;
    font-weight: 500;
}

.home-dark .user-menu-button {
    border: 1px solid rgba(147, 197, 253, 0.2);
    background: rgba(147, 197, 253, 0.08);
    transition: all 0.2s ease;
}

.home-dark .user-menu-button:hover {
    background: rgba(147, 197, 253, 0.15);
    border-color: rgba(147, 197, 253, 0.3);
}

/* LOGIN MODAL DARK THEME */
.home-dark .modal {
    background: rgba(7, 15, 32, 0.8);
}

.home-dark .modal-content {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(191, 219, 254, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.home-dark .modal-header {
    border-bottom-color: rgba(191, 219, 254, 0.15);
}

.home-dark .modal-header h2 {
    color: #DBEAFE;
}

.home-dark .modal-header .close {
    color: #BFDBFE;
}

.home-dark .modal-header .close:hover {
    color: #DBEAFE;
}

.home-dark .form-group label {
    color: #BFDBFE;
    font-weight: 500;
}

.home-dark .form-input {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(191, 219, 254, 0.2);
    color: #DBEAFE;
}

.home-dark .form-input:focus {
    border-color: rgba(191, 219, 254, 0.4);
    box-shadow: 0 0 0 3px rgba(191, 219, 254, 0.1);
    background: rgba(30, 41, 59, 0.7);
}

.home-dark .form-input::placeholder {
    color: #64748B;
}

.home-dark .password-toggle {
    color: #BFDBFE;
}

.home-dark .password-toggle:hover {
    color: #DBEAFE;
}

.home-dark .error-message {
    color: #FCA5A5;
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.2);
}

.home-dark .modal .btn-primary {
    background: #BFDBFE !important;
    color: #1E293B !important;
    border-color: #BFDBFE !important;
    font-weight: 600 !important;
}

.home-dark .modal .btn-primary:hover {
    background: #DBEAFE !important;
    border-color: #DBEAFE !important;
}

/* HERO SECTION */
.hero-section {
    min-height: calc(100vh - var(--navbar-height));
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.home-dark .hero-section { 
    padding: 10px 0 0 0; /* 10px de separación con navbar - reducido de 30px */
    margin: 0;
    background: transparent;
    min-height: calc(100vh - var(--navbar-height));
    max-height: calc(100vh - var(--navbar-height));
    width: 100%;
    overflow-x: hidden; /* Prevenir scroll horizontal */
    overflow-y: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-dark .hero-container { 
    display: grid;
    grid-template-columns: 40% 60%; /* Grid en hero-container */
    gap: 0;
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    align-items: center;
}

/* Home: ocupar todo el ancho visual y sin padding del contenedor principal */
.home-dark .main-content { padding: 0; max-width: none; }

.home-dark .hero-content { 
    background: transparent;
    padding: 0 2rem 0 2rem; /* Padding para alinear con navbar */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.home-dark .hero-visual { 
    display: flex;
    justify-content: flex-end; /* Empujar imagen hacia la derecha */
    align-items: center;
    margin: 0;
    padding: 0;
    background: none;
    width: 100%;
    height: 100%;
    overflow: visible; /* Permitir que la imagen sobresalga */
}

/* WELCOME CARD */
.welcome-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    border: none;
    max-width: 700px;
    width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #D4B76A 100%);
}

.home-dark .welcome-card {
    background: transparent !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 1rem 1.25rem !important; /* menos padding para ganar altura útil */
    box-shadow: none !important;
    margin: 0 !important;
    height: 100% !important;
    max-height: calc(100vh - var(--navbar-height) - 30px - 2rem) !important; /* navbar + margin + padding */
    display: flex !important;
    flex-direction: column !important;
    overflow: auto !important;
}

.home-dark .welcome-card .card-header { 
    background: transparent !important; 
    border: none !important; 
    padding: 0 0 0.5rem 0 !important; /* compactar encabezado */
}

.home-dark .process-steps {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    margin-top: 0.5rem; /* empezar antes */
}

/* CARD CONTENT */
.card-header {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: none;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-dark .card-title { 
    color: #FFFFFF !important; 
    font-size: 2.2rem !important; 
    letter-spacing: 0.2px; 
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.card-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.home-dark .card-subtitle { 
    color: #C6D6F3 !important; 
    font-weight: 500 !important; 
}

.card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.home-dark .card-description { 
    color: #D6E3FF !important; 
}

.card-subtitle-with-icon { 
    display: flex; 
    align-items: center; 
    gap: .5rem; 
    margin-top: .25rem; 
}

/* AI ICON */
.ai-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.home-dark .ai-icon { 
    width: 28px; 
    height: 28px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    color: #9CC4FF; 
    background: rgba(127,179,255,0.12); 
    border: 1px solid rgba(127,179,255,0.22); 
    border-radius: 8px; 
    padding: 4px; 
    animation: none; 
}

/* AI LINK */
.ai-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.ai-link:hover {
    border-bottom-color: var(--brand-primary);
    background: rgba(15, 108, 189, 0.05);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

/* BUTTONS */
.home-dark .btn-primary { 
    background: #7FB3FF !important; 
    color: #0B1830 !important; 
    border: 1px solid rgba(0,0,0,0.0) !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

.home-dark .btn-primary:hover { 
    background: #69A5FF !important; 
    color: #081226 !important;
    font-weight: 600 !important;
}

.home-dark .btn-secondary { 
    background: rgba(255,255,255,0.18) !important; 
    color: #FFFFFF !important; 
    border: 1px solid rgba(255,255,255,0.35) !important; 
    box-shadow: none !important;
    font-weight: 500 !important;
}

.home-dark .btn-secondary:hover { 
    background: rgba(255,255,255,0.25) !important;
    color: #FFFFFF !important;
}

.home-dark .hero-actions { 
    display: flex; 
    gap: 0.75rem; 
    margin-top: 1rem; 
}

.home-dark .hero-actions .btn { 
    padding: 0.7rem 1.1rem; 
    min-width: 0; 
}

/* PROCESS STEPS */
.process-steps {
    margin-top: 2rem;
}

.steps-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.home-dark .steps-bar { 
    display: flex; 
    gap: 0.75rem; 
    align-items: center; 
    padding: 0.5rem 0; 
    margin: 0.25rem 0; 
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.home-dark .step-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 0.5rem; 
    opacity: .6; 
    transition: opacity .2s ease, transform .2s ease; 
}

.step-item.active {
    opacity: 1;
    transform: translateY(-2px);
}

.home-dark .step-item.active { 
    opacity: 1; 
    transform: translateY(-2px); 
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.home-dark .step-circle { 
    width: 44px; 
    height: 44px; 
    border-radius: 999px; 
    background: rgba(127,179,255,0.15); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid rgba(127,179,255,0.25); 
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background: #C7A45E;
}

.home-dark .step-item.active .step-circle { 
    width: 52px !important; 
    height: 52px !important; 
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%) !important; 
    border: 2px solid rgba(96, 165, 250, 0.8) !important; 
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
    transform: scale(1.1) !important;
}

.step-item.active .step-circle .step-icon {
    color: white;
}

.home-dark .step-item.active .step-circle .step-icon {
    color: white !important;
    font-size: 1.1rem !important;
}

.step-item:not(.active):hover .step-circle {
    background: #E0E0E0;
    transform: translateY(-2px);
}

.step-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s ease;
}

.step-label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-dark .step-label { 
    color: #C6D6F3; 
    font-weight: 500; 
    font-size: .9rem; 
}

.step-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.step-item.active .step-name {
    color: #C7A45E;
    font-weight: 600;
}

.home-dark .step-item .step-label, 
.home-dark .step-item .step-name { 
    color: #D6E3FF !important; 
}

.home-dark .card-description { 
    color: #D6E3FF !important; 
    font-size: clamp(0.85rem, 1vh + 0.55rem, 1rem) !important; 
    line-height: 1.5 !important; 
}

/* STEP DESCRIPTION */
.step-description {
    background: transparent;
    border-radius: 0;
    padding: 2rem;
    border: none;
    position: relative;
    min-height: 120px;
}

.step-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-desc-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.home-dark .step-desc-title { 
    color: #EAF2FF; 
    margin: .5rem 0; 
}

.step-desc-title::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: var(--color-accent);
    border-radius: 2px;
}

.step-desc-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

.home-dark .step-desc-text { 
    color: #B4C5E7; 
}

.step-desc-text code {
    background: rgba(199, 164, 94, 0.15);
    color: var(--color-accent);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', monospace;
}

.home-dark .step-desc-text code {
    background: rgba(96, 165, 250, 0.25) !important;
    color: #60A5FA !important;
    border: 1px solid rgba(96, 165, 250, 0.4) !important;
    font-weight: 700 !important;
}

/* LAPTOP MOCKUP */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 580px;
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-dark .laptop-mockup { 
    position: relative; 
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
    width: 150%; /* Extender significativamente hacia la derecha */
    max-width: none;
    height: 100%;
    display: block;
}

.home-dark .laptop-image {
    width: 100%; /* Ocupar todo el ancho disponible */
    height: 100%; /* Usar toda la altura disponible */
    display: block;
    object-fit: contain; /* Mantener proporción pero llenar espacio */
    object-position: right center; /* Alinear a la derecha */
}

/* Responsive font sizing for hero copy */
.home-dark .card-title { font-size: clamp(1.4rem, 2.2vh + 0.9rem, 2rem) !important; margin-bottom: 0.5rem !important; }
.home-dark .card-subtitle { font-size: clamp(0.95rem, 1.6vh + 0.4rem, 1.15rem) !important; }
.home-dark .card-description { font-size: clamp(0.85rem, 1vh + 0.5rem, 0.95rem) !important; }
/* Compactar descripción para evitar scroll interno */
.home-dark .step-description { padding: 1rem; margin-top: 0.25rem; min-height: auto; }

/* Collapse to single column on narrower viewports */
@media (max-width: 900px) {
    .home-dark .hero-section { 
        min-height: calc(100vh - var(--navbar-height)); 
        max-height: none;
        overflow: visible;
        padding: 30px 2rem 0 2rem; /* Añadir padding lateral */
    }
    .home-dark .hero-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        height: auto;
    }
    .home-dark .hero-content { 
        width: 100%; 
        height: auto;
        padding: 0; /* Sin padding adicional en mobile */
    }
    .home-dark .hero-visual {
        width: 100%; 
        height: auto;
        justify-content: center; /* Centrar imagen en mobile */
    }
    .home-dark .laptop-mockup {
        width: 100%; /* Sin extensión en mobile */
    }
    .home-dark .welcome-card { 
        max-height: none !important; 
    }
}

/* RESPONSIVE DESIGN */

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .laptop-mockup {
        max-width: 520px;
    }
}

/* Mobile and Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 2rem;
        max-width: 100%;
    }
    
    .hero-content {
        order: 1;
        width: 100%;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
    }
    
    .welcome-card {
        padding: 2rem;
        margin: 0.5rem;
        border-radius: 1.25rem;
    }
    
    .card-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }
    
    .ai-icon {
        width: 28px;
        height: 28px;
    }
    
    .steps-bar {
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .step-name {
        font-size: 0.75rem;
    }
    
    .step-name {
        font-size: 0.9rem;
    }
    
    .step-description {
        padding: 1.5rem;
        min-height: 80px;
        margin-top: 1rem;
    }
    
    .step-desc-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .step-desc-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .laptop-mockup {
        max-width: 400px;
        width: 90%;
        margin: 0 auto;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 1rem 0.75rem;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .welcome-card {
        padding: 1.5rem;
        margin: 0.25rem;
        border-radius: 1rem;
    }
    
    .card-title {
        font-size: 1.75rem;
        line-height: 1.05;
        margin-bottom: 1rem;
    }
    
    .ai-icon {
        width: 24px;
        height: 24px;
    }
    
    .steps-bar {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
    }
    
    .step-icon {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .step-name {
        font-size: 0.7rem;
    }
    
    .step-description {
        padding: 1.25rem;
        min-height: 70px;
        border-radius: 0.75rem;
    }
    
    .step-desc-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-desc-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .step-desc-text code {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .laptop-mockup {
        max-width: 320px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .welcome-card {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
    }
    
    .step-icon {
        width: 1rem;
        height: 1rem;
    }
    
    .step-name {
        font-size: 0.65rem;
    }
    
    .laptop-mockup {
        max-width: 280px;
    }
}