/* CSS Variables */
        :root {
            --bg-dark: #0A0B10;
            --bg-surface: #13151D;
            --bg-surface-hover: #1c1f2b;
            --accent: #00E5FF;
            --accent-hover: #00b4cc;
            --text-light: #FFFFFF;
            --text-muted: #A0AAB2;
            --text-dark: #0A0B10;
            
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius-md: 12px;
            --radius-lg: 24px;
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            line-height: 1.2;
            font-weight: 700;
        }

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

        ul {
            list-style: none;
        }

        /* Ambient Glows */
        .ambient-glow {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
            opacity: 0.6;
            pointer-events: none;
        }

        .glow-1 {
            top: -10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, rgba(10,11,16,0) 70%);
        }

        .glow-2 {
            bottom: -10%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(138,43,226,0.1) 0%, rgba(10,11,16,0) 70%);
        }

        .glow-3 {
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70vw;
            height: 70vw;
            background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, rgba(10,11,16,0) 70%);
        }

        /* Container & Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        /* Highlight text */
        .highlight {
            color: var(--accent);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background-color: var(--accent);
            color: var(--text-dark);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.125rem;
            padding: 18px 36px;
            border-radius: 50px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: rgba(0, 229, 255, 0.1);
            color: var(--accent);
            box-shadow: none;
        }

        /* Header */
        .top-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 32px 0;
            z-index: 50;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: -0.5px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            padding-bottom: 80px;
            background: transparent; /* Changed to transparent since we have ambient glows now */
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 48px;
            max-width: 700px;
            margin-inline: auto;
        }

        /* Problem Section */
        .problem {
            background-color: var(--bg-surface);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .problem-text h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .problem-text p {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .problem-list {
            margin-top: 32px;
        }

        .problem-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 1.125rem;
            color: #ff4d4d;
        }

        .problem-list i {
            font-size: 1.5rem;
            margin-top: 2px;
        }

        .problem-card {
            background-color: rgba(20, 22, 30, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }
        
        .problem-card::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, #ff4d4d, transparent, transparent);
            z-index: -1;
            border-radius: calc(var(--radius-lg) + 2px);
            opacity: 0.3;
        }

        /* Process Section */
        .process {
            text-align: center;
        }

        .section-header {
            margin-bottom: 64px;
            text-align: center;
            max-width: 700px;
            margin-inline: auto;
        }

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

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

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .process-card {
            background-color: rgba(19, 21, 29, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 48px 32px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .process-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 229, 255, 0.3);
            background-color: var(--bg-surface-hover);
        }

        .step-number {
            position: absolute;
            top: -20px;
            right: -10px;
            font-size: 8rem;
            font-weight: 800;
            color: rgba(255,255,255,0.03);
            font-family: var(--font-heading);
            line-height: 1;
            transition: var(--transition);
        }

        .process-card:hover .step-number {
            color: rgba(0, 229, 255, 0.05);
        }

        .process-icon {
            width: 64px;
            height: 64px;
            background-color: rgba(0, 229, 255, 0.1);
            color: var(--accent);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
            margin-inline: auto;
        }

        .process-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .process-card p {
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .services {
            background-color: var(--bg-surface);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .service-card {
            background-color: rgba(10, 11, 16, 0.5);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 56px 48px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.08);
            transition: var(--transition);
        }

        .service-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 40px rgba(0, 229, 255, 0.05);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 32px;
        }

        .service-header i {
            font-size: 3rem;
            color: var(--accent);
        }

        .service-card h3 {
            font-size: 2rem;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 1.125rem;
            margin-bottom: 32px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--text-light);
        }

        .service-features i {
            color: var(--accent);
            font-size: 1.25rem;
        }

        /* Social Proof / Metrics Section */
        .metrics {
            padding: 80px 0;
            background: linear-gradient(to right, rgba(0, 229, 255, 0.05), transparent, rgba(0, 229, 255, 0.05));
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: center;
        }

        .metric-item h4 {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .metric-item p {
            font-size: 1.125rem;
            font-weight: 500;
        }

        /* Dashboard Proof Section */
        .dashboard-proof {
            background-color: var(--bg-surface);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }

        .dashboard-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .dashboard-header h2 {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .dashboard-header p {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 700px;
            margin-inline: auto;
        }

        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: stretch;
        }

        .dashboard-wrapper {
            background-color: rgba(10, 11, 16, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius-lg);
            padding: 48px 32px 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .dashboard-wrapper::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.5;
        }

        /* Before Panel Styling */
        .before-panel {
            opacity: 0.85;
            border-color: rgba(255, 77, 77, 0.2);
        }

        .before-panel::before {
            background: linear-gradient(90deg, transparent, #ff4d4d, transparent);
        }

        .before-panel .stat-box {
            background-color: rgba(255, 77, 77, 0.02);
            border-color: rgba(255, 77, 77, 0.1);
        }

        /* After Panel Styling */
        .after-panel {
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
            transform: scale(1.02);
            z-index: 2;
        }

        .panel-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            font-family: var(--font-heading);
            letter-spacing: 1px;
            z-index: 2;
            white-space: nowrap;
        }

        .badge-before {
            background-color: #1a0a0a;
            color: #ff4d4d;
            border: 1px solid rgba(255, 77, 77, 0.3);
        }

        .badge-after {
            background-color: #002226;
            color: var(--accent);
            border: 1px solid var(--accent);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
        }

        .dashboard-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .dashboard-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1.125rem;
        }
        
        .dashboard-title i {
            color: var(--accent);
            font-size: 1.5rem;
        }

        .before-panel .dashboard-title i {
            color: var(--text-muted);
        }

        .dashboard-period {
            background-color: rgba(255,255,255,0.05);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
            flex-grow: 1;
            align-content: start;
        }

        .stat-box {
            background-color: var(--bg-surface);
            padding: 24px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255,255,255,0.02);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .stat-box:hover {
            transform: translateY(-5px);
        }
        
        .after-panel .stat-box:hover {
            border-color: rgba(0, 229, 255, 0.2);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stat-label i {
            color: var(--text-light);
            font-size: 1.125rem;
        }

        .before-panel .stat-label i {
            color: var(--text-muted);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            font-family: var(--font-heading);
            margin-bottom: 12px;
            line-height: 1;
        }

        .before-panel .stat-value {
            color: var(--text-muted);
        }

        .stat-growth {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #25D366;
            font-size: 0.875rem;
            font-weight: 600;
            background-color: rgba(37, 211, 102, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
        }

        .status-message {
            margin-top: 24px;
            padding: 16px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 600;
            text-align: center;
            font-size: 0.875rem;
        }

        .status-bad {
            background-color: rgba(255, 77, 77, 0.05);
            color: #ff4d4d;
            border: 1px dashed rgba(255, 77, 77, 0.2);
        }

        .status-good {
            background-color: rgba(0, 229, 255, 0.05);
            color: var(--accent);
            border: 1px dashed rgba(0, 229, 255, 0.2);
        }

        @media (max-width: 992px) {
            .compare-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .after-panel {
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .dashboard-wrapper {
                padding: 40px 20px 24px;
            }
            .dashboard-stats {
                grid-template-columns: 1fr;
            }
            .panel-badge {
                white-space: normal;
                width: 90%;
                text-align: center;
                line-height: 1.4;
            }
        }
        /* About Section */
        .about {
            background-color: var(--bg-surface);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/5;
            background-color: var(--bg-dark);
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image i {
            font-size: 8rem;
            color: rgba(255,255,255,0.05);
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        /* FAQ Section */
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion {
            margin-top: 40px;
        }

        .accordion-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .accordion-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.25rem;
            font-family: var(--font-heading);
            font-weight: 600;
            cursor: pointer;
            text-align: left;
        }

        .accordion-header i {
            color: var(--accent);
            transition: var(--transition);
        }

        .accordion-header.active i {
            transform: rotate(180deg);
        }

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

        .accordion-content p {
            padding-bottom: 24px;
            color: var(--text-muted);
            font-size: 1.125rem;
        }

        /* CTA Section */
        .cta {
            text-align: center;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.05) 100%);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 120px 0;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 24px;
        }

        .cta p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 48px;
            max-width: 700px;
            margin-inline: auto;
        }

        /* Footer */
        footer {
            background-color: var(--bg-dark);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--text-muted);
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background-color: #25D366;
            color: white;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 100;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #1ebe57;
        }

        @keyframes 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); }
        }

        /* Scroll Animations (Micro-interactions) */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

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

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 { font-size: 3rem; }
            .problem-grid, .about-grid, .services-grid { grid-template-columns: 1fr; gap: 48px; }
            .process-grid, .metrics-grid { grid-template-columns: repeat(2, 1fr); }
            .about-image { aspect-ratio: 16/9; }
        }

        @media (max-width: 768px) {
            section { padding: 60px 0; }
            .container { padding: 0 20px; }
            
            /* Typography Scale */
            .hero h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 20px; }
            .hero p { font-size: 1.05rem; margin-bottom: 32px; }
            .problem-text h2, .section-header h2, .dashboard-header h2, .about-text h2, .cta h2 { font-size: 2rem; }
            .service-card h3 { font-size: 1.5rem; }
            .metric-item h4 { font-size: 2.5rem; }
            
            /* Layout & Spacing */
            .process-grid, .metrics-grid { grid-template-columns: 1fr; gap: 24px; }
            .service-card { padding: 32px 24px; }
            .problem-card { padding: 32px 24px; }
            .dashboard-wrapper { padding: 36px 20px 24px; }
            
            /* Buttons */
            .btn { width: 100%; font-size: 1rem; padding: 16px 24px; justify-content: center; }
            .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; font-size: 28px; }
            
            /* Dashboard Mobile Tweaks */
            .dashboard-stats { grid-template-columns: 1fr; gap: 12px; }
            .panel-badge { 
                white-space: normal; 
                width: 85%; 
                text-align: center; 
                line-height: 1.4; 
                font-size: 0.7rem; 
                padding: 6px 12px;
            }
            .dashboard-top { margin-bottom: 24px; padding-bottom: 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
            
            /* Stronger Glassmorphism for mobile legibility */
            .problem-card, .process-card, .service-card, .dashboard-wrapper, .stat-box {
                background-color: rgba(20, 22, 30, 0.75);
            }
        }