/* Hero Section */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.25rem 4rem;

    min-height: auto;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 80px; /* Reduced space for scroll indicator */
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.25);
    z-index: 0;
    pointer-events: none;
    border-radius: 12px;
}

/* Scroll Down Chevron */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 5s infinite;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.scroll-down-link:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(3px);
}

.scroll-down-link:hover .scroll-down-chevron {
    filter: drop-shadow(0 6px 12px rgba(30, 136, 229, 0.55));
    transform: scale(1.08);
}

.scroll-down-chevron {
    background: linear-gradient(135deg, #1E88E5, #B93B8F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 6px rgba(30, 136, 229, 0.35));
    transition: all 0.3s ease;
    animation: chevronGlow 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1rem 0;
    order: 1;
    text-align: center;
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    order: 2;
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    animation: fadeIn 1s ease-out 0.5s both;
    perspective: 1000px;
    margin: 0 auto;
}

/* Responsive Layout */
@media (min-width: 992px) {
    .hero-container {
        flex-direction: row-reverse;
        align-items: center;
        min-height: 80vh;
        padding: 4rem 2rem;
    }
    
    .hero-content {
        order: 2;
        text-align: right;
        padding-left: 3rem;
        padding-right: 0;
        max-width: 50%;
    }
    
    .hero-visual {
        order: 1;
        height: 500px;
        max-width: 50%;
        margin: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        padding: 0;
        margin: 1.5rem 0;
    }
    
    .hero-description {
        margin: 1.5rem 0 2.5rem;
        text-align: left;
        max-width: 100%;
        padding: 0;
    }
    
    .cta-wrapper {
        justify-content: flex-start;
    }
    
    .hero-tagline {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-container {
        padding: 4rem 2rem;
    }
    
    .hero-content {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .hero-visual {
        order: 2;
        height: 400px;
        max-width: 600px;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 3rem;
        margin: 1.5rem 0;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin: 1.5rem auto 2.5rem;
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .hero-container {
        padding: 2rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin: 1.25rem 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 1.25rem 0 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-visual {
        margin-bottom: 2rem;
        height: 280px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .cta-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    padding: 1rem 0;
    text-align: center;
}

/* Hero Tagline */
.hero-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E88E5;
    margin: 0 auto 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    padding: 0.5rem 1rem;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 50px;
    width: fit-content;
}

.accent-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1E88E5, #B93B8F);
    margin-right: 12px;
}

/* Hero Title */
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 1.5rem 0;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(90deg, #1E88E5, #B93B8F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    background-position: 0% 50%;
    animation: gradientShift 4s ease-in-out infinite;
    display: inline-block;
    margin: 0.25rem 0;
    opacity: 1;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(90deg, #1E88E5, #B93B8F);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50px;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-outline {
    background: transparent;
    color: #E0E0E0;
    border: 2px solid rgba(30, 136, 229, 0.3);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(30, 136, 229, 0.1);
    border-color: rgba(30, 136, 229, 0.6);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #6a11cb, #2575fc, #6a11cb);
    background-size: 200% auto;
    border-radius: 50px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #121212;
    border-radius: 48px;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-primary:hover::before {
    animation: gradientMove 2s linear infinite;
    opacity: 1;
}

.btn-primary:hover::after {
    background: #1a1a1a;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-outline {
    background: transparent;
    color: #E0E0E0;
    border: 2px solid rgba(30, 136, 229, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(30, 136, 229, 0.1);
    border-color: rgba(30, 136, 229, 0.6);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.2);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #1E88E5, #B93B8F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-block;
}

.stat-label {
    font-size: 0.9rem;
    color: #B0B0B0;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Stats Counter Animation */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 0.8s ease-out forwards;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    animation: fadeIn 1s ease-out 0.5s both;
    perspective: 1000px;
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
}

@media (max-width: 768px) {
    .hero-visual {
        height: auto !important;
        min-height: 300px !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        padding: 1rem 0 !important;
    }
    
    .browser-mockup {
        position: relative !important;
        transform: none !important;
        margin: 0.25rem 0 !important;
        width: 90% !important;
        max-width: 280px !important;
        height: auto !important;
        aspect-ratio: 16/10 !important;
        animation: floatMockup 8s ease-in-out infinite !important;
    }
    
    .mockup-1, 
    .mockup-2, 
    .mockup-5 { 
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0.5rem 0 !important;
    }
    
    .mockup-3, .mockup-4 {
        display: none !important;
    }
    
    /* Adjust for very small screens */
    @media (max-width: 480px) {
        .hero-visual {
            min-height: 280px !important;
            gap: 0.25rem !important;
        }
        
        .browser-mockup {
            width: 95% !important;
            max-width: 240px !important;
            margin: 0.25rem 0 !important;
        }
        
        .mockup-1 { 
            max-width: 260px !important;
        }
    }
}

/* Floating Animation */
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatMockup {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-15px) rotate(1deg); }
}

/* Individual mockup animations */
.mockup-1 { 
animation: floatMockup 8s ease-in-out infinite;
box-shadow: 0 25px 50px rgba(30, 136, 229, 0.2);
}
.mockup-2 { 
animation: floatMockup 9s ease-in-out 1s infinite;
box-shadow: 0 20px 40px rgba(185, 59, 143, 0.15);
}
.mockup-3 { 
animation: floatMockup 7s ease-in-out 0.5s infinite;
box-shadow: 0 20px 40px rgba(30, 136, 229, 0.15);
}
.mockup-4 { 
animation: floatMockup 8.5s ease-in-out 1.5s infinite;
box-shadow: 0 20px 40px rgba(185, 59, 143, 0.15);
}
.mockup-5 { 
animation: floatMockup 9.5s ease-in-out 2s infinite;
box-shadow: 0 20px 40px rgba(30, 136, 229, 0.15);
}

/* Browser Mockups */
.browser-mockup {
position: absolute;
background: rgba(20, 20, 30, 0.7);
border: 1px solid rgba(30, 136, 229, 0.2);
border-radius: 12px;
overflow: hidden;
backdrop-filter: blur(10px);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
will-change: transform, box-shadow;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
aspect-ratio: 16/10;
transform-origin: center center;
}

.browser-mockup:hover {
transform: translateY(-10px) scale(1.02);
z-index: 10 !important;
border-color: rgba(30, 136, 229, 0.6);
box-shadow: 0 30px 60px rgba(30, 136, 229, 0.3) !important;
}

/* Main centered mockup */
.mockup-1 {
width: 320px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(0deg);
z-index: 3;
animation: floatMockup 8s ease-in-out infinite;
}

/* Top right mockup */
.mockup-5 {
width: 260px;
top: 15%;
right: 10%;
z-index: 2;
transform: rotate(5deg);
animation: floatMockup 9s ease-in-out 1s infinite;
}

/* Bottom left mockup */
.mockup-2 {
width: 240px;
bottom: 15%;
left: 10%;
z-index: 2;
transform: rotate(-5deg);
animation: floatMockup 8.5s ease-in-out 1.5s infinite;
}

/* Top left mockup */
.mockup-3 {
width: 220px;
top: 20%;
left: 15%;
z-index: 1;
transform: rotate(-3deg);
animation: floatMockup 9s ease-in-out 2s infinite;
}

/* Bottom right mockup */
.mockup-4 {
width: 200px;
bottom: 20%;
right: 15%;
z-index: 1;
transform: rotate(4deg);
animation: floatMockup 8.5s ease-in-out 2.5s infinite;
}

/* Responsive scaling for mockups */
@media (max-width: 1200px) {
.mockup-1 { width: 280px; }
.mockup-2 { width: 220px; }
.mockup-3 { width: 200px; }
.mockup-4 { width: 180px; }
.mockup-5 { width: 220px; }
}

@media (max-width: 992px) {
.mockup-1 { width: 240px; }
.mockup-2 { width: 200px; }
.mockup-3 { width: 180px; }
.mockup-4 { width: 160px; }
.mockup-5 { width: 200px; }
    
/* Adjust positions for tablet */
.mockup-5 { right: 5%; top: 10%; }
.mockup-2 { left: 5%; bottom: 10%; }
.mockup-3 { left: 10%; top: 15%; }
.mockup-4 { right: 10%; bottom: 15%; }
}

/* Mobile layout - stack mockups in a more compact way */
@media (max-width: 768px) {
.hero-visual {
height: 300px;
position: relative;
}
    
.mockup-1, 
.mockup-2, 
.mockup-3, 
.mockup-4, 
.mockup-5 {
position: absolute;
width: 180px !important;
margin: 0;
animation: floatMockup 8s ease-in-out infinite;
}
    
.mockup-1 {
top: 50% !important;
left: 50% !important;
transform: translate(-50%, -50%) rotate(0deg) !important;
z-index: 3;
}
    
.mockup-2 {
bottom: 10% !important;
left: 5% !important;
transform: rotate(-5deg) !important;
z-index: 2;
}
    
.mockup-5 {
top: 10% !important;
right: 5% !important;
transform: rotate(5deg) !important;
z-index: 2;
}
    
.mockup-3, .mockup-4 {
display: none !important;
}
}

@media (max-width: 480px) {
.hero-visual {
height: 220px;
}
    
.mockup-1, 
.mockup-2, 
.mockup-5 {
width: 140px !important;
}
    
.mockup-1 {
top: 50% !important;
left: 50% !important;
transform: translate(-50%, -50%) rotate(0deg) scale(0.9) !important;
}
    
.mockup-2 {
bottom: 5% !important;
left: 5% !important;
transform: rotate(-5deg) scale(0.8) !important;
}
    
.mockup-5 {
top: 5% !important;
right: 5% !important;
transform: rotate(5deg) scale(0.8) !important;
}
}

.browser-header {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.75rem 1rem;
background: rgba(20, 20, 20, 0.9);
border-bottom: 1px solid rgba(30, 136, 229, 0.2);
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 20, 0.9);
    border-bottom: 1px solid rgba(30, 136, 229, 0.2);
}

.browser-dots {
    display: flex;
    gap: 0.4rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E88E5, #B93B8F);
    opacity: 0.6;
}

.browser-url {
    font-size: 0.75rem;
    color: #888888;
    font-family: monospace;
}

.browser-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content-block {
    height: 40px;
    background: linear-gradient(90deg, rgba(30, 136, 229, 0.1), rgba(185, 59, 143, 0.1));
    border-radius: 6px;
    animation: shimmer 2s ease-in-out infinite;
}

.block-1 {
    width: 70%;
}

.block-2 {
    width: 90%;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.grid-item {
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(185, 59, 143, 0.15));
    border-radius: 6px;
    animation: shimmer 2s ease-in-out infinite;
}

.grid-item:nth-child(2) {
    animation-delay: 0.3s;
}

.grid-item:nth-child(3) {
    animation-delay: 0.6s;
}

.content-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.showcase-item {
    height: 70px;
    background: linear-gradient(90deg, rgba(30, 136, 229, 0.12), rgba(185, 59, 143, 0.12));
    border-radius: 6px;
    animation: shimmer 2s ease-in-out infinite;
}

.showcase-item:nth-child(2) {
    animation-delay: 0.4s;
}

.content-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mini-block {
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(185, 59, 143, 0.2));
    border-radius: 6px;
    animation: shimmer 2s ease-in-out infinite;
}

.mini-block:nth-child(2) {
    animation-delay: 0.2s;
}

.mini-block:nth-child(3) {
    animation-delay: 0.4s;
}

.mini-block:nth-child(4) {
    animation-delay: 0.6s;
}

.content-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bar-item {
    height: 35px;
    border-radius: 6px;
    animation: shimmer 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.bar-1 {
    width: 85%;
    background: linear-gradient(90deg, rgba(30, 136, 229, 0.25), rgba(30, 136, 229, 0.1));
}

.bar-2 {
    width: 65%;
    background: linear-gradient(90deg, rgba(185, 59, 143, 0.25), rgba(185, 59, 143, 0.1));
    animation-delay: 0.3s;
}

.bar-3 {
    width: 75%;
    background: linear-gradient(90deg, rgba(30, 136, 229, 0.2), rgba(185, 59, 143, 0.15));
    animation-delay: 0.6s;
}

/* Landing Page Mockup Content */
.content-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-headline {
    height: 30px;
    width: 85%;
    background: linear-gradient(90deg, rgba(30, 136, 229, 0.15), rgba(185, 59, 143, 0.15));
    border-radius: 4px;
    animation: shimmer 2s ease-in-out infinite;
}

.hero-cta {
    height: 16px;
    width: 120px;
    background: linear-gradient(90deg, rgba(30, 136, 229, 0.2), rgba(30, 136, 229, 0.1));
    border-radius: 4px;
    animation: shimmer 2s ease-in-out 0.3s infinite;
}

.content-features {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.feature {
    flex: 1;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(185, 59, 143, 0.1));
    border-radius: 6px;
    animation: shimmer 2s ease-in-out infinite;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.4s;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbPulse 8s ease-in-out infinite;
    z-index: 0;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.3), transparent);
    top: 5%;
    right: 5%;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(185, 59, 143, 0.3), transparent);
    bottom: 5%;
    left: 5%;
    animation: orbFloat 14s ease-in-out 2s infinite;
}

/* Design Elements */
.design-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(30, 136, 229, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.element-square {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(185, 59, 143, 0.2);
    border-radius: 8px;
    top: 25%;
    left: 15%;
    animation: rotate 15s linear infinite reverse;
}

.element-line {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.3), transparent);
    bottom: 30%;
    right: 20%;
    animation: pulse 3s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes orbPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes gridSlide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes floatMockup {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes countPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 2rem 3rem;
    }
    
    .hero-visual {
        height: 600px;
    }
    
    .mockup-1 {
        top: 10%;
        right: 15%;
        transform: scale(0.9) rotate(3deg);
    }
    
    .mockup-2 {
        bottom: 10%;
        left: 15%;
        transform: scale(0.9) rotate(-2deg);
    }
    
    .mockup-3 {
        top: 60%;
        right: 20%;
        transform: scale(0.9) rotate(2deg);
    }
    
    .mockup-4 {
        bottom: 10%;
        right: 20%;
        transform: scale(0.9) rotate(-3deg);
    }
    
    .mockup-5 {
        top: 5%;
        left: 15%;
        transform: scale(0.9) rotate(-4deg);
    }
}

@media screen and (max-width: 1024px) {
    .hero-container {
        padding: 5rem 2rem 3rem;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .mockup-1 {
        width: 280px;
        height: 210px;
        top: 10%;
        right: 5%;
    }
    
    .mockup-2 {
        width: 240px;
        height: 170px;
        bottom: 15%;
        left: 8%;
    }
    
    .mockup-3 {
        width: 220px;
        height: 160px;
        top: 50%;
        right: 10%;
    }
    
    .mockup-4 {
        width: 200px;
        height: 150px;
        bottom: 15%;
        right: 8%;
    }
    
    .mockup-5 {
        width: 260px;
        height: 200px;
        top: 5%;
        left: 8%;
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        padding: 5rem 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .orb-1, .orb-2 {
        width: 300px;
        height: 300px;
    }
    
    .browser-mockup {
        position: relative !important;
        margin: 0 auto 1.5rem !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 280px !important;
        height: 200px !important;
    }
    
    .mockup-1 {
        width: 260px;
        height: 200px;
        top: 5%;
        right: 5%;
        z-index: 3;
    }
    
    .mockup-2 {
        width: 240px;
        height: 170px;
        bottom: 10%;
        left: 5%;
        z-index: 2;
    }
    
    .mockup-3 {
        width: 200px;
        height: 150px;
        top: 55%;
        right: 5%;
        z-index: 2;
    }
    
    .mockup-4 {
        width: 180px;
        height: 140px;
        bottom: 10%;
        right: 5%;
        z-index: 1;
    }
    
    .mockup-5 {
        width: 220px;
        height: 180px;
        top: 5%;
        left: 5%;
        z-index: 1;
    }
    
    .element-circle {
        width: 100px;
        height: 100px;
    }
    
    .element-square {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .orb-1, .orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .mockup-1 {
        width: 220px;
        height: 170px;
        top: 5%;
        right: 10%;
        transform: translateX(0) rotate(3deg);
        z-index: 3;
    }
    
    .mockup-2 {
        width: 200px;
        height: 150px;
        bottom: 15%;
        left: 10%;
        transform: translateX(0) rotate(-2deg);
        z-index: 2;
    }
    
    .mockup-3 {
        width: 180px;
        height: 140px;
        top: 30%;
        right: 10%;
        transform: translateX(0) rotate(2deg);
        z-index: 2;
    }
    
    .mockup-4 {
        width: 160px;
        height: 130px;
        bottom: 25%;
        right: 10%;
        transform: translateX(0) rotate(-3deg);
        z-index: 1;
    }
    
    .mockup-5 {
        width: 200px;
        height: 160px;
        top: 5%;
        left: 10%;
        transform: translateX(0) rotate(-4deg);
        z-index: 1;
    }
    
    .design-elements {
        display: none;
    }
}