/* ------------------------------------------------------------
           COMPLETE DESIGN SYSTEM – IDENTICAL TO ATTACHED "ABOUT" PAGE
           (100% same variables, cards, buttons, footer – no changes)
        ------------------------------------------------------------ */
        :root {
            --primary-color: #2d4ef5;
            --primary-light: #4d6aff;
            --primary-dark: #1a3bd4;
            --secondary-color: #2b2b36;
            --accent-color: #00d4aa;
            --accent-light: #4dffd9;
            --danger-color: #ff4757;
            --warning-color: #ffa502;
            --success-color: #2ed573;
            --info-color: #1e90ff;
            --bg-light: #f8f9fa;
            --bg-dark: #1a1a24;
            --text-dark: #2d3748;
            --text-light: #718096;
            --text-white: #ffffff;
            --border-radius: 12px;
            --border-radius-sm: 8px;
            --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

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

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

        

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(45, 78, 245, 0.2);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent-color), #00b894);
            color: white;
        }

        .btn-accent:hover {
            background: linear-gradient(135deg, #00b894, var(--accent-color));
            color: white;
            transform: translateY(-2px);
        }

        .section-padding {
            padding: 100px 0;
        }

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

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Header – exactly the same */
        .main-header {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .main-header.scrolled {
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            padding: 20px 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        .navbar-brand .logo-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
        }

        .nav-link {
            font-weight: 500;
            padding: 10px 20px !important;
            margin: 0 5px;
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
        }

        .nav-link:hover, .nav-link.active {
            background: rgba(45, 78, 245, 0.1);
            color: var(--primary-color);
        }

        /* Hero – custom for small business (fresh, warm gradient) */
        .smb-hero {
            background: linear-gradient(135deg, #0f4c81, #1e6f9c, #219ebc);
            color: white;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .smb-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.04"><path fill="%23ffffff" d="M0,0V600H1200V0ZM600,300A300,300,0,1,1,300,600,300,300,0,0,1,600,300Z"/></svg>');
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .smb-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
        }

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

        .smb-stat h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
            color: var(--accent-light);
        }

        .smb-stat p {
            opacity: 0.8;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Card styles – exactly as original */
        .feature-card, .smb-card, .benefit-card, .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover, .smb-card:hover, .benefit-card:hover, .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-lg);
        }

        .feature-icon, .smb-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }

        /* icon gradients – small business friendly */
        .icon-easy { background: linear-gradient(135deg, #2d4ef5, #4d6aff); }
        .icon-price { background: linear-gradient(135deg, #0ca678, #12b886); }
        .icon-nocode { background: linear-gradient(135deg, #e67700, #f08c00); }
        .icon-time { background: linear-gradient(135deg, #9c36b5, #ae3ec9); }
        .icon-allinone { background: linear-gradient(135deg, #d9480f, #e8590c); }
        .icon-support { background: linear-gradient(135deg, #1864ab, #1971c2); }

        /* simple explanation / how it works */
        .step-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.03);
            box-shadow: var(--box-shadow);
            height: 100%;
        }
        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        /* testimonial */
        .testimonial-card {
            padding: 30px 25px;
        }
        .testimonial-quote {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Footer – exact copy from attached "About" page */
        .main-footer {
            background: var(--bg-dark);
            color: white;
            padding: 80px 0 30px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-logo .logo-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
        }
        .footer-about { opacity: 0.8; margin-bottom: 25px; }
        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-link {
            width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; transition: var(--transition);
        }
        .social-link:hover { background: var(--primary-color); transform: translateY(-3px); }
        .footer-heading { font-size: 1.2rem; font-weight: 600; margin-bottom: 25px; padding-bottom: 10px; position: relative; }
        .footer-heading::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px;
            background: var(--accent-color); border-radius: 3px;
        }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.8); transition: var(--transition); }
        .footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
        .footer-contact li { display: flex; align-items: flex-start; margin-bottom: 15px; color: rgba(255,255,255,0.8); }
        .footer-contact li i { margin-right: 10px; color: var(--accent-color); margin-top: 5px; }
        .copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; margin-top: 50px; text-align: center; opacity: 0.7; font-size: 0.9rem; }

        @media (max-width: 768px) {
            .hero-title { font-size: 2.3rem; }
            .section-title h2 { font-size: 2rem; }
            .smb-hero { padding: 150px 0 80px; }
        }

