@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-cyan: #00B5AD;
    --primary-navy: #1A365D;
    --accent-glow: rgba(0, 181, 173, 0.4);
    --bg-dark: #07090E;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan {
    color: var(--primary-cyan);
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

header.scrolled {
    background: rgba(7, 9, 14, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-wrapper img {
    height: 40px;
    filter: invert(1) hue-rotate(180deg) brightness(1.1);
    mix-blend-mode: screen;
}

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

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

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

.btn-cta {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-cyan));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 181, 173, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 181, 173, 0.4);
}

.btn-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 181, 173, 0.1);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    z-index: 1;
    opacity: 0.6;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Feature Cards (Solution & Problem) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.card:hover::before {
    opacity: 0.1;
}

.card i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.card p {
    color: var(--text-muted);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    z-index: -1;
}

.step {
    text-align: center;
    flex: 1;
}

.step-num {
    width: 4rem;
    height: 4rem;
    background: var(--bg-dark);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Background Elements */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Responsiveness */
/* Contact Section Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-details i {
    color: var(--primary-cyan);
}

.contact-form-wrapper .card {
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 181, 173, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

    .nav-links {
        display: none;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-steps::after {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact-details li {
        justify-content: center;
    }

    /* Mobile CTA Section Fixes */
    .cta-section .card {
        padding: 2rem 1rem;
    }

    .cta-section .btn-cta {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .cta-section p {
        padding: 0 1rem;
    }
}