/* Custom Fonts */
@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-Bold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Raleway Font */
@font-face {
    font-family: 'Raleway';
    src: url('./fonts/Raleway/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('./fonts/Raleway/static/Raleway-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
}


/* Controlled smooth scrolling */
html {
    scroll-behavior: smooth;
    /* scroll-snap-type: y mandatory; */
}

body {
    overscroll-behavior: contain;
    overflow-x: hidden;

}

/* Smooth scroll control */
* {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 6px;
    border: 2px solid #000;
    box-shadow:
        0 0 10px rgba(0, 255, 136, 0.3),
        inset 0 0 10px rgba(0, 255, 136, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00ff88, #00ff88);
    box-shadow:
        0 0 15px rgba(0, 255, 136, 0.5),
        inset 0 0 15px rgba(0, 255, 136, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #00cc6a, #009955);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #00ff88 #000;
}

/* Custom cursor animations - REMOVED */

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo .green {
    color: #00ff88;
}

.nav-links {
    display: flex;
    flex:2;
    justify-content: flex-end;
    padding-right: 20px;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00ff88;
}

.cta-button {
    background: linear-gradient(135deg, #8C5EB8, #8C5EB8);
    padding: 10px 28px;
    border: none;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

/* Hide mobile menu by default */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* Floating spheres */
.floating-sphere {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 255, 136, 0.3));
}

.sphere-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
}

.sphere-2 {
    width: 180px;
    height: 150px;
    bottom: 20%;
    left: 5%;
}

.sphere-3 {
    width: 150px;
    height: 180px;
    top: 60%;
    right: 20%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #001a0f 0%, #000 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #00ff88;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    border-radius: 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Intro Section */
.hero-intro {
    height: 100vh;
    background: radial-gradient(ellipse at center, #001a0f 0%, #000 70%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.hero-intro-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-intro-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, #fff 20%, #fff 80%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transform: scale(1);
    opacity: 1;
    will-change: transform, opacity;
    transform3d: translateZ(0);
    backface-visibility: hidden;
    font-family: 'Arial Black', 'Arial', 'Helvetica', sans-serif;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    text-shadow:
        0 0 3px rgba(255, 255, 255, 0.8),
        1px 1px 0px rgba(255, 255, 255, 0.3),
        -1px -1px 0px rgba(255, 255, 255, 0.3),
        1px -1px 0px rgba(255, 255, 255, 0.3),
        -1px 1px 0px rgba(255, 255, 255, 0.3);
}

.hero-intro-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #00ff88;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
    font-weight: 400;
    text-align: center;
}

/* Professional Hero Overlay */
.hero-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(ellipse at center, rgba(0, 26, 15, 0.7) 0%, rgba(0, 0, 0, 0.75) 70%) !important;
    backdrop-filter: blur(3px) !important;
    z-index: 999999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transform: scale(1) !important;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    pointer-events: auto !important;
}

.hero-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.hero-overlay.phase-1 {
    transform: scale(0.85) !important;
    opacity: 0.7 !important;
}

.hero-overlay.phase-2 {
    transform: scale(1.2) !important;
    opacity: 0 !important;
}

.hero-overlay.hidden {
    display: none !important;
    pointer-events: none !important;
}

.hero-overlay.scrolling {
    transform: scale(0.8);
    opacity: 0.7;
}

.hero-overlay.zooming {
    transform: scale(1.2);
    opacity: 0;
    pointer-events: none;
}

.hero-overlay-content {
    max-width: 100% !important;
    padding: 0 40px !important;
    text-align: center !important;
    color: white !important;
    z-index: 999999999 !important;
}

.hero-overlay.scrolling .hero-overlay-content {
    transform: translateY(-20px);
}

.hero-overlay-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, #fff 20%, #fff 80%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: 'Arial Black', 'Arial', 'Helvetica', sans-serif;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    text-shadow:
        0 0 3px rgba(255, 255, 255, 0.8),
        1px 1px 0px rgba(255, 255, 255, 0.3),
        -1px -1px 0px rgba(255, 255, 255, 0.3),
        1px -1px 0px rgba(255, 255, 255, 0.3),
        -1px 1px 0px rgba(255, 255, 255, 0.3);
}

.hero-overlay-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #00ff88;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* New scroll-controlled hero */
.hero-scroll-controlled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(0, 26, 15, 0.7) 0%, rgba(0, 0, 0, 0.75) 70%);
    backdrop-filter: blur(3px);
    z-index: 999999999;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(0px);
}

.hero-scroll-controlled.visible {
    pointer-events: none;
    opacity: 1;
}

.hero-scroll-controlled-content {
    max-width: 100%;
    padding: 0 40px;
    text-align: center;
    color: white;
    transform: translateY(0px);
    transition: transform 0.1s ease-out;
    pointer-events: none;
}

.hero-scroll-controlled-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, #fff 20%, #fff 80%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-scroll-controlled-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #00ff88;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    animation: scrollIndicatorPulse 2s ease-in-out infinite;
}

.scroll-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0.8;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #fff;
    animation: scrollArrowBounce 1.5s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes scrollIndicatorPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollArrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Hide scroll indicator on mobile devices */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
    color: #fff;
    transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #fff;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
}

.scroll-arrow {
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Section 2 */
.section-2 {
    min-height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    padding: 200px 0 100px 0;
}

.progress-indicator {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.progress-dot {
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.progress-dot.active {
    background: #00ff88;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #00ff88;
    margin-bottom: 20px;
}

.circles-container {
    position: relative;
    display: flex;
    gap: -50px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    padding: 0 50px;
}

.circles-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 2px dashed rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    z-index: 0;
    animation: none;
}

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

/* Loading Spinner Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #001a0f 50%, #000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.loading-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    z-index: 2;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.spinner {
    display: none;
}

.spinner-inner {
    display: none;
}

.loading-text {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.loading-progress {
    width: 200px;
    height: 2px;
    background: rgba(0, 255, 136, 0.2);
    margin-top: 20px;
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #ffffff);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes logoFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-5px); }
}

/* Hide main content initially */
.main-content {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.main-content.loaded {
    opacity: 1;
}

.circle {
    width: 420px;
    height: 420px;
    display: flex;
    padding: 80px;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid #00ff88;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    background: transparent;
    z-index: 1;
    margin: 0 -25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.circle .circle-number {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    font-weight: 400;
}

.circle .circle-title {
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.circle .circle-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

.circle.active {
    border-color: #00ff88;
}

/* Elegant hover effects for circles */
.circle {
    will-change: transform;
    position: relative;
    overflow: visible;
}

.circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.1) 25%, 
        rgba(0, 255, 136, 0.2) 50%, 
        rgba(0, 255, 136, 0.1) 75%, 
        transparent 100%);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.circle:hover::before {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.circle:hover {
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.2),
        0 0 40px rgba(0, 255, 136, 0.1);
}

.circle:hover .circle-title {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.circle:hover .circle-number {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.circle:hover .circle-description {
    color: #e0e0e0;
}

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

.circle .circle-title,
.circle .circle-number,
.circle .circle-description {
    transition: all 0.3s ease;
}

/* Mobile styles for circles section */
@media (max-width: 768px) {
    .circles-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .circles-container::before {
        display: none;
    }
    
    .circle {
        width: 300px;
        height: 300px;
        margin: 0;
        padding: 50px;
    }
    
    .circle .circle-title {
        font-size: 1.3rem;
    }
    
    .circle .circle-description {
        font-size: 0.9rem;
    }
}

/* Horizontal Carousel */
.carousel-container {
    height: 300vh;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Fixed elements that stay consistent across slides */
.fixed-carousel-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.fixed-orbitas {
    position: absolute;
    width: 70%;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 999;
}

.fixed-background-phone {
    position: absolute;
    width: 600px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Carousel spheres */
.carousel-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.7;
    z-index: 1;
}

.carousel-sphere-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 15%;
}

.carousel-sphere-2 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 10%;
}

.carousel-sphere-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 25%;
}

/* Carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
    pointer-events: none;
}

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

.carousel-dot.active {
    background: #00ff88;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.carousel-dot:hover {
    background: rgba(0, 255, 136, 0.7);
    transform: scale(1.2);
}

.carousel-track {
    display: flex;
    width: 300vw; /* 3 items x 100vw each */
    height: 100vh;
    position: sticky;
    top: 0;
}

.carousel-item {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    flex-shrink: 0;
    position: relative;
}

/* Phone centered - default size for third phone */
.carousel-item .phone-mockup {
    width: 350px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.carousel-item .phone-mockup img {
    width: 100%;
    height: auto;
    max-width: 350px;
}

/* Extra large phones for first and second items */
#section-1 .phone-mockup {
    width: 924px;
    height: 1320px;
}

#section-2-scroll .phone-mockup {
    width: 700px;
    height: 1000px;
}

#section-1 .phone-mockup img {
    max-width: 924px;
}

#section-2-scroll .phone-mockup img {
    max-width: 700px;
}

/* Orbital rings/paths - Galaxy perspective */
.orbital-ring {
    position: absolute;
    border: 1px solid rgba(0, 255, 136, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.orbital-ring-1 {
    width: 500px;
    height: 200px;
    transform: translate(-50%, -50%) rotateX(60deg);
}

.orbital-ring-2 {
    width: 650px;
    height: 260px;
    transform: translate(-50%, -50%) rotateX(60deg);
}

.orbital-ring-3 {
    width: 800px;
    height: 320px;
    transform: translate(-50%, -50%) rotateX(60deg);
}

.orbital-ring-4 {
    width: 950px;
    height: 380px;
    transform: translate(-50%, -50%) rotateX(60deg);
}

/* Orbital spheres around phone */
.orbital-sphere {
    position: absolute;
    z-index: 99999;
    border-radius: 50%;
    opacity: 0.9;
    animation: floatBall 3s ease-in-out infinite;
    pointer-events: none;
}

/* Floating animation for sports balls */
@keyframes floatBall {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.orbital-sphere-1 {
    width: 290px;
    height: 290px;
    bottom: 20%;
    filter: blur(2px);
    right: 20%;
    animation-delay: 0s;
}

.orbital-sphere-2-1 {
    width: 270px;
    height: 270px;
    top: 10%;
    filter: blur(5px);
    left: 18%;
    animation-delay: 1s;
}

.orbital-sphere-2-2 {
    width: 200px;
    height: 170px;
    bottom: 10%;
    filter: blur(1px);
    left: 24%;
    animation-delay: 0s;
}

.orbital-sphere-2-3 {

    width: 330px;
    height: 360px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
}

.orbital-sphere-3-1 {
    width: 270px;
    height: 270px;
    top: 10%;
    filter: blur(1px);
    right: 18%;
    animation-delay: 1s;
}

.orbital-sphere-3-2 {
    width: 170px;
    height: 140px;
    top: 15%;
    filter: blur(2px);
    left: 35%;
    animation-delay: 0s;
}

.orbital-sphere-3-3 {

    width: 330px;
    height: 360px;
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

.orbital-sphere-3-4 {
    width: 80px;
    height: 70px;
    bottom: 40%;
    filter: blur(2px);
    right: 25%;
    animation-delay: 2s;
}


.orbital-sphere-2 {
    width: 170px;
    height: 140px;
    filter: blur(4px);
    top: 10%;
    left: 52%;
    z-index: 99999;
    animation-delay: 1s;
    pointer-events: none;
}

.orbital-sphere-3 {
    width: 220px;
    height: 240px;
    top: 40%;
    left: 15%;
    animation-delay: 2s;
}

.orbital-sphere-4 {
    width: 30px;
    height: 30px;
    top: 15%;
    left: 30%;
}

@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

@keyframes orbit2 {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@keyframes orbit3 {
    0% { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

@keyframes orbit4 {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* Text labels positioned around */
.text-label {
    position: absolute;
    background: rgba(38, 64, 59, 0.8);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 5;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease 0.4s, transform 1.2s ease 0.4s;
}

.text-label.active {
    opacity: 1;
    transform: translateY(0);
}

.text-label:hover {
    background: rgba(38, 64, 59, 0.9);
    backdrop-filter: blur(25px) saturate(1.8);
    -webkit-backdrop-filter: blur(25px) saturate(1.8);
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.text-label h3 {
    color: #00ff88;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
}

.text-label p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Posición 1: Superior izquierda */
.text-label-1,
.text-label-2-1,
.text-label-3-1 {
    top: 25%;
    left: 20%;
    max-width: 300px;
}

/* Posición 2: Inferior izquierda */
.text-label-2,
.text-label-2-2,
.text-label-3-2 {
    bottom: 10%;
    left: 25%;
    max-width: 320px;
}

/* Posición 3: Superior derecha */
.text-label-3,
.text-label-2-3,
.text-label-3-3 {
    top: 22%;
    right: 18%;
    max-width: 300px;
}

/* SVG connection lines overlay */
.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.connection-line {
    stroke: #00ff88;
    stroke-width: 0.8;
    stroke-dasharray: 1.5 1;
    fill: none;
    opacity: 0.8;
}

/* Orbit connection points */
.orbit-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    z-index: 6;
}

.orbit-point-1 {
    top: 35%;
    left: 35%;
}

.orbit-point-2 {
    top: 55%;
    right: 30%;
}

.orbit-point-3 {
    bottom: 35%;
    left: 40%;
}

@media (max-width: 768px) {
    .carousel-item {
        padding: 20px;
    }

    .carousel-item .phone-mockup {
        width: 280px;
        height: auto;
    }

    .carousel-item .phone-mockup img {
        max-width: 280px;
    }

    .text-label,
    .text-label-1, .text-label-2, .text-label-3,
    .text-label-2-1, .text-label-2-2, .text-label-2-3,
    .text-label-3-1, .text-label-3-2, .text-label-3-3 {
        display: none !important;
    }

    .orbital-sphere, .orbital-sphere-1, .orbital-sphere-2,
    .orbital-sphere-3, .orbital-sphere-4,
    .orbital-sphere-2-1, .orbital-sphere-2-2, .orbital-sphere-2-3,
    .orbital-sphere-3-1, .orbital-sphere-3-2, .orbital-sphere-3-3, .orbital-sphere-3-4 {
        display: none !important;
    }

    /* Mobile orbital rings */
    .orbital-ring-1 {
        width: 300px;
        height: 120px;
    }

    .orbital-ring-2 {
        width: 400px;
        height: 160px;
    }

    .orbital-ring-3 {
        width: 500px;
        height: 200px;
    }

    .orbital-ring-4 {
        width: 600px;
        height: 240px;
    }

    @keyframes orbit1 {
        0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
    }

    @keyframes orbit2 {
        0% { transform: rotate(0deg) translateX(70px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
    }

    @keyframes orbit3 {
        0% { transform: rotate(0deg) translateX(90px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
    }

    @keyframes orbit4 {
        0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
    }
}

/* Text Scroll Section */
.text-scroll-section {
    height: 400vh;
    position: relative;
    background: transparent;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.text-scroll-container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}

.text-container-inner {
    background: #060E0E;
    backdrop-filter: blur(10px);
    padding: 40px 60px;
    position: relative;
    overflow: visible;
    display: inline-block;
    min-width: max-content;
}

.text-container-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%);
    pointer-events: none;
    border-radius: 30px;
}

.scrolling-text {
    font-size: clamp(4rem, 12vw, 8rem);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
    will-change: transform;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.scrolling-text .text-green {
    color: #00ff88;
}

/* Plan title */
.plan-title {
    font-family: 'Raleway', sans-serif !important;
}


@media (max-width: 768px) {
    .scrolling-text {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}


.progress-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stage-bar {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stage-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #ffffff);
    border-radius: 3px;
    width: 0%;
    transition: width 0.2s ease-out;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.stage-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stage-label.active {
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* Section 4 - Advantages Carousel */
.advantages {
    height: 300vh;
    background: transparent;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.advantages-container {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.advantages-title {
    position: relative;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
}

.advantages-title-container {
    position: relative;
    flex-direction: column;
    top: 10px;
    margin-bottom: 80px;
    text-align: center;
    z-index: 10;
}

.advantages-underline {
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #ffffff);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.carousel-advantages {
    display: flex;
    width: 100vw;
    height: 60vh;
    position: relative;
}

.advantage-slide {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    margin: 0 10px;
}

.advantage-slide.active {
    flex: 1;
    border-color: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.advantage-slide:not(.active) {
    flex: 0.3;
    filter: brightness(0.7);
}

.advantage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.advantage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.advantage-slide.active .advantage-overlay {
    transform: translateY(0);
}

.advantage-overlay h3 {
    color: #00ff88;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-overlay h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 15px;
    color: #fff;
}

.advantage-overlay p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.advantage-slide.active .advantage-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Progress indicators for advantages */
.advantages-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.advantage-dot.active {
    background: #00ff88;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    transform: scale(1.2);
}

/* Mobile-Optimized Advantages Section */
.advantages-mobile {
    display: none;
    background: transparent;
    padding: 60px 0;
    position: relative;
    min-height: auto;
}

.advantages-mobile-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.advantages-mobile-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-mobile-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.advantages-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantage-mobile-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.advantage-mobile-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.advantage-mobile-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.advantage-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advantage-mobile-item:hover .advantage-mobile-image img {
    transform: scale(1.05);
}

.advantage-mobile-content {
    padding: 30px 25px;
}

.advantage-mobile-content h3 {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.advantage-mobile-content h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-mobile-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Show/Hide Logic for Desktop vs Mobile */
@media (min-width: 769px) {
    .advantages {
        display: block;
    }
    
    .advantages-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .advantages {
        display: none;
    }
    
    .advantages-mobile {
        display: block;
    }
}

/* Section 4 - Problem */
.problem-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #001a0f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    justify-content: flex-start;
    text-align: center;
    padding: 400px 20px 100px;
    scroll-snap-align: start;
}

.problem-text {
    max-width: 1000px;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 40px;
}

.problem-text .highlight {
    color: #00ff88;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
}

/* Línea punteada vertical animada */
.dotted-line-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.dotted-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 300px;
    background-image: repeating-linear-gradient(
        to bottom,
        #00ff88 0px,
        #00ff88 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.8));
}

.dotted-line-2 {
    height: 200px;
}

/* Punto al final de la línea */
.dotted-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #00ff88;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(0, 255, 136, 1));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.4);
    opacity: 1;
}

@media (max-width: 768px) {
    .dotted-line-container {
        height: 250px;
    }

    .dotted-line {
        height: 250px;
    }

    .dotted-line::after {
        width: 10px;
        height: 10px;
        bottom: -5px;
    }
}

/* Team Section */
.team-section {
    background: radial-gradient(ellipse at center, #001a0f 0%, #000 70%);
    padding: 100px 0;
    text-align: center;
    scroll-snap-align: start;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 0 20px;
}

.team-label {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.team-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.company-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.company-logo a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.company-logo a:hover {
    transform: scale(1.1);
}

.team-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 80px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 80px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    margin: 0 auto;
    border: none;
    position: relative;
    overflow: hidden;
}

.member-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 2px;
    color: #fff;
}

.member-role {
    color: #00ff88;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.member-linkedin {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.member-linkedin:hover {
    transform: scale(1.2);
}

.member-linkedin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile styles for team members */
@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .team-member {
        margin-bottom: 20px;
    }
}

.tech-partners {
    margin-top: 80px;
}

.tech-title {
    color: #00ff88;
    font-size: 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 120px;
}

.tech-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: none;
}

.tech-logo span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
    z-index: 10;
    min-height: 100vh;
}

/* Parallax background for contact section */
.contact-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    background: url('./Links/Links/back_contacto.png') center/cover no-repeat;
    will-change: transform;
    z-index: -1;
}

/* Contact balls decoration */
.contact-ball {
    position: absolute;
    border-radius: 50%;
    animation: floatBall 4s ease-in-out infinite;
}

.contact-ball img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-ball-1 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: 10%;
    animation-delay: 0s;
}

.contact-ball-2 {
    width: 240px;
    height: 240px;
    filter: blur(4px);
    bottom: 10%;
    right: 5%;
    animation-delay: 1.5s;
}

.contact-ball-3 {
    width: 200px;
    height: 200px;
    top: 5%;
    filter: blur(4px);
    right: 48%;
    animation-delay: 3s;
}

.contact-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-text h3 {
    color: #00ff88;
    margin-bottom: 30px;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 0.8;
}

.contact-subtitle {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info a {
    color: #00ff88;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    color: #ccc;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-size: 1rem;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 2px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #6b46c1, #9333ea);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.contact-spheres {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #00ff88, #00cc6a);
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(2px);
}

.contact-spheres::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #00ff88, #00cc6a);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(3px);
}

/* Responsive */
@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }

    section {
        scroll-snap-align: none;
    }

    .nav-links {
        display: none;
    }

    /* Mobile hamburger menu */
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .hamburger-line {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 40px;
    }

    .mobile-menu-content a {
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 500;
        transition: color 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-menu-content a:hover {
        color: #00ff88;
    }

    .mobile-menu-cta {
        background: linear-gradient(135deg, #8C5EB8, #8C5EB8);
        padding: 15px 30px;
        border-radius: 8px;
        color: #fff !important;
        font-size: 1rem !important;
        margin-top: 20px;
    }

    .cta-button {
        display: none;
    }

    .advantages {
        height: 400vh;
    }

    .carousel-advantages {
        flex-direction: column;
        height: 80vh;
        width: 90vw;
        margin: 0 auto;
    }

    .advantage-slide {
        height: auto;
        min-height: 200px;
        margin: 5px 0;
        flex: none !important;
    }

    .advantage-slide.active {
        min-height: 300px;
    }

    .advantage-overlay {
        position: relative;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        padding: 20px;
    }

    .advantage-slide.active .advantage-overlay {
        transform: none;
    }

    .advantages-progress {
        flex-direction: column;
        right: 20px;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        left: auto;
    }

    .contact-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }

    .company-logos,
    .tech-logos {
        flex-wrap: wrap;
        gap: 40px;
    }

    .tech-logo {
        min-width: 100px;
    }

    .tech-logo img {
        width: 65px;
        height: 65px;
    }

    .tech-logo span {
        font-size: 0.8rem;
    }

    /* Parallax adjustments for mobile */
    .parallax-container {
        height: auto;
    }

    .problem-section {
        position: relative;
        height: auto;
        min-height: 60vh;
    }

    .team-section {
        margin-top: 0;
        position: relative;
    }
}

/* Legal Pages Styles */
.legal-content-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #001a0f 100%);
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.legal-subtitle {
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-list {
    color: #ccc;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 20px;
}

.section-list li {
    margin-bottom: 10px;
    position: relative;
}

.section-list li::marker {
    color: #00ff88;
}

.contact-link {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Mobile styles for legal pages */
@media (max-width: 768px) {
    .legal-content-section {
        padding: 100px 0 60px;
    }

    .legal-container {
        padding: 0 15px;
    }

    .legal-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-text {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    z-index: 20;
    overflow: hidden;
}

/* Footer parallax elements */
.footer-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    filter: blur(1px);
    opacity: 0.6;
}

.footer-sphere-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15), rgba(0, 204, 106, 0.05));
}

.footer-sphere-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.02));
}

.footer-sphere-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 60%;
    background: radial-gradient(circle, rgba(0, 204, 106, 0.12), rgba(0, 153, 85, 0.03));
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    white-space: nowrap;
}

.footer-text a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
    }

    .footer-text {
        font-size: 0.8rem;
        line-height: 1.8;
        white-space: normal;
        text-align: center;
    }

    /* Fix background cutting and content width issues on mobile */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    #background-fixed {
        height: 100vh !important;
        height: 100dvh !important; /* Use dynamic viewport height for mobile */
        min-height: 100vh !important;
        min-height: 100dvh !important;
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
    }

    #background-fixed img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Ensure all main containers take full width */
    section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    /* Fix any elements causing horizontal overflow */
    .nav, .hero-content, .contact-content, .team-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    /* Prevent horizontal scrolling */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Fix text scroll section */
    .text-scroll-container {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .text-container-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
    }

    /* Fix contact section mobile layout */
    .contact-section {
        padding: 50px 0 !important;
        min-height: 100vh !important;
        overflow: visible !important;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    .contact-text {
        width: 100% !important;
        text-align: center !important;
    }

    .contact-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .contact-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        margin-bottom: 15px !important;
        padding: 12px !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
    }

    .contact-form textarea {
        min-height: 120px !important;
    }

    .submit-btn {
        width: 100% !important;
        padding: 15px !important;
        font-size: 1rem !important;
        margin-top: 10px !important;
    }

    /* Hide contact balls on mobile to prevent clipping */
    .contact-ball {
        display: none !important;
    }
}

/* Mobile-Optimized Contact Section */
.contact-mobile {
    display: none;
    background: linear-gradient(135deg, #000 0%, #001a0f 100%);
    padding: 60px 0;
    position: relative;
}

.contact-mobile-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-mobile-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-mobile-header h3 {
    color: #00ff88;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-mobile-header h2 {
    color: #fff;
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-mobile-header p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-mobile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-mobile-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.contact-mobile-item:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}

.contact-mobile-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-mobile-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-mobile-details span {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-mobile-details a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-mobile-details a:hover {
    color: #00ff88;
}

.contact-mobile-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 25px 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.contact-mobile-form-container h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.contact-mobile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-mobile-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-mobile-group label {
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-mobile-group input,
.form-mobile-group textarea {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-mobile-group input:focus,
.form-mobile-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 2px rgba(0, 255, 136, 0.2);
}

.form-mobile-group input::placeholder,
.form-mobile-group textarea::placeholder {
    color: #666;
}

.submit-mobile-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    background: linear-gradient(135deg, #00cc66, #00ff88);
}

.submit-mobile-btn:active {
    transform: translateY(0);
}

/* Show/Hide Logic for Desktop vs Mobile Contact */
@media (min-width: 769px) {
    .contact-section {
        display: block;
    }
    
    .contact-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-section {
        display: none;
    }
    
    .contact-mobile {
        display: block;
    }
}