:root {
    --bg-main: #0a0a0f;
    --bg-secondary: #13141c;
    --primary-color: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary-color: #a855f7;
    --accent-color: #ec4899;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 70px; /* Offset for sticky header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Global Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Typography Overrides */
span {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn i { font-size: 1.25rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

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

.btn-block {
    width: 100%;
}

/* Header & Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.sticky {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: white;
}

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

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-menu a:hover {
    color: white;
}

.nav-menu .btn { color: white; border: none; }

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, rgba(10,10,15,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

/* Hero Visual & Badges */
.visual-card {
    position: relative;
    border-radius: 24px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.card-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.dashboard-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

.floating-badge h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.floating-badge p { font-size: 0.8rem; color: var(--text-secondary); }
.floating-badge i { font-size: 2rem; color: var(--primary-color); }

.badge-1 { bottom: -20px; left: -30px; }
.badge-2 { top: 40px; right: -40px; animation-delay: 3s; }

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

/* Services */
.services, .products, .cta-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.service-card {
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Products Section */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse .product-content {
    direction: ltr;
}

.badge-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.product-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.product-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* CTA & Forms */
.cta-card {
    padding: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(10,10,15,0.8), rgba(99,102,241,0.05));
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

input, select {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.08);
}

option { background: var(--bg-secondary); color: white; }

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo { margin-bottom: 1.5rem; display: inline-flex; }
.footer-col p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.footer-col .contact-item { 
    margin-bottom: 0.5rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    white-space: nowrap;
}
.footer-col .contact-item i { margin-right: 0; }

.social-links { display: flex; gap: 1rem; }
.social-links a {
    display: flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--text-secondary); }
.footer-col ul li a:hover { color: var(--primary-color); }
.footer-col p i { color: var(--primary-color); margin-right: 0.5rem; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sticky Conversion Buttons */
.sticky-ctas {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.sticky-btn i {
    font-size: 1.5rem;
}

.sticky-btn span {
    display: block;
}

.whatsapp-btn {
    background: #25d366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: var(--primary-color);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.sticky-btn:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Trust Bar / Marquee */
.trust-bar {
    padding: 3rem 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-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition);
}

.logo-grid:hover {
    opacity: 1;
    filter: grayscale(0);
}

.logo-grid img {
    height: 40px;
    width: auto;
}

/* Industry Tabs/Cards */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-card {
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.industry-card:hover {
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.1));
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQs */
.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

/* Pricing Cards */
.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem !important;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.pricing-card .feature-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card.popular {
    transform: scale(1.05);
    background: rgba(99, 102, 241, 0.05);
    z-index: 10;
}

@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .product-showcase { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 3rem; }
    .product-showcase.reverse { direction: ltr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .form-row { flex-direction: column; gap: 1rem; }
    .footer-container { grid-template-columns: 1fr; }
    .badge-1 { display: none; }
    .badge-2 { display: none; }
    .hero { padding: 8rem 0 4rem; }
    .sticky-ctas {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        flex-direction: row;
    }
    .sticky-btn {
        flex: 1;
        justify-content: center;
        padding: 0.6rem;
    }
    .sticky-btn span {
        font-size: 0.85rem;
    }
}


