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

:root {
    --primary-bg: #0a1628;
    --secondary-bg: #0f1f3d;
    --accent-blue: #3b82f6;
    --glow-blue: #60a5fa;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-radius: 16px;
    --card-bg: rgba(15, 31, 61, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 50%, #0a1628 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--glow-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--glow-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-btn {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--accent-blue);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 180px 5% 120px;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 12px;
    opacity: 0.1;
}

.shape-1 {
    width: 150px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 140px;
    background: linear-gradient(135deg, transparent, var(--glow-blue));
    top: 5%;
    right: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 180px;
    height: 170px;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
    bottom: 20%;
    left: 5%;
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 180px;
    height: 170px;
    background: linear-gradient(135deg, transparent, var(--glow-blue));
    bottom: 15%;
    right: 8%;
    animation: float 9s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, var(--glow-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-icon-item {
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glowing Orbs */
.glow-orb, .glow-orb-medium, .glow-orb-large {
    border-radius: 50%;
    position: relative;
}

.glow-orb {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--glow-blue) 0%, var(--accent-blue) 50%, transparent 100%);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

.glow-orb-medium {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--glow-blue) 0%, var(--accent-blue) 50%, transparent 100%);
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

.glow-orb-large {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--glow-blue) 0%, var(--accent-blue) 50%, transparent 100%);
    box-shadow: 0 0 150px rgba(59, 130, 246, 0.8);
    animation: pulse 4s ease-in-out infinite;
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.6;
}

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

/* Feature Sections */
.feature-section {
    padding: 120px 5%;
    position: relative;
}

.feature-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-left .feature-container {
    grid-template-columns: 1fr 1fr;
}

.feature-right .feature-container {
    grid-template-columns: 1fr 1fr;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--accent-blue);
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-image {
    position: relative;
    height: 500px;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

.mockup-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--card-bg), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Banner Sections */
.feature-banner {
    padding: 80px 5%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.banner-icon {
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 120px 5%;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    border: 2px solid var(--accent-blue);
    border-radius: 24px;
    padding: 80px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.2);
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff, var(--glow-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(10, 22, 40, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.submit-btn {
    background: var(--accent-blue);
    border: none;
    color: var(--text-primary);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--glow-blue);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(10, 22, 40, 0.9);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -30%;
    width: 900px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 80px;
}

.footer-column {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.newsletter {
    max-width: 520px;
}

.newsletter-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(10, 22, 40, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.newsletter-form button {
    padding: 1rem 1.5rem;
    background: var(--accent-blue);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--glow-blue);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.copyright {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .feature-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-left .feature-container,
    .feature-right .feature-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-card {
        padding: 60px 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-icons {
        gap: 1rem;
    }

    .glow-orb {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 2rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 40px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

