:root {
    /* Colors */
    --bg-deep: #05070a;
    --bg-surface: #0a0f1e;
    --primary: #10b981; /* Emerald Green */
    --primary-glow: rgba(16, 185, 129, 0.2);
    --secondary: #3b82f6; /* Electric Blue */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-glass: 0 20px 40px rgba(0, 0, 0, 0.4);
    --nav-height: 80px;
    
    /* Gradients */
    --grad-text: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    --grad-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --nav-height: 70px;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

h1, h2, h3, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: #000;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(20px);
    border-color: var(--glass-border);
    height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}



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

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

.nav-links a:hover {
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: calc(var(--nav-height) + 4rem) 0 var(--section-padding);
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero { padding-top: calc(var(--nav-height) + 2rem); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Dashboard Mockup Illustration */
.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    background: #0d1224;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
}

.mockup-header {
    background: rgba(255,255,255,0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-header .dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-header .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.address-bar {
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    flex-grow: 1;
    text-align: center;
}

.mockup-body {
    display: flex;
    height: 300px;
}

.mockup-body .sidebar {
    width: 60px;
    border-right: 1px solid var(--glass-border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-body .sidebar .item {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
}

.mockup-body .sidebar .item.active {
    background: var(--primary-glow);
    border: 1px solid var(--primary);
}

.main-panel {
    flex-grow: 1;
    padding: 1.5rem;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-cards .card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
}

.stat-cards .card .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.stat-cards .card .value {
    font-size: 1.25rem;
    font-weight: 700;
}

.trend {
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.25rem;
}

.trend.up { background: rgba(16, 185, 129, 0.15); color: var(--primary); }

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    padding-top: 1rem;
}

.bar {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.bar.active {
    background: var(--grad-primary);
}

.floating-badge {
    position: absolute;
    background: rgba(13, 18, 36, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.badge-1 { top: 20%; left: -15%; animation: float 6s infinite ease-in-out; }
.badge-2 { bottom: 10%; right: -5%; animation: float 6s infinite ease-in-out 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-1 { top: -100px; right: -100px; background: var(--primary); }
.glow-2 { bottom: -200px; left: -100px; background: var(--secondary); }

/* Trust Banner */
.trust-banner {
    padding: 4rem 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.trust-banner p {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.trust-logo span { color: var(--text-muted); }
.trust-logo:hover { filter: grayscale(0); }

/* Features */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

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

/* Lead Capture */
.lead-capture {
    padding: 8rem 0;
}

.glass-container {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.form-content {
    padding: 4rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
}

.form-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.form-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; }

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.benefit-list i { color: var(--primary); }

.form-wrapper {
    padding: 4rem;
    background: rgba(0,0,0,0.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
    display: block;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.price-display {
    background: var(--primary-glow);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-display .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.form-footer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
}

/* FAQs */
.faqs {
    padding: 8rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* Contact Us Section - Standardized */
.contact-us-section {
    padding: var(--section-padding) 0;
    background: rgba(2, 6, 23, 0.5);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--glass-bg);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(10px);
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* FAQ Section Refinement */
.faqs { padding: var(--section-padding) 0; }

/* Footer Refinement */
.footer {
    padding: var(--section-padding) 0 2rem;
    background: #030406;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 3rem;
}

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

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 3rem;
        width: 100%;
    }
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}

.link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-group a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.social-links a { color: var(--text-muted); transition: color 0.3s ease; }
.social-links a:hover { color: #fff; }

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

/* responsiveness overhaul */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero .container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-content p { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 600px; margin: 0 auto; }
    
    .glass-container { grid-template-columns: 1fr; gap: 3rem; }
    .form-content { text-align: center; }
    .benefit-list { display: inline-flex; flex-direction: column; text-align: left; }
    
    .contact-grid { grid-template-columns: 1fr; padding: 30px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { 
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 10px;
    }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .btn-lg { width: 100%; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .footer-top { flex-direction: column; gap: 3rem; }
    .footer-links { flex-direction: column; gap: 2rem; }
    
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-us-section .section-header h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .container { padding: 0 1.5rem; }
}
