body {
    margin: 0;
    background: #0d1028;
    color: #fff;
    font-family: 'Cairo', Arial, Tahoma, sans-serif;
    min-height: 100vh;
}
.header {
    background: #0d1028;
    padding: 40px 0 10px 0;
    text-align: center;
    border-bottom: 1px solid #181b3a;
}
.header img {
    width: 65px;
    margin-bottom: 12px;
    animation: logoFadeIn 1s;
}
@keyframes logoFadeIn {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: none;}
}
.header h1 {
    margin: 0 0 10px 0;
    font-size: 2.3em;
    letter-spacing: 1px;
    animation: fadeInUp 1s;
}
.header p {
    color: #bfc9ff;
    margin: 0 0 10px 0;
    font-size: 1.15em;
    animation: fadeInUp 1.2s;
}
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: none;}
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0 25px 0;
    gap: 24px;
}
.feature-box {
    background: #181b3a;
    border-radius: 20px;
    min-width: 240px;
    max-width: 340px;
    padding: 25px 18px 18px 18px;
    margin: 10px;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.14);
    text-align: center;
    border-right: 5px solid #3949f5;
    transition: transform 0.16s, box-shadow 0.18s;
}
.feature-box:hover {
    transform: translateY(-6px) scale(1.018);
    box-shadow: 0 10px 38px 0 rgba(31, 38, 135, 0.18);
}
.feature-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #7c8aff;
}
.feature-box p {
    font-size: 1em;
    color: #d6e0ff;
    margin: 0;
}
.numbers {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin: 45px 0 30px 0;
}
.number-card {
    background: #191c33;
    border-radius: 15px;
    padding: 25px 35px;
    text-align: center;
}
.number-card .value {
    font-size: 2em;
    font-weight: bold;
    color: #a3e635;
}
.number-card .label {
    color: #c2d0fc;
    margin-top: 8px;
}
.pricing-section {
    background: #191c33;
    border-radius: 20px;
    margin: 45px auto 25px auto;
    padding: 38px 24px 28px 24px;
    max-width: 410px;
    box-shadow: 0 2px 16px 0 rgba(31, 38, 135, 0.13);
    text-align: center;
}
.pricing-section h2 {
    color: #bcbaff;
    margin-bottom: 18px;
    font-size: 1.5em;
}
.price {
    color: #6f79ff;
    font-size: 2.2em;
    font-weight: bold;
}
.per {
    color: #8b97e6;
    font-size: 1.2em;
}
.desc {
    color: #bec8ff;
    margin-top: 12px;
    font-size: 1em;
}
.cta-btn {
    display: inline-block;
    margin: 30px auto 10px auto;
    padding: 14px 40px;
    background: linear-gradient(90deg, #5e72e4, #7c83f8);
    color: #fff;
    border: none;
    border-radius: 32px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.25s;
    text-decoration: none;
    font-weight: bold;
}
.cta-btn::before {
    content: '';
    display: inline-block;
    background: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f4f1.svg') center/cover no-repeat;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 8px;
    margin-right: -6px;
    position: relative;
    top: 5px;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #364fc7, #6d7bfa);
}
.payment-methods {
    margin-top: 18px;
}
.payment-methods-title {
    color: #c0caf7;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: bold;
}
.payment-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 22px 14px;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
.pay-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #23264a;
    border-radius: 15px;
    padding: 16px 8px 8px 8px;
    transition: background 0.17s, transform 0.17s;
    text-decoration: none;
    min-width: 84px;
}
.pay-method:hover {
    background: #3949f5;
    transform: scale(1.065);
}
.pay-method img {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: 7px;
}
.pay-method span {
    color: #bfcafc;
    font-size: 1em;
    font-weight: 600;
}
.payment-note {
    margin-top: 10px;
    color: #88a7d8;
    font-size: .96em;
}
footer {
    text-align: center;
    color: #888fc4;
    padding: 25px 0 7px 0;
    font-size: 1em;
    margin-top: 25px;
}
@media (max-width: 850px) {
    .features, .numbers {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .feature-box {
        min-width: 90vw;
        max-width: 98vw;
    }
    .pricing-section {
        max-width: 90vw;
    }
    .payment-icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}
 body {background:#101235; color:#fff; font-family:'Cairo',sans-serif;}
        .header {background: #101235; padding:40px 0 10px 0; text-align:center; border-bottom:1px solid #181b3a;}
        .header img {width:65px; margin-bottom:12px;}
        .header h1 {margin:0 0 10px 0; font-size:2.3em; letter-spacing:1px;}
        .header p {color:#bfc9ff; margin:0 0 10px 0; font-size:1.15em;}
        .feature-box {
            background: #181b3a;
            border-radius: 20px;
            min-width: 240px;
            max-width: 340px;
            padding: 25px 18px 18px 18px;
            margin: 10px auto;
            box-shadow: 0 4px 24px 0 rgba(31,38,135,0.14);
            text-align: center;
            border-right: 5px solid #3949f5;
        }
        .feature-box h3 {margin:0 0 10px 0; font-size:1.2em; color:#7c8aff;}
        .feature-box p {font-size:1em; color:#d6e0ff; margin:0;}
        .number-card {
            background: #191c33;
            border-radius: 15px;
            padding: 25px 15px;
            text-align: center;
        }
        .number-card .value {font-size:2em; font-weight:bold; color:#a3e635;}
        .number-card .label {color:#c2d0fc; margin-top:8px;}
        .pricing-section {
            background: #191c33;
            border-radius: 20px;
            margin: 45px auto 25px auto;
            padding: 38px 24px 28px 24px;
            max-width: 410px;
            box-shadow: 0 2px 16px 0 rgba(31,38,135,0.13);
            text-align: center;
        }
        .pricing-section h2 {color:#bcbaff; margin-bottom:18px; font-size:1.5em;}
        .price {color:#6f79ff; font-size:2.2em; font-weight:bold;}
        .per {color:#8b97e6; font-size:1.2em;}
        .desc {color:#bec8ff; margin-top:12px; font-size:1em;}
        .cta-btn-wa {
            display: block;
            margin: 24px auto 0 auto;
            padding: 14px 40px;
            background: #1ad061;
            color: #fff;
            border: none;
            border-radius: 32px;
            font-size: 1.08em;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            width: fit-content;
            transition: background 0.2s;
        }
        .cta-btn-wa:hover {background: #178d45;}
        footer {
            margin: 44px 0 16px 0;
            color:#b5b5fa;
            text-align: center;
            font-size: 0.98em;
        }