/* Clean Hero Section with White Background */
.hero {
    position: relative;
    min-height: 90vh;
    background: #ffffff;
    overflow: visible;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Clean Logo Design */
.clean-logo-container {
    margin-bottom: 0px;
    position: relative;
}

.clean-logo {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    letter-spacing: -2px;
    animation: logo-float 8s ease-in-out infinite;
    margin-bottom: 10px;
}

.clean-logo-subtitle {
    display: none;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced Abstract Animations */

/* Abstract background elements */
.abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    background: none;
}

/* Enhanced gradient circles */
.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(67, 77, 234, 0) 70%);
    opacity: 0.05;
    transform-origin: center center;
    mix-blend-mode: normal;
    width: 6px;
    height: 6px;
}

/* Glow effects */
.glow-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(255, 148, 107, 0) 60%);
    filter: blur(5px);
    mix-blend-mode: normal;
    animation: glow-pulse 10s infinite alternate ease-in-out;
    width: 5px;
    height: 5px;
    opacity: 0.1;
}

.glow-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(67, 77, 234, 0) 70%);
}

.glow-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 20%;
    animation-delay: 2s;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(255, 148, 107, 0) 70%);
}

.glow-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 40%;
    animation-delay: 4s;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(255, 148, 107, 0) 70%);
}

@keyframes glow-pulse {
    0% { opacity: 0.1; transform: scale(0.8); filter: blur(10px); }
    50% { opacity: 0.4; transform: scale(1.2); filter: blur(20px); }
    100% { opacity: 0.1; transform: scale(0.8); filter: blur(10px); }
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 15%;
    right: 10%;
    animation: pulse-rotate 15s infinite alternate ease-in-out;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 5%;
    animation: pulse-rotate 12s infinite alternate-reverse ease-in-out;
    animation-delay: 2s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation: pulse-rotate 10s infinite alternate ease-in-out;
    animation-delay: 1s;
}

@keyframes pulse-rotate {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.9) rotate(0deg);
        opacity: 0.2;
    }
}

/* Floating dots with trails */
.animated-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(67, 77, 234, 0.5);
    z-index: 1;
    opacity: 0.8;
}

.animated-dot:nth-child(even) {
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 148, 107, 0.5);
}

.dot-1 {
    top: 20%;
    right: 10%;
    animation: float-path-1 8s infinite ease-in-out;
}

.dot-2 {
    bottom: 30%;
    left: 15%;
    animation: float-path-2 12s infinite ease-in-out;
}

.dot-3 {
    top: 40%;
    right: 20%;
    animation: float-path-3 10s infinite ease-in-out;
}

.dot-4 {
    top: 15%;
    left: 25%;
    animation: float-path-4 9s infinite ease-in-out;
}

.dot-5 {
    bottom: 20%;
    right: 30%;
    animation: float-path-5 11s infinite ease-in-out;
}

/* Path animations for dots */
@keyframes float-path-1 {
    0% { opacity: 0; transform: translate(0, 0) scale(1); }
    20% { opacity: 0.8; transform: translate(30px, 20px) scale(1.5); }
    40% { opacity: 0.6; transform: translate(60px, -10px) scale(1); }
    60% { opacity: 0.8; transform: translate(30px, -40px) scale(2); }
    80% { opacity: 0.6; transform: translate(-20px, -20px) scale(1); }
    100% { opacity: 0; transform: translate(0, 0) scale(1); }
}

@keyframes float-path-2 {
    0% { opacity: 0; transform: translate(0, 0) scale(1); }
    20% { opacity: 0.7; transform: translate(-40px, -20px) scale(2); }
    40% { opacity: 0.5; transform: translate(-30px, 40px) scale(1); }
    60% { opacity: 0.7; transform: translate(10px, 20px) scale(1.5); }
    80% { opacity: 0.5; transform: translate(30px, -10px) scale(1); }
    100% { opacity: 0; transform: translate(0, 0) scale(1); }
}

@keyframes float-path-3 {
    0% { opacity: 0; transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { opacity: 0.6; transform: translate(-20px, 30px) scale(1.2) rotate(90deg); }
    50% { opacity: 0.8; transform: translate(-40px, 0px) scale(1.5) rotate(180deg); }
    75% { opacity: 0.6; transform: translate(-20px, -30px) scale(1.2) rotate(270deg); }
    100% { opacity: 0; transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes float-path-4 {
    0% { opacity: 0; transform: translate(0, 0) scale(1); }
    33% { opacity: 0.7; transform: translate(40px, 30px) scale(1.8); }
    66% { opacity: 0.5; transform: translate(0px, 60px) scale(1); }
    100% { opacity: 0; transform: translate(0, 0) scale(1); }
}

@keyframes float-path-5 {
    0% { opacity: 0; transform: translate(0, 0) scale(1); }
    20% { opacity: 0.5; transform: translate(20px, -30px) scale(1.3); }
    40% { opacity: 0.7; transform: translate(50px, -10px) scale(1); }
    60% { opacity: 0.5; transform: translate(30px, 30px) scale(1.8); }
    80% { opacity: 0.7; transform: translate(-10px, 20px) scale(1); }
    100% { opacity: 0; transform: translate(0, 0) scale(1); }
}


/* Abstract shapes with more creative elements */
.abstract-shape {
    position: absolute;
    opacity: 0.07;
    pointer-events: none;
    border: 1px solid #4173FF;
    mix-blend-mode: multiply;
}

/* Vibrant particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #4173FF;
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    filter: blur(1px);
    animation: particle-fade 15s infinite ease;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 15%; animation-delay: 2s; }
.particle-3 { bottom: 25%; left: 30%; animation-delay: 4s; }
.particle-4 { top: 15%; right: 25%; animation-delay: 6s; }
.particle-5 { bottom: 15%; right: 30%; animation-delay: 8s; }
.particle-6 { top: 40%; left: 25%; animation-delay: 10s; }

@keyframes particle-fade {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    10%, 90% { opacity: 0.5; }
    50% { opacity: 0.8; transform: translateY(-50px) scale(1.5); }
}

/* Gradient mesh */
.gradient-mesh {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color, rgba(55, 94, 151, 0.05)) 0%, var(--secondary-color, rgba(251, 101, 66, 0.05)) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(20px);
    opacity: 0.4;
    animation: morph 20s infinite ease-in-out alternate;
}

.mesh-1 {
    bottom: 10%;
    right: 20%;
    animation-delay: 0s;
}

.mesh-2 {
    top: 20%;
    left: 15%;
    animation-delay: 5s;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 30% 30% 70% 70% / 70% 30% 70% 30%; }
    75% { border-radius: 70% 70% 30% 30% / 30% 70% 30% 70%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.shape-square {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 10%;
    animation: rotate-fade 15s infinite ease-in-out;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(65, 115, 255, 0.1);
    background: transparent;
    bottom: 25%;
    right: 15%;
    animation: float-rotate 20s infinite ease-in-out;
}

.shape-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #4173FF;
    top: 60%;
    left: 20%;
    animation: pulse-move 12s infinite alternate ease-in-out;
}

@keyframes rotate-fade {
    0% { transform: rotate(0deg) scale(0.8); opacity: 0.05; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.1; }
    100% { transform: rotate(360deg) scale(0.8); opacity: 0.05; }
}

@keyframes float-rotate {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.1; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.05; }
}

@keyframes pulse-move {
    0% { transform: scale(0.8) translate(0, 0); opacity: 0.05; }
    50% { transform: scale(1.2) translate(20px, -20px); opacity: 0.1; }
    100% { transform: scale(0.8) translate(0, 0); opacity: 0.05; }
}

/* Hero Text */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-button {
    background: #4173FF;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(65, 115, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(65, 115, 255, 0.3);
}

.secondary-button {
    background: #f5f5f5;
    color: #333;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #eaeaea;
    transform: translateY(-3px);
}

/* Stats Section - Clean Version */
.stats {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    gap: 60px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    height: 40px;
    width: 1px;
    background-color: #eaeaea;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #4173FF;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .clean-logo {
        font-size: 120px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 0 0 0;
        min-height: unset;
        overflow: visible;
    }
    
    .hero-content {
        padding: 0;
        overflow: visible;
        max-width: 100%;
    }
    
    .clean-logo {
        font-size: 90px;
        margin-bottom: 5px;
    }
    
    .clean-logo-subtitle {
        display: block;
        font-size: 60px;
        font-weight: 800;
        color: var(--primary-color);
        position: relative;
        letter-spacing: -2px;
        margin-top: 5px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .hero-video {
        margin: 0;
        padding: 0;
    }
    
    .hero-animated {
        overflow: visible;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 10px;
        padding-bottom: 0;
        margin-bottom: -10px;
    }

    .clean-logo {
        font-size: 70px;
    }
    
    .clean-logo-subtitle {
        display: block;
        font-size: 47px;
        font-weight: 800;
        color: var(--primary-color);
        position: relative;
        letter-spacing: -2px;
        margin-top: 5px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .hero-video {
        margin: 0;
    }
}
