/* Global Styles */
:root {
    --bg-dark: #05080f;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary-color: #00ffaa;
    /* Neon Green/Teal */
    --secondary-color: #ffaa00;
    /* Gold/Orange */
    --accent-purple: #7b2cbf;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(0, 255, 170, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(123, 44, 191, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(5, 8, 15, 1) 0%, transparent 100%);
}

/* Network Lines Background (SVG Data URI) */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 300vh;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDQwIDMwMDAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0tMTAwLDIwMCBDMzAwLDMwMCA2MDAsLTEwMCA5MDAsMjAwIFMxMjAwLDgwMCA4MDAsMTIwMCBTNDAwLDE2MDAgNzAwLDIwMDAgUzEyMDAsMjQwMCA5MDAsMjgwMCIgc3Ryb2tlPSJyZ2JhKDAsIDI1NSwgMTcwLCAwLjE1KSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtZGFzaGFycmF5PSIxMCAxMCIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(5, 8, 15, 0.6);
    border-bottom: var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--text-light);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--text-light);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.btn-download {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
    transition: transform 0.2s;
}

.btn-download:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero h1 .brand-name {
    color: var(--primary-color);
}

.sub-headline {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #FFD700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.tagline {
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 18px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
}

.btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, #6200ea, #7c4dff);
    color: white;
    box-shadow: 0 4px 20px rgba(98, 0, 234, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(98, 0, 234, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 170, 0.5);
    color: var(--primary-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(0, 255, 170, 0.1);
    border-color: var(--primary-color);
}

.hero-visuals {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.phone-mockup-center {
    position: relative;
    z-index: 10;
    display: inline-block;
    border-radius: 45px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 0 2px #333;
    border: 12px solid #1a1a1a;
    background: #000;
    overflow: hidden;
    transform: rotateY(0deg) rotateX(0deg);
    transition: transform 0.5s;
    max-width: 300px;
}

.phone-mockup-center:hover {
    transform: rotateY(5deg) rotateX(2deg);
}

.phone-mockup-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 20;
}

.phone-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(20, 20, 20, 0.85);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 20;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge-left {
    top: 20%;
    left: 0;
    /* Adjusted for better visibility on wider screens */
    width: auto;
    border-left: 3px solid var(--primary-color);
    animation-delay: 0s;
}

.badge-right {
    top: 35%;
    right: 0;
    /* Adjusted for better visibility */
    width: auto;
    border-right: 3px solid var(--secondary-color);
    animation-delay: 3s;
}

/* Connecting Lines using Pseudo-elements and rough positioning */
.badge-left::after {
    content: '';
    position: absolute;
    right: -60px;
    /* Connecting towards center */
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(20deg);
    pointer-events: none;
}

.badge-right::after {
    content: '';
    position: absolute;
    left: -60px;
    /* Connecting towards center */
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(-20deg);
    pointer-events: none;
}

/* Features */
.features {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 100px;
    font-size: 16px;
    line-height: 1.6;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 150px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text-left,
.feature-text-right {
    max-width: 450px;
}

.feature-text-left h3,
.feature-text-right h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
}

.feature-text-left h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 2px;
}

.feature-text-right h3::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.feature-text-left p,
.feature-text-right p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.phone-mockup-side {
    position: relative;
    border-radius: 35px;
    border: 8px solid #222;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    max-width: 280px;
    transition: transform 0.4s;
    background: #000;
}

.phone-mockup-side:hover {
    transform: translateY(-10px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    max-width: 700px;
    background: rgba(20, 25, 35, 0.6);
    padding: 50px;
    border-radius: 30px;
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.form-group label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: rgba(0, 0, 0, 0.6);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(90deg, #00ffaa, #00cc88);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 170, 0.3);
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020408;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 250px;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-gray);
    font-size: 15px;
    transition: 0.2s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    color: var(--text-gray);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.social-icons a i {
    width: 25px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .header-container {
        padding: 0 10px;
    }

    nav ul {
        display: none;
        /* Simple mobile hide for now */
    }

    .hero h1 {
        font-size: 42px;
    }

    .sub-headline {
        font-size: 32px;
    }

    .feature-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        gap: 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .sub-headline {
        font-size: 28px;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text-left h3::before,
    .feature-text-right h3::after {
        display: none;
    }

    .feature-row {
        margin-bottom: 80px;
    }

    .contact-container {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Adjust badges on mobile */
    .floating-badge {
        display: none;
        /* Hide badges on small screens to avoid clutter */
    }
}