/**
 * Register Page Styles
 * Professional registration landing page with solutions-style gradient hero
 */

/* Hero Section with Solutions-style gradient */
.register-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e293b 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.register-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.register-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.register-hero__badge .badge {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.register-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.register-hero__title .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.register-hero__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-check i {
    color: #0ea5e9;
    font-size: 18px;
}

.register-hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn--xl {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.register-hero__trust {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.register-hero__trust i {
    color: #0ea5e9;
}

/* Hero Visual - Dashboard Mockup */
.register-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    width: 100%;
    max-width: 500px;
    animation: heroFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: scale(1.05);
}

.mockup-window {
    background: white;
    border-radius: 12px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.window-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control--close {
    background: #ff5f57;
}

.control--minimize {
    background: #ffbd2e;
}

.control--maximize {
    background: #28ca42;
}

.window-title {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.window-content {
    height: 300px;
    background: white;
}

.dashboard-preview {
    display: flex;
    height: 100%;
}

.dashboard-sidebar {
    width: 200px;
    background: #2c3e50;
    padding: 20px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-item i {
    width: 16px;
}

.dashboard-main {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
}

.dashboard-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.dashboard-chart {
    background: white;
    height: 150px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.chart-area {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0ea5e9 0%, #1e293b 100%);
    opacity: 0.1;
    border-radius: 8px;
}

/* Benefits Section */
.register-benefits {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.benefit-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.benefit-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

/* Social Proof Section */
.register-social-proof {
    padding: 100px 0;
    background: white;
}

.social-proof-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.author-role {
    color: #666;
    font-size: 0.9rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Final CTA Section */
.register-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #0ea5e9 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-actions {
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.feature-item i {
    color: #0ea5e9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .register-hero__title {
        font-size: 2.5rem;
    }
    
    .register-hero__actions {
        justify-content: center;
    }
    
    .btn--xl {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cta-features {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-mockup {
        transform: none;
    }
    
    .hero-mockup:hover {
        transform: none;
    }
    
    .dashboard-preview {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        height: 120px;
        overflow-x: auto;
        display: flex;
        padding: 10px 0;
    }
    
    .sidebar-item {
        white-space: nowrap;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .register-hero {
        padding: 60px 0 80px;
    }
    
    .register-hero__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-proof-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Hero Mockup Animation */
@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}
