/* CSS Variables */
        :root {
            --primary: #2563EB;
            --primary-hover: #1d4ed8;
            --dark-bg: #0A0F1E;
            --dark-surface: #0D1526;
            --darker-bg: #080D18;
            --light-bg: #F0F4FF;
            --light-surface: #ffffff;
            --text-dark: #0A0A0B;
            --text-light: #FFFFFF;
            --text-muted-light: #6B7280;
            --text-muted-dark: #94A3B8;
            --font-heading: 'Geist', sans-serif;
            --font-body: 'Inter', sans-serif;
            --radius-card: 16px;
            --radius-pill: 999px;
            --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        ul {
            list-style: none;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .pill-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pill-badge.light {
            border: 1px solid rgba(37, 99, 235, 0.2);
            color: var(--primary);
            background: rgba(37, 99, 235, 0.05);
        }

        .pill-badge.dark {
            border: 1px solid rgba(37, 99, 235, 0.5);
            color: var(--primary);
            background: rgba(37, 99, 235, 0.1);
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: var(--radius-pill);
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: var(--transition-smooth);
            font-family: var(--font-body);
            gap: 8px;
        }

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

        .btn-primary:hover {
            background-color: var(--primary-hover);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            transform: translateY(-2px);
        }

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

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

        .btn-outline-dark {
            border: 1px solid var(--text-muted-dark);
            color: var(--text-light);
        }

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

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-smooth);
        }

        .fade-in {
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(-30px);
            transition: var(--transition-smooth);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(30px);
            transition: var(--transition-smooth);
        }

        .visible {
            opacity: 1 !important;
            transform: translate(0, 0) !important;
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            ::before,
            ::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition-smooth);
            background: transparent;
        }

        .navbar.scrolled {
            padding: 16px 0;
            background: rgba(10, 15, 30, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .navbar.scrolled .nav-link {
            color: var(--text-light);
        }

        .navbar.scrolled .logo-text-vyn,
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-size: 24px;
        }

        .logo-text-vyn {
            font-weight: 700;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .logo-text-flo {
            font-weight: 400;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 15px;
        }

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

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-dark);
            cursor: pointer;
        }

        .navbar.scrolled .hamburger {
            color: var(--text-light);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 0 0;
            background: radial-gradient(circle at center, #ffffff 0%, var(--light-bg) 100%);
            overflow: hidden;
            text-align: center;
        }

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

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            perspective: 2000px;
        }

        .hero h1 {
            font-size: clamp(48px, 6vw, 80px);
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-muted-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .dashboard-mockup {
            margin-top: 48px;
            background: var(--light-surface);
            border-radius: 24px 24px 0 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
            padding: 24px;
            padding-bottom: 0;
            width: 100%;
            max-width: 900px;
            display: flex;
            gap: 24px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: none;
            text-align: left;
            max-height: 220px;
            overflow: hidden;
            position: relative;
            transform-origin: top center;
            transform: perspective(1200px) rotateX(15deg) scale(0.95);
        }

        .dashboard-mockup.visible {
            transform: perspective(1200px) rotateX(15deg) scale(0.95) !important;
        }

        .dashboard-mockup::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent, #ffffff);
            pointer-events: none;
            z-index: 2;
        }

        .dash-sidebar {
            width: 200px;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            padding-right: 24px;
        }

        .dash-sidebar ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 24px;
        }

        .dash-sidebar li {
            font-size: 14px;
            color: var(--text-muted-light);
            padding: 8px 12px;
            border-radius: 8px;
        }

        .dash-sidebar li.active {
            background: rgba(37, 99, 235, 0.05);
            color: var(--primary);
            font-weight: 500;
        }

        .dash-main {
            flex: 1;
        }

        .dash-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .dash-stat-card {
            background: var(--light-bg);
            padding: 16px;
            border-radius: 12px;
        }

        .dash-stat-value {
            font-size: 24px;
            font-weight: 700;
            font-family: var(--font-heading);
            margin: 4px 0;
        }

        .dash-stat-label {
            font-size: 12px;
            color: var(--text-muted-light);
        }

        .dash-stat-trend {
            font-size: 12px;
            color: #10b981;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .dash-chart {
            background: var(--light-bg);
            height: 160px;
            border-radius: 12px;
            display: flex;
            align-items: flex-end;
            padding: 16px;
            gap: 8px;
        }

        .dash-chart-bar {
            flex: 1;
            background: var(--primary);
            border-radius: 4px 4px 0 0;
            opacity: 0.8;
            transition: height 1s ease;
        }

        /* Section 2: Why This Matters */
        .why-matters {
            padding: 120px 0;
            background: #ffffff;
        }

        .split-layout {
            display: grid;
            grid-template-columns: 40% 1fr;
            gap: 64px;
        }

        .section-label {
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            display: block;
        }

        .why-matters h2 {
            font-size: 40px;
            margin-bottom: 24px;
        }

        .why-matters p {
            color: var(--text-muted-light);
            font-size: 16px;
        }

        .problem-list {
            display: flex;
            flex-direction: column;
        }

        .problem-item {
            padding: 24px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .problem-item:first-child {
            padding-top: 0;
        }

        .problem-item h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .problem-item p {
            color: var(--text-muted-light);
            font-size: 15px;
        }

        /* Section 3: Services */
        .services {
            padding: 120px 0;
            background: #F8FAFF;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 80px;
        }

        .section-header h2 {
            font-size: 40px;
            margin: 16px 0;
        }

        .section-header.dark h2 {
            color: var(--text-light);
        }

        .section-header p {
            color: var(--text-muted-light);
            font-size: 18px;
        }

        .section-header.dark p {
            color: var(--text-muted-dark);
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-bottom: 120px;
        }

        .service-row:last-child {
            margin-bottom: 0;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .service-content h3 {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .service-content p {
            color: var(--text-muted-light);
            font-size: 16px;
            margin-bottom: 24px;
        }

        .service-visual {
            background: #ffffff;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            position: relative;
            overflow: hidden;
        }

        .service-visual:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        }

        .service-visual-inner {
            width: 100%;
            height: 100%;
        }

        /* Section 4: Why VynFlo */
        .why-vynflo {
            padding: 120px 0;
            background: #ffffff;
        }

        

        

        

        

        /* Wave Divider */
        .wave-divider {
            line-height: 0;
            background: #ffffff;
        }

        .wave-divider svg {
            display: block;
            width: 100%;
            height: 100px;
        }

        /* Dark Sections */
        .dark-section {
            background-color: var(--dark-bg);
            color: var(--text-light);
        }

        /* Section 5: How It Works */
        .how-it-works {
            padding: 120px 0;
        }

        
        .timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            padding: 0;
        }

        #timelineSvg {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            width: 2px;
            height: 100%;
            z-index: 0;
        }

        .timeline-step {
            position: relative;
            width: 50%;
            padding-bottom: 64px;
        }

        .timeline-step:last-child {
            padding-bottom: 0;
        }

        .timeline-step:nth-child(odd) {
            left: 0;
            padding-right: 56px;
            text-align: right;
        }

        .timeline-step:nth-child(even) {
            left: 50%;
            padding-left: 56px;
            text-align: left;
        }

        .timeline-node {
            position: absolute;
            top: 0;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--dark-bg);
            border: 2px solid rgba(255, 255, 255, 0.2);
            z-index: 2;
            transition: var(--transition-smooth);
        }

        .timeline-step:nth-child(odd) .timeline-node {
            right: -9px;
            left: auto;
        }

        .timeline-step:nth-child(even) .timeline-node {
            left: -9px;
            right: auto;
        }

        .timeline-step.active .timeline-node {
            border-color: var(--primary);
            box-shadow: 0 0 15px var(--primary);
        }
        
        .timeline-step.filled .timeline-node {
            background: var(--primary);
        }

        .step-number-bg {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 160px;
            font-family: var(--font-heading);
            font-weight: 800;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1;
            z-index: 0;
            opacity: 0.06;
            pointer-events: none;
        }

        .timeline-step:nth-child(odd) .step-number-bg {
            left: 0;
            right: auto;
        }

        .timeline-step:nth-child(even) .step-number-bg {
            right: 0;
            left: auto;
        }

        .step-content {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .timeline-step:nth-child(odd) .step-content {
            flex-direction: row-reverse;
        }

        .step-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-card);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .step-text h3 {
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--text-light);
        }

        .step-text p {
            color: var(--text-muted-dark);
            font-size: 16px;
        }

        .process-tagline {
            text-align: center;
            margin-top: 80px;
            color: var(--text-muted-dark);
            font-size: 18px;
            font-style: italic;
        }

        /* Section 6: FAQ */
        .faq {
            padding: 120px 0;
        }

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

        
        .faq-item {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 0 24px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

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

        .faq-icon {
            color: var(--primary);
            transition: transform 0.3s ease, bottom 0.4s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer p {
            padding-bottom: 24px;
            color: #94A3B8;
            font-size: 16px;
        }

        .faq-item.active {
            border: 1px solid rgba(37,99,235,0.3);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Section 7: CTA Banner */
        .cta-banner {
            padding: 120px 0;
            background: var(--dark-surface);
            position: relative;
            overflow: hidden;
        }

        .cta-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.5;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .cta-text .logo-small {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            color: white;
            font-family: var(--font-heading);
            font-weight: 700;
        }

        .cta-text h2 {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .cta-text p {
            color: var(--text-muted-dark);
            font-size: 18px;
            margin-bottom: 32px;
        }

        
        .cta-stats-card {
            background: var(--dark-bg);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(37, 99, 235, 0.3);
            box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

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

        .cta-stat:not(:last-child) {
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-stat-value {
            font-size: 48px;
            font-weight: 800;
            font-family: var(--font-heading);
            color: var(--primary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .cta-stat-label {
            color: var(--text-muted-dark);
            font-size: 14px;
        }

        /* Section 8: Contact */
        .contact {
            padding: 120px 0;
            background: var(--dark-bg);
        }

        .contact-info h2 {
            font-size: 40px;
            margin-bottom: 24px;
        }

        .contact-info p {
            color: var(--text-muted-dark);
            font-size: 16px;
            margin-bottom: 40px;
        }

        .contact-methods {
            margin-bottom: 40px;
        }

        .contact-method {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-method span {
            color: var(--text-muted-dark);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .contact-method a {
            color: var(--text-light);
            font-weight: 500;
        }

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

        .contact-form-card {
            background: var(--dark-surface);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(37, 99, 235, 0.2);
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

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

        .form-control {
            width: 100%;
            padding: 14px 16px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-light);
            font-family: var(--font-body);
            font-size: 15px;
            transition: var(--transition-smooth);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.4);
        }

        .form-control::placeholder {
            color: var(--text-muted-dark);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
        }

        select.form-control option {
            background: var(--dark-surface);
            color: var(--text-light);
        }

        .form-submit {
            width: 100%;
            margin-top: 10px;
        }

        .form-fineprint {
            display: block;
            margin-top: 16px;
            font-size: 12px;
            color: var(--text-muted-dark);
            text-align: center;
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 80px 0 32px;
            color: var(--text-light);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 64px;
            margin-bottom: 64px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-size: 24px;
            margin-bottom: 16px;
        }

        .footer-desc {
            color: var(--text-muted-dark);
            font-size: 15px;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
            color: var(--text-muted-dark);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-links a {
            color: var(--text-light);
            font-size: 15px;
        }

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

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .social-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(37, 99, 235, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted-dark);
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        /* Floating Elements */
        .floating-whatsapp {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 900;
            transition: transform 0.3s ease, bottom 0.4s ease;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
        }

        .scroll-top {
            position: fixed;
            bottom: 108px;
            right: 32px;
            width: 44px;
            height: 44px;
            background: var(--dark-surface);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 900;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-top:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Mobile Overlay Nav */
        .mobile-nav {
            position: fixed;
            padding: 32px 24px;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--dark-bg);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav a {
            font-size: 24px;
            font-family: var(--font-heading);
            color: white;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 992px) {

            .split-layout,
            .service-row,
            .cta-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .service-row:nth-child(even) .service-content {
                order: 2;
            }

            .service-row:nth-child(even) .service-visual {
                order: 1;
            }

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

        @media (max-width: 768px) {

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

            .hamburger {
                display: block;
            }

            .hero {
                padding: 100px 0 0;
            }

            .hero h1 {
                font-size: clamp(36px, 8vw, 48px);
            }

            .dashboard-mockup,
            .dashboard-mockup.visible {
                flex-direction: column;
                transform: translate(0, 0) !important;
            }

            .dash-sidebar {
                display: none;
            }

            .dash-sidebar ul {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .dash-stats {
                grid-template-columns: 1fr 1fr;
            }

            

            .cta-stats-card {
                flex-direction: column;
                gap: 32px;
            }

            .cta-stat:not(:last-child) {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding-bottom: 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .timeline {
                padding-left: 0;
            }

            .timeline-step {
                padding-left: 48px;
            }

            #timelineSvg {
                left: 12px;
            }

            .timeline-node {
                left: -8px;
                width: 14px;
                height: 14px;
            }

            .step-number-bg {
                font-size: 80px;
            }

            .step-content {
                flex-direction: column;
                gap: 16px;
            }
        }


/* Additional Responsive Fixes */
@media (max-width: 768px) {
    .timeline {
        padding-left: 0;
    }
    
    #timelineSvg {
        left: 24px !important;
        transform: translateX(-50%) !important;
    }
    
    .timeline-step {
        width: 100% !important;
        left: 0 !important;
        padding-left: 56px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-step .timeline-node {
        left: 17px !important;
        right: auto !important;
    }
    
    .timeline-step .step-number-bg {
        left: auto !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 80px;
    }
    
    .timeline-step .step-content {
        flex-direction: row !important;
    }
    
    .cta-stats-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 24px;
    }
}

/* -----------------------------------
   NEW SERVICES CSS AND ANIMATIONS
   ----------------------------------- */

.bg-light-card {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    min-height: 300px;
}

/* Service 1: Browser Mockup */
.browser-mockup {
    width: 100%;
    max-width: 340px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}
.browser-header {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.browser-url {
    flex: 1; background: white; border: 1px solid #E2E8F0; border-radius: 6px; padding: 4px 12px; font-size: 10px; color: #64748B; font-family: monospace;
}
.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #64748B;
    animation: typing 2s steps(10) forwards, blink 1s step-end infinite;
    width: 0;
}
@keyframes typing { from { width: 0 } to { width: 80px } }
@keyframes blink { 50% { border-color: transparent } }

.browser-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.mock-nav { width: 100%; height: 12px; background: #E2E8F0; border-radius: 4px; }
.mock-h1 { width: 80%; height: 24px; background: #2563EB; border-radius: 6px; margin-top: 12px; }
.mock-p { width: 60%; height: 12px; background: #CBD5E1; border-radius: 4px; }
.mock-btn { width: 80px; height: 28px; background: #2563EB; border-radius: 14px; margin-top: 12px; }

.floating-card {
    position: absolute;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid #E2E8F0;
}
.card-label { font-size: 10px; color: #64748B; font-weight: 600; text-transform: uppercase; }
.card-score { font-size: 18px; font-weight: 800; color: #10B981; }
.perf-card { bottom: 20px; left: -20px; }
.speed-card { bottom: 60px; right: -20px; }

/* Service 2: WhatsApp Mockup */
.whatsapp-mockup {
    width: 100%; max-width: 280px; background: #ECE5DD; border-radius: 16px; overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 1px solid #E2E8F0; display: flex; flex-direction: column;
}
.wa-header { background: #075E54; padding: 16px; color: white; }
.wa-title { font-weight: 600; font-size: 16px; }
.wa-subtitle { font-size: 12px; opacity: 0.8; }
.wa-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.wa-msg { padding: 8px 12px; border-radius: 12px; font-size: 13px; max-width: 85%; }
.user-msg { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 4px; }
.bot-msg { background: white; align-self: flex-start; border-top-left-radius: 4px; }

/* Service 3: Web Chat Mockup */
.webchat-bg {
    width: 100%; height: 240px; position: relative; display: flex; flex-direction: column; gap: 12px; padding: 24px;
}
.webchat-line { height: 8px; background: #F1F5F9; border-radius: 4px; }
.w-80 { width: 80%; } .w-60 { width: 60%; } .w-90 { width: 90%; } .w-70 { width: 70%; } .w-50 { width: 50%; }
.mt-20 { margin-top: 20px; }
.webchat-widget {
    position: absolute; bottom: 24px; right: 24px; background: white; border-radius: 16px; border-bottom-right-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 16px; width: 220px; display: flex; flex-direction: column; gap: 12px;
}
.webchat-msg {
    background: #F0F4FF; padding: 12px; border-radius: 12px; border-bottom-left-radius: 4px; font-size: 13px; color: #1E293B;
}
.typing-cursor-text {
    display: inline-block; overflow: hidden; white-space: nowrap; width: 0;
    border-right: 2px solid #2563EB;
    animation: typing-chat 2s steps(25) forwards 0.5s, blink 1s step-end infinite;
}
@keyframes typing-chat { from { width: 0 } to { width: 100% } }
.webchat-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.webchat-pill {
    padding: 6px 12px; background: white; border: 1px solid #2563EB; color: #2563EB;
    border-radius: 16px; font-size: 11px; font-weight: 500;
}

/* Service 4: Voice Agent */
.voice-agent-mockup {
    display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%;
}
.voice-rings { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.voice-ring {
    position: absolute; width: 64px; height: 64px; border-radius: 50%; border: 2px solid #2563EB; opacity: 0;
}
.voice-icon-circle {
    width: 64px; height: 64px; background: linear-gradient(135deg, #2563EB, #60A5FA); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.voice-label { font-size: 18px; font-weight: 700; color: #2563EB; margin-bottom: 4px; }
.voice-sub { font-size: 14px; color: #64748B; margin-bottom: 24px; }
.sound-waves { display: flex; gap: 4px; align-items: center; height: 40px; }
.wave-bar { width: 4px; background: #2563EB; border-radius: 2px; height: 10px; }

/* Service 5: Kanban */
.kanban-mockup { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 24px; }
.kanban-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.k-col { background: #F8FAFC; padding: 12px; border-radius: 8px; display: flex; flex-direction: column; gap: 8px; border: 1px solid #E2E8F0; }
.k-title { font-size: 11px; font-weight: 700; color: #64748B; text-transform: uppercase; margin-bottom: 4px; }
.k-card { height: 24px; background: white; border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.progress-container { width: 100%; height: 8px; background: #E2E8F0; border-radius: 4px; overflow: hidden; }
.progress-bar { height: 100%; background: #10B981; width: 0; }


/* Animations Library */
.anim-fade-down { opacity: 0; transform: translateY(-10px); animation: fadeDown 0.6s forwards; }
.anim-fade-up { opacity: 0; transform: translateY(10px); animation: fadeUp 0.6s forwards; }
.anim-slide-left { opacity: 0; transform: translateX(-20px); animation: slideLeft 0.6s forwards 1.5s; }
.anim-slide-right { opacity: 0; transform: translateX(20px); animation: slideRight 0.6s forwards 1.7s; }
.anim-fade-in-up { opacity: 0; transform: translateY(10px); animation: fadeUp 0.5s forwards; }
.anim-slide-up-scale { opacity: 0; transform: translateY(20px) scale(0.95); transform-origin: bottom right; animation: slideUpScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.anim-fade-in { opacity: 0; animation: fadeIn 0.5s forwards; }
.anim-pulse-ring { animation: pulseRing 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1); }
.anim-wave { animation: soundWave 1s infinite alternate ease-in-out; }
.anim-slide-in-right { opacity: 0; transform: translateX(10px); animation: slideRight 0.4s forwards; }
.anim-fill-progress { animation: fillProgress 2s cubic-bezier(0.1, 0.7, 0.1, 1) forwards 1s; }

.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }
.anim-delay-3 { animation-delay: 0.6s; }
.anim-delay-4 { animation-delay: 0.8s; }
.anim-delay-5 { animation-delay: 1.0s; }
.anim-delay-6 { animation-delay: 1.2s; }

@keyframes fadeDown { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { to { opacity: 1; transform: translateX(0); } }
@keyframes slideUpScale { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.8; border-width: 2px; } 100% { transform: scale(2.5); opacity: 0; border-width: 1px; } }
@keyframes soundWave { 0% { height: 10px; } 100% { height: 32px; } }
@keyframes fillProgress { to { width: 85%; } }


@keyframes typing { from { width: 0 } to { width: 100% } }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }
@keyframes popIn { from { opacity: 0; transform: scale(0.92) } to { opacity: 1; transform: scale(1) } }
@keyframes fillBar { from { width: 0 } to { width: 75% } }
@keyframes bounce { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-4px) } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-16px) } to { opacity: 1; transform: translateY(0) } }

        /* Flip Cards Section */
        .features-flip-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .flip-card-wrapper {
            perspective: 1000px;
            height: 200px;
            cursor: pointer;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        @media (hover: hover) and (pointer: fine) {
            .flip-card-wrapper:hover .card-inner {
                transform: rotateY(180deg);
            }
        }

        .card-inner.flipped {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 16px;
        }

        .card-front {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-icon {
            background: rgba(37, 99, 235, 0.08);
            border-radius: 10px;
            padding: 10px;
            width: 44px;
            height: 44px;
            color: #2563EB;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-front-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .card-title-front {
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 17px;
            color: var(--text-dark);
            margin: 0;
        }

        .reveal-hint {
            color: #94A3B8;
            font-size: 11px;
        }

        .desktop-hint { display: block; }
        .mobile-hint { display: none; }

        .card-back {
            transform: rotateY(180deg);
            background: linear-gradient(135deg, #1d4ed8, #2563EB);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }

        .card-title-back {
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 16px;
            color: white;
            margin: 0;
        }

        .card-desc-back {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .features-flip-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .desktop-hint { display: none; }
            .mobile-hint { display: block; }
        }
        @media (max-width: 480px) {
            .features-flip-grid {
                grid-template-columns: 1fr;
            }
        }

@keyframes msgIn {
    0% { opacity: 0; transform: translateY(6px); }
    5% { opacity: 1; transform: translateY(0); }
    99% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(6px); }
}

@keyframes peek {
    0%, 100% { transform: rotateY(0deg); }
    5.88% { transform: rotateY(25deg); }
    11.76% { transform: rotateY(0deg); }
}

.anim-peek {
    animation: peek 6.8s ease-in-out infinite forwards;
}

@media (hover: hover) and (pointer: fine) {
    .flip-card-wrapper:hover .card-inner {
        transform: rotateY(180deg) !important;
        animation: none !important;
    }
}
.card-inner.flipped {
    transform: rotateY(180deg) !important;
    animation: none !important;
}

@keyframes msgIn {
    0% { opacity: 0; transform: translateY(6px); }
    5%, 95% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(6px); }
}

@keyframes peek {
    0%, 100% { transform: rotateY(0deg); }
    4.16%, 9.16% { transform: rotateY(25deg); }
    13.33% { transform: rotateY(0deg); }
}

.problem-list.active .strike-line {
    width: 100% !important;
}

.problem-list.active .fixed-badge {
    opacity: 1 !important;
}

.flip-card-wrapper:hover .card-inner {
    animation: none !important;
    transform: rotateY(180deg) !important;
}
.card-inner.flipped {
    animation: none !important;
    transform: rotateY(180deg) !important;
}

@keyframes msgIn {
    0% { opacity: 0; transform: translateY(6px); }
    5% { opacity: 1; transform: translateY(0); }
    95% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(6px); }
}

/* Strikethrough Visibility */
.strike-list.visible .strike-line {
    width: 100% !important;
}
.strike-list.visible .fixed-badge {
    opacity: 1 !important;
}

/* Peek Animation */
@keyframes peek {
    0% { transform: rotateY(0deg); }
    4% { transform: rotateY(25deg); }
    9% { transform: rotateY(25deg); }
    13.33% { transform: rotateY(0deg); }
    100% { transform: rotateY(0deg); }
}

.flip-card-wrapper:hover .card-inner {
    animation: none !important;
    transform: rotateY(180deg) !important;
}
.card-inner.flipped {
    animation: none !important;
    transform: rotateY(180deg) !important;
}

/* Animated Wave Divider */
.wave-divider svg {
  display: block;
  width: 100%;
  height: 120px;
}

.wave-back {
  animation: waveBack 6s ease-in-out infinite alternate;
  transform-origin: center;
}

.wave-front {
  animation: waveFront 4s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes waveBack {
  0% { d: path("M0,40 C320,120 420,0 720,60 C1020,120 1120,20 1440,60 L1440,120 L0,120 Z"); }
  100% { d: path("M0,70 C280,10 480,110 720,50 C960,0 1200,90 1440,30 L1440,120 L0,120 Z"); }
}

@keyframes waveFront {
  0% { d: path("M0,60 C320,0 520,100 720,50 C920,0 1120,80 1440,40 L1440,120 L0,120 Z"); }
  100% { d: path("M0,30 C360,90 500,10 720,70 C940,120 1100,20 1440,70 L1440,120 L0,120 Z"); }
}

/* Live Activity Card */
.live-activity-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(37,99,235,0.3);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 0 30px rgba(37,99,235,0.1);
    overflow: hidden;
    position: relative;
    height: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: livePulse 1.5s ease-in-out infinite;
}

.activity-title {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.activity-brand {
    color: #94A3B8;
    font-size: 12px;
    margin-left: auto;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.activity-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.activity-icon.green {
    background: rgba(74,222,128,0.15);
}

.activity-icon.blue {
    background: rgba(37,99,235,0.15);
}

.activity-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-text {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.activity-time {
    color: #94A3B8;
    font-size: 11px;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

@keyframes feedSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes feedSlideOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

.slide-in-new {
    animation: feedSlideIn 0.4s ease forwards;
}

.slide-out-old {
    animation: feedSlideOut 0.4s ease forwards;
}

@media (max-width: 768px) {
    .live-activity-card {
        height: auto;
    }
}

/* Legal Pages Typography */
.legal-content {
    background: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted-light);
    margin-bottom: 48px;
}

.legal-section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
    margin-top: 40px;
}

.legal-section-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08em;
}

.legal-section-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.legal-p, .legal-ul li {
    font-size: 16px;
    color: var(--text-muted-light);
    line-height: 1.8;
}

.legal-ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--primary);
}

.legal-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin: 32px 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transition: opacity 0.4s ease;
}

.cookie-text {
    color: white;
    font-size: 14px;
}

.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

body.has-cookie-banner .floating-whatsapp {
    bottom: 102px;
}
body.has-cookie-banner .scroll-top {
    bottom: 178px;
}

.navbar.menu-open .hamburger { color: white; }

.problem-title.struck {
  text-decoration: line-through;
  text-decoration-color: #2563EB;
  text-decoration-thickness: 2px;
  transition: text-decoration 0.3s ease;
}

@media (max-width: 768px) {
    .website-chatbot-widget {
        width: 140px !important;
        font-size: 10px !important;
    }

}
