:root {
    --primary: #00A8E8;
    --primary-dark: #0086B8;
    --accent: #7ED321;
    --dark-bg: #0B0F19;
    --dark-section: #111827;
    --text-white: #F9FAFB;
    --text-gray: #9CA3AF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-footer: rgba(17, 24, 39, 0.8);
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.text-center {
    text-align: center;
}

.section-padding {
    padding: 8rem 0;
}

.alternate-bg {
    background-color: var(--dark-section);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
}

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

.glass-border {
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 86px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 168, 232, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
}

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

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

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 168, 232, 0.1);
    border: 1px solid rgba(0, 168, 232, 0.2);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-visual {
    position: relative;
}

.dashboard-preview-container {
    position: relative;
    z-index: 2;
}

.dashboard-img {
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    z-index: 3;
}

.badge-top {
    top: -20px;
    right: -20px;
    border: 1px solid var(--accent);
}

.badge-top .lucide {
    color: var(--accent);
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(0, 168, 232, 0.15), transparent 70%);
    z-index: 1;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: inherit;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: inherit;
}

.section-header.text-center {
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box .lucide {
    width: 30px;
    height: 30px;
}

.icon-box.blue {
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary);
}

.icon-box.green {
    background: rgba(126, 211, 33, 0.1);
    color: var(--accent);
}

.icon-box.cyan {
    background: rgba(0, 210, 255, 0.1);
    color: #00D2FF;
}

.icon-box.lime {
    background: rgba(191, 255, 0, 0.1);
    color: #BFFF00;
}

.icon-box.orange {
    background: rgba(255, 122, 0, 0.1);
    color: #FF7A00;
}

.icon-box.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

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

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

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.rounded-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* App Section */
.app-features {
    margin-top: 3rem;
}

.app-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-feature-item .lucide {
    color: var(--accent);
    flex-shrink: 0;
}

.app-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.app-feature-item p {
    color: var(--text-gray);
}

.app-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 168, 232, 0.2));
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card-v2 {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(0, 168, 232, 0.05); /* Very subtle tint */
}

.pricing-card-v2.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.plan-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
}

.plan-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.plan-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(0, 168, 232, 0.1) 0%, rgba(0, 168, 232, 0.2) 100%);
    backdrop-filter: blur(10px);
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.plan-features li .lucide {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.plan-price-block {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-term {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.w-full {
    width: 100%;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.logo-footer {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.logo-footer:hover {
    opacity: 0.8;
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 300px;
}

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

.social-links a .lucide {
    width: 20px;
    height: 20px;
}

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

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

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-contact p .lucide {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .dashboard-img {
        transform: none;
    }

    .grid-2,
    .grid-2-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visual-content {
        order: 2;
    }

    .text-content {
        order: 1;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .app-section .visual-content {
        order: 2;
    }

    .app-section .text-content {
        order: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float .lucide {
    width: 24px;
    height: 24px;
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0;
}

.whatsapp-float:hover {
    padding-right: 25px;
    transform: translateY(-5px);
    background: #128C7E;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

.whatsapp-float:hover span {
    max-width: 200px;
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }
    .whatsapp-float span {
        display: none;
    }
}

/* Global Lucide Icon Fix */
.lucide {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}