:root {
    /* Colors */
    --bg-dark: #05050a;
    --bg-darker: #020204;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --accent-cyan: #00f0ff;
    --accent-purple: #8a2be2;
    --accent-pink: #ff007f;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    --gradient-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --max-width: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-pink), transparent 70%);
    opacity: 0.2;
    animation-duration: 25s;
}

.orb-4 {
    top: 20%;
    right: 10%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--accent-purple), transparent 60%);
    opacity: 0.15;
    animation-duration: 15s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism */
.glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-highlight {
    color: var(--accent-pink) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 60px) 24px 60px;
    background-image: linear-gradient(rgba(5, 5, 10, 0.75), var(--bg-dark)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 1s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: inline-block;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding: 24px 48px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    width: 1px;
    height: 50px;
    background: var(--border-glass);
}

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

/* Trusted By Marquee */
.trusted-by {
    padding: 30px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-content {
    padding: 0 40px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.marquee-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
}

.marquee span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.2);
    margin: 0 40px;
}

.marquee .dot {
    font-size: 1rem;
    color: var(--accent-cyan);
    margin: 0;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Services */
.services {
    padding: 120px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.premium-card {
    padding: 48px 32px;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-purple);
    top: -75px;
    right: -75px;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.premium-card:hover .card-glow {
    opacity: 0.3;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-glass);
}

.service-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 0 24px 120px;
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(0,0,0,0.5));
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list .check {
    font-weight: 900;
}

.founder-profile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.founder-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-purple);
    box-shadow: 0 0 40px rgba(138,43,226,0.4);
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
    animation: float 6s infinite alternate ease-in-out;
}

.founder-info {
    padding: 60px 32px 32px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

.founder-info h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.founder-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 0 24px 120px;
    display: flex;
    justify-content: center;
}

.premium-cta {
    max-width: 1000px;
    width: 100%;
    padding: 80px 40px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 0;
}

.cta-container h2, .cta-container p, .contact-form {
    position: relative;
    z-index: 1;
}

.cta-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-inline: auto;
}

.contact-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.input-field {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
    padding: 80px 24px 24px;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 40px 40px 0 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    margin-bottom: 24px;
    color: var(--text-main);
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        width: 100px;
        height: 1px;
    }

    .trusted-by {
        flex-direction: column;
        padding: 32px 0;
        gap: 24px;
    }
    
    .marquee-content {
        padding: 0 24px;
        text-align: center;
    }
    
    .marquee-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
    }

    .contact-form {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
