/* =========== Global Styles =========== */
:root {
    --primary-black: #000000;
    --text-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --accent-dark-gray: #333333;
    --secondary-gray: #666666;
    --highlight-gray: #999999;
    --light-gray: #f8f9fa;
    --wizard-bg: #ffffff;
    --wizard-card-bg: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --card-bg: rgba(26, 26, 26, 0.95);
    --input-bg: rgba(40, 40, 40, 0.9);
    --success-green: #28a745;
    --danger-red: #dc3545;
    --warning-yellow: #ffc107;
    --info-blue: #17a2b8;
    --primary-purple: #6c63ff;
    --primary-purple-light: #8b7fff;
    --primary-purple-dark: #5548d4;
    --border-light: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--highlight-gray);
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-dark-gray);
    border-color: var(--accent-dark-gray);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-gray);
    border-color: var(--secondary-gray);
}

.btn-outline-light {
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline-light:hover {
    background-color: var(--text-white);
    color: var(--primary-black);
}

/* Brand Logo Styles */
.brand-icon-box {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #3084F2 0%, #1675F2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

/* Primary Button with brand colors */
.btn-brand {
    background: linear-gradient(135deg, #3084F2 0%, #1675F2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(48, 132, 242, 0.35);
    color: #fff;
}

/* Google Sign-In Button - Following Official Brand Guidelines (White Version) */
.google-btn {
    background-color: #FFFFFF;
    border: 1px solid #dadce0;
    color: #3c4043;
    font-family: 'Roboto', 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
}

.google-btn:hover {
    background-color: #f8f9fa;
    border-color: #dadce0;
    color: #3c4043;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.25);
    transform: translateY(-1px);
}

.google-btn:focus {
    background-color: #f8f9fa;
    border-color: #4285f4;
    color: #3c4043;
    outline: none;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.25), 0 0 0 3px rgba(66, 133, 244, 0.3);
}

.google-btn:active {
    background-color: #f1f3f4;
    border-color: #dadce0;
    color: #3c4043;
    transform: translateY(0);
}

/* Primary Google Button for Corporate Login */
.google-btn-primary {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    border: none;
    color: #ffffff;
    font-family: 'Roboto', 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.google-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.google-btn-primary:hover {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

.google-btn-primary:hover::before {
    left: 100%;
}

.google-btn-primary:focus {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #ffffff;
    outline: none;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3), 0 0 0 3px rgba(66, 133, 244, 0.4);
}

.google-btn-primary:active {
    background: linear-gradient(135deg, #1557b0 0%, #0f4c8e 100%);
    color: #ffffff;
    transform: translateY(0);
}

/* =========== Animated Avatars =========== */
.avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.animated-avatar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
    margin: 0 auto;
}

.avatar-svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.animated-avatar:hover .avatar-svg {
    transform: scale(1.05);
}

/* Pulse ring animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid #4f46e5;
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
}

.pulse-ring.green {
    border-color: #10b981;
}

/* Avatar element animations */
.login-avatar .eye-left,
.login-avatar .eye-right {
    animation: blink 3s infinite;
}

.register-avatar .star {
    animation: twinkle 2s infinite;
}

.register-avatar .star-bg {
    animation: rotate 4s linear infinite;
}

/* Keyframe animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes blink {
    0%, 90%, 100% {
        opacity: 1;
    }
    95% {
        opacity: 0;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =========== Daily Challenge Styles =========== */
.daily-challenge-section {
    margin-bottom: 2rem;
}

.daily-challenge-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.daily-challenge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.daily-challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.challenge-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.challenge-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse-glow 2s infinite;
}

.challenge-streak {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
}

.challenge-info h3.challenge-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.challenge-day {
    margin: 0.2rem 0 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.challenge-xp {
    text-align: right;
}

.xp-amount {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.challenge-content {
    margin-top: 1rem;
}

.challenge-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.challenge-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.btn-challenge-start {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-challenge-start:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.challenge-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Responsive design for challenge */
@media (max-width: 768px) {
    .challenge-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .challenge-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .challenge-timer {
        justify-content: center;
    }
}

/* =========== Streak System Styles =========== */
.streak-section {
    margin-bottom: 2rem;
}

.streak-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.streak-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.streak-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.streak-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.streak-icon-container {
    position: relative;
    display: flex;
    align-items: center;
}

.streak-flame {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    animation: flame-flicker 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.streak-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particle-float 3s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 10px;
    left: 15px;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 15px;
    right: 10px;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20px;
    left: 20px;
    animation-delay: 2s;
}

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

.streak-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.streak-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.streak-number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.streak-days {
    font-size: 1rem;
    opacity: 0.8;
}

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

.freeze-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 0.5rem auto;
}

.freeze-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.freeze-status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.streak-progress {
    margin-top: 1.5rem;
}

.streak-goals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.streak-goals::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.goal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.goal-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: all 0.3s ease;
}

.goal-item.completed .goal-dot {
    background: #10b981;
    border-color: #10b981;
    animation: pulse-success 2s infinite;
}

.goal-item.next .goal-dot {
    background: rgba(255, 255, 255, 0.8);
    border-color: white;
    animation: pulse-next 2s infinite;
}

.goal-item span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.goal-item.completed span,
.goal-item.next span {
    opacity: 1;
    font-weight: 600;
}

.streak-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Streak animations */
@keyframes flame-flicker {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.05) rotate(-2deg);
        filter: brightness(1.1);
    }
    50% {
        transform: scale(0.98) rotate(1deg);
        filter: brightness(0.95);
    }
    75% {
        transform: scale(1.02) rotate(-1deg);
        filter: brightness(1.05);
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.4;
    }
}

@keyframes pulse-success {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

@keyframes pulse-next {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

/* Responsive design for streaks */
@media (max-width: 768px) {
    .streak-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .streak-goals {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .streak-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========== Superpower Assessment Styles =========== */
.superpower-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 20px;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.superpower-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wizard-logo {
    position: relative;
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.logo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: logo-particle-float 3s infinite ease-in-out;
}

.logo-particle:nth-child(1) {
    top: -5px;
    left: 10px;
    animation-delay: 0s;
}

.logo-particle:nth-child(2) {
    top: 5px;
    right: 0px;
    animation-delay: 1s;
}

.logo-particle:nth-child(3) {
    bottom: -5px;
    left: 50%;
    animation-delay: 2s;
}

.superpower-intro {
    text-align: center;
    margin: 1.5rem 0;
}

.superpower-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: title-glow 3s ease-in-out infinite;
}

.motivational-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.stat-badge {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: stat-pulse 2s infinite;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.discovery-promise {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

.discovery-promise i {
    color: #ffd700;
    animation: bolt-flash 2s infinite;
}

.superpower-progress {
    position: relative;
}

.golden-bar {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    border-radius: 25px;
    overflow: hidden;
    height: 12px;
}

.golden-fill {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-size: 200% 100%;
    animation: golden-shimmer 2s linear infinite;
    position: relative;
}

.golden-particles {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.golden-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    animation: particle-travel 3s linear infinite;
}

.golden-particle:nth-child(1) { animation-delay: 0s; }
.golden-particle:nth-child(2) { animation-delay: 0.6s; }
.golden-particle:nth-child(3) { animation-delay: 1.2s; }
.golden-particle:nth-child(4) { animation-delay: 1.8s; }
.golden-particle:nth-child(5) { animation-delay: 2.4s; }

.superpower-step {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.superpower-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.achievement-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.achievement-indicator i {
    color: #ffd700;
    animation: star-twinkle 2s infinite;
}

/* Question card enhancements */
.question-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.question-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.rating-option {
    transition: all 0.3s ease;
}

.rating-option:hover {
    transform: translateY(-2px);
}

.rating-option input[type="radio"]:checked + .rating-circle {
    background: #ffd700;
    border-color: #ffd700;
    color: #333;
    animation: achievement-pop 0.5s ease;
}

/* Gamification animations */
@keyframes logo-particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.4;
    }
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

@keyframes stat-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
    }
}

@keyframes bolt-flash {
    0%, 90%, 100% {
        opacity: 1;
    }
    95% {
        opacity: 0.3;
    }
}

@keyframes golden-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes particle-travel {
    0% {
        left: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 10px);
        opacity: 0;
    }
}

@keyframes star-twinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.7;
    }
}

@keyframes achievement-pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive design for superpower assessment */
@media (max-width: 768px) {
    .superpower-title {
        font-size: 1.5rem;
    }
    
    .motivational-stats {
        gap: 0.8rem;
    }
    
    .stat-badge,
    .discovery-promise {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

.container {
    max-width: 1200px;
}

/* =========== Wizard Styles =========== */
.wizard-body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.wizard-container {
    min-height: 100vh;
    background: #000000;
    padding: 0;
    margin: 0;
}

.wizard-header {
    background: #000000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.wizard-logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
}

.wizard-progress {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.progress-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-purple-light));
    border-radius: 20px;
    transition: width 0.3s ease;
    width: 25%;
}

.progress-text {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.time-estimate {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.wizard-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.wizard-step {
    display: none;
    background: var(--wizard-card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.wizard-step.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

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

.step-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-header h2 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--secondary-gray);
    font-size: 1.1rem;
    margin: 0;
}

.questions-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.question-card:hover {
    border-color: var(--primary-purple-light);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.question-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.rating-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rating-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.rating-option:hover {
    background: rgba(108, 99, 255, 0.1);
}

.rating-option input[type="radio"] {
    display: none;
}

.rating-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-gray);
    background: var(--wizard-bg);
    transition: all 0.3s ease;
}

.rating-option input[type="radio"]:checked + .rating-circle {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
    transform: scale(1.1);
}

.rating-label {
    font-size: 0.85rem;
    color: var(--secondary-gray);
    text-align: center;
    font-weight: 500;
}

.rating-option input[type="radio"]:checked ~ .rating-label {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Goals Selection */
.goals-container {
    max-width: 100%;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.goal-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.goal-card:hover {
    border-color: var(--primary-purple-light);
    box-shadow: 0 5px 15px var(--shadow-light);
    transform: translateY(-2px);
}

.goal-card input[type="checkbox"] {
    display: none;
}

.goal-card input[type="checkbox"]:checked + .goal-content {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin: -1.5rem;
}

.goal-content {
    transition: all 0.3s ease;
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.goal-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.goal-card input[type="checkbox"]:checked + .goal-content h4 {
    color: white;
}

.goal-card p {
    color: var(--secondary-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.goal-card input[type="checkbox"]:checked + .goal-content p {
    color: rgba(255, 255, 255, 0.9);
}

.goals-counter {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.wizard-navigation .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.wizard-navigation .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    color: white;
}

.wizard-navigation .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.wizard-navigation .btn-secondary {
    background: #ffffff;
    color: var(--secondary-gray);
    border: 1px solid var(--border-light);
}

.wizard-navigation .btn-secondary:hover {
    background: var(--light-gray);
}

.wizard-navigation .btn-success {
    background: linear-gradient(135deg, var(--success-green), #34ce57);
    color: white;
}

.wizard-navigation .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.wizard-navigation .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wizard-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .wizard-progress {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .progress-bar {
        width: 100%;
    }
    
    .wizard-content {
        padding: 2rem 1rem;
    }
    
    .wizard-step {
        padding: 2rem 1.5rem;
    }
    
    .rating-options {
        gap: 0.5rem;
    }
    
    .rating-option {
        min-width: 80px;
        padding: 0.5rem;
    }
    
    .rating-circle {
        width: 40px;
        height: 40px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-navigation .btn {
        width: 100%;
    }
}

/* =========== Navigation =========== */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid var(--accent-dark-gray);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--highlight-gray);
}

.dropdown-menu-dark {
    background-color: var(--accent-dark-gray);
    border: 1px solid var(--secondary-gray);
}

.dropdown-item {
    color: var(--text-white);
}

.dropdown-item:hover {
    background-color: var(--secondary-gray);
}

/* Coach IA Dropdown Menu */
.coach-dropdown {
    min-width: 320px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.coach-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: transparent;
    margin-bottom: 4px;
}

.coach-item:last-child {
    margin-bottom: 0;
}

.coach-item:hover {
    background: rgba(48, 132, 242, 0.12);
    transform: translateX(4px);
}

.coach-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(48, 132, 242, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(48, 132, 242, 0.25);
}

.coach-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.coach-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.coach-item-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Mega Menu Styles */
.has-megamenu {
    position: static !important;
}

.megamenu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    border-radius: 0;
    margin-top: 0;
    background-color: var(--accent-dark-gray);
    border: none;
    border-top: 1px solid var(--secondary-gray);
    border-bottom: 1px solid var(--secondary-gray);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.megamenu-section {
    height: 100%;
    padding: 1rem;
}

.megamenu-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-size: 1.1rem;
}

.megamenu-desc {
    color: var(--highlight-gray);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.megamenu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-links li {
    margin-bottom: 0.75rem;
}

.megamenu-links li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
}

.megamenu-links li a:hover {
    color: var(--highlight-gray);
    transform: translateX(3px);
}

.megamenu-feature {
    background-color: rgba(26, 26, 26, 0.75);
    border-radius: 10px;
    padding: 1rem;
}

.megamenu-feature h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.megamenu-feature p {
    margin-bottom: 0;
    color: var(--highlight-gray);
}

/* Rounded button in navbar */
.navbar-dark .navbar-nav .nav-link.btn {
    margin-top: 2px;
    line-height: 1;
}

/* Make dropdown caret more visible */
.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: 0.15em;
    opacity: 0.7;
}

@media (max-width: 991.98px) {
    .megamenu {
        padding: 0;
    }
    
    .megamenu-section {
        border-bottom: 1px solid var(--secondary-gray);
        padding: 1.5rem;
    }
    
    .megamenu-section:last-child {
        border-bottom: none;
    }
}

/* =========== Modern Hero Section =========== */
.modern-hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 100vh;
    overflow: hidden;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(168, 85, 247, 0.1) 25%, 
        rgba(0, 0, 0, 0) 50%
    );
    animation: mesh-float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes mesh-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(2deg); }
    66% { transform: translate(-1%, 3%) rotate(-1deg); }
}

.modern-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3BaseFilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/baseFilter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, #050505 0%, rgba(5, 5, 5, 0) 25%, rgba(5, 5, 5, 0) 75%, #050505 100%),
        radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.2), transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Optimizado - Carga Rápida */
.hero-title-optimized {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.text-gradient-main {
    background: linear-gradient(to bottom right, #ffffff 30%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.hero-description-alt {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.text-secondary-small {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    .hero-title-optimized {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Background animado */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Aurora Boreal Waves */
.aurora-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.aurora {
    position: absolute;
    width: 200%;
    height: 200px;
    filter: blur(20px);
    opacity: 0.3;
    animation: aurora-flow 15s ease-in-out infinite;
}

.aurora-1 {
    top: 20%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.6), transparent);
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.aurora-2 {
    top: 50%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.5), transparent);
    animation-delay: 5s;
    transform: rotate(10deg);
}

.aurora-3 {
    top: 70%;
    background: linear-gradient(90deg, transparent, rgba(67, 233, 123, 0.2), rgba(56, 249, 215, 0.4), transparent);
    animation-delay: 10s;
    transform: rotate(-5deg);
}

@keyframes aurora-flow {
    0%, 100% {
        transform: translateX(-50%) rotate(var(--rotation, 0deg));
        opacity: 0.2;
    }
    50% {
        transform: translateX(0%) rotate(var(--rotation, 0deg));
        opacity: 0.6;
    }
}

/* Hero Optimizado - Carga Rápida */
.hero-title-optimized {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.text-gradient-main {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-title-optimized {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Grid de puntos ultra finos */
.fine-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(102, 126, 234, 0.15) 0.5px, transparent 0.5px);
    background-size: 60px 60px;
    animation: fine-grid-drift 25s linear infinite;
    filter: blur(0.5px);
}

@keyframes fine-grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Líneas geométricas finas */
.geometric-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    animation: line-drift 20s ease-in-out infinite;
}

.line-1 {
    width: 300px;
    height: 1px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.line-2 {
    width: 200px;
    height: 1px;
    top: 35%;
    right: 15%;
    animation-delay: 3s;
    transform: rotate(-30deg);
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.2), transparent);
}

.line-3 {
    width: 400px;
    height: 1px;
    top: 60%;
    left: 20%;
    animation-delay: 6s;
    transform: rotate(15deg);
    background: linear-gradient(90deg, transparent, rgba(67, 233, 123, 0.2), transparent);
}

.line-4 {
    width: 250px;
    height: 1px;
    top: 80%;
    right: 25%;
    animation-delay: 9s;
    transform: rotate(-45deg);
}

.line-5 {
    width: 150px;
    height: 1px;
    top: 25%;
    left: 60%;
    animation-delay: 12s;
    transform: rotate(75deg);
    background: linear-gradient(90deg, transparent, rgba(56, 249, 215, 0.2), transparent);
}

.line-6 {
    width: 350px;
    height: 1px;
    top: 45%;
    left: 5%;
    animation-delay: 15s;
    transform: rotate(-15deg);
}

@keyframes line-drift {
    0%, 100% {
        opacity: 0.1;
        transform: translateX(0) rotate(var(--rotation));
    }
    50% {
        opacity: 0.4;
        transform: translateX(20px) rotate(var(--rotation));
    }
}

/* Círculos orbitales finos */
.orbital-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-rotate 30s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(102, 126, 234, 0.15);
    animation-duration: 25s;
}

.ring-2 {
    width: 500px;
    height: 500px;
    border-color: rgba(79, 172, 254, 0.1);
    animation-duration: 35s;
    animation-direction: reverse;
}

.ring-3 {
    width: 700px;
    height: 700px;
    border-color: rgba(67, 233, 123, 0.08);
    animation-duration: 45s;
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Partículas ultra finas */
.ultra-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.micro-particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: #4facfe;
    border-radius: 50%;
    animation: micro-float 15s linear infinite;
    box-shadow: 0 0 2px #4facfe;
}

.micro-particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; background: #667eea; box-shadow: 0 0 2px #667eea; }
.micro-particle:nth-child(2) { top: 20%; left: 15%; animation-delay: 1s; background: #4facfe; box-shadow: 0 0 2px #4facfe; }
.micro-particle:nth-child(3) { top: 30%; left: 25%; animation-delay: 2s; background: #43e97b; box-shadow: 0 0 2px #43e97b; }
.micro-particle:nth-child(4) { top: 40%; left: 35%; animation-delay: 3s; background: #38f9d7; box-shadow: 0 0 2px #38f9d7; }
.micro-particle:nth-child(5) { top: 50%; left: 45%; animation-delay: 4s; background: #667eea; box-shadow: 0 0 2px #667eea; }
.micro-particle:nth-child(6) { top: 60%; left: 55%; animation-delay: 5s; background: #4facfe; box-shadow: 0 0 2px #4facfe; }
.micro-particle:nth-child(7) { top: 70%; left: 65%; animation-delay: 6s; background: #43e97b; box-shadow: 0 0 2px #43e97b; }
.micro-particle:nth-child(8) { top: 80%; left: 75%; animation-delay: 7s; background: #38f9d7; box-shadow: 0 0 2px #38f9d7; }
.micro-particle:nth-child(9) { top: 15%; right: 10%; animation-delay: 8s; background: #667eea; box-shadow: 0 0 2px #667eea; }
.micro-particle:nth-child(10) { top: 25%; right: 20%; animation-delay: 9s; background: #4facfe; box-shadow: 0 0 2px #4facfe; }
.micro-particle:nth-child(11) { top: 35%; right: 30%; animation-delay: 10s; background: #43e97b; box-shadow: 0 0 2px #43e97b; }
.micro-particle:nth-child(12) { top: 45%; right: 40%; animation-delay: 11s; background: #38f9d7; box-shadow: 0 0 2px #38f9d7; }
.micro-particle:nth-child(13) { top: 55%; right: 50%; animation-delay: 12s; background: #667eea; box-shadow: 0 0 2px #667eea; }
.micro-particle:nth-child(14) { top: 65%; right: 60%; animation-delay: 13s; background: #4facfe; box-shadow: 0 0 2px #4facfe; }
.micro-particle:nth-child(15) { top: 75%; right: 70%; animation-delay: 14s; background: #43e97b; box-shadow: 0 0 2px #43e97b; }
.micro-particle:nth-child(16) { top: 85%; right: 80%; animation-delay: 15s; background: #38f9d7; box-shadow: 0 0 2px #38f9d7; }
.micro-particle:nth-child(17) { top: 12%; left: 50%; animation-delay: 16s; background: #667eea; box-shadow: 0 0 2px #667eea; }
.micro-particle:nth-child(18) { top: 22%; left: 60%; animation-delay: 17s; background: #4facfe; box-shadow: 0 0 2px #4facfe; }
.micro-particle:nth-child(19) { top: 32%; left: 70%; animation-delay: 18s; background: #43e97b; box-shadow: 0 0 2px #43e97b; }
.micro-particle:nth-child(20) { top: 42%; left: 80%; animation-delay: 19s; background: #38f9d7; box-shadow: 0 0 2px #38f9d7; }

@keyframes micro-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(10px);
        opacity: 0;
    }
}

/* Capas de profundidad */
.depth-layers {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.depth-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at random, rgba(102, 126, 234, 0.05), transparent 70%);
}

.depth-far {
    filter: blur(8px);
    animation: depth-drift-far 40s ease-in-out infinite;
}

.depth-mid {
    filter: blur(4px);
    animation: depth-drift-mid 30s ease-in-out infinite;
    background: radial-gradient(circle at 30% 60%, rgba(79, 172, 254, 0.03), transparent 70%);
}

.depth-close {
    filter: blur(2px);
    animation: depth-drift-close 20s ease-in-out infinite;
    background: radial-gradient(circle at 70% 30%, rgba(67, 233, 123, 0.02), transparent 70%);
}

@keyframes depth-drift-far {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(20px, 10px); opacity: 0.1; }
}

@keyframes depth-drift-mid {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(-15px, 15px); opacity: 0.2; }
}

@keyframes depth-drift-close {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    50% { transform: translate(10px, -10px); opacity: 0.1; }
}

/* Contenido del hero centrado */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-center {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Badge del hero refinado */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    margin-bottom: 3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: #4facfe;
    font-size: 0.9rem;
}

/* Título del hero simplificado */
.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #4facfe 50%, #43e97b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease-in-out infinite;
    background-size: 200% 200%;
    display: block;
    margin-bottom: 1rem;
}

@keyframes gradient-flow {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

.typewriter-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

.dynamic-text {
    display: block;
    height: 1.6em;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 1rem;
    min-height: 1.6em;
}

.text-highlight {
    display: block;
    background: linear-gradient(45deg, #4facfe, #43e97b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-slide 12s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    line-height: 1.6;
}

.text-highlight:nth-child(1) { animation-delay: 0s; }
.text-highlight:nth-child(2) { animation-delay: 4s; }
.text-highlight:nth-child(3) { animation-delay: 8s; }

@keyframes text-slide {
    0%, 30% { 
        opacity: 0;
        transform: translateY(100%);
    }
    35%, 65% { 
        opacity: 1;
        transform: translateY(0);
    }
    70%, 100% { 
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Descripción del hero elegante */
.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-align: center;
    padding: 0 1rem;
}

.highlight-phrase {
    color: #4facfe;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

/* Estadísticas refinadas */
.hero-stats {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.stat-item {
    text-align: center;
    position: relative;
    min-width: 120px;
    padding: 0 1rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: #4facfe;
    border-radius: 50%;
    box-shadow: 0 0 10px #4facfe;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #4facfe;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    display: block;
}

.stat-number span {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.stat-label {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 100px;
    margin: 0 auto;
}

/* Botón central elegante */
.hero-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-modern {
    position: relative;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-modern.btn-primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(79, 172, 254, 0.15));
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-modern:hover .btn-glow {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Indicador de scroll refinado */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(79, 172, 254, 0.8), transparent);
    position: relative;
    animation: scroll-pulse 2.5s ease-in-out infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-top: 1px solid #4facfe;
    border-right: 1px solid #4facfe;
    transform: translateX(-50%) rotate(-45deg);
    animation: arrow-glow 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { 
        opacity: 0.4;
        transform: translateY(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(8px);
    }
}

@keyframes arrow-glow {
    0%, 100% { 
        box-shadow: 0 0 0px #4facfe;
    }
    50% { 
        box-shadow: 0 0 8px #4facfe;
    }
}

/* Responsive refinado */
@media (max-width: 768px) {
    .modern-hero-section {
        background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        letter-spacing: -1px;
        line-height: 1.15;
        margin-bottom: 2rem;
    }
    
    .dynamic-text {
        height: 1.4em;
        min-height: 1.4em;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .text-highlight {
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        min-width: 90px;
        padding: 0 0.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        max-width: 80px;
    }
    
    .hero-actions {
        margin-bottom: 3rem;
    }
    
    .btn-modern {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Simplificar animaciones en móvil */
    .aurora {
        filter: blur(15px);
        opacity: 0.2;
    }
    
    .geometric-lines,
    .orbital-rings {
        display: none;
    }
    
    .micro-particle {
        display: none;
    }
    
    .micro-particle:nth-child(-n+8) {
        display: block;
    }
    
    .scroll-indicator {
        bottom: 2rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-center {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* =========== Features Section =========== */
.features-section {
    padding: 5rem 0;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--highlight-gray);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* =========== Coaching Types Section =========== */
.coaching-types-section {
    padding: 5rem 0;
}

.coaching-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.coaching-card:hover {
    transform: translateY(-5px);
}

.coaching-card h3 {
    margin-bottom: 1rem;
}

.coaching-card h3 i {
    margin-right: 0.5rem;
    color: var(--highlight-gray);
}

.coaching-card p {
    margin-bottom: 2rem;
    color: var(--highlight-gray);
}

.coaching-card .btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

/* =========== Auth Pages =========== */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.auth-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
}

.form-control {
    background-color: var(--input-bg);
    border: 1px solid var(--secondary-gray);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.form-control:focus {
    background-color: var(--input-bg);
    border-color: var(--highlight-gray);
    color: var(--text-white);
    box-shadow: none;
}

.form-label {
    color: var(--highlight-gray);
    font-weight: 500;
}

/* =========== Dashboard =========== */
.dashboard-container {
    padding: 2rem 0;
}

.dashboard-header {
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    margin-bottom: 0.5rem;
}

.session-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.session-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.session-icon {
    font-size: 2rem;
    color: var(--highlight-gray);
    margin-bottom: 1rem;
}

.sessions-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    min-height: 300px;
}

.session-item {
    border-left: 4px solid var(--accent-dark-gray);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.session-item:hover {
    border-left-color: var(--highlight-gray);
    background-color: rgba(40, 40, 40, 0.8);
}

.session-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.session-item-header h4 {
    margin-bottom: 0;
}

.session-meta {
    font-size: 0.85rem;
    color: var(--highlight-gray);
}

.session-meta span {
    margin-right: 1rem;
}

.dashboard-sidebar {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--secondary-gray);
}

.profile-initial {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--accent-dark-gray);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.profile-section h3 {
    margin-bottom: 0.5rem;
}

.member-since {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--highlight-gray);
}

.stats-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--secondary-gray);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: var(--highlight-gray);
}

.tip-section h3 {
    margin-bottom: 1rem;
}

.tip-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    font-size: 1.5rem;
    color: var(--warning-yellow);
}

/* =========== Coaching Session =========== */
.coaching-session-container {
    padding: 2rem 0;
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

#timerDisplay {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.timer-controls {
    display: flex;
    gap: 0.5rem;
}

.conversation-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    height: 70vh;
    display: flex;
    flex-direction: column;
}

.conversation-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--secondary-gray);
}

.conversation-header h2 {
    margin-bottom: 0;
}

.messages-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.message {
    display: flex;
    margin-bottom: 1.5rem;
}

.coach-message {
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
    align-items: flex-start;
}

.message-avatar {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    background-color: var(--accent-dark-gray);
    color: var(--text-white);
}

.user-message .message-avatar {
    background-color: var(--secondary-gray);
}

.message-content {
    max-width: 75%;
}

.message-bubble {
    padding: 1rem;
    border-radius: 15px;
    background-color: var(--accent-dark-gray);
}

.user-message .message-bubble {
    background-color: var(--secondary-gray);
    border-radius: 15px;
}

.input-container {
    padding: 1rem;
    border-top: 1px solid var(--secondary-gray);
}

.voice-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.voice-indicator {
    display: none;
    align-items: center;
    gap: 4px;
}

.voice-indicator.active {
    display: flex;
}

.voice-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success-green);
    animation: pulse 1.5s infinite ease-in-out;
}

.voice-indicator-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.voice-indicator-dot:nth-child(3) {
    animation-delay: 1s;
}

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

.session-guide {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    height: 70vh;
    display: flex;
    flex-direction: column;
}

.guide-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--secondary-gray);
}

.guide-header h2 {
    margin-bottom: 0;
}

.guide-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.guide-section {
    margin-bottom: 2rem;
}

.guide-section h3 {
    margin-bottom: 1rem;
    color: var(--highlight-gray);
}

.guide-section ul {
    padding-left: 1.5rem;
}

.guide-section li {
    margin-bottom: 0.5rem;
}

/* Modal custom styling */
.modal-content {
    background-color: var(--card-bg);
    color: var(--text-white);
    border: 1px solid var(--secondary-gray);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid var(--secondary-gray);
}

.modal-footer {
    border-top: 1px solid var(--secondary-gray);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.session-summary-preview {
    background-color: var(--accent-dark-gray);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

/* =========== Session Summary =========== */
.summary-container {
    padding: 2rem 0;
}

.summary-header {
    margin-bottom: 2rem;
}

.summary-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    color: var(--highlight-gray);
}

.section-header {
    margin-bottom: 1.5rem;
}

.transcript-container, .feedback-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.transcript-text, .feedback-text {
    background-color: var(--accent-dark-gray);
    border-radius: 10px;
    padding: 1.5rem;
    white-space: pre-wrap;
}

.summary-sidebar {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.summary-section, .recommendations-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--secondary-gray);
}

.summary-text {
    background-color: var(--accent-dark-gray);
    border-radius: 10px;
    padding: 1.5rem;
}

.recommendations-list {
    list-style-type: none;
    padding: 0;
}

.recommendation-item {
    background-color: var(--accent-dark-gray);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.recommendation-item:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--success-green);
    position: absolute;
    left: 1rem;
    top: 1rem;
}

.actions-section {
    display: flex;
    gap: 1rem;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: var(--secondary-gray);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state.small {
    padding: 1.5rem;
}

.empty-state.small i {
    font-size: 2rem;
}

/* =========== Footer =========== */
.footer {
    border-top: 1px solid var(--accent-dark-gray);
    padding: 2rem 0;
    margin-top: 3rem;
}

/* =========== Responsive Adjustments =========== */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-text {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .dashboard-sidebar {
        margin-top: 2rem;
    }
    
    .session-header {
        flex-direction: column;
        text-align: center;
    }
    
    .session-timer {
        margin-top: 1rem;
    }
    
    .conversation-container, .session-guide {
        height: auto;
        margin-bottom: 2rem;
    }
    
    .messages-container {
        max-height: 50vh;
    }
    
    .guide-content {
        max-height: 50vh;
    }
}

@media (max-width: 767.98px) {
    .auth-card {
        padding: 2rem;
    }
    
    .feature-card, .coaching-card, .session-card {
        margin-bottom: 1rem;
    }
}

/* =========== Startup Footer Styles =========== */
.startup-footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.startup-footer .footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.startup-footer .footer-links {
    margin: 0;
    padding: 0;
}

.startup-footer .footer-links li {
    margin-bottom: 0.4rem;
}

.startup-footer .footer-links a {
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.startup-footer .footer-links a:hover {
    opacity: 0.7;
}

.startup-footer .btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.startup-footer .btn:hover {
    opacity: 0.8;
}

.startup-footer p {
    color: #ffffff;
    font-size: 0.85rem;
}

.startup-footer strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .startup-footer .row > div {
        margin-bottom: 1.5rem;
    }
    
    .startup-footer .col-md-6:last-child {
        text-align: center !important;
    }
}

@media (max-width: 767.98px) {
    .startup-footer {
        padding: 2.5rem 0 !important;
    }
    
    .startup-footer .footer-title {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .startup-footer .footer-links {
        text-align: center;
    }
    
    .startup-footer .row.mt-4 {
        margin-top: 1.5rem !important;
        text-align: center;
    }
}
