    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background: #f4f7fb;
            color: #222;
        }

        /* Header */
        header {
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #2563eb;
        }

        .menu {
            display: flex;
            list-style: none;
        }

        .menu li {
            margin-left: 25px;
        }

        .menu a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: .3s;
        }

        .menu a:hover {
            color: #2563eb;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #2563eb, #5b21b6);
            color: #fff;
            text-align: center;
            padding: 80px 20px;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 18px;
            opacity: .9;
        }

        /* Plan */
        .plans {
            max-width: 1200px;
            margin: 60px auto;
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .card {
            width: 340px;
            margin-right: 15px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
            text-align: center;
            overflow: hidden;
        }

        .card-top {
            background: #2563eb;
            color: #fff;
            padding: 20px;
            font-size: 24px;
            font-weight: bold;
        }

        .price {
            font-size: 55px;
            color: #2563eb;
            margin: 25px 0 10px;
            font-weight: bold;
        }

        .price span {
            font-size: 20px;
        }

        .features {
            list-style: none;
            padding: 20px;
            text-align: left;
        }

        .features li {
            padding: 10px;
            border-bottom: 1px solid #eee;
        }

        .btn {
            display: inline-block;
            margin: 20px;
            background: #2563eb;
            color: #fff;
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
        }

        .btn:hover {
            background: #1d4ed8;
        }

        footer {
            background: #111827;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }

        /* Mobile */
        .menu-toggle {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #2563eb;
            user-select: none;
        }

        @media (max-width:768px) {
            .nav {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .menu-toggle {
                display: block;
            }

            .menu {
                display: none;
                flex-direction: column;
                width: 40%;
                background: #fff;
                position: absolute;
                top: 90px;
                left: 59%;
                box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
                padding: 5px 0;
                border-radius: 5px;
            }

            .menu.show {
                display: flex;
            }

            .menu li {
                margin: 12px 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 30px;
            }

            .site-info {
                text-align: center;
                color: #1e293b;
                font-size: 18px;
                margin-top: 15px;
                margin-bottom: 15px;
                font-family: inherit;
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.7;
                padding: 0 20px;
            }

            .plans {
                padding: 12px;
                margin: 25px auto;
                flex-direction: column;
                align-items: center;
                gap: 18px;
            }

            .card {
                width: 100%;
                max-width: 380px;
                margin: 0;
            }

            .card-top {
                font-size: 20px;
                padding: 16px;
            }

            .price {
                font-size: 42px;
            }

            .price span {
                font-size: 16px;
            }
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 40px auto 20px;
            padding: 0 20px;
        }

        .tech-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            transition: .3s;
        }

        .tech-card:hover {
            transform: translateY(-6px);
        }

        .icon {
            width: 70px;
            height: 70px;
            margin: auto;
            border-radius: 50%;
            background: #1565ff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 34px;
            box-shadow: 0 8px 20px rgba(21, 101, 255, .35);
        }

        /* ----- Why Emadia Section ----- */
        .why-emadia {
            background: #ffffff;
            padding: 60px 20px;
            text-align: center;
            border-bottom: 1px solid #eaeef5;
        }

        .why-emadia .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-emadia h2 {
            font-size: 34px;
            color: #1e293b;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .why-emadia .subhead {
            font-size: 18px;
            color: #475569;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: left;
        }

        .why-item {
            background: #f8fafc;
            padding: 28px 22px;
            border-radius: 20px;
            transition: all 0.2s ease;
            border: 1px solid #e9edf2;
        }

        .why-item:hover {
            background: #ffffff;
            border-color: #2563eb;
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
            transform: translateY(-3px);
        }

        .why-item h3 {
            font-size: 20px;
            color: #0f172a;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .why-item h3 span {
            background: #2563eb;
            color: white;
            font-size: 18px;
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .why-item p {
            color: #334155;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        /* ----- Testimonials / Trust section above footer ----- */
        .testimonials {
            background: #f8fafc;
            padding: 60px 20px;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .testimonials .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonials h2 {
            font-size: 32px;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .testimonials .sub {
            color: #475569;
            font-size: 17px;
            margin-bottom: 40px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            text-align: left;
        }

        .testimonial-card {
            background: #fff;
            padding: 28px 24px;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f6;
            transition: 0.2s;
        }

        .testimonial-card:hover {
            border-color: #2563eb;
            box-shadow: 0 12px 28px rgba(37, 99, 235, 0.06);
        }

        .testimonial-card .stars {
            color: #f59e0b;
            font-size: 20px;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .testimonial-card blockquote {
            font-size: 15px;
            line-height: 1.7;
            color: #1e293b;
            font-style: italic;
            margin-bottom: 16px;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-card .author .avatar {
            width: 44px;
            height: 44px;
            background: #2563eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }

        .testimonial-card .author .name {
            font-weight: 600;
            color: #0f172a;
            font-size: 15px;
        }

        .testimonial-card .author .role {
            font-size: 13px;
            color: #64748b;
        }

        .trust-badge {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 45px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }

        .trust-badge .item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1e293b;
            font-weight: 500;
            font-size: 15px;
        }

        .trust-badge .item span {
            font-size: 26px;
        }

        @media (max-width: 640px) {
            .why-emadia h2 {
                font-size: 26px;
            }
            .why-item h3 {
                font-size: 18px;
            }
            .testimonials h2 {
                font-size: 26px;
            }
            .trust-badge {
                gap: 20px;
            }
        }
        /* ---- end ---- */