:root {
    /* Colors */
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --primary: #FF6B00;
    /* Vibrant Orange */
    --secondary: #34A853;
    /* Google Green */
    --accent-red: #EA4335;
    /* Google Red */
    --accent-yellow: #FBBC05;
    /* Google Yellow */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --container-width: 1200px;
    --section-spacing: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Background Effects */
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 107, 0, 0.15),
            transparent 40%);
    transition: background 0.15s ease;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -100px;
    left: -100px;
}

.bg-glow-2 {
    bottom: 0;
    right: -100px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-width);
    z-index: 1000;
    padding: 16px 32px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    width: 100%;
    max-width: 400px;
    height: 280px;
    padding: 24px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* slightly stronger border */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.chart-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.chart-value {
    color: var(--secondary);
    font-weight: 700;
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
}

.bar {
    width: 12%;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
}

.bar-1 {
    height: 40%;
}

.bar-2 {
    height: 60%;
}

.bar-3 {
    height: 45%;
}

.bar-4 {
    height: 80%;
}

.bar-5 {
    height: 100%;
    background: var(--text-gradient);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.float-card {
    position: absolute;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.float-1 {
    top: 50px;
    left: -40px;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    bottom: 80px;
    right: -20px;
    animation: float 6s ease-in-out infinite 2s;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-blue {
    background: rgba(255, 107, 0, 0.2);
}

.icon-green {
    background: rgba(52, 168, 83, 0.2);
}

.icon-red {
    background: rgba(234, 67, 53, 0.2);
}

.icon-yellow {
    background: rgba(251, 188, 5, 0.2);
}

.float-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.float-val {
    font-weight: 700;
    font-size: 1rem;
}

/* Sections */
.section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.title-lg {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    padding: 40px 32px;
    transition: 0.3s;
}

.hover-lift:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
}

/* Process */
.process {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-item {
    position: relative;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.step-item h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA & Form */
.cta-box {
    padding: 80px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        /* Reduced from 3rem/4rem to fit screen */
        word-wrap: break-word;
        /* Prevent long words from breaking layout */
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .navbar {
        width: 92%;
        top: 10px;
        padding: 12px 20px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
        height: auto;
        padding: 20px 0;
    }

    .dashboard-card {
        width: 100%;
        max-width: 350px;
        /* Ensure it fits on small screens */
    }

    .float-card {
        display: none;
        /* Hide floating elements on mobile to prevent overflow/clutter */
    }

    .grid-3,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile handling */
    .mobile-menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        margin-bottom: 6px;
    }
}