 .how-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(95,77,238,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.how-section .section-title {color: var(--color-1);}
.how-section .section-label { color: #a78bfa; }
.how-section .section-desc  { color: rgba(255,255,255,0.6); }

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #007aff;
  margin-bottom: 1rem;
}
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #007aff26;
  border: 2px dashed #007aff66;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 28px;
  color: #007aff;
  transition: all 0.3s;
}
.step-card:hover .step-circle {
  background: #007aff;
  border-color: #007aff;
  color: #fff;
  animation: spin-slow 3s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.step-card h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-1);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}


.step-connector {
  position: absolute;
  top: 60px; right: -15%;
  width: 30%;
  height: 2px;
  background: linear-gradient(to right, rgba(95,77,238,0.4), transparent);
}
@media (max-width: 768px) {
  .step-connector { display: none; }
}
.hero-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}
.hero-copy {
    flex: 1;
    min-width: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #007aff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #007aff;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}
.hero-headline {
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #0f0f1a;
    margin: 0 0 20px;
}
.hero-headline span {
    color: #007aff;
}
.hero-sub {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 480px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f5;
}
.hero-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #0f0f1a;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007aff;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 10px;
    text-decoration: none !important;
    letter-spacing: 0.1px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.45);
    color: #fff !important;
    text-decoration: none !important;
}
.hero-btn-primary svg { transition: transform 0.15s ease; }
.hero-btn-primary:hover svg { transform: translateX(3px); }
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    padding: 4px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.hero-btn-secondary:hover {
    color: #007aff;
    border-color: #007aff;
    text-decoration: none !important;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-left: -8px;
}
.hero-trust-avatar:first-child  { margin-left: 0; background: #dbeafe; color: #3b82f6; }
.hero-trust-avatar:nth-child(2) { background: #ede9fe; color: #7c3aed; }
.hero-trust-avatar:nth-child(3) { background: #fce7f3; color: #db2777; }
.hero-trust-avatar:nth-child(4) { background: #d1fae5; color: #059669; font-size: 10px; }
.hero-trust-text { font-size: 13px; color: #6b7280; }
.hero-trust-text strong { color: #374151; font-weight: 700; }

.hero-card {
    flex: 0 0 340px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ebebf5;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(15,15,26,0.08), 0 4px 16px rgba(15,15,26,0.04);
}
.hero-card-title {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}
.hero-card-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #f3f4f6;
}
.hero-card-metric:last-of-type { border-bottom: none; }
.hero-card-metric-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}
.hero-card-metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.hero-card-metric-value { font-size: 13px; font-weight: 700; color: #0f0f1a; }
.hero-card-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 5px;
    background: #dcfce7;
    color: #16a34a;
    margin-top: 3px;
}
.hero-card-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-card-footer-label { font-size: 12px; color: #9ca3af; }
.hero-card-footer-value { font-size: 14px; font-weight: 800; color: #007aff; }

@media (max-width: 991px) {
    .hero-inner { flex-direction: column; gap: 40px; }
    .hero-card { flex: 0 0 auto; width: 100%; max-width: 400px; margin: 0 auto; }
}
span.navbar-badge,ul#currencies-list>li>a.active{background:var(--color-1);color:#fff}.dropdown-menu>li>a,a.btn.btn-primary{line-height:1.428571}#toggle,.mob-nav-link li.active a span,.mob-nav-link li.active a svg{color:var(--btn-primary)}.bf-profile:hover,.btn-primary:hover{transform:translateY(-1px)}.bf-profile-email,.bf-profile-name{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.footer-col a,a{transition:color .2s}.copyright a,.footer-col a,a.ticket.view{text-decoration:none}:lang(ar){font-family:Cairo,sans-serif}.SocialMethods_socials__title__Grtm2{width:100%;display:flex;flex-direction:row;flex-wrap:nowrap;align-items:center;column-gap:30px;margin-top:0}.SocialMethods_socials__title__Grtm2 .SocialMethods_title__line__lARwK{height:1px;width:100%;background:#ccc}.SocialMethods_socials__title__Grtm2 p{white-space:nowrap;color:var(--text_secondary)}.col-md-6.login{display:flex;justify-content:center}a{color:#007aff}a.btn.btn-xs.btn-default{background:red;border-color:red;width:100%;height:auto}span.navbar-badge{padding:10px;float:right;margin-top:11px}@media (min-width:768px){.navbar-badge{display:none}}.platform-buttons.footers{align-items:unset;justify-items:unset;grid-template-columns:repeat(4,1fr);gap:1px}a.text-small.fotters{font-size:1rem}.platform-buttons p{margin:0 0 3px}.table-striped>tr:nth-of-type(odd){background:#f9f9f9}.skeleton{background:linear-gradient(110deg,#ececec 8%,#f5f5f5 18%,#ececec 33%);background-size:200% 100%;animation:1.5s linear infinite shine;color:transparent!important;border-radius:4px;min-height:1em;will-change:background-position;transform:translateZ(0)}@keyframes shine{to{background-position-x:-200%}}.platform-buttons::-webkit-scrollbar{display:none}ul#currencies-list>li>a{margin:4px 11px;padding:2px 16px;border-radius:20px;background:var(--bs-gray-100)}.dropdown-menu>li>a{display:block;padding:10px 11px;clear:both;font-weight:400;white-space:nowrap;font-size:13px}li.navbar-badge>a>i{font-size:17px}@media (max-width:850px){.list.nav.nav-pills{width:max-content}}a.ticket.view{color:#005bd3;padding:2px 7px;border-radius:10px;white-space:nowrap;display:flex;justify-content:space-between;align-items:center}.dropdown-menu li{float:none;display:block}.dropdown-toggle[aria-expanded=true]+.dropdown-menu,.open .dropdown-menu{display:block!important;top:100%;right:0}a.btn.btn-xs.btn-primary:hover{background:#fff0}.mob-nav-link li.active{background:var(--btn-active)}:root-dark{--color-1:#fff;--color-2:rgba(000, 000, 000, .051);--color-3:#000;--color-4:#1a1a1a;--color-5:#fff;--color-6:#f8f8f8;--color-7:#6b7280;--white:#000;--color-9:#2f343e;--shadow:0 0 #0000,0 0 #0000,0 10px 15px -3px hsla(240, 4%, 46%, .1),0 4px 6px -4px hsla(240, 4%, 46%, .1);--shadow-2:rgba(0, 0, 0, 0.04);--border:1px solid #F1F1F4;--color-10:#f7d56e;--color-11:#fff;--bs-gray-100:#252525;--bg-primary:#000;--border-rad:5px}.bonus-hint,.bonus-label{color:#64748b;display:block}ul.dropdown-menu.services{overflow-x:auto;overflow-y:auto;min-width:300px;max-height:600px}ul.nav.nav-pills-search.rtl-ul{padding-right:0}ul.dropdown-menu.orders{left:0}span.fab.fa-youtube{color:#cd201f}img.how-service-works_img__fycFd{width:100%;box-shadow:0 9.784px 17.122px 0 rgb(0 4 26 / .04),0 0 22.014px 0 rgb(0 4 26 / .08);border-radius:14px}.how-service-works_imageWrapper__AoMnK{margin:0 45px}@media (max-width:600px){.how-service-works_imageWrapper__AoMnK{margin:0}}@media (max-width:960px){ul.nav.navbar-nav.navbar-left-block{border-radius:var(--border-rad)}}img.img-responsive{border-radius:2px}.bonus-box{border:1px solid;background:#f8fafc;border-radius:12px;padding:12px}.bonus-row{display:flex;gap:12px;flex-wrap:wrap}.bonus-item{flex:1 1 135px;background:#fff;border:1px solid;border-radius:10px;padding:10px 12px}.bonus-label{font-size:12px;margin-bottom:4px}.bonus-hint{margin-top:8px}*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0;padding:0;box-sizing:border-box}h1,h2,h3,h4,h5{letter-spacing:-.2px}.benefit__card,.panel,.stepbox .sboxes .barea .sbbody,.well{transition:box-shadow .25s,transform .25s}.btn{transition:.2s}.form-control{transition:border-color .2s,box-shadow .2s}.table>tbody>tr{transition:background-color .15s}.navbar-default .navbar-nav>li>a{transition:color .2s,background-color .2s}.dropdown-menu{border-radius:6px}@keyframes dropdownFade{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}.pagination>li>a,.pagination>li>span{transition:background-color .2s,color .2s}img{image-rendering:-webkit-optimize-contrast}.btn,.panel,.well{will-change:transform}.bonus-tiers{grid-template-columns:1fr 1fr}textarea#field-orderform-fields-comment::-webkit-scrollbar-track{background-color:#f1f1f1;border-radius:0 7px 0 0}textarea#field-orderform-fields-comment::-webkit-scrollbar-thumb{background-color:#3498db;border-radius:10px}textarea#field-orderform-fields-comment::-webkit-scrollbar-thumb:hovrer{background-color:var(--btn-primary)}textarea#message{min-height:80px;field-sizing:content}#toggle{position:absolute;right:10px;top:50%;transform:translateY(-50%);cursor:pointer;font-size:14px;user-select:none}.bf-profile{margin-top:14px;display:flex;align-items:center;gap:9px;border-radius:14px;text-decoration:none!important;background:rgb(255 255 255 / .04);transition:transform .12s,filter .12s,background .12s;color:var(--color-1)}.bf-profile:hover{filter:brightness(1.05)}.bf-profile-meta{display:flex;flex-direction:column;min-width:0;flex:1}.bf-profile-name{font-weight:800;font-size:13px;line-height:1.1}.bf-profile-email{opacity:.75;font-size:12px}.bf-profile-arrow{opacity:.7;font-size:18px;margin-left:auto}@font-face{font-family:'Font Awesome 6 Free';src:url(fa-solid-900.woff2) format('woff2');font-weight:900;font-style:normal;font-display:swap}@font-face{font-family:'Font Awesome 6 Free';src:url(fa-duotone-900.woff2) format('woff2');font-weight:900;font-style:normal;font-display:swap}@font-face{font-family:'Font Awesome 6 Free';src:url(fa-brands-400.woff2) format('woff2');font-weight:900;font-style:normal;font-display:swap}a.btn.btn-xs.btn-default:hover{background:#fff0;color:var(--color-1);border-color:var(--color-1)}.guide-container{max-width:900px;margin:40px auto;padding:20px;background-color:var(--color-11);border:var(--border);box-shadow:var(--shadow-2)}.guide-header h1{font-size:28px;color:var(--color-5);border-bottom:2px solid #ecf0f1;padding-bottom:15px;margin-bottom:30px}.footer-col a,footer{color:var(--text-secondary)}.accordion-content li,.accordion-item,.footer-col li{margin-bottom:10px}.accordion-item{border-radius:2px;overflow:hidden}.accordion-header{border:var(--border);background-color:var(--bs-gray-100);padding:15px 20px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:16px;color:var(--color-7);transition:background-color .3s;border-radius:var(--border-rad)}.accordion-header:hover{background-color:#e9ecef}.accordion-icon{font-size:20px;transition:transform .3s}.accordion-item.active .accordion-header{background-color:#007bff;color:#fff}.accordion-item.active .accordion-icon{transform:rotate(45deg)}.accordion-content{padding:20px;background-color:var(--bs-gray-100);display:none}.accordion-content p{line-height:1.6;margin-bottom:10px}.tip-box{background-color:#fff3cd;color:#856404;padding:15px;border-radius:6px;margin-top:15px;border-left:5px solid #ffc107}.accordion-content ol{padding-left:20px}.auth-link{color:var(--color-1);text-decoration:underline;text-underline-offset:3px}.btn-primary.active:focus,.btn-primary.focus,.btn-primary:active:focus,.btn-primary:focus,.btn.btn-default.active:focus,.btn.btn-default.focus,.btn.btn-default:active:focus,.btn.btn-default:focus{outline:0!important;box-shadow:none!important;color:var(--color-4);background-color:var(--color-1);border-color:var(--color-1)}.copyright,footer{border-top:1px solid var(--border-f)}a.btn.btn-primary.reorder{padding:3px 7px}.modal{z-index:1050}.modal-backdrop{z-index:1040}span.service-width{min-width:300px;display:block}.icon-btn:active:focus,.icon-btn:focus{outline:0!important;box-shadow:none!important}.icon-btn::-moz-focus-inner{border:0}:root{--text-primary:#0f172a;--text-secondary:#475569;--border-f:#e2e8f0;--bg:#ffffff}footer{background:var(--bg);padding:60px 20px 30px;font-size:15px}.footer-container{max-width:1200px;margin:0 auto}.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:40px 32px;margin-bottom:60px}.footer-col ul{list-style:none}.footer-col a:hover{color:#2563eb}.copyright{text-align:center;font-size:14px;padding-top:30px;color:#64748b}.copyright a{color:#64748b}.copyright a:hover{color:#2563eb;text-decoration:underline}@media (max-width:640px){footer{padding:50px 16px 24px}.footer-grid{gap:36px 20px}.footer-col h4{margin-bottom:12px}}.footer-title{font-size:15px;font-weight:700;margin-bottom:10px;text-transform:uppercase}li.other-panel,li.our-panel{margin-bottom:15px;display:flex;align-items:center}.our-smmpanel{background:#fff;padding:40px;border-radius:0;border:2px solid #007aff;box-shadow:0 10px 25px -5px rgba(59,130,246,.1);position:relative}.other-smmpanel{background:#fff;padding:40px;border-radius:var(--border-rad);border:1px solid #e5e7eb}.well.platforms{margin-bottom:0;border-bottom:none}.well.platforms::after{content:'›';position:absolute;right:8px;top:50%;transform:translateY(-50%);font-size:22px;font-weight:700;color:#555;pointer-events:none;z-index:10;background:#fff;padding-left:4px}@font-face{font-family:'DM Sans';font-style:normal;font-weight:100 800;font-display:swap;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'DM Sans';font-style:italic;font-weight:100 800;font-display:swap;src:url('/fonts/dm-sans-italic.woff2') format('woff2')}ul.list.nav.nav-pills.login{min-width:100%;background:#f3f4f6;padding:6px;border-radius:10px}ul.list.nav.nav-pills.login>li{width:50%}.nav-pills.login>li.active>a{background:#fff;color:#007aff;box-shadow:0 1px 4px rgba(0,0,0,.1)}a:focus,a:focus-visible{outline:0;box-shadow:none;border-color:transparent}.why-us__reason.box_card_darkmode{display:flex;align-items:center;gap:14px;padding:18px;background:#f8faff;border-radius:10px;border:1px solid #f1f1f4}button.btn.btn-primary.dropdown-toggle {border-radius: var(--border-rad);}