/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.cta-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Main content */
.main {
    padding-top: 80px;
    position: relative;
    z-index: 10;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 400;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.geometric-shape {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFAA44 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 6s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
}

.geometric-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

/* Services section */
.services {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #FF6B35;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
}

.cta-section {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.cta-button-large {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border: none;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Unlock section */
.unlock-section {
    padding: 6rem 2rem;
    position: relative;
}

.unlock-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.unlock-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unlock-description {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.7;
}

.unlock-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.flowing-particles {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(247, 147, 30, 0.2) 25%, 
        rgba(255, 170, 68, 0.1) 50%, 
        rgba(255, 107, 53, 0.2) 75%, 
        rgba(247, 147, 30, 0.1) 100%);
    border-radius: 50%;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(1px);
}

.flowing-particles::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(247, 147, 30, 0.2) 30%, 
        transparent 70%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.flowing-particles::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: radial-gradient(circle, 
        rgba(255, 170, 68, 0.4) 0%, 
        rgba(255, 107, 53, 0.2) 50%, 
        transparent 80%);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

/* Background elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-geometric-1 {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 8s ease-in-out infinite;
    filter: blur(2px);
}

.bg-geometric-2 {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 170, 68, 0.08) 0%, rgba(255, 107, 53, 0.04) 100%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(3px);
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(247, 147, 30, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 170, 68, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 53, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(247, 147, 30, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .hero-content,
    .unlock-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual,
    .unlock-visual {
        order: -1;
        height: 300px;
    }
    
    .geometric-shape {
        width: 200px;
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services,
    .unlock-section {
        padding: 4rem 1rem;
    }
    
    .bg-geometric-1,
    .bg-geometric-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .unlock-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}
