/**
 * EAAS Theme - Welcome Section Styles
 *
 * @package    EAAS
 * @version    2.5
 * @author     Rodolphe
 * @link       https://enaccordavecsoi.fr
 * @file       welcome.css
 */

.welcome-premium {
    --welcome-radius: var(--border-radius-xl, 16px);
    --welcome-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.08));
    --welcome-transition: var(--transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
}

.hero-section {
    position: relative;
    min-height: var(--hero-min-height, 90vh);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--section-padding, 60px) var(--container-padding, 20px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: var(--dots-size, 30px) var(--dots-size, 30px);
}

.hero-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Hide old hero circles if HTML is present */
.hero-circle {
    display: none !important;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.circle.c1 {
    width: var(--circle-1-size, 400px);
    height: var(--circle-1-size, 400px);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle.c2 {
    width: var(--circle-2-size, 300px);
    height: var(--circle-2-size, 300px);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.circle.c3 {
    width: var(--circle-3-size, 200px);
    height: var(--circle-3-size, 200px);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.02); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--hero-max-width, 100%);
    width: 100%;
}

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

.hero-logo {
    position: relative;
    width: var(--hero-logo-size, 120px);
    height: var(--hero-logo-size, 120px);
    margin: 0 auto var(--spacing-xl, 30px);
}

.logo-ring {
    position: absolute;
    inset: 0;
    animation: spin 20s linear infinite;
}

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

.logo-inner {
    position: absolute;
    inset: var(--spacing-sm, 15px);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--welcome-shadow);
}

.logo-letter {
    font-size: var(--logo-letter-size, 48px);
    font-weight: var(--font-weight-extrabold, 800);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs, 12px);
    margin-bottom: var(--spacing-xl, 30px);
    flex-wrap: wrap;
}

.badge {
    padding: var(--spacing-2xs, 6px) var(--spacing-md, 16px);
    border-radius: var(--badge-radius, 20px);
    font-size: var(--font-size-sm, 13px);
    font-weight: var(--font-weight-semibold, 600);
}

.badge.version {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white, white);
}

.badge.new {
    background: var(--success);
    color: var(--white, white);
}

.badge.new.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.badge.wp {
    background: var(--light-bg);
    color: var(--text-color);
    border: var(--border-width, 1px) solid var(--muted-border);
}

.hero-title {
    margin-bottom: var(--spacing-md, 20px);
}

.hero-title .line1 {
    display: block;
    font-size: var(--hero-title-size, 56px);
    font-weight: var(--font-weight-extrabold, 800);
    color: var(--primary-color);
    line-height: var(--line-height-tight, 1.1);
    margin-bottom: var(--spacing-xs, 10px);
}

.hero-title .line2 {
    display: block;
    font-size: var(--hero-subtitle-size, 32px);
    font-weight: var(--font-weight-semibold, 600);
}

.hero-desc {
    font-size: var(--font-size-lg, 18px);
    color: var(--text-color);
    line-height: var(--line-height-relaxed, 1.7);
    margin-bottom: var(--spacing-2xl, 40px);
    max-width: var(--text-max-width, 600px);
    margin-left: auto;
    margin-right: auto;
}

.hero-desc strong {
    color: var(--secondary-color);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl, 40px);
    margin-bottom: var(--spacing-3xl, 50px);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: var(--stat-font-size, 42px);
    font-weight: var(--font-weight-extrabold, 800);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs, 8px);
}

.stat-label {
    font-size: var(--font-size-sm, 14px);
    color: var(--muted-color);
    font-weight: var(--font-weight-medium, 500);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md, 16px);
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs, 10px);
    padding: var(--button-padding-y-lg, 16px) var(--button-padding-x, 32px);
    border-radius: var(--border-radius-lg, 12px);
    font-size: var(--button-font-size, 16px);
    font-weight: var(--font-weight-semibold, 600);
    text-decoration: none;
    transition: var(--welcome-transition);
    border: none;
    cursor: pointer;
}

.welcome-premium .hero-btn.primary,
.hero-btn.primary {
    background: linear-gradient(135deg, var(--secondary-color, #4a90e2), var(--accent-color, #f39c12)) !important;
    color: var(--white, #ffffff) !important;
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(74, 144, 226, 0.3));
}

.welcome-premium .hero-btn.primary:hover,
.hero-btn.primary:hover {
    transform: translateY(var(--hover-lift, -3px));
    box-shadow: var(--shadow-xl, 0 12px 40px rgba(74, 144, 226, 0.4));
    filter: brightness(1.1);
}

.hero-btn.secondary {
    background: var(--white);
    color: var(--text-color);
    border: var(--button-border-width, 2px) solid var(--muted-border);
}

.hero-btn.secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-arrow {
    transition: var(--transition, transform 0.3s);
}

.hero-btn:hover .btn-arrow {
    transform: translateX(var(--spacing-2xs, 4px));
}

.showcase-section {
    padding: var(--section-padding-lg, 80px) var(--container-padding, 20px);
    background: var(--light-bg);
}

.showcase-container {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
}

.showcase-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs, 8px);
    margin-bottom: var(--spacing-2xl, 40px);
    flex-wrap: wrap;
    background: var(--white);
    padding: var(--spacing-xs, 8px);
    border-radius: var(--border-radius-xl, 16px);
    box-shadow: var(--shadow-sm);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs, 8px);
    padding: var(--spacing-xs, 12px) var(--spacing-lg, 24px);
    border: none;
    background: transparent;
    border-radius: var(--border-radius-lg, 12px);
    font-size: var(--font-size-sm, 14px);
    font-weight: var(--font-weight-medium, 500);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--welcome-transition);
}

.nav-btn:hover {
    background: var(--light-bg);
}

.nav-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white, white);
}

.nav-icon {
    font-size: var(--font-size-lg, 18px);
}

.showcase-panels {
    background: var(--white);
    border-radius: var(--welcome-radius);
    box-shadow: var(--welcome-shadow);
    overflow: hidden;
}

.panel {
    display: none;
    padding: var(--spacing-2xl, 40px);
    animation: fadeIn 0.3s ease-out;
}

.panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(var(--spacing-xs, 10px)); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md, 20px);
    margin-bottom: var(--spacing-2xl, 40px);
    padding-bottom: var(--spacing-xl, 30px);
    border-bottom: var(--border-width, 1px) solid var(--muted-border);
    flex-wrap: wrap;
}

.header-icon {
    width: var(--header-icon-size, 56px);
    height: var(--header-icon-size, 56px);
    border-radius: var(--border-radius-lg, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon svg {
    width: 28px;
    height: 28px;
}

.header-text {
    flex: 1;
}

.header-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px;
}

.header-text p {
    font-size: 14px;
    color: var(--muted-color);
    margin: 0;
}

.header-action {
    padding: 10px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--welcome-transition);
}

.header-action:hover {
    background: var(--secondary-color);
    color: white;
}

.color-palette-3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.palette-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--welcome-transition);
    animation: cardAppear 0.5s ease-out both;
}

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

.palette-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-color {
    height: 140px;
    background: var(--color);
    position: relative;
    overflow: hidden;
}

.card-color::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
}

.card-info {
    padding: 20px;
    text-align: center;
}

.card-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.card-info code {
    background: var(--light-bg);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 500;
}

.gradients-row {
    margin-bottom: 40px;
}

.gradients-row h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.gradient-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gradient-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.gradient-preview {
    height: 80px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gradient-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.color-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.color-group {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
}

.color-group h4 {
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.color-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--muted-border);
}

.color-row:last-child {
    border-bottom: none;
}

.color-dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
}

.color-dot.bordered {
    border: 2px solid var(--muted-border);
}

.color-row span {
    flex: 1;
    font-size: 13px;
    color: var(--text-color);
}

.color-row code {
    font-size: 12px;
    color: var(--muted-color);
    background: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
}

.status-row h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.status-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.status-card {
    flex: 1;
    min-width: 120px;
    padding: 20px;
    background: var(--status);
    border-radius: 12px;
    text-align: center;
    color: white;
    transition: var(--welcome-transition);
}

.status-card:hover {
    transform: scale(1.05);
}

.status-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.status-name {
    font-size: 14px;
    font-weight: 500;
}

.typo-preview {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.typo-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--muted-border);
}

.typo-row:last-child {
    border-bottom: none;
}

.typo-meta {
    width: 100px;
    flex-shrink: 0;
}

.typo-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.typo-size {
    display: block;
    font-size: 12px;
    color: var(--muted-color);
}

.typo-sample {
    margin: 0;
    color: var(--primary-color);
    line-height: 1.3;
}

.devices-row h3 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.devices {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.device {
    text-align: center;
}

.device-screen {
    background: var(--light-bg);
    border: 3px solid var(--muted-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.device.desktop .device-screen {
    width: 200px;
    height: 130px;
}

.device.tablet .device-screen {
    width: 140px;
    height: 180px;
}

.device.mobile .device-screen {
    width: 90px;
    height: 160px;
    border-radius: 16px;
}

.device-h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.device-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.device-val {
    font-size: 12px;
    color: var(--muted-color);
}

.comp-section {
    margin-bottom: 40px;
}

.comp-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.buttons-demo {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.demo-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--welcome-transition);
    border: 2px solid transparent;
}

.demo-btn.primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-color: transparent;
}

.demo-btn.secondary {
    background: var(--primary-color);
    color: white;
}

.demo-btn.outline {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.demo-btn.ghost {
    background: transparent;
    color: var(--text-color);
}

.demo-btn:hover {
    transform: translateY(-2px);
}

.shadows-demo {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.shadow-box {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--welcome-transition);
}

.shadow-box.sm { box-shadow: var(--shadow-sm); }
.shadow-box.md { box-shadow: var(--shadow-md); }
.shadow-box.lg { box-shadow: var(--shadow-lg); }
.shadow-box.xl { box-shadow: var(--shadow-xl); }

.shadow-box:hover {
    transform: translateY(-4px);
}

.radius-demo {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radius-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.radius-box.r-sm { border-radius: 4px; }
.radius-box.r-md { border-radius: 8px; }
.radius-box.r-lg { border-radius: 12px; }
.radius-box.r-xl { border-radius: 16px; }
.radius-box.r-full { border-radius: 50%; }

.layout-demo {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.layout-box {
    background: var(--white);
    border: 2px dashed var(--muted-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.container-box {
    background: rgba(74, 144, 226, 0.1);
}

.content-box {
    background: rgba(243, 156, 18, 0.1);
    margin: 20px auto 0;
    max-width: 60%;
}

.layout-box span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid;
    transition: var(--welcome-transition);
    animation: cardAppear 0.5s ease-out both;
}

.security-item.on {
    border-left-color: var(--success);
}

.security-item.off {
    border-left-color: var(--danger);
    opacity: 0.7;
}

.security-item:hover {
    transform: translateX(4px);
}

.sec-icon {
    font-size: 20px;
}

.sec-label {
    flex: 1;
    font-size: 14px;
    color: var(--text-color);
}

.sec-status {
    font-size: 16px;
    font-weight: 600;
}

.security-item.on .sec-status {
    color: var(--success);
}

.security-item.off .sec-status {
    color: var(--danger);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 10px;
}

.security-note span {
    font-size: 24px;
}

.security-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: var(--welcome-transition);
    animation: cardAppear 0.5s ease-out both;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--muted-color);
    line-height: 1.6;
    margin: 0;
}

.welcome-note {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.note-icon {
    font-size: 28px;
}

.welcome-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hero-title .line1 {
        font-size: 42px;
    }

    .hero-title .line2 {
        font-size: 26px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-num {
        font-size: 32px;
    }

    .color-palette-3d {
        grid-template-columns: repeat(3, 1fr);
    }

    .color-groups {
        grid-template-columns: 1fr;
    }

    .panel {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .hero-title .line1 {
        font-size: 32px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-title .line2 {
        font-size: 20px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 28px;
    }

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

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .showcase-nav {
        padding: 6px;
    }

    .nav-btn {
        padding: 10px 16px;
    }

    .nav-text {
        display: none;
    }

    .color-palette-3d {
        grid-template-columns: 1fr;
    }

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

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

    .panel-header {
        flex-direction: column;
        text-align: center;
    }

    .devices {
        gap: 20px;
    }

    .device.desktop .device-screen {
        width: 150px;
        height: 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .welcome-note {
        flex-direction: column;
        text-align: center;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .logo-letter {
        font-size: 36px;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        padding: 4px 12px;
        font-size: 11px;
    }

    .hero-title .line1 {
        font-size: 28px;
    }

    .hero-title .line2 {
        font-size: 18px;
    }

    .panel {
        padding: 20px;
    }

    .typo-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .typo-meta {
        width: auto;
        margin-bottom: 10px;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix Hero Section Colors */
.welcome-premium.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: var(--white) !important;
}

.welcome-premium.hero-section h1,
.welcome-premium.hero-section h2,
.welcome-premium.hero-section h3,
.welcome-premium.hero-section p,
.welcome-premium.hero-section .lead {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.welcome-premium .hero-dots {
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px) !important;
}

.welcome-premium .hero-gradient {
    background: linear-gradient(135deg, var(--primary-color, #1a1a2e) 0%, var(--secondary-color, #4a90e2) 100%);
    opacity: 0.9;
}

.welcome-premium.hero-section .hero-title .line1,
.welcome-premium.hero-section .hero-desc,
.welcome-premium.hero-section .hero-desc strong {
    color: var(--white, #ffffff) !important;
}
