/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1f2e;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37, #20b2aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #d4af37, #20b2aa);
    color: #1a1f2e;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.cta-button.secondary:hover {
    background: #d4af37;
    color: #1a1f2e;
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3142 50%, #1a1f2e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(32, 178, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #20b2aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: #20b2aa;
    text-transform: uppercase;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1f2e 0%, #252b3d 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(1) brightness(0.7);
}

.problem-item p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #252b3d 0%, #1a1f2e 100%);
}

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

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Network Section */
.network-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3142 50%, #1a1f2e 100%);
    position: relative;
}

.network-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.network-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 400;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(32, 178, 170, 0.3);
    position: relative;
}

.network-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: #d4af37;
    font-family: serif;
}

.network-text::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: 30px;
    font-size: 4rem;
    color: #d4af37;
    font-family: serif;
}

/* Pro Section */
.pro-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1f2e 0%, #252b3d 100%);
    text-align: center;
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #252b3d 0%, #1a1f2e 50%, #2a3142 100%);
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0f1419;
    border-top: 1px solid rgba(32, 178, 170, 0.3);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    max-width: 80px;
    height: auto;
    opacity: 0.7;
}

.footer-text {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .problem-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item,
    .problem-item {
        padding: 1.5rem;
    }
    
    .network-text {
        font-size: 1.2rem;
        padding: 2rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .network-text::before,
    .network-text::after {
        font-size: 3rem;
    }
    
    .network-text::before {
        top: -15px;
        left: 15px;
    }
    
    .network-text::after {
        bottom: -30px;
        right: 15px;
    }
}

