/* =============================================================================
   CuteSMM — Complete Layout & Pages (Rewrite v3)
   Scope: #site-layout / .neworder / .updates-page / .orders-page / .addfunds-page / #affiliates-page / #page-signin / #page-signup
   Accents: gold rgb(253,190,2) & sky rgb(14,165,233)
   Notes:
   - Unified tokens, mobile-first, RTL-aware, reduced-motion friendly
   - Tidier grouping, fewer repeats, safer mobile overflow, consistent focus & pagination
   ============================================================================= */

/* =========================
   Base: fonts & box-sizing
   ========================= */
#site-layout,
#page-signin,
#page-signup{
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
#site-layout *, #page-signin *, #page-signup *,
#site-layout *::before, #page-signin *::before, #page-signin *::after,
#page-signup *::before, #page-signup *::after, #site-layout *::after{
  box-sizing: border-box;
}

/* =========================
   #site-layout: Design tokens
   ========================= */
#site-layout{
  --brand: rgb(14,165,233);
  --brand-600: rgb(2,132,199);
  --brand-50: rgb(240,249,255);

  --gold: rgb(253,190,2);

  --ink: rgb(16,24,40);
  --ink-2: rgb(31,41,55);
  --muted: rgb(107,114,128);

  --bg: rgb(249,250,251);
  --surface: #fff;

  --stroke: rgba(2,6,23,.08);
  --stroke-2: rgba(2,6,23,.12);

  --shadow-s: 0 4px 14px rgba(2,6,23,.08);
  --shadow-m: 0 10px 26px rgba(2,6,23,.12);

  --sidebar-w: 260px;

  color: var(--ink);
  background: var(--bg);
}

/* =========================
   A11y & helpers
   ========================= */
#site-layout a{ text-decoration: none; }
#site-layout img{ max-width: 100%; height: auto; }
#site-layout .container,
#site-layout .container-fluid{ padding-inline: 16px; }
#site-layout :where(a,button,.chip,.btn):focus-visible{
  outline: 0;
  box-shadow: 0 0 0 4px rgba(14,165,233,.25);
  border-radius: 10px;
}
@media (prefers-reduced-motion: reduce){
  #site-layout *{ transition: none !important; animation: none !important; }
}

/* =========================
   Top Nav (canonical)
   ========================= */
#site-layout .nav-wrap,
#site-layout .top-nav{
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgb(229,231,235);
}
#site-layout .topbar{
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; padding: .5rem 1rem;
}
#site-layout .topnav-title{
  font-weight: 800; letter-spacing: .2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#site-layout .top-actions{
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
}
#site-layout .nav-wrap .nav-link{ font-weight: 600; font-size: 16px; }
#site-layout .nav-wrap .nav-link:hover{ color: var(--brand); }

/* Brand */
#site-layout .navbar-brand .brand-text{ font-weight: 900; letter-spacing: .2px; }
#site-layout .navbar-brand .brand-logo{ width: 200px; height: 60px; object-fit: contain; }
@media (max-width: 575.98px){
  #site-layout .navbar-brand .brand-logo{ width: 150px; height: 48px; }
}

/* XS–SM topbar layout */
@media (max-width: 575.98px){
  #site-layout .topbar{ flex-direction: column; align-items: stretch; gap: .65rem; padding: .5rem .75rem; }
  #site-layout .topbar > .d-flex.align-items-center.gap-2:first-child{ width: 100%; justify-content: space-between; }
  #site-layout .top-actions{
    display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; width: 100%;
  }
  #site-layout .top-actions :is(.chip,.dropdown-currencies > .chip)
  #site-layout .dropdown-currencies .dropdown-menu{
    width: calc(100vw - 32px); max-width: 520px;
  }
}
@media (max-width: 420px){
  #site-layout .top-actions{ grid-template-columns: repeat(2,1fr); }
  #site-layout .top-actions > *:last-child{ grid-column: 1 / -1; }
}

/* =========================
   Chips
   ========================= */
#site-layout .chip{
  --chip-border: rgb(226,232,240);
  --chip-bg: rgb(249,250,251);
  --chip-ink: rgb(17,24,39);
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .45rem .75rem; border-radius: 999px;
  border: 1px solid var(--chip-border); background: var(--chip-bg); color: var(--chip-ink);
  font-weight: 700; line-height: 1.1; white-space: nowrap;
}
#site-layout .chip i{ font-size: .95rem; }
#site-layout .chip--tg{ background: rgba(14,165,233,.10); border-color: rgba(14,165,233,.22); color: rgb(14,165,233); }
#site-layout .chip--danger{ background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.22); color: rgb(220,38,38); }
#site-layout .dropdown-currencies > .chip.dropdown-toggle::after{ margin-left: .5rem; }
#site-layout .dropdown-currencies .dropdown-menu{
  max-height: 60vh; overflow: auto; border-radius: .75rem; border-color: rgb(226,232,240);
}

/* =========================
   Socials
   ========================= */
#site-layout .socials{ display: flex; gap: 12px; }
#site-layout .socials a{
  width: 36px; height: 36px; display: inline-grid; place-items: center;
  border-radius: 50%; background: var(--brand-50); color: var(--brand);
}

/* =========================
   Scroll to top (+ safe area)
   ========================= */
#site-layout .scrolltop{
  position: fixed; right: 16px; bottom: max(16px, env(safe-area-inset-bottom));
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--stroke); background: var(--surface); border-radius: 12px; box-shadow: var(--shadow-s);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease; z-index: 1040;
}
#site-layout .scrolltop.show{ opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================
   Auth Dashboard Layout
   ========================= */
#site-layout .wrapper{ display: flex; min-height: 100svh; }

/* Sidebar (desktop) */
#site-layout .sidebar-wrap{
  width: var(--sidebar-w); flex: 0 0 var(--sidebar-w);
  position: sticky; top: 0; height: 100svh; overflow-y: auto;
  background: linear-gradient(135deg, rgb(46,32,74), rgba(49,16,140,.78));
  border-right: 1px solid var(--stroke); box-shadow: var(--shadow-s);
}
#site-layout .sidebar-head{
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px; border-bottom: 1px solid var(--stroke);
}
#site-layout .sidebar-head .logo img{ width: 200px; height: 60px; object-fit: contain; }
#site-layout .auth-user-profile{
  padding: 14px; border-bottom: 1px solid var(--stroke); text-align: center;
}
#site-layout .auth-user-profile .avatar img{
  width: 72px; height: 72px; border-radius: 20px; object-fit: cover;
}
#site-layout .auth-user-profile .username{ font-weight: 900; margin-top: 6px; color: #fff; }
#site-layout .auth-user-profile .balance{ color: var(--gold); font-weight: 800; }
#site-layout .sidebar-menu{
  list-style: none; padding: 8px; margin: 0; display: grid; gap: 2px;
}
#site-layout .sidebar-menu li a{
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 10px; color: #fff; background: transparent;
  transition: background .12s ease, color .12s ease;
}
#site-layout .sidebar-menu li a:hover,
#site-layout .sidebar-menu li.active a{ background: rgba(255,255,255,.12); }
#site-layout .sidebar-menu i{ width: 18px; text-align: center; color: #fff; }

/* Content area */
#site-layout .inner-wrap{ flex: 1 1 auto; min-width: 0; }
@media (min-width: 992px){
  
  #site-layout.rtl .inner-wrap{ margin-left: 0; margin-right: var(--sidebar-w); }
}

/* Icon button */
#site-layout .btn-icon{
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 10px; border: 1px solid var(--stroke);
  background: var(--surface); color: var(--ink-2); box-shadow: var(--shadow-s);
}

/* Off-canvas sidebar (<992px) */
@media (max-width: 991.98px){
  #site-layout .sidebar-wrap{
    position: fixed; left: 0; top: 0; height: 100svh; width: 280px; max-width: 82vw;
    transform: translateX(-100%); transition: transform .25s ease; z-index: 1050;
  }
  #site-layout.sidebar-open .sidebar-wrap{ transform: translateX(0); }
  #site-layout .sidebar-overlay{
    position: fixed; inset: 0; background: rgba(2,6,23,.45);
    backdrop-filter: blur(2px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease; z-index: 1040;
  }
  #site-layout.sidebar-open .sidebar-overlay{ opacity: 1; visibility: visible; }
  body.sidebar-open{ overflow: hidden; }
}

/* Collapsed (desktop) */
@media (min-width: 992px){
  #site-layout.sidebar-collapsed .sidebar-wrap{ width: 84px; flex-basis: 84px; }
  #site-layout.sidebar-collapsed .sidebar-menu span,
  #site-layout.sidebar-collapsed .auth-user-profile :is(.username,.balance){ display: none; }
  #site-layout.sidebar-collapsed .auth-user-profile .avatar img{ width: 48px; height: 48px; }
}

/* Tables & pagination */
#site-layout .table{
  background: var(--surface); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-s);
}
#site-layout .pagination{ gap: 4px; }
#site-layout .pagination .page-link{ color: var(--ink); border-color: var(--stroke); }
#site-layout .pagination .active .page-link{
  background: var(--brand); border-color: var(--brand); color: #fff;
}

/* RTL helpers */
#site-layout.rtl .navbar .navbar-toggler{ margin-left: .5rem; }
#site-layout.rtl .sidebar-wrap{
  border-right: 0; border-left: 1px solid var(--stroke); left: auto; right: 0; transform: translateX(100%);
}
#site-layout.rtl.sidebar-open .sidebar-wrap{ transform: translateX(0); }
#site-layout.rtl .inner-wrap{ margin-left: 0; }

/* =========================
   Footer v3
   ========================= */
/* =========================
   PUBLIC FOOTER (fixed)
   - All RGB colors
   - Missing CSS vars defined
   - Scoped under #site-layout
   ========================= */
#site-layout .footer-v3{
  /* --- Vars (footer scope) --- */
  --ink: rgb(16,24,40);
  --muted: rgb(102,112,133);
  --sky: rgb(14,165,233);
  --gold: rgb(253,190,2);
  --border: rgba(2,6,23,.08);
  --stroke: rgba(2,6,23,.10);

  position: relative; color: var(--ink);
  background:
    radial-gradient(1100px 360px at 0%   0%, rgba(253,190,2,.10), rgba(255,255,255,0) 60%),
    radial-gradient(1100px 340px at 100% 100%, rgba(14,165,233,.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgb(248,250,252) 0%, rgb(255,255,255) 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.75rem; overflow: clip;
}
#site-layout .footer-v3 .footer-auras{
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(380px 180px at 10% 0%, rgba(253,190,2,.15), rgba(255,255,255,0) 70%),
    radial-gradient(420px 200px at 95% 100%, rgba(14,165,233,.14), rgba(255,255,255,0) 70%);
  filter: blur(2px);
}
#site-layout .footer-v3 .footer-top{ position: relative; z-index: 1; }
#site-layout .footer-v3 .footer-logo{
  width: 48px; height: 48px; object-fit: contain; border-radius: 12px;
  background: rgb(255,255,255); border: 1px solid var(--border);
}
#site-layout .footer-v3 .brand-name{
  margin: 0; font-weight: 900; letter-spacing: .2px; font-size: 1.6rem; line-height: 1.2;
  background-image: linear-gradient(90deg, rgb(16,24,40), rgb(14,165,233), rgb(16,24,40));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%; animation: footerSheen 6s linear infinite;
}
#site-layout .footer-v3 .brand-desc{
  color: var(--muted); margin: .35rem 0 .75rem; font-size: 16px; line-height: 1.6;
}
#site-layout .footer-v3 .socials{ display: flex; gap: .65rem; flex-wrap: wrap; }
#site-layout .footer-v3 .social-btn{
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.9); border: 1px solid var(--border); box-shadow: 0 8px 18px rgba(18,18,18,.06);
  color: rgb(55,55,55); transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .12s ease;
}
#site-layout .footer-v3 .social-btn:hover{
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, var(--gold), var(--sky));
  color: rgb(47,38,8); box-shadow: 0 12px 28px rgba(18,18,18,.10);
}
#site-layout .footer-v3 .trustline{ display: flex; align-items: center; gap: .5rem; margin-top: 1rem; }
#site-layout .footer-v3 .badge-soft{
  display: inline-flex; align-items: center; gap: 2px; padding: .35rem .65rem; border-radius: 999px;
  background: rgba(253,190,2,.14); border: 1px solid rgba(253,190,2,.30); color: rgb(145,92,0);
  font-weight: 800; font-size: .95rem;
}
#site-layout .footer-v3 .trust-text{ color: var(--muted); font-weight: 700; font-size: 1rem; }

#site-layout .footer-v3 .f-head{
  font-weight: 900; font-size: 1.25rem; margin: 0 0 .7rem; letter-spacing: .2px;
}
#site-layout .footer-v3 .f-list{
  list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem;
}
#site-layout .footer-v3 .f-list a{
  display: inline-flex; align-items: center; gap: .5rem; padding: .2rem 0;
  font-size: 14px; color: rgb(48,48,48);
  text-decoration: none; text-underline-offset: 3px; text-decoration-thickness: 2px;
}
#site-layout .footer-v3 .f-list a i{ color: var(--muted); font-size: .9rem; }
#site-layout .footer-v3 .f-list a:hover{ color: var(--sky); text-decoration: underline; }

#site-layout .footer-v3 .contact-list li{
  display: flex; gap: .55rem; align-items: flex-start; color: rgb(48,48,48);
  font-size: 1.02rem; line-height: 1.6;
}
#site-layout .footer-v3 .contact-list i{ color: var(--muted); margin-top: .35rem; font-size: 14px; }

#site-layout .footer-v3 .secure-badges{ display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .9rem; }
#site-layout .footer-v3 .secure-chip{
  display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .7rem; border-radius: 999px;
  font-weight: 800; font-size: .95rem;
  background: rgba(14,165,233,.10); border: 1px dashed rgba(14,165,233,.35); color: rgb(9,108,150);
}

#site-layout .footer-v3 .divider{
  border: none; height: 1px; background: var(--stroke); margin: 1.6rem 0 1rem;
}
#site-layout .footer-v3 .foot-row{
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  color: var(--muted); font-weight: 700; font-size: 1.02rem; line-height: 1.6;
}
#site-layout .footer-v3 .foot-row a{
  color: rgb(55,55,55); text-decoration: none; text-underline-offset: 3px; text-decoration-thickness: 2px;
}
#site-layout .footer-v3 .foot-row a:hover{ color: var(--sky); text-decoration: underline; }
#site-layout .footer-v3 .foot-row .sep{ color: rgba(2,6,23,.35); margin: 0 .4rem; }

/* Motion */
@keyframes footerSheen{ 0%{ background-position: 200% 0; } 100%{ background-position: 0% 0; } }
@media (prefers-reduced-motion: reduce){
  #site-layout .footer-v3 .brand-name{ animation: none; background-image: none; color: var(--ink); }
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  #site-layout .footer-v3{ padding-top: 2.4rem; }
  #site-layout .footer-v3 .brand-name{ font-size: 1.5rem; }
  #site-layout .footer-v3 .f-head{ font-size: 1.15rem; }
}
@media (max-width: 575.98px){
  #site-layout .footer-v3{ padding: 2rem 0 1.2rem; }
  #site-layout .footer-v3 .brand-name{ font-size: 1.35rem; }
  #site-layout .footer-v3 .brand-desc{ font-size: 1rem; }
  #site-layout .footer-v3 .foot-row{ flex-direction: column; text-align: center; }
}

/* =========================
   Public Alt Footer (fixed)
   ========================= */
#site-layout .auth-landing-footer{
  --ink: rgb(16,24,40);
  --stroke: rgba(2,6,23,.10);

  margin-top: 40px; color: var(--ink);
  background: linear-gradient(135deg, rgb(227,117,11), rgb(200,177,39));
  border-top: 1px solid var(--stroke);
}
#site-layout .auth-landing-footer .site-title{ font-weight: 900; }
#site-layout .auth-landing-footer .f-list{ list-style: none; padding: 0; margin: 0; }
#site-layout .auth-landing-footer .f-list li{ margin: 8px 0; }
#site-layout .auth-landing-footer .f-list a{ color: var(--ink); }
#site-layout .auth-landing-footer .divider{ border-color: var(--stroke); }
#site-layout .auth-landing-footer .foot-row{
  padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
@media (max-width: 575.98px){
  #site-layout .auth-landing-footer .foot-row{ flex-direction: column; text-align: center; }
}



/* =============================================================================
   NEW ORDER — .neworder
   ============================================================================= */
.neworder{
  --brand: rgb(253,190,2);
  --ink: rgb(17,24,39);
  --muted: rgb(100,116,139);
  --line: rgb(228,231,235);
  --bg: rgb(250,250,252);
  --card: #fff;
  --shadow: 0 6px 20px rgba(2,8,23,.06);
  color: var(--ink); background: transparent;
}
.neworder .neworder__title{ font-weight: 900; letter-spacing: .2px; }
.neworder .neworder__badge{
  background: linear-gradient(90deg, rgb(16,185,129), var(--brand)); color: #111; font-weight: 900;
}
.neworder .stats-box{
  display: flex; gap: 14px; align-items: center; background: var(--card);
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 14px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.neworder .stats-box:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,8,23,.08); }
.neworder .stats-icon{
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(253,190,2,.12); color: var(--brand); font-size: 18px; font-weight: 800;
}
.neworder .stats-icon.orders{ background: rgba(59,130,246,.12); color: rgb(59,130,246); }
.neworder .stats-icon.service{ background: rgba(16,185,129,.12); color: rgb(16,185,129); }
.neworder .stats-icon.balance{ background: rgba(251,146,60,.12); color: rgb(251,146,60); }
.neworder .stats-icon.status{ background: rgba(139,92,246,.12); color: rgb(139,92,246); }
.neworder .stats-txt{
  margin: 0; color: var(--muted); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .6px;
}
.neworder .stats-title{ margin: 0; font-size: 20px; font-weight: 900; }
.neworder .filter-toggle{
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  border-radius: 12px; padding: .45rem .75rem; display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow);
}
.neworder .filter-toggle .caret{ transition: transform .2s ease; }
.neworder .filter-toggle[aria-expanded="true"] .caret{ transform: rotate(180deg); }
.neworder .new-bgss{ background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.neworder .brand-category{
  display: flex; align-items: center; gap: 10px; width: 100%;
  border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px;
  background: var(--card); color: var(--ink); font-weight: 800;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.neworder .brand-category:hover{ transform: translateY(-1px); border-color: rgba(2,8,23,.12); box-shadow: var(--shadow); }
.neworder .sershortcut-icon{
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 16px; font-weight: 900;
}

/* Brand colors */
.neworder .brand-fb{ background: rgb(24,119,242); }
.neworder .brand-ig{
  background: linear-gradient(135deg, rgb(254,218,117), rgb(250,126,30), rgb(214,41,118), rgb(150,47,191), rgb(79,91,213));
}
.neworder .brand-x{ background: rgb(23,23,23); }
.neworder .brand-yt{ background: rgb(255,0,0); }
.neworder .brand-sp{ background: rgb(30,215,96); color: rgb(17,24,39); }
.neworder .brand-tt{ background: #000; }
.neworder .brand-li{ background: rgb(10,102,194); }
.neworder .brand-gg{ background: rgb(66,133,244); }
.neworder .brand-tg{ background: rgb(0,136,204); }
.neworder .brand-dc{ background: rgb(88,101,242); }
.neworder .brand-sc{ background: rgb(255,252,0); color: rgb(17,24,39); }
.neworder .brand-twc{ background: rgb(145,70,255); }
.neworder .brand-traffic{ background: rgb(14,165,233); }
.neworder .brand-reviews{ background: rgb(250,204,21); color: rgb(17,24,39); }
.neworder .brand-other{ background: rgb(148,163,184); }
.neworder .brand-all{ background: var(--brand); color: rgb(17,24,39); }

.neworder .cate-shortcut-txt{ font-weight: 800; font-size: 14px; }
.neworder .neworder-card{ border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); background: var(--card); }

/* Tabs */
.neworder .tabs-sky{ display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.neworder .tabs-sky :is(.tab-ico,.tab-pill){
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  border-radius: 12px; padding: .5rem .8rem; font-weight: 800;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
.neworder .tabs-sky :is(.tab-ico,.tab-pill):hover{
  transform: translateY(-1px); border-color: rgba(2,8,23,.15);
}
.neworder .tabs-sky .tab-pill i{ color: var(--brand); }

/* CTA */
.neworder .cta-submit{
  width: 100%; border-radius: 12px; padding: .75rem 1rem; border: 0;
  background: linear-gradient(90deg, var(--brand), rgb(255,214,84)); color: #000; font-weight: 900; letter-spacing: .3px;
  box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.neworder .cta-submit:hover{ transform: translateY(-1px); filter: brightness(1.02); box-shadow: 0 14px 30px rgba(2,8,23,.12); }

/* Best services */
.neworder .bestsvc-grid{ display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 576px){ .neworder .bestsvc-grid{ grid-template-columns: repeat(2,1fr); } }
.neworder .bestsvc-card{
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: var(--shadow); padding: 14px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.neworder .bestsvc-card::after{
  content: ""; position: absolute; inset: auto -30% 0; height: 6px;
  background: linear-gradient(90deg, var(--brand), rgb(255,214,84)); opacity: .8;
}
.neworder .bestsvc-card:hover{ transform: translateY(-2px); border-color: rgba(2,8,23,.12); box-shadow: 0 12px 28px rgba(2,8,23,.08); }
.neworder .bestsvc-top{ display: flex; align-items: center; gap: 10px; }
.neworder .bestsvc-icon{
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 900; background: var(--brand); color: rgb(17,24,39);
}
.neworder .is-fb .bestsvc-icon{ background: rgb(24,119,242); color: #fff; }
.neworder .is-ig .bestsvc-icon{ background: rgb(225,48,108); color: #fff; }
.neworder .is-yt .bestsvc-icon{ background: rgb(255,0,0); color: #fff; }
.neworder .is-x  .bestsvc-icon{ background: rgb(23,23,23); color: #fff; }
.neworder .is-sp .bestsvc-icon{ background: rgb(30,215,96); color: rgb(17,24,39); }
.neworder .is-tt .bestsvc-icon{ background: #000; color: #fff; }
.neworder .bestsvc-title h6{ font-weight: 900; }
.neworder .badge.id{ background: rgba(2,8,23,.06); color: var(--ink); border-radius: 10px; font-weight: 900; }
.neworder .bestsvc-price{ font-weight: 900; font-size: 18px; }
.neworder .bestsvc-meta{ display: flex; flex-wrap: wrap; gap: 8px 12px; margin: 10px 0 8px; }
.neworder .bestsvc-meta .meta{ display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.neworder .bestsvc-meta strong{ color: var(--ink); }
neworder .bestsvc-footer{ display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.neworder .bestsvc-footer .range{ color: var(--muted); font-size: 13px; }
.neworder .neworder__note{ font-weight: 900; color: var(--ink); }
.neworder .neworder__note b{ color: var(--brand); }
@media (prefers-reduced-motion: reduce){ .neworder *{ transition: none !important; animation: none !important; } }

/* =============================================================================
   UPDATES PAGE — .updates-page
   ============================================================================= */
.updates-page{ font-family: inherit; }
.updates-page .btn-gradient{
  background: linear-gradient(135deg, rgb(99,102,241), rgb(14,165,233));
  color: #fff; border: 0; border-radius: 12px; font-weight: 900;
}
.updates-page .btn-gradient:hover{ filter: brightness(1.05); }
.updates-page .updates-search .form-control{ border-radius: 0 12px 12px 0; border-left: 0; }
.updates-page .updates-search .input-group-text{ border-radius: 12px 0 0 12px; }

.updates-page .update-card{
  position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  padding: 16px 16px 16px 12px; border-radius: 16px; background: #fff;
  border: 1px solid rgba(2,6,23,.06); box-shadow: 0 12px 24px rgba(2,6,23,.06); margin-bottom: 12px;
}
.updates-page .update-card__rail{
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, rgb(14,165,233), rgb(99,102,241)); border-radius: 8px 0 0 8px;
}
.updates-page .update-card__icon .icon-circle{
  width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(135deg, rgb(99,102,241), rgb(139,92,246));
  box-shadow: 0 10px 18px rgba(99,102,241,.25);
}
.updates-page .update-card__head{
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; margin-bottom: 8px;
}
.updates-page .update-card__service,
.updates-page .update-card__date{ font-weight: 800; color: rgb(17,24,39); }
.updates-page .update-card__service .label,
.updates-page .update-card__date .label{ color: rgb(55,65,81); font-weight: 700; }
.updates-page .update-card__service .value,
.updates-page .update-card__date .value{ font-weight: 900; }
.updates-page .update-card__content{
  display: flex; align-items: flex-start; gap: 8px; color: rgb(31,41,55); line-height: 1.5;
}
.updates-page .update-card__actions .btn{ border-radius: 10px; border: 1px solid rgba(2,6,23,.08); }
.updates-page .update-filter-dropdown .dropdown-menu{ border-radius: 12px; border: 1px solid rgba(2,6,23,.08); }
.updates-page .dropdown-item.active{
  background: rgba(99,102,241,.12); color: rgb(17,24,39); font-weight: 800;
}
.updates-page .pagination .page-link{
  border-radius: 10px; border: 1px solid rgba(2,6,23,.12); color: rgb(17,24,39);
}
.updates-page .pagination .page-item.active .page-link{
  background: linear-gradient(135deg, rgb(99,102,241), rgb(14,165,233));
  border-color: transparent; color: #fff;
}
.rtl-nav .dropdown-menu{ text-align: right; }
@media (max-width: 575.98px){
  .updates-page .update-card{ grid-template-columns: auto 1fr; }
  .updates-page .update-card__actions{ grid-column: 1 / -1; justify-self: end; }
}

/* =============================================================================
   ORDERS PAGE — .orders-page
   ============================================================================= */
.orders-page{ font-family: inherit; }
.orders-page .orders-search .form-control{ border-radius: 0 14px 14px 0; border-left: 0; }
.orders-page .orders-search .input-group-text{ border-radius: 14px 0 0 14px; }
.orders-page .orders-status-pills{ gap: 8px; flex-wrap: wrap; }
.orders-page .orders-status-pills .nav-link{
  border-radius: 999px; font-weight: 800; color: rgb(17,24,39);
  background: rgb(241,245,249); padding: 8px 14px;
}
.orders-page .orders-status-pills .nav-link.active{
  color: #fff; background: linear-gradient(135deg, rgb(99,102,241), rgb(14,165,233));
  box-shadow: 0 8px 18px rgba(14,165,233,.24);
}
.orders-page .well-ord{ background: #fff; border: 1px solid rgba(2,6,23,.06); }
.orders-page .table-head{ background: rgb(248,250,252); z-index: 1; }
.orders-page table thead th{ font-weight: 900; color: rgb(17,24,39); border: 0; }
.orders-page table tbody tr{ border-top: 1px solid rgba(2,6,23,.06); }
.orders-page table tbody tr:hover{ background: rgba(14,165,233,.04); }
.orders-page .copy-order{ border-radius: 10px; border: 1px solid rgba(2,6,23,.1); }
.orders-page .status-chip{
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  border-radius: 999px; font-weight: 900; border: 1px solid transparent; text-transform: capitalize;
}

/* Status colors */
.orders-page .btn-bgs.pending, .orders-page .btn-bgs.Pending{
  background: rgba(253,230,138,.35); color: rgb(161,98,7); border-color: rgba(253,230,138,.8);
}
.orders-page .btn-bgs.inprogress, .orders-page .btn-bgs.Inprogress{
  background: rgba(191,219,254,.45); color: rgb(30,64,175); border-color: rgba(191,219,254,.9);
}
.orders-page .btn-bgs.processing, .orders-page .btn-bgs.Processing{
  background: rgba(187,247,208,.45); color: rgb(22,101,52); border-color: rgba(187,247,208,.9);
}
.orders-page .btn-bgs.partial, .orders-page .btn-bgs.Partial{
  background: rgba(254,215,170,.45); color: rgb(154,52,18); border-color: rgba(254,215,170,.9);
}
.orders-page .btn-bgs.completed, .orders-page .btn-bgs.Completed{
  background: rgba(187,247,208,.55); color: rgb(22,101,52); border-color: rgba(187,247,208,.9);
}
.orders-page .btn-bgs.canceled, .orders-page .btn-bgs.Canceled{
  background: rgba(254,202,202,.55); color: rgb(153,27,27); border-color: rgba(254,202,202,.9);
}

.orders-page .pagination .page-link{
  border-radius: 10px; color: rgb(17,24,39); border: 1px solid rgba(2,6,23,.12);
}
.orders-page .pagination .page-item.active .page-link{
  background: linear-gradient(135deg, rgb(99,102,241), rgb(14,165,233)); color: #fff; border-color: transparent;
}

/* Mobile table → cards */
@media (max-width: 991.98px){
  .orders-page table thead{ display: none; }
  .orders-page table tbody tr{
    display: grid; grid-template-columns: 1fr; gap: 6px; padding: 12px; border-radius: 16px; margin-bottom: 12px;
    box-shadow: 0 12px 24px rgba(2,6,23,.06);
  }
  .orders-page table tbody td{
    display: flex; justify-content: space-between; align-items: center; border: 0 !important; padding: 6px 0;
  }
  .orders-page table tbody td::before{
    content: attr(data-label); font-weight: 900; color: rgb(55,65,81); margin-right: 10px;
  }
  .orders-page .order-actions{ justify-content: flex-end; }
}
.rtl-nav .nav-link{ direction: rtl; }

/* =============================================================================
   ADD FUNDS — .addfunds-page
   ============================================================================= */
.addfunds-page{
  --ink: rgb(16,24,40);
  --muted: rgb(102,112,133);
  --surface: #fff;
  --brand: rgb(14,165,233);
  --brand-600: rgb(2,132,199);
  --gold: rgb(253,190,2);
  --border: rgba(2,6,23,.08);
  --shadow-s: 0 6px 22px rgba(2,6,23,.08);
  color: var(--ink); position: relative;
}
.addfunds-page .af-auras{
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(253,190,2,.14), transparent 60%),
    radial-gradient(800px 320px at 100% 0%, rgba(14,165,233,.12), transparent 65%);
  filter: blur(1px);
}
.addfunds-page .page-head{ position: relative; z-index: 1; }
.addfunds-page .af-title{ font-weight: 900; margin: .25rem 0; }
.addfunds-page .af-sub{ color: var(--muted); margin: 0; }
.addfunds-page .af-badges{ flex-wrap: wrap; }
.addfunds-page .af-chip{
  display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .7rem; border-radius: 999px; font-weight: 800;
  background: rgba(14,165,233,.10); border: 1px dashed rgba(14,165,233,.35); color: rgb(9,108,150);
}
.addfunds-page .af-card{
  position: relative; z-index: 1; overflow: hidden;
  border: 1px solid var(--border); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-s);
}
.addfunds-page .af-card .card-header{
  background: linear-gradient(180deg, #fff, rgb(250,252,255)); border-bottom: 1px solid var(--border);
}
.addfunds-page .af-avatar{
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: rgb(246,248,252); border: 1px solid var(--border); color: rgb(55,65,81); font-size: 1rem;
}
.addfunds-page .af-tabs .nav-link{ border: none; font-weight: 800; color: rgb(55,65,81); }
.addfunds-page .af-tabs .nav-link.active{ color: var(--brand); position: relative; }
.addfunds-page .af-tabs .nav-link.active::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 3px;
  border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--brand));
}
.addfunds-page .form-label{ font-weight: 900; }
.addfunds-page .form-text{ color: var(--muted); }
.addfunds-page .input-group-text{ background: rgb(247,250,255); color: rgb(51,65,85); }
.addfunds-page .af-quick{ gap: .35rem; }
.addfunds-page .af-quick .btn{ border-radius: 999px; }
.addfunds-page .af-pay-btn{
  background: var(--brand); border-color: rgba(14,165,233,.35); font-weight: 900;
  box-shadow: 0 10px 22px rgba(14,165,233,.25); color: #fff;
}
.addfunds-page .af-pay-btn:hover{ background: var(--brand-600); }
.addfunds-page .af-accordion .accordion-item{
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: .75rem;
}
.addfunds-page .af-accordion .accordion-button{ font-weight: 900; background: #fff; }
.addfunds-page .af-accordion .accordion-button:not(.collapsed){
  color: var(--brand); background: linear-gradient(180deg, #fff, rgb(248,250,255));
}
.addfunds-page .af-code{
  display: inline-block; border-radius: 10px; padding: .35rem .5rem; background: rgb(246,248,252);
  border: 1px dashed rgba(2,6,23,.12); color: rgb(30,41,59);
}
.addfunds-page table.table th{ font-weight: 900; }
.addfunds-page .nowrap{ white-space: nowrap; }
.addfunds-page .tooltip-inner{ background: rgb(17,24,39); }
.addfunds-page .tooltip .tooltip-arrow::before{ border-top-color: rgb(17,24,39) !important; }
.addfunds-page .af-modal .modal-content{
  border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow-s);
}
.addfunds-page .rtl-form .input-group .input-group-text{ border-radius: 0 .375rem .375rem 0; }
.addfunds-page .rtl-pagination .page-link{ direction: rtl; }
@media (max-width: 575.98px){
  .addfunds-page .af-title{ font-size: 1.5rem; }
  .addfunds-page .af-quick{ display: none !important; }
}

/* =============================================================================
   AFFILIATES PAGE — #affiliates-page
   ============================================================================= */
#affiliates-page{ font-family: inherit; }
#affiliates-page .card-glass{
  background: #fff; border: 1px solid rgba(2,6,23,.08); border-radius: 18px; box-shadow: 0 10px 24px rgba(2,8,23,.06);
}
#affiliates-page .aff-info-card{ border: 1px solid rgba(2,6,23,.08); border-radius: 16px; }
#affiliates-page .aff-info-icon{
  flex: 0 0 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, rgb(14,165,233), rgb(2,132,199)); box-shadow: 0 8px 18px rgba(14,165,233,.25);
}
#affiliates-page .aff-info-icon.is-green{ background: linear-gradient(135deg, rgb(16,185,129), rgb(2,132,199)); }
#affiliates-page .aff-info-icon.is-amber{ background: linear-gradient(135deg, rgb(245,158,11), rgb(234,88,12)); }
#affiliates-page .aff-ref{
  display: inline-block; padding: .35rem .5rem; background: rgb(246,248,252); border: 1px solid rgba(2,6,23,.08); border-radius: 10px;
}
#affiliates-page .aff-stat{
  height: 100%; background: #fff; border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px; padding: 12px; box-shadow: 0 6px 18px rgba(2,8,23,.06);
}
#affiliates-page .aff-stat-ico{
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, rgb(99,102,241), rgb(14,165,233));
}
#affiliates-page .aff-stat-label{ color: rgb(75,85,99); font-weight: 800; margin-top: 8px; }
#affiliates-page .aff-stat-val{ font-weight: 900; color: rgb(17,24,39); font-size: 1.1rem; }
#affiliates-page .aff-cta-ico{
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: rgb(55,43,11);
  background: radial-gradient(60px 60px at 30% 30%, rgba(253,190,2,.22), rgba(255,255,255,.85)),
              linear-gradient(135deg, rgb(253,190,2), rgb(255,205,75));
  border: 2px solid rgba(253,190,2,.25);
}
#affiliates-page .payout-btn{ height: 48px; line-height: 48px; padding: 0 18px; border-radius: 14px; font-weight: 900; }
#affiliates-page .badge.bg-soft{
  background: rgba(14,165,233,.12); color: rgb(14,165,233); border: 1px solid rgba(14,165,233,.25);
  padding: .35rem .6rem; font-weight: 900; border-radius: 999px;
}
#affiliates-page .pagination .page-link{
  border-radius: 10px; border: 1px solid rgba(2,6,23,.12); color: rgb(17,24,39);
}
#affiliates-page .pagination .page-item.active .page-link{
  background: linear-gradient(135deg, rgb(99,102,241), rgb(14,165,233)); color: #fff; border-color: transparent;
}
#affiliates-page.rtl .copy-ref i{ margin-inline: 0 .5rem; }











/* =========================================================================
   Sign-in Page Styles (scoped to #page-signin)
   - Headings: h1/h2 set to 3–4rem via clamps
   - Paragraphs: min 1.5rem
   - Other text: 1–1.5rem
   - Responsive and SEO-friendly contrast
   ========================================================================= */

/* 1) ROOT & TOKENS */
#page-signin {
  --brand:        #10b981;
  --brand-600:    #0fb07c;
  --brand-700:    #0a9b6e;

  --accent-2:     #f59e0b;
  --accent-3:     #fb7185;
  --accent-4:     #3b82f6;

  --bg:           #f8fafc;
  --surface:      #ffffff;
  --wash:         #ffffff;
  --text:         #111827;
  --muted:        #1f2937;
  --line:         rgba(148, 163, 184, 0.4);

  --success:      #16a34a;
  --danger:       #ef4444;
  --warning:      #f59e0b;
  --info:         #38bdf8;

  --radius-xl:    20px;
  --radius-lg:    16px;
  --radius-md:    12px;
  --radius-pill:  999px;

  --shadow-1:     0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-2:     0 18px 48px rgba(15, 23, 42, 0.14);

  --glass:        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));

  --grad-1:
    radial-gradient(1000px 480px at 0% 0%, rgba(16, 185, 129, 0.16), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(59, 130, 246, 0.12), transparent 55%);

  --focus:        0 0 0 3px rgba(16, 185, 129, 0.35);

  --fs-body:      clamp(1rem, 2.5vw, 1.25rem);    /* other text: 1–1.5rem */
  --fs-p:         clamp(1.5rem, 2.5vw, 1.6rem);   /* paragraphs min 1.5rem */
  --fs-h2:        clamp(3rem, 3.5vw, 3.6rem);     /* 3–4rem */
  --fs-h1:        clamp(3.4rem, 4vw, 4rem);       /* 3–4rem */
  --lh:           1.5;

  color: var(--text);
  background: var(--bg);
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

#page-signin * { box-sizing: border-box; }
#page-signin img { max-width: 100%; height: auto; }
#page-signin a, #page-signin .btn { text-decoration: none; }
#page-signin.rtl { direction: rtl; }

@media (prefers-reduced-motion: reduce) {
  #page-signin * { transition: none !important; animation: none !important; }
}

/* 2) TYPOGRAPHY & WRAPPERS */
#page-signin,
#page-signin li,
#page-signin input,
#page-signin button,
#page-signin .btn,
#page-signin small {
  font-size: var(--fs-body);
  line-height: var(--lh);
  color: var(--text);
}

#page-signin p { font-size: var(--fs-p); color: var(--muted); }

#page-signin h1,
#page-signin .section-header .section-title,
#page-signin .hero-heading,
#page-signin .mk-title,
#page-signin .about-title,
#page-signin .hiw-title {
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
  color: var(--text);
}

#page-signin h2,
#page-signin .svc-title,
#page-signin .t4-headline,
#page-signin .wc-card-title,
#page-signin .smm-what-title,
#page-signin .ss-name {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 6px;
  letter-spacing: 0.2px;
  color: var(--text);
}

#page-signin .section-header .section-subtitle,
#page-signin .hero-lead,
#page-signin .about-lead,
#page-signin .mk-subtitle,
#page-signin .hiw-lead { color: var(--muted); }

#page-signin .section-padding { padding: clamp(48px, 6vw, 72px) 0; }
#page-signin .section-padding-sm { padding: clamp(28px, 4vw, 40px) 0; }

#page-signin .u-accent,
#page-signin .text-accent { color: var(--brand-700); }

#page-signin .u-gradient {
  background: linear-gradient(90deg, var(--brand-600), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#page-signin .section-header { max-width: 900px; margin-inline: auto; }
#page-signin .section-title { font-size: clamp(2.4rem, 3.2vw, 3rem); }

#page-signin :where(a, button, input, .btn, [role="tab"], .mk-card, .svc-pill, .payv7-pill):focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

#page-signin .visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0);
}

/* 3) PRELOADER */
#page-signin .preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--grad-1), var(--bg);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#page-signin .preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#page-signin .preloader-inner {
  display: grid; justify-items: center; gap: 10px;
  padding: 18px 20px; border-radius: 16px;
  background: var(--glass); border: 1px solid var(--line);
  box-shadow: var(--shadow-2); min-width: 180px;
}
#page-signin .preloader-logo {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.18));
  color: #084c3a; border: 1px solid rgba(16, 185, 129, 0.45);
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.3);
  font-size: 16px; font-weight: 900;
}
#page-signin .preloader-text { font-weight: 600; font-size: 1.2rem; color: var(--muted); }
#page-signin .preloader-spinner {
  width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(148, 163, 184, 0.4); border-top-color: var(--brand);
  animation: signinSpin 0.8s linear infinite;
}
@keyframes signinSpin { to { transform: rotate(360deg); } }

/* 4) HERO */
#page-signin .hero-auth { background: radial-gradient(circle at 0% 0%, #e5fff7 0, #f7fffb 45%, #ffffff 100%); }
#page-signin .hero-auth-row { flex-direction: row; }
#page-signin .hero-copy-col { order: 1; }
#page-signin .hero-visual-col { order: 2; }
@media (max-width: 991.98px) {
  #page-signin .hero-auth { padding-top: 32px; }
  #page-signin .hero-copy-col { margin-bottom: 28px; }
}
#page-signin .hero-copy { max-width: 820px; }
#page-signin .hero-kicker {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0f766e;
  margin-bottom: 6px;
}
#page-signin .hero-heading {
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
#page-signin .hero-lead { font-size: var(--fs-p); color: var(--muted); }

/* Form */
#page-signin .auth-card { background: transparent; border: 0; padding: 0; box-shadow: none; max-width: 820px; }
#page-signin .hero-field-shell {
  display: flex; align-items: center; gap: 12px;
  background: #ffffff; border-radius: var(--radius-pill);
  padding: 16px 18px; box-shadow: var(--shadow-1);
  border: 1px solid rgba(203, 213, 225, 0.8);
}
#page-signin .hero-field-icon { font-size: 1.8rem; color: #0aa06e; display: flex; align-items: center; justify-content: center; }
#page-signin .hero-field-input {
  border: 0; outline: 0; width: 100%;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text); background: transparent;
}
#page-signin .hero-field-input::placeholder { color: #9ca3af; }
#page-signin .hero-field-addon {
  border: 0; background: transparent; color: #374151;
  font-size: 1.2rem; display: flex; align-items: center; padding-left: 4px;
}
#page-signin .hero-meta-row { font-size: clamp(1rem, 2vw, 1.2rem); }
#page-signin .hero-forgot-link { color: var(--text); }
#page-signin .hero-forgot-link:hover { text-decoration: underline; }
#page-signin .hero-btn-row .btn {
  min-height: 52px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}
#page-signin .btn-signin-main {
  background: #00c26e; border: 0; color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 194, 110, 0.35);
}
#page-signin .btn-signin-main:hover { filter: brightness(0.98); transform: translateY(-1px); }
#page-signin .btn-signin-main:active { transform: translateY(0); }
#page-signin .btn-signin-google {
  background: #ffffff; border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text); box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
#page-signin .btn-signin-google:hover { filter: brightness(0.98); }

/* Visual */
#page-signin .hero-visual { position: relative; max-width: 560px; margin: 0 auto; }
#page-signin .hero-circle {
  position: absolute; inset: 10% 14%; border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #4ade80 0, #059669 55%, #047857 100%);
  z-index: 1;
}
#page-signin .hero-person {
  position: relative; z-index: 2; width: 100%;
  max-height: 720px; object-fit: contain;
}
#page-signin .hero-widget {
  position: absolute; z-index: 3; background: #ffffff;
  border-radius: 18px; box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}
#page-signin .hero-widget-top { left: 4%; top: 16%; padding: 10px 14px; width: 110px; }
#page-signin .hero-widget-bar { height: 6px; border-radius: 999px; background: var(--accent-3); margin-bottom: 6px; }
#page-signin .hero-widget-bar-2 { width: 70%; background: var(--accent-2); }
#page-signin .hero-widget-bar-3 { width: 50%; background: #4ade80; }
#page-signin .hero-widget-bottom { right: -4%; bottom: 8%; padding: 12px 16px; width: 140px; }
#page-signin .hero-widget-pill { height: 12px; width: 70%; border-radius: 999px; background: linear-gradient(90deg, #22c55e, #10b981); margin-bottom: 10px; }
#page-signin .hero-widget-chart { height: 36px; border-radius: 10px; background: linear-gradient(135deg, #e0f2fe, #f9a8d4); }
@media (max-width: 767.98px) {
  #page-signin .hero-visual { max-width: 360px; }
  #page-signin .hero-widget-top { left: 0; }
  #page-signin .hero-widget-bottom { right: 0; }
}

/* 5) MINI STATS */
#page-signin .mini-stats { background: #f5f7fb; padding-block: clamp(24px, 4vw, 40px); }
#page-signin .mini-stats-v2 .stat-card {
  background: #ffffff; border-radius: 20px; border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-1);
  padding: 20px 16px 18px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
#page-signin .mini-stats-v2 .stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: rgba(16, 185, 129, 0.55); }
#page-signin .mini-stats-v2 .stat-icon { margin-bottom: 4px; }
#page-signin .mini-stats-v2 .stat-icon img { width: 64px; }
#page-signin .mini-stats-v2 .stat-label { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; color: var(--brand-700); }
#page-signin .mini-stats-v2 .stat-value { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; color: var(--text); line-height: 1.1; }
#page-signin .mini-stats-v2 .stat-value-rank { font-size: clamp(1.3rem, 2vw, 1.6rem); }

/* 6) SERVICES SELECTOR */
#page-signin .services-v7 { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 992px) { #page-signin .services-v7 { padding-top: 4.5rem; padding-bottom: 4.5rem; } }
#page-signin .svc-panel { border-radius: 26px; background: #ffffff; box-shadow: var(--shadow-2); overflow: hidden; }
#page-signin .svc-panel-head { background: linear-gradient(135deg, #2ecf9c, #1ea36d); padding: 22px 24px; }
#page-signin .svc-pills { display: flex; flex-wrap: wrap; gap: 0.85rem; }
#page-signin .svc-pill {
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 0.5rem 1.2rem 0.5rem 0.6rem; background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  display: inline-flex; align-items: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
#page-signin .svc-pill-inner { display: inline-flex; align-items: center; gap: 0.6rem; }
#page-signin .svc-ico {
  width: 2.6rem; height: 2.6rem; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 1.3rem; flex-shrink: 0; background: #111827;
}
#page-signin .svc-text-block { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
#page-signin .svc-text { font-weight: 700; font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--text); }
#page-signin .svc-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: #374151; }
#page-signin .svc-pill.active { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25); }
@media (max-width: 767.98px) {
  #page-signin .svc-pills { overflow-x: auto; padding-bottom: 0.25rem; }
  #page-signin .svc-pill { flex: 0 0 auto; }
}
#page-signin .svc-pill[data-key="facebook"] .svc-ico { background: #1877f2; }
#page-signin .svc-pill[data-key="instagram"] .svc-ico { background: radial-gradient(circle at 30% 110%, #feda75 0%, #d62976 45%, #962fbf 60%, #4f5bd5 90%); }
#page-signin .svc-pill[data-key="youtube"] .svc-ico { background: #ff0000; }
#page-signin .svc-pill[data-key="tiktok"] .svc-ico { background: #000000; }
#page-signin .svc-pill[data-key="linkedin"] .svc-ico { background: #0a66c2; }
#page-signin .svc-pill[data-key="telegram"] .svc-ico { background: #229ed9; }
#page-signin .svc-pill[data-key="twitter"] .svc-ico { background: #000000; }
#page-signin .svc-panel-body { padding: 2.5rem 2.3rem 2.3rem; background: #ffffff; transition: opacity 0.16s ease, transform 0.16s ease; }
#page-signin .svc-panel-body.is-switching { opacity: 0.35; transform: translateY(4px); }
#page-signin .svc-copy { max-width: 820px; }
#page-signin .svc-kicker {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--success);
  font-weight: 700; margin-bottom: 0.45rem;
}
#page-signin .svc-title { font-size: clamp(2.6rem, 3vw, 3.2rem); margin-bottom: 0.75rem; }
#page-signin .svc-lead { font-size: var(--fs-p); color: var(--muted); margin-bottom: 1.1rem; }
#page-signin .svc-features { list-style: none; padding: 0; margin: 0 0 1.3rem; }
#page-signin .svc-features li {
  display: flex; align-items: flex-start;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text); gap: 0.6rem; margin-bottom: 0.4rem;
}
#page-signin .svc-features i { color: var(--success); margin-top: 0.15rem; }
#page-signin .svc-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem 1.5rem; }
#page-signin .svc-cta { border-radius: 999px; padding-inline: 2.2rem; font-weight: 800; }
#page-signin .svc-media { text-align: center; }
#page-signin .svc-media img { max-width: 100%; margin-inline: auto; filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.25)); }
@media (min-width: 992px) { #page-signin .svc-media img { max-width: 420px; } }

/* 7) ABOUT */
#page-signin #about-pro .about-eyebrow {
  font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(51, 65, 85, 0.9);
}
#page-signin #about-pro .about-lead { color: var(--text); font-size: var(--fs-p); }
#page-signin .about-list { padding-left: 1.1rem; margin-bottom: 0.75rem; color: var(--muted); font-size: clamp(1rem, 2vw, 1.2rem); }
#page-signin .about-visual { position: relative; }
#page-signin .about-aura { position: absolute; inset: -10%; z-index: 0; background: radial-gradient(60% 60% at 50% 40%, rgba(253, 190, 2, 0.18), transparent 60%); filter: blur(30px); }
#page-signin .about-ring { position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; border: 1px dashed rgba(148, 163, 184, 0.5); left: 10%; top: 5%; animation: aboutRingSpin 24s linear infinite; }
@keyframes aboutRingSpin { to { transform: rotate(1turn); } }
#page-signin .about-device { position: relative; z-index: 1; display: inline-block; background: var(--glass); border: 1px solid var(--line); border-radius: 26px; padding: 14px; box-shadow: var(--shadow-2); }
#page-signin .about-photo { border-radius: 18px; display: block; width: 100%; object-fit: cover; }
#page-signin .about-float.about-card {
  position: absolute; z-index: 2; left: -8px; top: -8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 12px; width: max(230px, 48%); box-shadow: var(--shadow-1);
}
#page-signin .about-card-head { display: flex; gap: 10px; align-items: center; font-weight: 700; color: var(--text); }
#page-signin .about-card-body { margin-top: 8px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.2rem); }
#page-signin .about-tile {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1; width: 82px; height: 72px; border-radius: 16px; background: var(--glass);
  border: 1px solid var(--line); display: grid; place-items: center;
}
#page-signin .about-tile .ribbon, #page-signin .about-tile .medal {
  position: absolute; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 900;
}
#page-signin .about-tile .ribbon { top: -10px; right: -10px; background: var(--accent-2); color: #3b2f00; }
#page-signin .about-tile .medal { bottom: -10px; left: -10px; background: #fde68a; color: #7c3e00; }
#page-signin .about-bubble { position: absolute; right: -8px; top: 25%; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--wash); color: #c026d3; border: 1px dashed rgba(148, 163, 184, 0.5); }

/* 8) HOW IT WORKS */
#page-signin .how-orb { position: relative; background: var(--wash); isolation: isolate; overflow: clip; }
#page-signin .hiw-eyebrow { font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(51, 65, 85, 0.9); }
#page-signin .hiw-accent { background: linear-gradient(90deg, var(--brand), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
#page-signin .hiw-lead { color: rgba(51, 65, 85, 0.9); max-width: 66ch; margin: 0 auto; }
#page-signin .hiw-orb-wrap { position: relative; min-height: 520px; margin-top: 24px; }
#page-signin .hiw-orb { --orb-size: clamp(280px, 36vw, 360px); position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: var(--orb-size); height: var(--orb-size); display: grid; place-items: center; }
#page-signin .hiw-orb-ring {
  --pct: 0; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(closest-side, var(--glass) 78%, transparent 79% 100%),
    conic-gradient(from -90deg, var(--brand) calc(var(--pct)*1turn), rgba(253, 224, 71, 0.2) 0);
  box-shadow: inset 0 0 0 1px var(--line), 0 10px 30px -10px rgba(148, 163, 184, 0.6);
  transition: background 0.4s ease;
}
#page-signin .hiw-orb-core {
  width: 48%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(253, 190, 2, 0.6) 0, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.3));
  border: 1px solid var(--line); display: grid; place-items: center;
  box-shadow: 0 8px 20px -10px rgba(148, 163, 184, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
#page-signin .hiw-orb-core i { font-size: 1.4rem; color: var(--brand-700); }
#page-signin .hiw-orb-pin {
  position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand); border: 2px solid white; box-shadow: 0 2px 10px rgba(148, 163, 184, 0.6);
  translate: -50% -50%; cursor: pointer;
}
#page-signin .hiw-orb-pin:nth-of-type(1) { left: 50%; top: 6%; }
#page-signin .hiw-orb-pin:nth-of-type(2) { left: 94%; top: 50%; }
#page-signin .hiw-orb-pin:nth-of-type(3) { left: 50%; top: 94%; }
#page-signin .hiw-orb-pin:nth-of-type(4) { left: 6%;  top: 50%; }
#page-signin .hiw-card {
  position: absolute; width: min(520px, 48vw);
  background: var(--glass); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px; box-shadow: 0 1px 0 rgba(148, 163, 184, 0.2), 0 12px 24px -10px rgba(148, 163, 184, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  outline: none; opacity: 0.95;
}
#page-signin .hiw-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
#page-signin .hiw-card.is-active { opacity: 1; background: #fffaf0; border-color: rgba(253, 190, 2, 0.7); }
#page-signin .hiw-card-h { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 8px; }
#page-signin .hiw-card-h i { margin-left: auto; color: var(--brand-700); font-size: 1.4rem; }
#page-signin .hiw-badge { font-weight: 800; color: #3b2f00; background: var(--accent-2); border-radius: 999px; padding: 4px 10px; font-size: 1rem; }
#page-signin .hiw-card p { font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--muted); }
#page-signin .hiw-meta {
  list-style: none; padding: 0; margin: 8px 0 12px;
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.8rem; color: #374151; font-size: clamp(1rem, 2vw, 1.2rem);
}
#page-signin .hiw-meta i { margin-right: 4px; color: var(--success); }
#page-signin .hiw-pos-nw { left: calc(50% - 520px); top: calc(50% - 260px); }
#page-signin .hiw-pos-ne { left: calc(50% +  40px); top: calc(50% - 260px); }
#page-signin .hiw-pos-se { left: calc(50% +  40px); top: calc(50% +  60px); }
#page-signin .hiw-pos-sw { left: calc(50% - 520px); top: calc(50% +  60px); }
#page-signin .hiw-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(600px 240px at 10% 10%, rgba(16, 185, 129, 0.18), transparent 60%),
    radial-gradient(600px 240px at 90% 90%, rgba(251, 191, 36, 0.18), transparent 60%);
  filter: blur(40px);
}
@media (max-width: 991.98px) {
  #page-signin .hiw-orb { display: none; }
  #page-signin .hiw-orb-wrap { min-height: 0; padding-top: 6px; }
  #page-signin .hiw-card { position: relative; left: auto; top: auto; width: 100%; margin-bottom: 12px; }
  #page-signin .hiw-linear { position: relative; height: 8px; border-radius: 999px; background: rgba(253, 224, 71, 0.3); overflow: hidden; margin-top: 10px; }
  #page-signin .hiw-linear-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: linear-gradient(90deg, var(--brand), var(--accent-2)); transition: width 0.3s ease; }
}

/* 9) WHY CHEAPEST */
#page-signin .why-cheapest {
  padding-top: 3.2rem; padding-bottom: 3.2rem; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at top left, #ecfdf5 0, transparent 55%),
    radial-gradient(circle at bottom right, #fef3c7 0, transparent 55%),
    linear-gradient(135deg, #ffffff 0, #f9fafb 40%, #fefce8 100%);
}
#page-signin .wc-sub { display: block; font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; color: #374151; margin-top: 0.25rem; }
#page-signin .wc-intro { max-width: 900px; margin: 0.75rem auto 0; color: var(--muted); }
#page-signin .wc-grid { margin-top: 2rem; }
#page-signin .wc-card {
  background: #ffffff; border-radius: 20px; padding: 1.6rem;
  box-shadow: var(--shadow-1); border: 1px solid rgba(148, 163, 184, 0.4);
  height: 100%; display: flex; flex-direction: column; gap: 0.8rem;
  transform: translateY(24px) scale(0.97); opacity: 0;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
#page-signin .wc-card-visible { opacity: 1; transform: translateY(0) scale(1); }
#page-signin .wc-card:hover { box-shadow: var(--shadow-2); border-color: rgba(34, 197, 94, 0.7); transform: translateY(-6px) scale(1.02); background: #fdfefb; }
#page-signin .wc-card-icon {
  width: 2.6rem; height: 2.6rem; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 0%, #bbf7d0 0, #22c55e 55%, #16a34a 100%);
  color: #ecfdf5; font-size: 1.4rem; margin-bottom: 0.35rem;
}
#page-signin .wc-card-text { font-size: var(--fs-p); color: var(--muted); }

/* 10) WHAT IS SMM PANEL */
#page-signin .smm-what {
  padding-top: 3.2rem; padding-bottom: 3.2rem;
  background:
    radial-gradient(circle at top left, #fef3c7 0, transparent 55%),
    radial-gradient(circle at bottom right, #fee2e2 0, transparent 55%),
    linear-gradient(135deg, #ffffff 0, #fdfdfb 40%, #ecfdf5 100%);
}
#page-signin .smm-what-intro { max-width: 900px; margin: 0.75rem auto 0; }
#page-signin .smm-what-grid { margin-top: 2rem; }
#page-signin .smm-what-card {
  background: rgba(255, 255, 255, 0.95); border-radius: 22px; padding: 1.6rem;
  box-shadow: var(--shadow-1); border: 1px solid rgba(209, 213, 219, 0.6);
  height: 100%; display: flex; flex-direction: column; gap: 0.7rem; position: relative; overflow: hidden;
  transform: translateY(28px) scale(0.97); opacity: 0;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out, box-shadow 0.25s ease, background 0.25s ease;
}
#page-signin .smm-what-card::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(circle at top, rgba(251, 146, 60, 0.12), transparent 60%);
  opacity: 0; z-index: -1; transition: opacity 0.3s ease-out;
}
#page-signin .smm-what-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
#page-signin .smm-what-card:hover { box-shadow: var(--shadow-2); background: #fffdf8; transform: translateY(-6px) scale(1.02); }
#page-signin .smm-what-card:hover::before { opacity: 1; }
#page-signin .smm-what-badge {
  width: 2.6rem; height: 2.6rem; border-radius: 999px; color: #fafaf9; font-size: 1rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0.4rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
#page-signin .smm-what-grid > div:nth-child(1) .smm-what-badge { background: linear-gradient(135deg, #fb923c, #f97316); }
#page-signin .smm-what-grid > div:nth-child(2) .smm-what-badge { background: linear-gradient(135deg, #22c55e, #16a34a); }
#page-signin .smm-what-grid > div:nth-child(3) .smm-what-badge { background: linear-gradient(135deg, #f97316, #ec4899); }
#page-signin .smm-what-grid > div:nth-child(4) .smm-what-badge { background: linear-gradient(135deg, #a855f7, #f97316); }
#page-signin .smm-what-text { font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--muted); }

/* 11) MARKETS */
#page-signin .markets-v3 { background: #ffffff; }
#page-signin .mk-title { font-size: clamp(2.2rem, 3vw, 3rem); }
#page-signin .mk-accent { color: var(--success); }
#page-signin .mk-subtitle { color: var(--muted); }
#page-signin .mk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
#page-signin .mk-card { position: relative; }
#page-signin .mk-link {
  display: flex; align-items: center; gap: 0.9rem;
  border-radius: 16px; padding: 0.9rem 1rem;
  background: #f9fafb; border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-1); position: relative; overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
#page-signin .mk-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: rgba(34, 197, 94, 0.6); background: #ffffff; }
#page-signin .mk-flag img { border-radius: 8px; }
#page-signin .mk-body { display: flex; flex-direction: column; }
#page-signin .mk-card-title { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 0; }
#page-signin .mk-card-text { font-size: clamp(0.95rem, 2vw, 1.1rem); color: #6b7280; }
#page-signin .mk-cta { margin-left: auto; color: #9ca3af; }

/* 12) SUCCESS STORIES */
#page-signin .success-stories {
  padding-top: 3.2rem; padding-bottom: 3.2rem; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at top left, #dbeafe 0, transparent 52%),
    radial-gradient(circle at bottom right, #bbf7d0 0, transparent 52%),
    linear-gradient(135deg, #ffffff 0, #f9fafb 40%, #fefce8 100%);
}
#page-signin .ss-intro { max-width: 900px; margin: 0.75rem auto 0; color: var(--muted); }
#page-signin .ss-grid { margin-top: 2rem; }
#page-signin .t4-card {
  background: #ffffff; border-radius: 18px; padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-1); border: 1px solid rgba(209, 213, 219, 0.8);
}
#page-signin .t4-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
#page-signin .t4-quote-badge {
  width: 32px; height: 32px; border-radius: 999px; display: grid; place-items: center;
  background: #fef3c7; color: #92400e;
}
#page-signin .t4-stars i { color: #facc15; margin-left: 2px; }
#page-signin .t4-headline { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
#page-signin .t4-text { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); }
#page-signin .t4-author { margin-top: 0.8rem; display: flex; align-items: center; gap: 0.7rem; }
#page-signin .t4-avatar { border-radius: 999px; }
#page-signin .t4-name { font-size: clamp(1rem, 2vw, 1.2rem); }
#page-signin .t4-loc { font-size: clamp(0.95rem, 2vw, 1.1rem); color: #6b7280; }
#page-signin .carousel-control-btn {
  width: 34px; height: 34px; border-radius: 999px; background: rgba(15, 23, 42, 0.07); display: grid; place-items: center;
}

/* 13) PAYMENTS */
#page-signin .payments-v7 { background: #f9fafb; }
#page-signin .payv7-eyebrow {
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(51, 65, 85, 0.9);
}
#page-signin .payv7-title { font-size: clamp(2.1rem, 3vw, 2.6rem); }
#page-signin .payv7-grad { background: linear-gradient(90deg, var(--brand), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
#page-signin .payv7-subtitle { color: var(--muted); }
#page-signin .payv7-pills {
  display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin: 1.4rem 0 1.8rem;
}
#page-signin .payv7-pill {
  border-radius: 999px; border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff; padding: 0.4rem 1rem; font-size: clamp(1rem, 2vw, 1.2rem);
  display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
#page-signin .payv7-pill i { font-size: 0.9rem; }
#page-signin .payv7-pill.active { background: #fef3c7; border-color: rgba(253, 190, 2, 0.9); box-shadow: 0 8px 18px rgba(251, 191, 36, 0.25); }
#page-signin .payv7-microhead {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.2rem 0.6rem; border-radius: 999px;
  background: #ecfdf5; color: #166534; font-size: clamp(0.9rem, 2vw, 1.1rem);
}
#page-signin .payv7-microhead .spark { width: 10px; height: 10px; border-radius: 999px; background: #22c55e; }
#page-signin .payv7-values { margin-top: 1.1rem; margin-bottom: 1.1rem; display: grid; gap: 0.7rem; }
#page-signin .value-row { display: flex; gap: 0.6rem; align-items: flex-start; }
#page-signin .vr-ico {
  width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center;
  background: #fef3c7; color: #92400e; flex-shrink: 0;
}
#page-signin .vr-copy strong { font-size: clamp(1rem, 2vw, 1.2rem); }
#page-signin .vr-copy small { font-size: clamp(0.95rem, 2vw, 1.1rem); color: #6b7280; }
#page-signin .payv7-assurance {
  border-radius: 14px; background: #ffffff; border: 1px dashed rgba(148, 163, 184, 0.7); padding: 0.8rem 0.9rem; margin-bottom: 0.9rem;
}
#page-signin .assure-line { display: flex; gap: 0.5rem; align-items: center; font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); }
#page-signin .assure-line + .assure-line { margin-top: 0.3rem; }
#page-signin .payv7-actions .btn-brand { border-radius: 999px; }
#page-signin .payv7-trustchips { margin-top: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
#page-signin .tchip { font-size: clamp(0.95rem, 2vw, 1.1rem); border-radius: 999px; padding: 0.2rem 0.6rem; background: #eef2ff; color: #4338ca; }
#page-signin .payv7-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.9rem;
}
#page-signin .payv7-card {
  position: relative; border-radius: 16px; background: #ffffff; border: 1px solid rgba(209, 213, 219, 0.8);
  padding: 0.6rem 0.8rem; display: grid; place-items: center; box-shadow: var(--shadow-1);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
#page-signin .payv7-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(52, 211, 153, 0.85); }
#page-signin .payv7-card.is-hidden { display: none; }
#page-signin .payv7-name { font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--muted); margin-top: 0.3rem; }

/* 14) FAQ */
#page-signin .faq-v2 { background: #f3f4f6; }
#page-signin .faq-v2-subtitle { max-width: 900px; margin: 0.4rem auto 1rem; font-size: clamp(1rem, 2vw, 1.2rem); color: #6b7280; }
#page-signin .faq-v2-dots { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.5rem; }
#page-signin .faq-dot { width: 22px; height: 22px; border-radius: 999px; background: #e5e7eb; display: inline-flex; align-items: center; justify-content: center; }
#page-signin .faq-dot-main { width: 30px; height: 30px; background: #10b981; color: #ffffff; box-shadow: 0 10px 18px rgba(16, 185, 129, 0.45); font-size: 0.75rem; }
#page-signin .faq-v2-grid { margin-top: 1.6rem; }
#page-signin .faq-v2-card {
  background: #ffffff; border-radius: 999px; padding: 0;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08); border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden; transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
@media (max-width: 575.98px) { #page-signin .faq-v2-card { border-radius: 22px; } }
#page-signin .faq-v2-card:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14); border-color: rgba(16, 185, 129, 0.9); }
#page-signin .faq-v2-question {
  width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 1.4rem; cursor: pointer;
}
#page-signin .faq-v2-question-text { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; color: var(--text); text-align: left; }
#page-signin .faq-v2-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 999px; background: #10b981;
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.45);
}
#page-signin .faq-v2-icon-line { position: absolute; background: #ffffff; border-radius: 999px; transition: transform 0.18s ease, opacity 0.18s ease; }
#page-signin .faq-line-h { width: 14px; height: 2px; }
#page-signin .faq-line-v { width: 2px; height: 14px; }
#page-signin .faq-v2-answer {
  padding: 0 1.4rem 0; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}
#page-signin .faq-v2-answer p { font-size: var(--fs-p); color: var(--muted); padding-bottom: 0.9rem; margin: 0; }
#page-signin .faq-v2-card.is-open .faq-v2-answer { opacity: 1; }
#page-signin .faq-v2-card.is-open .faq-line-v { transform: scaleY(0); opacity: 0; }
#page-signin .faq-v2-question:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35); border-radius: inherit; }

/* 15) BUTTONS */
#page-signin .btn-brand {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #1f2937;
  font-weight: 700;
  border-radius: 999px;
}
#page-signin .btn-brand:hover { background: var(--brand-700); border-color: var(--brand-700); color: #111827; }
#page-signin .btn-outline-brand { border-color: var(--brand-600); color: #1f2937; border-radius: 999px; }
#page-signin .btn-outline-brand:hover { background: var(--brand-600); color: #111827; }

/* 16) BACK TO TOP */
#page-signin .back-to-top-btn {
  position: fixed; right: 16px; bottom: 16px; z-index: 1000;
  width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-2);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#page-signin .back-to-top-btn.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* 17) GENERIC ANIM */
#page-signin [data-anim] { opacity: 0; transform: translateY(12px); transition: opacity 0.35s ease, transform 0.35s ease; }
#page-signin .in { opacity: 1; transform: translateY(0); }
