:root {
    --bg-color: #050508;
    --text-color: #f0f0f5;
    --primary-color: #5d24d6;
    --secondary-color: #00f0ff;
    --accent-color: #7000ff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography & Utilites */
.gradient-text {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

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

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-neon {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2), 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn-neon:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--secondary-color);
}

.btn-login-nav {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login-nav:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--secondary-color);
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #a0a0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Background effects */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
    z-index: 1;
}

.orb-1 {
    top: 10%;
    left: 5%;
    width: 450px;
    height: 450px;
    background: var(--primary-color);
}

.orb-2 {
    bottom: 5%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: var(--secondary-color);
}

/* Services */
.services {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.section-title p {
    color: #a0a0b0;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.service-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #a0a0b0;
    font-size: 14px;
}

.service-card.highlight {
    background: linear-gradient(145deg, rgba(112, 0, 255, 0.1), rgba(0, 240, 255, 0.03));
    border-color: rgba(112, 0, 255, 0.4);
}

/* TechManager Split Section */
.techmanager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 5%;
    align-items: center;
    background: rgba(10, 10, 15, 0.5);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.badge-tech {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(112, 0, 255, 0.2);
    border: 1px solid var(--accent-color);
    color: #bfaaff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tech-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.tech-content p {
    color: #a0a0b0;
    margin-bottom: 30px;
    font-size: 16px;
}

.tech-features {
    list-style: none;
    margin-bottom: 30px;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.tech-features i {
    color: var(--secondary-color);
    font-size: 24px;
}

.tech-visual .glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate3d(1, 1, 0, -10deg);
    transition: transform 0.5s;
}

.tech-visual .glass-panel:hover {
    transform: rotate3d(0, 0, 0, 0deg);
}

.mock-dash {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.mock-header {
    height: 30px;
    background: #222;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.mock-body {
    padding: 20px;
    display: flex;
    gap: 10px;
}

.mock-card {
    height: 100px;
    flex: 1;
    background: #222;
    border-radius: 8px;
}

.mock-green {
    background: rgba(59, 165, 92, 0.2);
    border: 1px solid #3ba55c;
}
.mock-yellow {
    background: rgba(250, 166, 26, 0.2);
    border: 1px solid #faa61a;
}


/* AI Section */
.ai-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 100px 5%;
    align-items: center;
}

.ai-grid {
    display: contents;
}

.circle-pulse {
    width: 250px;
    height: 250px;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
    animation: pulse 3s infinite alternate;
}

.circle-pulse i {
    font-size: 100px;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 15px var(--secondary-color));
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); }
    100% { transform: scale(1.05); box-shadow: 0 0 60px rgba(0, 240, 255, 0.4); }
}

.ai-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.ai-content > p {
    color: #a0a0b0;
    margin-bottom: 40px;
}

.flow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-num {
    background: var(--card-bg);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 24px;
    flex-shrink: 0;
}

.flow-step h4 {
    color: #fff;
    margin-bottom: 5px;
}

.flow-step p {
    color: #888;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0, 240, 255, 0.05)"/></svg>') repeat;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #a0a0b0;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    font-size: 32px;
    color: var(--secondary-color);
    background: rgba(0, 240, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #fff;
}

.info-item p {
    color: #a0a0b0;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #bfaaff;
    font-size: 14px;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer */
footer {
    background: #020202;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.brand p {
    color: #888;
    margin-top: 10px;
    max-width: 300px;
}

.links h4 {
    margin-bottom: 15px;
}

.links a {
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.links p {
    color: #888;
    font-size: 14px;
    max-width: 300px;
}

.footer-bottom {
    text-align: center;
    color: #666;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-size: 14px;
}

/* Animations JS classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .techmanager, .ai-section {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}
/* Pricing UI Enhancements */
.pricing-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #a0a0b0;
    transition: 0.3s;
}

.toggle-label.active {
    color: var(--secondary-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.currency-selector {
    display: flex;
    gap: 10px;
}

.currency-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--card-border);
    color: #a0a0b0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.currency-btn.active {
    background: var(--secondary-color);
    color: var(--bg-color);
    border-color: var(--secondary-color);
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 5%;
}

.module-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.module-card:hover {
    border-color: var(--primary-color);
    background: rgba(112, 0, 255, 0.05);
}

.module-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 5%;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: #a0a0b0;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
    border-top-color: var(--card-border);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
