
        :root {
            --primary: #0f8465;
            --primary-dark: #0a5c46;
            --secondary: #212529;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --accent: #e6f3ef;
            --danger: #dc3545;
            --border: #e1e1e1;
            --shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        /* --- GLOBAL RESETS --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: 'Lexend', sans-serif; 
            font-size: 16px; 
            line-height: 1.6; 
            color: var(--secondary); 
            background: var(--white); 
            overflow-x: hidden; 
        }
        h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--secondary); }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; transition: 0.3s; }

        /* --- BUTTONS --- */
        .btn { padding: 14px 28px; border-radius: 8px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; font-size: 16px; }
        .btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(15,132,101,0.3); }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
        .btn-secondary { background: white; color: var(--secondary); border: 1px solid #ddd; }
        .btn-secondary:hover { border-color: var(--secondary); transform: translateY(-2px); }
        .btn-white { background: white; color: var(--primary); font-weight: 700; }
        .btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
        .btn-call { background: #25D366; color: white; font-weight: 700; }
        .btn-call:hover { background: #1da851; transform: translateY(-2px); }

        /* --- NAVIGATION --- */
        nav { 
            display: flex; justify-content: space-between; align-items: center; 
            padding: 15px 8%; position: sticky; top: 0; background: rgba(255,255,255,0.98); 
            backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid #f0f0f0; 
        }
        .logo { font-size: 26px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; }
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { color: var(--secondary); font-weight: 500; font-size: 15px; }
        .nav-links a:hover { color: var(--primary); }

        .hamburger { display: none; font-size: 24px; cursor: pointer; color: var(--secondary); }
        
        @media (max-width: 992px) {
            .nav-links { 
                position: fixed; top: 0; right: -100%; height: 100vh; width: 280px; 
                background: white; flex-direction: column; padding: 80px 30px; 
                box-shadow: -5px 0 30px rgba(0,0,0,0.1); transition: 0.4s ease; 
                align-items: flex-start; z-index: 999;
            }
            .nav-links.active { right: 0; }
            .nav-links a { font-size: 18px; margin-bottom: 20px; width: 100%; border-bottom: 1px solid #eee; padding-bottom: 10px; }
            .nav-links .btn { width: 100%; justify-content: center; margin-top: 10px; }
            .hamburger { display: block; z-index: 1001; }
        }

        /* --- HERO SECTION --- */
        .hero { padding: 80px 8% 60px; text-align: center; background: radial-gradient(circle at 50% 0%, var(--accent) 0%, #ffffff 70%); }
        .hero h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.1; margin-bottom: 20px; max-width: 950px; margin-inline: auto; }
        .hero p { font-size: clamp(18px, 2vw, 20px); color: #555; margin-bottom: 40px; max-width: 700px; margin-inline: auto; }
        .cta-group { display: flex; gap: 15px; justify-content: center; margin-bottom: 50px; flex-wrap: wrap; }
        
        .dashboard-wrapper { perspective: 1200px; padding: 20px; }
        .dashboard-img { 
            width: 100%; max-width: 1100px; border-radius: 12px; margin: 0 auto;
            box-shadow: 0 40px 80px -20px rgba(0,0,0,0.2); border: 1px solid #eee;
            transform: rotateX(8deg); transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .dashboard-img:hover { transform: rotateX(0deg) scale(1.02); }

        /* --- TRUST STRIP --- */
        .trust-strip { text-align: center; padding: 40px 8%; opacity: 0.7; border-bottom: 1px solid #f0f0f0; }
        .trust-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 20px; align-items: center; }
        .trust-logos span { font-weight: 600; font-size: 18px; color: #888; display: flex; align-items: center; gap: 8px; }

        /* --- FEATURES GRID --- */
        .section-pad { padding: 100px 8%; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 36px; margin-bottom: 15px; }
        
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .feature-card { padding: 35px; background: var(--light-bg); border-radius: 16px; transition: 0.3s; border: 1px solid transparent; }
        .feature-card:hover { background: white; box-shadow: var(--shadow); border-color: var(--accent); transform: translateY(-5px); }
        .feature-icon { width: 60px; height: 60px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin-bottom: 25px; }

        /* --- HOW IT WORKS --- */
        .steps-section { background: white; }
        .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; position: relative; }
        .step-card { text-align: center; position: relative; z-index: 2; }
        .step-num { 
            width: 50px; height: 50px; background: var(--secondary); color: white; 
            border-radius: 50%; font-weight: 700; display: flex; align-items: center; 
            justify-content: center; margin: 0 auto 20px; font-size: 20px;
        }
        .step-card h3 { font-size: 20px; margin-bottom: 10px; }

        /* --- WORKSHOP SPLIT --- */
        .workshop-section { background: var(--secondary); color: white; padding: 100px 8%; position: relative; overflow: hidden; }
        .workshop-wrapper { display: flex; align-items: center; gap: 80px; position: relative; z-index: 2; }
        
        .workshop-content { flex: 1; }
        .workshop-badge { 
            background: rgba(15, 132, 101, 0.2); color: var(--primary); border: 1px solid var(--primary);
            padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
            display: inline-block; margin-bottom: 20px;
        }
        .workshop-content h2 { color: white; font-size: 42px; margin-bottom: 20px; line-height: 1.1; }
        .workshop-content p { color: #aaa; margin-bottom: 30px; font-size: 18px; }
        
        .workshop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
        .w-item { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
        .w-item i { color: var(--primary); font-size: 24px; margin-bottom: 10px; display: block; }
        .w-item h4 { color: white; font-size: 16px; margin-bottom: 5px; }
        .w-item span { color: #888; font-size: 13px; }

        .workshop-img { flex: 1; }
        .workshop-img img { border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); transform: rotate(2deg); transition: 0.5s; }
        .workshop-img img:hover { transform: rotate(0deg); }

        /* --- COMPARISON TABLE --- */
        .comparison-section { background: var(--light-bg); }
        .table-container { overflow-x: auto; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); background: white; }
        table { width: 100%; border-collapse: collapse; min-width: 700px; }
        th, td { padding: 25px; text-align: left; border-bottom: 1px solid #eee; }
        th { background: var(--secondary); color: white; }
        .byte-col { background: #f0faf7; color: var(--primary-dark); font-weight: 700; border-left: 3px solid var(--primary); }
        .cross { color: var(--danger); }
        .check { color: var(--primary); }
/* =========================
   MOBILE FIX – TEXT CUTTING
========================= */
@media (max-width: 768px) {

    /* Kill forced table width */
    table {
        min-width: 0 !important;
        width: 100% !important;
    }

    /* Remove horizontal scrolling */
    .table-container {
        overflow-x: hidden;
        box-shadow: none;
        background: transparent;
    }

    /* Break table layout completely */
    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 1.75rem;
        padding: 1rem;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    td {
        padding: 0.75rem 0;
        border-bottom: none;
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    /* Feature title */
    td:first-child {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #eee;
    }

    /* Labeled comparison blocks */
    td[data-label] {
        padding: 0.75rem;
        margin-top: 0.75rem;
        border-radius: 10px;
        background: #f8f8f8;
    }

    td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #666;
        margin-bottom: 0.4rem;
        letter-spacing: 0.04em;
    }

    /* Byte column highlight */
    .byte-col {
        background: #eefdf4;
        border-left: 4px solid var(--primary);
    }

    /* Icon safety */
    td i {
        float: left;
        margin-right: 0.5rem;
        margin-top: 0.15rem;
    }
}

        /* --- BENEFITS SECTION --- */
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .benefit-card { padding: 30px; background: white; border-radius: 12px; border: 1px solid #eee; }
        .benefit-number { font-size: 40px; font-weight: 800; color: var(--primary); opacity: 0.2; margin-bottom: 15px; }

        /* --- TESTIMONIALS --- */
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .testi-card { background: white; padding: 30px; border-radius: 12px; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
        .testi-header { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; }
        .avatar { width: 50px; height: 50px; background: #ddd; border-radius: 50%; object-fit: cover; }
        .stars { color: #ffc107; font-size: 12px; margin-top: 5px; }

        /* --- PRICING --- */
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        .price-card { background: white; padding: 40px; border-radius: 20px; border: 1px solid #eee; text-align: center; transition: 0.3s; position: relative; }
        .price-card.popular { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 10px 30px rgba(15,132,101,0.1); }
        .pop-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 5px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; }
        .price { font-size: 38px; font-weight: 800; color: var(--secondary); margin: 20px 0; }
        .price span { font-size: 16px; font-weight: 400; color: #777; }
        .price-features { list-style: none; text-align: left; margin: 30px 0; }
        .price-features li { margin-bottom: 12px; color: #555; display: flex; gap: 10px; }

        /* --- GETTING STARTED PROCESS --- */
        .process-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; }
        .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .process-card { text-align: center; padding: 30px; background: rgba(255,255,255,0.1); border-radius: 16px; border: 1px solid rgba(255,255,255,0.2); }
        .process-number { width: 60px; height: 60px; background: white; color: var(--primary); border-radius: 50%; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; }
        .call-cta { text-align: center; margin-top: 40px; }
        .call-cta h3 { color: white; font-size: 28px; margin-bottom: 20px; }

        /* --- FAQ SECTION --- */
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item { margin-bottom: 20px; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 20px; background: white; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-answer.active { padding: 0 20px 20px; max-height: 300px; }

        /* --- FINAL CTA --- */
        .final-cta { background: var(--primary); padding: 80px 8%; text-align: center; color: white; }
        .final-cta h2 { color: white; font-size: 38px; margin-bottom: 20px; }
        .final-cta p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 40px; font-size: 20px; }


        .setup-fee {
    font-size: 0.85rem;
    color: #777;
    margin-top: 6px;
}

        /* --- FOOTER --- */
        footer { background: #1a1d20; color: #aaa; padding: 80px 8% 30px; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid #333; padding-bottom: 50px; margin-bottom: 30px; }
        .footer-col h4 { color: white; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: #aaa; font-size: 14px; }
        .footer-col a:hover { color: var(--primary); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .local-badge { display: flex; align-items: center; gap: 10px; background: #333; padding: 8px 16px; border-radius: 50px; color: white; font-size: 13px; }

        /* --- RESPONSIVE TWEAKS --- */
        @media (max-width: 992px) {
            .hero { padding-top: 40px; }
            .workshop-wrapper { flex-direction: column; text-align: center; gap: 40px; }
            .workshop-grid { text-align: left; }
            .price-card.popular { transform: scale(1); }
            .footer-top { grid-template-columns: 1fr; gap: 30px; }
            .dashboard-img { transform: none !important; }
        }
   /* =========================
   FIX ELFSIGHT FOOTER GAP
========================= */
.elfsight-app-1d218c0c-476c-470b-a522-540c829c6c8a {
    position: fixed !important;
    bottom: 0;
    right: 0;
    z-index: 9999;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
}

/* Prevent Elfsight wrapper from reserving space */
[class^="elfsight-app-"],
[class*=" elfsight-app-"] {
    display: contents !important;
}
/* Side-by-side layout */
.trial-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Wide card */
.wide-card {
    width: 100%;
    padding: 40px;
}

/* After trial micro section */
.after-trial-box {
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    height: fit-content;
}

.after-trial-box h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.after-step {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.after-note {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

/* Mobile stacking */
@media (max-width: 900px) {
    .trial-layout {
        grid-template-columns: 1fr;
    }
}
