
:root{
  --bg:#070707;
  --bg2:#121218;
  --panel:#111218;
  --panel2:#181a23;
  --text:#f5f6fb;
  --muted:#bdbfcb;
  --orange:#ff6a00;
  --orange2:#ff9f1a;
  --purple:#7b2cff;
  --purple2:#ad4bff;
  --line:rgba(255,255,255,.08);
  --radius:24px;
  --shadow:0 18px 50px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,0,.18), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(123,44,255,.16), transparent 26%),
    linear-gradient(180deg,#070707 0%,#0a0a0d 35%,#0b0b11 100%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.wrap{width:min(1180px,calc(100% - 32px));margin:0 auto}
.section{padding:88px 0;position:relative}
.topbar{
  background:linear-gradient(90deg,var(--orange),#ff7f11,var(--orange));
  color:#fff;font-size:13px;text-align:center;padding:10px 12px;font-weight:700;
}
.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(6,6,9,.86);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:grid;grid-template-columns:auto 1fr auto auto;gap:18px;align-items:center;
  padding:14px 0;
}
.brand img{height:62px;width:auto}
.nav-links{list-style:none;margin:0;padding:0;display:flex;gap:24px;justify-content:center}
.nav-links a{
  color:#f3f3f8;font-weight:700;font-size:14px;letter-spacing:.03em;text-transform:uppercase;
  opacity:.92;
}
.nav-links a:hover,.nav-links a.active{color:var(--orange2)}
.header-cta,.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;padding:14px 22px;font-weight:800;border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta,.btn-primary{
  background:linear-gradient(135deg,var(--orange),#ff8b11);
  color:#fff;box-shadow:0 10px 30px rgba(255,106,0,.35);
}
.btn-secondary{
  background:linear-gradient(135deg,#4b177f,var(--purple));
  color:#fff;box-shadow:0 10px 30px rgba(123,44,255,.26);
}
.header-cta:hover,.btn:hover{transform:translateY(-2px)}
.menu-toggle{
  display:none;background:none;border:0;padding:0;cursor:pointer
}
.menu-toggle span{
  display:block;width:26px;height:3px;background:#fff;margin:5px 0;border-radius:99px
}

.hero{overflow:hidden;padding-top:72px}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:36px;align-items:center}
.hero-copy h1{
  font-size:clamp(42px,6vw,78px);line-height:.98;margin:14px 0 18px;
  text-transform:uppercase;letter-spacing:-.03em;
}
.hero-copy h1 span{color:var(--orange2)}
.hero-copy p{
  color:var(--muted);font-size:18px;line-height:1.7;max-width:700px
}
.eyebrow{
  display:inline-block;font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
  color:#fff;background:linear-gradient(135deg,rgba(255,106,0,.25),rgba(123,44,255,.25));
  border:1px solid rgba(255,255,255,.08);padding:10px 14px;border-radius:999px
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:30px 0 22px}
.pill-list{
  list-style:none;display:flex;gap:12px;flex-wrap:wrap;padding:0;margin:0
}
.pill-list li{
  padding:12px 16px;border-radius:999px;background:rgba(17,18,24,.8);border:1px solid var(--line);
  font-weight:700;font-size:14px;color:#f0f1f7
}
.hero-logo-wrap{display:flex;justify-content:center}
.hero-logo-card{
  position:relative;padding:28px;border-radius:36px;border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  box-shadow:var(--shadow);overflow:hidden;
}
.hero-logo-card::before{
  content:"";position:absolute;inset:-30% auto auto -20%;width:220px;height:220px;
  background:radial-gradient(circle,rgba(255,106,0,.55),transparent 60%);
}
.hero-logo-card::after{
  content:"";position:absolute;inset:auto -20% -30% auto;width:240px;height:240px;
  background:radial-gradient(circle,rgba(123,44,255,.45),transparent 60%);
}
.hero-logo-card img{position:relative;z-index:1;max-width:540px;filter:drop-shadow(0 18px 38px rgba(0,0,0,.5))}
.hero-glow{
  position:absolute;border-radius:50%;filter:blur(80px);opacity:.42;pointer-events:none
}
.hero-glow-left{width:320px;height:320px;left:-80px;top:80px;background:rgba(255,106,0,.3)}
.hero-glow-right{width:300px;height:300px;right:-60px;top:70px;background:rgba(123,44,255,.28)}

.stat-grid,.service-grid,.process-grid,.portfolio-grid,.review-grid,.footer-grid{
  display:grid;gap:22px
}
.stat-grid{grid-template-columns:repeat(4,1fr)}
.stat-card,.service-card,.process-card,.review-card,.pricing-card,.work-card{
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)
}
.stat-card{padding:28px;text-align:center}
.stat-card strong{display:block;font-size:48px;color:var(--orange2);margin-bottom:6px}
.stat-card span{color:var(--muted);font-weight:700}

.section-head{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.section-head h2{
  margin:0;font-size:clamp(30px,4vw,54px);line-height:1.02;text-transform:uppercase
}
.filters{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:24px}
.filter-btn{
  cursor:pointer;border:1px solid var(--line);background:#0d0e13;color:#fff;
  border-radius:999px;padding:12px 16px;font-weight:800
}
.filter-btn.active{background:linear-gradient(135deg,var(--orange),#ff8b11)}

.portfolio-grid{grid-template-columns:repeat(4,1fr)}
.work-card{overflow:hidden}
.work-thumb{
  min-height:165px;display:flex;align-items:center;justify-content:center;padding:18px;
  text-align:center;font-weight:900;font-size:34px;text-transform:uppercase;letter-spacing:-.03em
}
.work-thumb h3{margin:0}
.work-body{padding:18px 18px 20px}
.work-body strong{display:block;font-size:18px;margin-bottom:6px}
.work-body span{color:var(--muted)}
.emote-row{gap:10px;font-size:22px;flex-wrap:wrap}
.emote-row span{
  background:rgba(255,255,255,.14);padding:10px 14px;border-radius:16px;border:1px solid rgba(255,255,255,.15)
}
.grad-purple{background:linear-gradient(135deg,#20072f,#7d1eff)}
.grad-blue{background:linear-gradient(135deg,#07162d,#1091ff)}
.grad-orange{background:linear-gradient(135deg,#281103,#ff6a00)}
.grad-green{background:linear-gradient(135deg,#0b1f0c,#61f246)}
.grad-magenta{background:linear-gradient(135deg,#2a0832,#ff3eb5)}
.grad-red{background:linear-gradient(135deg,#32100b,#ff4d27)}
.grad-gold{background:linear-gradient(135deg,#302008,#ffb11a)}
.grad-cyan{background:linear-gradient(135deg,#0b2330,#17b5ff)}

.service-grid{grid-template-columns:repeat(4,1fr)}
.service-card,.process-card{padding:28px}
.service-card h3,.process-card h3,.pricing-card h3{margin:0 0 10px;font-size:24px}
.service-card p,.process-card p,.review-card p,.pricing-card li,.site-footer p{color:var(--muted);line-height:1.7}
.process-grid{grid-template-columns:repeat(4,1fr)}
.process-card span{
  display:inline-block;font-size:46px;font-weight:900;color:rgba(255,255,255,.12);margin-bottom:14px
}

.review-layout{display:grid;grid-template-columns:1.25fr .75fr;gap:24px;align-items:start}
.review-grid{grid-template-columns:repeat(3,1fr)}
.review-card{padding:24px}
.review-card cite{display:block;margin-top:14px;color:#fff;font-style:normal;font-weight:800}
.pricing-card{padding:30px;position:sticky;top:110px}
.price{font-size:62px;font-weight:900;color:var(--orange2);margin:12px 0 18px}
.pricing-card ul{margin:0 0 24px;padding-left:18px}
.pricing-card li{margin:8px 0}

.bottom-cta{padding-top:52px}
.cta-bar{
  display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:center;
  background:linear-gradient(135deg,rgba(255,106,0,.18),rgba(123,44,255,.14));
  border:1px solid rgba(255,255,255,.08);border-radius:32px;padding:34px
}
.cta-bar h2{margin:10px 0 0;font-size:clamp(28px,3.3vw,46px);text-transform:uppercase}
.cta-stack{display:flex;gap:14px;flex-wrap:wrap}

.site-footer{
  position:relative;margin-top:42px;padding:70px 0 24px;border-top:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,106,0,.06),rgba(0,0,0,0));
}
.footer-grid{grid-template-columns:1.1fr .8fr .8fr 1fr}
.footer-logo{width:190px;margin-bottom:16px}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin:10px 0;color:var(--muted)}
.footer-links a:hover{color:var(--orange2)}
.socials,.footer-badges{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:18px
}
.socials span,.footer-badges span{
  padding:10px 12px;border-radius:999px;background:#0d0e13;border:1px solid var(--line);font-size:13px;font-weight:800
}
.footer-bottom{
  display:flex;justify-content:space-between;gap:20px;align-items:center;
  border-top:1px solid var(--line);margin-top:30px;padding-top:18px
}
.inner-page{
  text-align:center;padding:60px 0 100px
}

.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.tilt{transform-style:preserve-3d;transition:transform .18s ease, box-shadow .18s ease}
.tilt:hover{box-shadow:0 26px 55px rgba(0,0,0,.58)}

@media (max-width: 1080px){
  .hero-grid,.review-layout,.cta-bar,.footer-grid{grid-template-columns:1fr}
  .portfolio-grid,.service-grid,.process-grid,.review-grid,.stat-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-card{position:relative;top:auto}
  .header-inner{grid-template-columns:auto 1fr auto}
  .header-cta{display:none}
}
@media (max-width: 760px){
  .menu-toggle{display:block}
  .site-nav{
    position:absolute;left:16px;right:16px;top:100%;display:none;
    background:rgba(9,10,14,.98);border:1px solid var(--line);border-radius:22px;padding:16px
  }
  .site-nav.open{display:block}
  .nav-links{flex-direction:column;gap:14px}
  .portfolio-grid,.service-grid,.process-grid,.review-grid,.stat-grid{grid-template-columns:1fr}
  .hero-copy h1{font-size:44px}
  .hero-copy p{font-size:16px}
  .section{padding:72px 0}
  .brand img{height:54px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}


/* --- Responsive cleanup v3.1 --- */
html, body{
  overflow-x:hidden;
}
body{
  word-wrap:break-word;
}
.site-onepage,
.section,
.wrap,
.hero-grid,
.portfolio-grid,
.service-grid,
.process-grid,
.review-grid,
.review-layout,
.cta-bar,
.footer-grid{
  min-width:0;
}
.hero-copy,
.hero-copy p,
.section-head h2,
.work-body,
.review-card,
.service-card,
.process-card,
.pricing-card{
  min-width:0;
}
.hero-copy h1,
.section-head h2{
  overflow-wrap:anywhere;
  word-break:break-word;
}
.hero-copy p{
  max-width:100%;
}
.brand img{
  max-width:140px;
  height:auto;
}
.topbar{
  line-height:1.25;
}
.hero-actions .btn,
.cta-stack .btn{
  text-align:center;
}
.pill-list li{
  text-align:center;
}
.work-thumb{
  line-height:1.05;
}
@media (max-width: 920px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .hero-logo-wrap{
    order:-1;
  }
  .hero-logo-card img{
    max-width:380px;
    margin-inline:auto;
  }
}
@media (max-width: 760px){
  .topbar{
    font-size:12px;
    padding:12px 14px;
  }
  .header-inner{
    grid-template-columns:auto auto;
    justify-content:space-between;
    gap:12px;
    padding:12px 0;
  }
  .brand img{
    max-width:88px;
  }
  .site-nav{
    top:calc(100% + 8px);
  }
  .hero{
    padding-top:36px;
  }
  .hero-copy{
    overflow:hidden;
  }
  .hero-copy h1{
    font-size:clamp(34px,10vw,52px);
    line-height:0.95;
    letter-spacing:-0.04em;
    margin:12px 0 14px;
    max-width:100%;
  }
  .hero-copy p{
    font-size:16px;
    line-height:1.55;
  }
  .eyebrow{
    font-size:11px;
    letter-spacing:.08em;
    padding:9px 12px;
    max-width:100%;
  }
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }
  .hero-actions .btn,
  .cta-stack .btn,
  .header-cta{
    width:100%;
  }
  .pill-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .pill-list li{
    width:100%;
    font-size:13px;
    padding:11px 12px;
  }
  .hero-logo-card{
    padding:18px;
    border-radius:24px;
  }
  .hero-logo-card img{
    max-width:260px;
  }
  .section{
    padding:56px 0;
  }
  .stat-card{
    padding:22px 18px;
  }
  .stat-card strong{
    font-size:38px;
  }
  .section-head{
    margin-bottom:20px;
  }
  .section-head h2{
    font-size:clamp(26px,8vw,40px);
    line-height:1;
  }
  .filters{
    display:grid;
    grid-template-columns:repeat(2,1fr);
  }
  .filter-btn{
    width:100%;
    padding:11px 12px;
    font-size:14px;
  }
  .work-thumb{
    min-height:130px;
    font-size:26px;
    padding:14px;
  }
  .emote-row{
    font-size:18px;
  }
  .emote-row span{
    padding:8px 10px;
  }
  .service-card,
  .process-card,
  .review-card,
  .pricing-card,
  .work-body{
    padding:18px;
  }
  .service-card h3,
  .process-card h3,
  .pricing-card h3{
    font-size:20px;
  }
  .price{
    font-size:46px;
  }
  .cta-bar{
    padding:24px 18px;
    gap:18px;
  }
  .cta-bar h2{
    font-size:clamp(24px,7vw,34px);
    line-height:1;
  }
  .footer-grid{
    gap:18px;
  }
}
@media (max-width: 480px){
  .wrap{
    width:min(100% - 22px, 1180px);
  }
  .topbar{
    font-size:11px;
    padding:10px 12px;
  }
  .brand img{
    max-width:74px;
  }
  .menu-toggle span{
    width:24px;
  }
  .hero-copy h1{
    font-size:clamp(30px,9.2vw,40px);
  }
  .hero-copy p{
    font-size:15px;
  }
  .hero-actions .btn,
  .cta-stack .btn{
    padding:13px 16px;
    font-size:15px;
  }
  .pill-list{
    grid-template-columns:1fr 1fr;
  }
  .pill-list li{
    font-size:12px;
    padding:10px 10px;
  }
  .section-head h2{
    font-size:clamp(24px,7.4vw,32px);
  }
  .filters{
    grid-template-columns:1fr 1fr;
  }
  .stat-card strong{
    font-size:34px;
  }
}


/* --- Mobile hardening v3.2 --- */
*,
*::before,
*::after{
  min-width:0;
}
body{
  max-width:100%;
  overflow-x:hidden !important;
}
img{
  max-width:100%;
  height:auto;
}
.hero-grid > *,
.review-layout > *,
.cta-bar > *,
.footer-grid > *{
  min-width:0;
}
.btn,
.header-cta,
.filter-btn,
.pill-list li{
  white-space:normal;
}
.hero-copy,
.hero-logo-wrap,
.hero-logo-card{
  width:100%;
  max-width:100%;
}
.hero-logo-card{
  margin:0 auto;
}
.hero-logo-card img{
  width:100%;
  max-width:520px;
  height:auto;
  margin:0 auto;
  object-fit:contain;
}
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns:1fr !important;
  }
  .hero-copy{
    order:1;
  }
  .hero-logo-wrap{
    order:2;
  }
}
@media (max-width: 768px){
  .wrap{
    width:calc(100% - 24px) !important;
  }
  .site-header{
    overflow:visible;
  }
  .header-inner{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }
  .brand{
    display:flex;
    align-items:center;
    flex:0 0 auto;
  }
  .brand img{
    width:72px !important;
    max-width:72px !important;
    height:auto !important;
  }
  .menu-toggle{
    display:block;
    margin-left:auto;
    flex:0 0 auto;
  }
  .site-nav{
    position:absolute;
    left:12px !important;
    right:12px !important;
    top:calc(100% + 8px) !important;
    width:auto !important;
  }
  .hero{
    padding-top:28px !important;
  }
  .hero-copy{
    overflow:hidden;
  }
  .hero-copy h1{
    font-size:clamp(28px, 8.8vw, 40px) !important;
    line-height:0.96 !important;
    letter-spacing:-0.04em !important;
    max-width:100% !important;
    margin:10px 0 14px !important;
  }
  .hero-copy p{
    font-size:15px !important;
    line-height:1.55 !important;
    max-width:100% !important;
  }
  .eyebrow{
    display:block !important;
    width:100% !important;
    font-size:10px !important;
    line-height:1.3 !important;
    text-align:center !important;
    padding:10px 12px !important;
  }
  .hero-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    margin:24px 0 18px !important;
  }
  .hero-actions .btn,
  .cta-stack .btn{
    width:100% !important;
    justify-content:center !important;
    padding:14px 16px !important;
    font-size:15px !important;
  }
  .pill-list{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }
  .pill-list li{
    font-size:12px !important;
    padding:10px 8px !important;
    width:100% !important;
  }
  .hero-logo-wrap{
    margin-top:16px !important;
  }
  .hero-logo-card{
    padding:14px !important;
    border-radius:22px !important;
  }
  .hero-logo-card img{
    max-width:100% !important;
    width:100% !important;
  }
  .portfolio-grid,
  .service-grid,
  .process-grid,
  .review-grid,
  .stat-grid,
  .footer-grid{
    grid-template-columns:1fr !important;
  }
  .filters{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }
  .filter-btn{
    width:100% !important;
  }
  .cta-bar{
    grid-template-columns:1fr !important;
    padding:22px 16px !important;
  }
  .footer-bottom{
    flex-direction:column !important;
    align-items:flex-start !important;
  }
}
@media (max-width: 480px){
  .wrap{
    width:calc(100% - 20px) !important;
  }
  .topbar{
    font-size:11px !important;
    line-height:1.2 !important;
    padding:9px 10px !important;
  }
  .hero-copy h1{
    font-size:clamp(26px, 8.4vw, 34px) !important;
  }
  .pill-list{
    grid-template-columns:1fr !important;
  }
  .filters{
    grid-template-columns:1fr 1fr !important;
  }
  .work-thumb{
    min-height:120px !important;
    font-size:22px !important;
  }
}


/* --- Desktop reviews fix v3.4 --- */
.review-layout{
  grid-template-columns:minmax(0, 1.45fr) minmax(320px, .75fr) !important;
  gap:32px !important;
  align-items:start;
}
.review-main{
  min-width:0;
}
.review-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:24px !important;
  align-items:stretch;
}
.review-card{
  min-width:0;
  padding:28px !important;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.review-card p{
  margin:0;
  font-size:18px;
  line-height:1.7;
  overflow-wrap:anywhere;
  word-break:normal;
}
.review-card cite{
  margin-top:22px !important;
  font-size:15px;
  line-height:1.4;
  overflow-wrap:anywhere;
}
.pricing-card{
  min-width:320px;
}
@media (max-width: 1400px){
  .review-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 1080px){
  .review-layout{
    grid-template-columns:1fr !important;
  }
  .review-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px){
  .review-grid{
    grid-template-columns:1fr !important;
  }
  .review-card p{
    font-size:16px;
  }
  .review-card cite{
    font-size:14px;
  }
}


/* --- Reviews rebuild v3.5 --- */
.reviews-pricing .wrap.review-layout{
  display:grid !important;
  grid-template-columns:minmax(0, 1.7fr) minmax(320px, 380px) !important;
  gap:32px !important;
  align-items:start !important;
}
.review-main{
  min-width:0 !important;
}
.review-main .section-head h2{
  max-width:900px;
}
.review-grid{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(280px, 1fr)) !important;
  gap:24px !important;
  align-items:stretch !important;
}
.review-card{
  width:100% !important;
  min-width:0 !important;
  min-height:260px !important;
  padding:30px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
}
.review-card p{
  margin:0 !important;
  font-size:19px !important;
  line-height:1.7 !important;
  word-break:normal !important;
  overflow-wrap:break-word !important;
}
.review-card cite{
  display:block !important;
  margin-top:22px !important;
  font-size:16px !important;
  line-height:1.45 !important;
  overflow-wrap:break-word !important;
}
.pricing-card{
  width:100% !important;
  min-width:320px !important;
  max-width:380px !important;
  justify-self:end !important;
}
@media (min-width: 1700px){
  .review-grid{
    grid-template-columns:repeat(3, minmax(260px, 1fr)) !important;
  }
}
@media (max-width: 1320px){
  .reviews-pricing .wrap.review-layout{
    grid-template-columns:minmax(0, 1fr) 340px !important;
  }
  .review-grid{
    grid-template-columns:repeat(2, minmax(240px, 1fr)) !important;
  }
}
@media (max-width: 1120px){
  .reviews-pricing .wrap.review-layout{
    grid-template-columns:1fr !important;
  }
  .pricing-card{
    max-width:none !important;
    min-width:0 !important;
    justify-self:stretch !important;
  }
}
@media (max-width: 760px){
  .review-grid{
    grid-template-columns:1fr !important;
  }
  .review-card{
    min-height:auto !important;
    padding:22px !important;
  }
  .review-card p{
    font-size:16px !important;
  }
  .review-card cite{
    font-size:14px !important;
  }
}


/* --- Review slider v3.7 --- */
.review-slider{
  position:relative;
  overflow:hidden;
}
.review-track{
  display:flex;
  transition:transform .4s ease;
}
.review-slide{
  min-width:100%;
  padding:10px;
}
.review-card{
  background:#111;
  border-radius:20px;
  padding:28px;
}
.stars{
  color:#ffb400;
  font-size:18px;
  margin-bottom:10px;
}
.review-user{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:15px;
}
.review-user img{
  width:40px;
  height:40px;
  border-radius:50%;
}
.review-controls{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:15px;
}
.review-controls button{
  background:#222;
  border:none;
  color:#fff;
  padding:10px 14px;
  border-radius:8px;
  cursor:pointer;
}


/* --- Testimonial slider enhancements v3.8 --- */
.review-slider{
  position:relative;
  overflow:hidden;
  user-select:none;
  touch-action:pan-y;
}
.review-track{
  display:flex;
  transition:transform .55s ease;
  will-change:transform;
}
.review-slide{
  min-width:100%;
  padding:10px;
}
.review-card{
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:30px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.stars{
  display:flex;
  gap:6px;
  margin-bottom:14px;
}
.stars span{
  color:#ffb400;
  font-size:22px;
  text-shadow:0 0 8px rgba(255,180,0,.55), 0 0 18px rgba(255,145,0,.35);
  animation:starPulse 2s ease-in-out infinite;
}
.stars span:nth-child(2){animation-delay:.12s}
.stars span:nth-child(3){animation-delay:.24s}
.stars span:nth-child(4){animation-delay:.36s}
.stars span:nth-child(5){animation-delay:.48s}
@keyframes starPulse{
  0%,100%{transform:scale(1); opacity:.92}
  50%{transform:scale(1.12); opacity:1}
}
.review-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
}
.review-user img{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.14);
  box-shadow:0 0 0 3px rgba(255,106,0,.12);
}
.review-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:16px;
}
.review-controls button{
  background:#16181f;
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  width:42px;
  height:42px;
  border-radius:999px;
  cursor:pointer;
  font-size:24px;
  line-height:1;
}
.review-controls button:hover{
  background:#1e212b;
}
.review-dots{
  display:flex;
  gap:8px;
  align-items:center;
}
.review-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.28);
  border:0;
  padding:0;
  cursor:pointer;
}
.review-dot.active{
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 12px rgba(255,106,0,.45);
}
@media (max-width:760px){
  .review-card{
    min-height:auto;
    padding:22px;
  }
  .stars span{
    font-size:20px;
  }
}


/* --- FORCE slider on mobile fix v3.9 --- */
.review-grid{
  display:none !important;
}

.review-slider{
  display:block !important;
}

@media (max-width: 760px){
  .review-slider{
    display:block !important;
  }
  .review-track{
    display:flex !important;
  }
  .review-slide{
    min-width:100% !important;
  }
}


/* --- Robust testimonial slider v4.0 --- */
.review-grid{display:none !important}
.review-slider{
  position:relative;
  display:block !important;
  overflow:hidden;
  user-select:none;
  touch-action:pan-y;
  min-width:0;
}
.review-track{
  display:grid !important;
  grid-auto-flow:column;
  grid-auto-columns:100%;
  gap:0;
  transition:transform .55s ease;
  will-change:transform;
}
.review-slide{
  width:100%;
  min-width:0 !important;
  padding:10px;
}
.review-card{
  width:100%;
  min-width:0;
  min-height:260px;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.review-card p{
  margin:0;
  font-size:18px;
  line-height:1.7;
  overflow-wrap:anywhere;
}
.review-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
}
.review-user img{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.14);
  box-shadow:0 0 0 3px rgba(255,106,0,.12);
}
.review-user cite{
  font-style:normal;
  font-weight:800;
  line-height:1.35;
}
.stars{
  display:flex;
  gap:6px;
  margin-bottom:14px;
}
.stars span{
  color:#ffb400;
  font-size:22px;
  text-shadow:0 0 8px rgba(255,180,0,.55),0 0 18px rgba(255,145,0,.35);
  animation:starPulse 2s ease-in-out infinite;
}
.stars span:nth-child(2){animation-delay:.12s}
.stars span:nth-child(3){animation-delay:.24s}
.stars span:nth-child(4){animation-delay:.36s}
.stars span:nth-child(5){animation-delay:.48s}
.review-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:14px;
}
.review-controls button{
  background:#16181f;
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  width:42px;
  height:42px;
  border-radius:999px;
  cursor:pointer;
  font-size:24px;
  line-height:1;
}
.review-dots{
  display:flex;
  gap:8px;
  align-items:center;
}
.review-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.28);
  border:0;
  padding:0;
  cursor:pointer;
}
.review-dot.active{
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 12px rgba(255,106,0,.45);
}
@media (max-width:760px){
  .review-slider{
    overflow:hidden !important;
  }
  .review-track{
    grid-auto-columns:100% !important;
  }
  .review-slide{
    padding:0 !important;
  }
  .review-card{
    min-height:auto;
    padding:22px;
  }
  .review-card p{
    font-size:16px;
  }
}


/* --- Content visibility safeguard v4.1 --- */
/* Make content visible even if JS is delayed, cached badly, or fails */
.reveal{
  opacity:1 !important;
  transform:none !important;
}
.js-enabled .reveal{
  opacity:0 !important;
  transform:translateY(28px) !important;
  transition:opacity .7s ease, transform .7s ease !important;
}
.js-enabled .reveal.visible{
  opacity:1 !important;
  transform:translateY(0) !important;
}


/* --- Reviews + pricing final rebuild v4.4 --- */
.reviews-pricing .review-layout{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 360px !important;
  gap:32px !important;
  align-items:start !important;
}
.review-main{
  min-width:0 !important;
}
.review-main .section-head{
  margin-bottom:24px !important;
}
.review-main .section-head h2{
  max-width:820px !important;
}
.review-slider{
  display:block !important;
  width:100% !important;
}
.review-grid,
.review-track{
  display:none !important;
}
.review-slides{
  position:relative;
  min-height:320px;
}
.review-slide{
  display:none;
  width:100%;
}
.review-slide.is-active{
  display:block;
}
.review-card{
  width:100% !important;
  min-width:0 !important;
  min-height:320px;
  padding:34px !important;
  border-radius:28px !important;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02)) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
}
.review-card p{
  margin:0 !important;
  font-size:20px !important;
  line-height:1.75 !important;
  overflow-wrap:anywhere !important;
}
.review-user{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  margin-top:24px !important;
}
.review-user img{
  width:58px !important;
  height:58px !important;
  object-fit:cover !important;
  border-radius:50% !important;
  border:2px solid rgba(255,255,255,.12) !important;
  box-shadow:0 0 0 4px rgba(255,106,0,.12) !important;
}
.review-user cite{
  font-style:normal !important;
  font-weight:800 !important;
  font-size:17px !important;
  line-height:1.35 !important;
}
.stars{
  display:flex !important;
  gap:8px !important;
  margin-bottom:18px !important;
}
.stars span{
  color:#ffb400 !important;
  font-size:26px !important;
  text-shadow:0 0 8px rgba(255,180,0,.55),0 0 18px rgba(255,145,0,.35) !important;
  animation:starPulse 2s ease-in-out infinite !important;
}
.review-controls{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:14px !important;
  margin-top:20px !important;
}
.review-controls button.prev,
.review-controls button.next{
  width:46px !important;
  height:46px !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:#16181f !important;
  color:#fff !important;
  font-size:26px !important;
  line-height:1 !important;
  cursor:pointer !important;
}
.review-dots{
  display:flex !important;
  gap:10px !important;
}
.review-dot{
  width:10px !important;
  height:10px !important;
  border-radius:50% !important;
  border:0 !important;
  padding:0 !important;
  background:rgba(255,255,255,.28) !important;
  cursor:pointer !important;
}
.review-dot.active{
  background:linear-gradient(135deg,#ff6a00,#ffb11a) !important;
  box-shadow:0 0 12px rgba(255,106,0,.45) !important;
}
.pricing-card{
  width:100% !important;
  max-width:360px !important;
  min-width:0 !important;
  justify-self:end !important;
  position:sticky !important;
  top:110px !important;
}
@media (max-width: 1180px){
  .reviews-pricing .review-layout{
    grid-template-columns:1fr !important;
  }
  .pricing-card{
    justify-self:stretch !important;
    max-width:none !important;
    position:relative !important;
    top:auto !important;
  }
}
@media (max-width: 760px){
  .review-slides{
    min-height:0 !important;
  }
  .review-card{
    min-height:auto !important;
    padding:22px !important;
  }
  .review-card p{
    font-size:16px !important;
    line-height:1.7 !important;
  }
  .review-user img{
    width:50px !important;
    height:50px !important;
  }
  .review-user cite{
    font-size:15px !important;
  }
  .stars span{
    font-size:22px !important;
  }
}


/* --- Slider interaction fix v4.5 --- */
.review-slide{
  display:none;
}
.review-slide.is-active{
  display:block !important;
}


/* --- Unique testimonial slider hard fix v4.6 --- */
.ngfx-testimonial-slider{
  display:block !important;
  width:100% !important;
}
.ngfx-testimonial-slide{
  display:none !important;
}
.ngfx-testimonial-slide.is-active{
  display:block !important;
}
.ngfx-testimonial-controls{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:14px !important;
  margin-top:20px !important;
}
.ngfx-prev,
.ngfx-next{
  width:46px !important;
  height:46px !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:#16181f !important;
  color:#fff !important;
  font-size:26px !important;
  line-height:1 !important;
  cursor:pointer !important;
}
.ngfx-dots{
  display:flex !important;
  gap:10px !important;
}
.ngfx-dot{
  width:10px !important;
  height:10px !important;
  border-radius:50% !important;
  border:0 !important;
  padding:0 !important;
  background:rgba(255,255,255,.28) !important;
  cursor:pointer !important;
}
.ngfx-dot.active{
  background:linear-gradient(135deg,#ff6a00,#ffb11a) !important;
  box-shadow:0 0 12px rgba(255,106,0,.45) !important;
}
.reviews-pricing .review-layout{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 360px !important;
  gap:32px !important;
  align-items:start !important;
}
.pricing-card{
  width:100% !important;
  max-width:360px !important;
  justify-self:end !important;
  position:sticky !important;
  top:110px !important;
}
@media (max-width:1180px){
  .reviews-pricing .review-layout{
    grid-template-columns:1fr !important;
  }
  .pricing-card{
    max-width:none !important;
    justify-self:stretch !important;
    position:relative !important;
    top:auto !important;
  }
}


/* --- CSS-only testimonial slider v4.7 --- */
.review-grid,
.review-track,
.review-slider,
.ngfx-testimonial-slider,
.ngfx-testimonial-slide,
.ngfx-testimonial-controls{
  display:none !important;
}

.ngfx-css-slider{
  display:block !important;
  width:100%;
  min-width:0;
}
.ngfx-css-slider input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.ngfx-css-slides{
  position:relative;
  min-height:320px;
}
.ngfx-css-slide{
  display:none;
}
#ngfx-review-1:checked ~ .ngfx-css-slides .ngfx-slide-1,
#ngfx-review-2:checked ~ .ngfx-css-slides .ngfx-slide-2,
#ngfx-review-3:checked ~ .ngfx-css-slides .ngfx-slide-3{
  display:block;
}

.ngfx-css-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:20px;
}
.ngfx-css-arrows{
  display:none;
  align-items:center;
  gap:14px;
}
#ngfx-review-1:checked ~ .ngfx-css-controls .ngfx-arrows-1,
#ngfx-review-2:checked ~ .ngfx-css-controls .ngfx-arrows-2,
#ngfx-review-3:checked ~ .ngfx-css-controls .ngfx-arrows-3{
  display:flex;
}
.ngfx-arrow{
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:#16181f;
  color:#fff;
  font-size:26px;
  line-height:46px;
  text-align:center;
  cursor:pointer;
  user-select:none;
}
.ngfx-css-dots{
  display:flex;
  gap:10px;
  align-items:center;
}
.ngfx-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.28);
  cursor:pointer;
}
#ngfx-review-1:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-1"],
#ngfx-review-2:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-2"],
#ngfx-review-3:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-3"]{
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 12px rgba(255,106,0,.45);
}

.reviews-pricing .review-layout{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 360px !important;
  gap:32px !important;
  align-items:start !important;
}
.pricing-card{
  width:100% !important;
  max-width:360px !important;
  min-width:0 !important;
  justify-self:end !important;
  position:sticky !important;
  top:110px !important;
}
@media (max-width:1180px){
  .reviews-pricing .review-layout{
    grid-template-columns:1fr !important;
  }
  .pricing-card{
    max-width:none !important;
    justify-self:stretch !important;
    position:relative !important;
    top:auto !important;
  }
}
@media (max-width:760px){
  .ngfx-css-slides{
    min-height:0 !important;
  }
}

/* small autoplay feel via fade animation on active slide only when user not interacting */
@media (prefers-reduced-motion: no-preference){
  #ngfx-review-1:checked ~ .ngfx-css-slides .ngfx-slide-1,
  #ngfx-review-2:checked ~ .ngfx-css-slides .ngfx-slide-2,
  #ngfx-review-3:checked ~ .ngfx-css-slides .ngfx-slide-3{
    animation:ngfxFadeIn .35s ease;
  }
  @keyframes ngfxFadeIn{
    from{opacity:.35; transform:translateY(6px)}
    to{opacity:1; transform:translateY(0)}
  }
}


/* --- Dots refresh + autoplay v4.8 --- */
.ngfx-css-controls{
  display:grid !important;
  grid-template-columns:46px auto 46px !important;
  align-items:center !important;
  justify-content:center !important;
  column-gap:14px !important;
}
.ngfx-css-arrows{
  display:contents !important;
}
.ngfx-css-dots{
  justify-self:center !important;
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  min-width:78px;
  justify-content:center;
}
.ngfx-dot-pill{
  width:12px !important;
  height:12px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.24) !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  transition:all .25s ease !important;
}
#ngfx-review-1:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-1"],
#ngfx-review-2:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-2"],
#ngfx-review-3:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-3"]{
  width:28px !important;
  background:linear-gradient(135deg,#ff6a00,#ffb11a) !important;
  box-shadow:0 0 12px rgba(255,106,0,.40) !important;
}
.ngfx-css-slider{
  position:relative;
}
.ngfx-css-slides{
  position:relative;
  min-height:320px;
}
.ngfx-css-slide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  position:absolute;
  inset:0;
  transform:translateY(8px);
  transition:opacity .35s ease, transform .35s ease, visibility .35s ease;
}
#ngfx-review-1:checked ~ .ngfx-css-slides .ngfx-slide-1,
#ngfx-review-2:checked ~ .ngfx-css-slides .ngfx-slide-2,
#ngfx-review-3:checked ~ .ngfx-css-slides .ngfx-slide-3{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  position:relative;
  transform:translateY(0);
}

/* CSS autoplay using animated indicator overlay */
.ngfx-css-slider.auto-play #ngfx-review-1:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-1"],
.ngfx-css-slider.auto-play #ngfx-review-2:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-2"],
.ngfx-css-slider.auto-play #ngfx-review-3:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-3"]{
  position:relative;
  overflow:hidden;
}
.ngfx-css-slider.auto-play #ngfx-review-1:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-1"]::after,
.ngfx-css-slider.auto-play #ngfx-review-2:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-2"]::after,
.ngfx-css-slider.auto-play #ngfx-review-3:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-3"]::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(255,255,255,.18),rgba(255,255,255,.02));
  animation:ngfxDotProgress 4.8s linear infinite;
}
@keyframes ngfxDotProgress{
  from{transform:translateX(-100%)}
  to{transform:translateX(0%)}
}
@media (max-width:760px){
  .ngfx-css-controls{
    grid-template-columns:42px auto 42px !important;
    column-gap:12px !important;
  }
}


/* --- Autoplay only testimonial controls v4.9 --- */
.ngfx-css-arrows,
.ngfx-arrow,
.ngfx-prev,
.ngfx-next,
.ngfx-testimonial-controls,
.review-controls{
  display:none !important;
}
.ngfx-css-controls{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  margin-top:18px !important;
}
.ngfx-css-dots{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:10px !important;
  min-width:auto !important;
}
.ngfx-dot-pill{
  width:12px !important;
  height:12px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.24) !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  transition:all .25s ease !important;
}
#ngfx-review-1:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-1"],
#ngfx-review-2:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-2"],
#ngfx-review-3:checked ~ .ngfx-css-controls .ngfx-css-dots label[for="ngfx-review-3"]{
  width:28px !important;
  background:linear-gradient(135deg,#ff6a00,#ffb11a) !important;
  box-shadow:0 0 12px rgba(255,106,0,.40) !important;
}


/* --- Multiple pricing tiers v5.0 --- */
.pricing-card{
  max-width:420px !important;
}
.pricing-tiers{
  display:grid;
  gap:16px;
  margin-top:18px;
}
.tier-card{
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:20px;
}
.tier-card-featured{
  border-color:rgba(255,106,0,.35);
  box-shadow:0 0 0 1px rgba(255,106,0,.12), 0 14px 35px rgba(0,0,0,.25);
}
.tier-label{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,rgba(255,106,0,.22),rgba(123,44,255,.22));
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:12px;
}
.tier-card .price{
  font-size:48px !important;
  margin:4px 0 14px !important;
}
.tier-card ul{
  margin:0 0 16px 0;
  padding-left:18px;
}
.tier-card li{
  margin:8px 0;
  line-height:1.5;
}
.tier-card .btn{
  width:100%;
}
@media (max-width:1180px){
  .pricing-card{
    max-width:none !important;
  }
}


/* --- Stacked pricing carousel v5.1 --- */
.pricing-card{
  max-width:420px !important;
}
.pricing-carousel{
  display:block;
  width:100%;
  margin-top:18px;
}
.pricing-slides{
  position:relative;
  min-height:520px;
}
.pricing-slide{
  display:none;
  width:100%;
}
.pricing-slide.is-active{
  display:block;
}
.pricing-carousel .tier-card{
  margin:0;
  width:100%;
}
.pricing-carousel-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:18px;
}
.pricing-prev,
.pricing-next{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:#16181f;
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}
.pricing-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.pricing-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  padding:0;
  background:rgba(255,255,255,.24);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  cursor:pointer;
  transition:all .25s ease;
}
.pricing-dot.active{
  width:28px;
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 12px rgba(255,106,0,.40);
}
@media (max-width:1180px){
  .pricing-card{
    max-width:none !important;
  }
}
@media (max-width:760px){
  .pricing-slides{
    min-height:0;
  }
}


/* --- Pricing autoplay dots-only v5.2 --- */
.pricing-prev,
.pricing-next{
  display:none !important;
}
.pricing-card{
  max-width:420px !important;
}
.pricing-carousel{
  display:block;
  width:100%;
  margin-top:18px;
}
.pricing-slides{
  position:relative;
  min-height:520px;
}
.pricing-slide{
  display:none;
  width:100%;
}
.pricing-slide.is-active{
  display:block;
}
.pricing-carousel .tier-card{
  margin:0;
  width:100%;
}
.pricing-carousel-controls{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-top:10px !important;
  padding-top:0 !important;
}
.pricing-dots{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
}
.pricing-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  padding:0;
  background:rgba(255,255,255,.24);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  cursor:pointer;
  transition:all .25s ease;
}
.pricing-dot.active{
  width:28px;
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 12px rgba(255,106,0,.40);
}
@media (max-width:760px){
  .pricing-slides{
    min-height:0;
  }
}


/* --- Pricing CSS-only dots slider v5.3 --- */
.pricing-carousel,
.pricing-carousel-controls,
.pricing-prev,
.pricing-next,
.pricing-dots,
.pricing-dot{
  display:none !important;
}
.ngfx-price-slider{
  display:block !important;
  width:100%;
  margin-top:14px;
}
.ngfx-price-slider input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.ngfx-price-slides{
  position:relative;
  min-height:520px;
}
.ngfx-price-slide{
  display:none;
  width:100%;
}
#ngfx-price-1:checked ~ .ngfx-price-slides .ngfx-price-slide-1,
#ngfx-price-2:checked ~ .ngfx-price-slides .ngfx-price-slide-2,
#ngfx-price-3:checked ~ .ngfx-price-slides .ngfx-price-slide-3{
  display:block;
}
.ngfx-price-slider .tier-card{
  width:100%;
  margin:0;
}
.ngfx-price-dots{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:10px !important;
  margin-top:8px !important;
}
.ngfx-price-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.24);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  cursor:pointer;
  transition:all .25s ease;
}
#ngfx-price-1:checked ~ .ngfx-price-dots label[for="ngfx-price-1"],
#ngfx-price-2:checked ~ .ngfx-price-dots label[for="ngfx-price-2"],
#ngfx-price-3:checked ~ .ngfx-price-dots label[for="ngfx-price-3"]{
  width:28px;
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 12px rgba(255,106,0,.40);
}
.pricing-card{
  max-width:420px !important;
}
@media (max-width:1180px){
  .pricing-card{
    max-width:none !important;
  }
}
@media (max-width:760px){
  .ngfx-price-slides{
    min-height:0;
  }
}


/* --- Pricing gap cleanup v5.4 --- */
.ngfx-price-slider{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}
.ngfx-price-slides{
  min-height:auto !important;
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}
.ngfx-price-slide{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}
.ngfx-price-slider .tier-card{
  margin-bottom:0 !important;
}
.ngfx-price-dots{
  margin-top:6px !important;
  margin-bottom:0 !important;
}
.pricing-card{
  padding-bottom:16px !important;
}


/* --- Final pricing spacing fix v5.7 --- */
.pricing-card .ngfx-price-slider{
  padding-bottom: 12px !important;
}

.pricing-card .ngfx-price-slides{
  min-height: auto !important;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.pricing-card .ngfx-price-slide{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.pricing-card .tier-card{
  margin-bottom: 0 !important;
}

.pricing-card .ngfx-price-dots{
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}


/* --- Button spacing + float + inner shadow v5.8 --- */

/* space under button */
.pricing-card .tier-card .btn{
  margin-bottom:18px !important;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

/* floating hover effect */
.pricing-card .tier-card .btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,106,0,0.35);
}

/* subtle inner shadow on pricing card */
.pricing-card .tier-card{
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 -8px 20px rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.4);
}


/* --- Footer restore + stacking cleanup v5.9 --- */
.site-footer,
footer{
  display:block !important;
  position:relative !important;
  z-index:1 !important;
  margin-top:60px !important;
  clear:both !important;
}

main,
.site-onepage,
.onepage-site,
section{
  overflow:visible !important;
}

.reviews-pricing,
.bottom-cta{
  position:relative !important;
  z-index:1 !important;
}

.pricing-card{
  z-index:2 !important;
}

/* keep pricing polish without clipping footer */
.pricing-card .tier-card{
  overflow:visible !important;
}


/* --- Section spacing cleanup + counter safeguard v6.2 --- */
.section{
  padding:64px 0 !important;
}
.stats.section{
  padding-top:44px !important;
  padding-bottom:44px !important;
}
.bottom-cta.section{
  padding-top:40px !important;
  padding-bottom:40px !important;
}
.section-head{
  margin-bottom:22px !important;
}
.filters{
  margin-bottom:18px !important;
}
@media (max-width:760px){
  .section{
    padding:50px 0 !important;
  }
  .stats.section{
    padding-top:34px !important;
    padding-bottom:34px !important;
  }
  .bottom-cta.section{
    padding-top:30px !important;
    padding-bottom:30px !important;
  }
}


/* Order modal v6.3 */
.open-order-modal{
  cursor:pointer;
}
.order-modal-overlay[hidden]{
  display:none !important;
}
.order-modal-overlay{
  position:fixed;
  inset:0;
  z-index:2000;
}
.order-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(8px);
}
.order-modal{
  position:relative;
  width:min(680px, calc(100% - 28px));
  margin:6vh auto 0;
  background:linear-gradient(180deg,#111218,#151827);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.55);
  padding:26px;
  z-index:1;
}
.order-modal h3{
  margin:12px 0 8px;
  font-size:clamp(28px, 4vw, 38px);
}
.order-modal-subtext{
  color:var(--muted);
  margin:0 0 18px;
}
.order-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:#151821;
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.order-form{
  display:grid;
  gap:14px;
}
.order-form label{
  display:grid;
  gap:8px;
}
.order-form label span{
  font-weight:800;
}
.order-form input,
.order-form textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:#0f1016;
  color:#fff;
  padding:14px 16px;
  font:inherit;
  outline:none;
}
.order-form input:focus,
.order-form textarea:focus{
  border-color:rgba(255,106,0,.55);
  box-shadow:0 0 0 3px rgba(255,106,0,.14);
}
.order-form textarea{
  resize:vertical;
  min-height:140px;
}
.order-form-actions{
  display:flex;
  justify-content:flex-start;
}
.order-form-message{
  margin:0;
  min-height:22px;
  color:#fff;
  font-weight:700;
}
.order-form-message.is-error{
  color:#ff9f9f;
}
.order-form-message.is-success{
  color:#9fffb0;
}
body.modal-open{
  overflow:hidden;
}
@media (max-width:760px){
  .order-modal{
    margin-top:3vh;
    padding:20px;
    width:min(100% - 18px, 680px);
  }
}


/* --- Section gap reduction v6.4 --- */
.section{
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}
.services.section,
.process.section,
.reviews-pricing.section,
.bottom-cta.section{
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}
.section-head{
  margin-bottom: 18px !important;
}
.service-grid,
.process-grid,
.review-layout,
.portfolio-grid{
  gap: 18px !important;
}
.stats.section{
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}
.bottom-cta .cta-bar{
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
@media (max-width: 760px){
  .section{
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .services.section,
  .process.section,
  .reviews-pricing.section,
  .bottom-cta.section{
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .section-head{
    margin-bottom: 14px !important;
  }
}


/* Review submission page + dynamic review socials v7.1 */
.narrow-wrap{
  width:min(860px, calc(100% - 32px));
}
.review-submit-form{
  display:grid;
  gap:16px;
  margin-top:20px;
}
.review-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.review-submit-form label{
  display:grid;
  gap:8px;
}
.review-submit-form label span{
  font-weight:800;
}
.review-submit-form input,
.review-submit-form textarea,
.review-submit-form select{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:#0f1016;
  color:#fff;
  padding:14px 16px;
  font:inherit;
  outline:none;
}
.review-submit-form input:focus,
.review-submit-form textarea:focus,
.review-submit-form select:focus{
  border-color:rgba(255,106,0,.55);
  box-shadow:0 0 0 3px rgba(255,106,0,.14);
}
.review-submit-form textarea{
  resize:vertical;
  min-height:160px;
}
.review-submit-message{
  margin:18px 0 0;
  padding:14px 16px;
  border-radius:16px;
  font-weight:700;
}
.review-submit-message.success{
  background:rgba(40,180,90,.12);
  border:1px solid rgba(40,180,90,.25);
}
.review-submit-message.error{
  background:rgba(255,100,100,.12);
  border:1px solid rgba(255,100,100,.25);
}
.hidden-review-note{
  color:var(--muted);
  margin-top:16px;
}
.review-socials{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.review-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:8px 12px;
  background:#0d0e13;
  border:1px solid rgba(255,255,255,.08);
  font-size:12px;
  font-weight:800;
}
.review-socials a:hover{
  border-color:rgba(255,106,0,.45);
  color:var(--orange2);
}
@media (max-width:760px){
  .review-form-grid{
    grid-template-columns:1fr;
  }
}


/* Verified badge + enhanced review socials v7.2 */
.review-user cite{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 10px;
}
.review-username{
  font-weight:900;
  text-decoration:none;
}
.review-username:hover{
  color:var(--orange2);
}
.review-username-twitch::before{
  content:"🎮 ";
}
.review-username-kick::before{
  content:"⚡ ";
}
.review-username-tiktok::before{
  content:"♪ ";
}
.review-username-youtube::before{
  content:"▶ ";
}
.review-followers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:6px 10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}
.verified-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:7px 12px;
  background:linear-gradient(135deg, rgba(255,106,0,.18), rgba(123,44,255,.18));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 0 0 1px rgba(255,106,0,.10), 0 0 18px rgba(255,106,0,.18);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  animation:verifiedGlow 2.1s ease-in-out infinite;
}
.verified-badge-dot{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:50%;
  background:linear-gradient(135deg, #ff6a00, #ffb11a);
  color:#fff;
  font-size:11px;
  box-shadow:0 0 12px rgba(255,106,0,.35);
}
@keyframes verifiedGlow{
  0%,100%{box-shadow:0 0 0 1px rgba(255,106,0,.10), 0 0 18px rgba(255,106,0,.16)}
  50%{box-shadow:0 0 0 1px rgba(255,106,0,.18), 0 0 26px rgba(255,106,0,.28)}
}
.review-socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.review-social{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  padding:8px 12px !important;
}
.review-social-icon{
  font-size:13px;
  line-height:1;
}
.review-social-twitch:hover{
  color:#bf94ff;
}
.review-social-kick:hover{
  color:#a9ff6b;
}
.review-social-tiktok:hover{
  color:#ff8dc4;
}
.review-social-youtube:hover{
  color:#ff8a8a;
}


/* Conversion max + order tracking v8.0 */
.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.hero-proof span,
.trust-strip span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  font-weight:800;
}
.trust-strip-section{
  padding-top:18px !important;
  padding-bottom:18px !important;
}
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.most-popular-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:7px 12px;
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 0 18px rgba(255,106,0,.30);
  margin-bottom:10px;
}
.tier-card-pro{
  border-color:rgba(255,106,0,.35) !important;
  box-shadow:0 0 0 1px rgba(255,106,0,.10), 0 16px 38px rgba(0,0,0,.28) !important;
}
.sticky-mobile-cta{
  display:none;
}
@media (max-width:760px){
  .sticky-mobile-cta{
    display:flex;
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:1200;
    justify-content:center;
  }
  .sticky-mobile-cta .btn{
    width:100%;
    box-shadow:0 16px 34px rgba(0,0,0,.35);
  }
  .site-footer{
    padding-bottom:90px;
  }
}

.order-step[hidden]{
  display:none !important;
}
.order-upsells{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  background:rgba(255,255,255,.02);
}
.order-upsells legend{
  padding:0 8px;
  font-weight:900;
}
.upsell-option{
  display:flex !important;
  align-items:center;
  gap:10px;
}
.upsell-option + .upsell-option{
  margin-top:10px;
}
.upsell-option input{
  width:18px !important;
  height:18px !important;
  margin:0;
}
.success-summary{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  margin:18px 0 20px;
  background:rgba(255,255,255,.02);
}
.order-status-card{
  margin-top:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  padding:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.32);
}
.order-status-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:18px;
}
.order-status-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  border:1px solid rgba(255,255,255,.08);
}
.status-pending{background:rgba(255,177,26,.12); color:#ffd982;}
.status-in-progress{background:rgba(58,146,255,.12); color:#9fd0ff;}
.status-revisions{background:rgba(173,75,255,.12); color:#deb0ff;}
.status-completed{background:rgba(97,242,70,.12); color:#bfffb3;}
.order-status-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
.order-status-grid strong,
.order-status-update strong{
  display:block;
  margin-bottom:8px;
}
.order-status-grid p,
.order-status-update p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
@media (max-width:760px){
  .order-status-top,
  .order-status-grid{
    grid-template-columns:1fr;
    display:grid;
  }
}


/* Full client system + conversion max v8.0 */
.order-timeline,
.order-delivery{
  margin-top:20px;
}
.order-timeline ul{
  list-style:none;
  margin:12px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}
.order-timeline li{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  position:relative;
}
.order-timeline li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  display:inline-block;
  margin-right:10px;
  box-shadow:0 0 12px rgba(255,106,0,.35);
}
.order-files-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:12px;
}
.order-file-card{
  display:grid;
  gap:6px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}
.order-file-card strong{
  color:#fff;
}
.order-file-card span{
  color:var(--muted);
}
.order-file-card:hover{
  border-color:rgba(255,106,0,.35);
  transform:translateY(-2px);
}
@media (max-width:760px){
  .order-files-grid{
    grid-template-columns:1fr;
  }
}


/* Editable portfolio support v9.2 */
.work-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.work-image{
  overflow:hidden;
  border-top-left-radius:24px;
  border-top-right-radius:24px;
}


/* Modal scroll fix v9.4 */
.order-modal-overlay{
  overflow-y:auto !important;
  -webkit-overflow-scrolling:touch;
  padding:20px 0;
}
.order-modal{
  max-height:calc(100vh - 40px) !important;
  overflow-y:auto !important;
  -webkit-overflow-scrolling:touch;
}
body.modal-open{
  overflow:hidden;
}
@media (max-width:760px){
  .order-modal-overlay{
    padding:10px 0;
  }
  .order-modal{
    max-height:calc(100vh - 20px) !important;
    margin:10px auto 0 !important;
  }
}


/* File delivery reliability fix v9.5 */
.order-delivery strong{
  display:block;
  margin-bottom:12px;
}
.order-file-card{
  text-decoration:none;
}


/* ===== VERIFIED BADGE IMPROVEMENT v9.8 ===== */
.review-verified{
  font-size:11px !important;
  padding:3px 8px !important;
  border-radius:999px;
  gap:5px;
  background:rgba(255,140,0,0.08);
  border:1px solid rgba(255,140,0,0.25);
  box-shadow:none !important;
  transition:all .25s ease;
}

.review-verified svg{
  width:11px;
  height:11px;
}

.review-verified::before{
  opacity:0 !important;
  transform:scale(.9);
  transition:all .3s ease;
}

.review-verified:hover::before{
  opacity:1 !important;
  transform:scale(1);
}

.review-verified:hover{
  box-shadow:0 0 12px rgba(255,140,0,.35);
  border-color:rgba(255,140,0,.6);
}

.review-meta{
  gap:6px;
  align-items:center;
}


/* Verified badge icon-only + colored tiers + icon-only handles v9.9 */
.verified-badge{
  width:22px !important;
  height:22px !important;
  padding:0 !important;
  min-width:22px !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:0 !important;
  font-size:0 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
  box-shadow:none !important;
  animation:none !important;
}
.verified-badge span:not(.verified-badge-dot){
  display:none !important;
}
.verified-badge-dot{
  width:14px !important;
  height:14px !important;
  font-size:9px !important;
  margin:0 !important;
}
.verified-badge::before,
.verified-badge::after{
  display:none !important;
}
.verified-badge:hover{
  transform:translateY(-1px);
}
.verified-badge-orange{
  background:rgba(255,106,0,.10) !important;
  border:1px solid rgba(255,106,0,.28) !important;
}
.verified-badge-orange .verified-badge-dot{
  background:linear-gradient(135deg,#ff6a00,#ffb11a) !important;
  box-shadow:none !important;
}
.verified-badge-orange:hover{
  box-shadow:0 0 8px rgba(255,106,0,.28) !important;
}
.verified-badge-blue{
  background:rgba(64,150,255,.10) !important;
  border:1px solid rgba(64,150,255,.28) !important;
}
.verified-badge-blue .verified-badge-dot{
  background:linear-gradient(135deg,#3399ff,#73c5ff) !important;
  box-shadow:none !important;
}
.verified-badge-blue:hover{
  box-shadow:0 0 8px rgba(64,150,255,.26) !important;
}
.verified-badge-gold{
  background:rgba(255,196,64,.10) !important;
  border:1px solid rgba(255,196,64,.28) !important;
}
.verified-badge-gold .verified-badge-dot{
  background:linear-gradient(135deg,#ffb400,#ffe07a) !important;
  color:#1a1300 !important;
  box-shadow:none !important;
}
.verified-badge-gold:hover{
  box-shadow:0 0 8px rgba(255,196,64,.28) !important;
}

.review-user cite{
  gap:8px 8px !important;
}
.review-followers{
  padding:5px 8px !important;
  font-size:11px !important;
}

.review-socials{
  gap:8px !important;
}
.review-social{
  width:34px !important;
  height:34px !important;
  padding:0 !important;
  border-radius:999px !important;
  justify-content:center !important;
}
.review-social span:not(.review-social-icon){
  display:none !important;
}
.review-social-icon{
  font-size:14px !important;
}


/* Verified tick + social SVG icons v10.0 */
.verified-badge,
.review-user .verified-badge{
  width:18px !important;
  height:18px !important;
  min-width:18px !important;
  padding:0 !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:0 !important;
  line-height:1 !important;
  gap:0 !important;
  position:relative !important;
  box-shadow:none !important;
  animation:none !important;
  transform:none !important;
}
.verified-badge::before,
.verified-badge::after{
  display:none !important;
}
.verified-badge span:not(.verified-badge-dot){
  display:none !important;
}
.verified-badge-dot{
  width:18px !important;
  height:18px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:999px !important;
  font-size:11px !important;
  font-weight:900 !important;
  line-height:1 !important;
  margin:0 !important;
  box-shadow:none !important;
}
.verified-badge-orange{
  background:transparent !important;
  border:0 !important;
}
.verified-badge-orange .verified-badge-dot{
  background:#ff8a00 !important;
  color:#fff !important;
}
.verified-badge-blue{
  background:transparent !important;
  border:0 !important;
}
.verified-badge-blue .verified-badge-dot{
  background:#3b82f6 !important;
  color:#fff !important;
}
.verified-badge-gold{
  background:transparent !important;
  border:0 !important;
}
.verified-badge-gold .verified-badge-dot{
  background:#f5c451 !important;
  color:#241600 !important;
}
.verified-badge:hover .verified-badge-dot{
  filter:brightness(1.06);
  box-shadow:0 0 8px rgba(255,138,0,.25);
}
.verified-badge-blue:hover .verified-badge-dot{
  box-shadow:0 0 8px rgba(59,130,246,.25);
}
.verified-badge-gold:hover .verified-badge-dot{
  box-shadow:0 0 8px rgba(245,196,81,.25);
}

.review-social{
  width:36px !important;
  height:36px !important;
  padding:0 !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.review-social-icon{
  width:16px !important;
  height:16px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:0 !important;
}
.review-social-icon svg{
  width:16px !important;
  height:16px !important;
  display:block !important;
}
.review-social-twitch .review-social-icon{ color:#a970ff; }
.review-social-kick .review-social-icon{ color:#53fc18; }
.review-social-tiktok .review-social-icon{ color:#ffffff; }
.review-social-youtube .review-social-icon{ color:#ff4e45; }
.review-social:hover{
  border-color:rgba(255,255,255,.16) !important;
  transform:translateY(-1px);
}


/* ===== POLISH BUILD v10.1 ===== */

/* Hard reset the verified badge so old styles cannot win */
.verified-badge,
.review-user .verified-badge{
  all: unset !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  position: relative !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  cursor: default !important;
  margin-left: 2px !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
}

/* Remove any previous inner badge styles */
.verified-badge *,
.verified-badge::before{
  display: none !important;
  content: none !important;
}

/* Draw the actual tick as the badge */
.verified-badge::after{
  content: "✔" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* Follower-based colors */
.verified-badge-orange::after{
  background: #ff8a00 !important;
  color: #ffffff !important;
}
.verified-badge-blue::after{
  background: #3b82f6 !important;
  color: #ffffff !important;
}
.verified-badge-gold::after{
  background: #f5c451 !important;
  color: #1d1400 !important;
}

.verified-badge-orange:hover::after{
  box-shadow: 0 0 10px rgba(255,138,0,.30) !important;
}
.verified-badge-blue:hover::after{
  box-shadow: 0 0 10px rgba(59,130,246,.30) !important;
}
.verified-badge-gold:hover::after{
  box-shadow: 0 0 10px rgba(245,196,81,.30) !important;
}
.verified-badge:hover{
  transform: translateY(-1px) !important;
}

/* Tighter meta layout */
.review-user cite{
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
}
.review-followers{
  padding: 5px 8px !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

/* Social icons: cleaner circles with clear SVGs */
.review-socials{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 14px !important;
}
.review-social{
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(255,255,255,.02) !important;
  box-shadow: none !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}
.review-social:hover{
  transform: translateY(-1px) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.review-social-icon{
  width: 16px !important;
  height: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.review-social-icon svg{
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

/* Platform colors */
.review-social-twitch .review-social-icon{ color: #a970ff !important; }
.review-social-kick .review-social-icon{ color: #53fc18 !important; }
.review-social-tiktok .review-social-icon{ color: #ffffff !important; }
.review-social-youtube .review-social-icon{ color: #ff4e45 !important; }

.review-social-twitch:hover{ box-shadow: 0 0 10px rgba(169,112,255,.18) !important; }
.review-social-kick:hover{ box-shadow: 0 0 10px rgba(83,252,24,.18) !important; }
.review-social-tiktok:hover{ box-shadow: 0 0 10px rgba(255,255,255,.12) !important; }
.review-social-youtube:hover{ box-shadow: 0 0 10px rgba(255,78,69,.18) !important; }

/* Keep review card layout balanced on desktop */
.review-card p{
  line-height: 1.65;
}


/* ===== V11 Conversion Engine ===== */
.conversion-bar-section{
  padding: 10px 0 0 !important;
}
.conversion-bar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  align-items:center;
}
.conversion-bar span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}
.guarantee-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.guarantee-card{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  padding:22px;
  box-shadow:0 16px 38px rgba(0,0,0,.20);
}
.guarantee-card strong{
  display:block;
  margin-bottom:10px;
  font-size:18px;
}
.guarantee-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.activity-feed{
  position:relative;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  padding:18px;
  min-height:82px;
  overflow:hidden;
}
.activity-item{
  position:absolute;
  inset:18px;
  display:flex;
  align-items:center;
  font-weight:800;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .35s ease, transform .35s ease;
}
.activity-item.is-visible{
  opacity:1;
  transform:translateY(0);
}
.faq-list{
  display:grid;
  gap:14px;
}
.faq-item{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  padding:18px 20px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{
  display:none;
}
.faq-item p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.7;
}
.order-step .eyebrow{
  margin-bottom:8px;
}
.order-form-actions .btn[disabled]{
  opacity:.6;
  cursor:not-allowed;
}
.order-upsells{
  display:grid;
  gap:10px;
}
.upsell-option{
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(255,255,255,.02);
}
.upsell-option:hover{
  border-color:rgba(255,106,0,.20);
}
@media (max-width: 900px){
  .guarantee-strip{
    grid-template-columns:1fr;
  }
}
@media (max-width: 760px){
  .conversion-bar span{
    width:100%;
  }
}


/* ===== V12 MONEY MODE ===== */

.decision-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  text-align:center;
}
.decision-grid div{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
.decision-grid strong{
  display:block;
  margin-bottom:6px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.trust-row span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:800;
}

.pricing-card.popular{
  transform:scale(1.05);
  border-color:rgba(255,106,0,.4);
  box-shadow:0 0 30px rgba(255,106,0,.15);
}

.pricing-note{
  font-size:12px;
  color:var(--muted);
  margin-top:8px;
}

/* better CTA emphasis */
.btn-primary{
  box-shadow:0 10px 30px rgba(255,106,0,.25);
}
.btn-primary:hover{
  transform:translateY(-2px);
}


/* forced-home-sections styles v12.2 */
.decision-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  text-align:center;
}
.decision-grid > div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.decision-grid strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}
.decision-grid p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.trust-row span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:800;
}
.faq-list{
  display:grid;
  gap:14px;
}
.faq-item{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  padding:18px 20px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{
  display:none;
}
.faq-item p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.7;
}
.popular{
  transform:scale(1.03);
  border-color:rgba(255,106,0,.4) !important;
  box-shadow:0 0 30px rgba(255,106,0,.12) !important;
}
.pricing-note{
  font-size:12px;
  color:var(--muted);
  margin:10px 0 14px;
  text-align:center;
}
@media (max-width:900px){
  .decision-grid{
    grid-template-columns:1fr;
  }
}


/* Floating activity feed v12.3 */
.floating-activity-feed{
  position:fixed;
  right:18px;
  bottom:18px;
  width:min(300px, calc(100vw - 28px));
  z-index:1100;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.floating-activity-feed.is-hidden{
  opacity:0;
  transform:translateY(10px);
}
.floating-activity-card{
  display:none;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(17,18,24,.96),rgba(12,13,18,.96));
  box-shadow:0 18px 42px rgba(0,0,0,.34);
  color:#fff;
  padding:14px 16px;
  font-weight:800;
  line-height:1.45;
  backdrop-filter:blur(10px);
}
.floating-activity-card.is-visible{
  display:block;
  animation:floatingFeedIn .35s ease;
}
@keyframes floatingFeedIn{
  from{opacity:0; transform:translateY(8px)}
  to{opacity:1; transform:translateY(0)}
}
@media (max-width:760px){
  .floating-activity-feed{
    left:12px;
    right:12px;
    bottom:78px;
    width:auto;
  }
}


/* Remove old activity feed section */
.activity-feed-section{
  display:none !important;
}


/* ===== V13 Conversion Max ===== */
.sticky-mobile-cta .btn{
  font-size:18px !important;
  font-weight:900 !important;
  box-shadow:0 18px 40px rgba(255,106,0,.32) !important;
}
.order-progress{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}
.order-progress-step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:11px;
  font-weight:800;
  color:var(--muted);
}
.order-progress-step.is-active,
.order-progress-step.is-complete{
  color:#fff;
  border-color:rgba(255,106,0,.25);
  background:rgba(255,106,0,.10);
}
.upsell-option{
  position:relative;
}
.upsell-option-featured{
  border-color:rgba(255,106,0,.28) !important;
  background:rgba(255,106,0,.05) !important;
}
.upsell-badge{
  position:absolute;
  top:-10px;
  right:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  color:#fff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  box-shadow:0 8px 20px rgba(255,106,0,.22);
}
.order-price-box{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:14px 16px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  margin-top:4px;
}
.order-price-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.order-price-line span{
  font-weight:800;
}
.order-price-line strong{
  font-size:26px;
  line-height:1;
  color:var(--orange2);
}
.order-price-sub{
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}


/* Role-based review form v13.1 */
.review-social-grid-category{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
@media (max-width:760px){
  .review-social-grid-category{
    grid-template-columns:1fr;
  }
}


/* forced submit review form v13.2 */
.review-social-grid-category{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.review-social-grid-category label{
  display:block;
}
@media (max-width:760px){
  .review-social-grid-category{
    grid-template-columns:1fr;
  }
}


/* review slider blank fix v13.4 */
.slider-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.28);
  cursor:pointer;
}
.slider-dot.is-active{
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 10px rgba(255,106,0,.28);
}


/* JS review slider v13.5 */
.ngfx-review-js-slider{
  display:block;
  width:100%;
  min-width:0;
}
.ngfx-review-js-slides{
  position:relative;
  min-height:320px;
}
.ngfx-review-js-slide{
  display:none;
}
.ngfx-review-js-slide.is-active{
  display:block;
}
.ngfx-review-js-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:20px;
}
.ngfx-review-js-dots{
  display:flex;
  gap:10px;
  align-items:center;
}
.ngfx-review-js-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:0;
  padding:0;
  background:rgba(255,255,255,.28);
  cursor:pointer;
}
.ngfx-review-js-dot.is-active{
  background:linear-gradient(135deg,#ff6a00,#ffb11a);
  box-shadow:0 0 12px rgba(255,106,0,.45);
}


/* Portfolio popup gallery v13.6 */
.work-body .portfolio-open{
  margin-top:12px;
  width:100%;
  justify-content:center;
}
.portfolio-modal-overlay{
  position:fixed;
  inset:0;
  z-index:1200;
}
.portfolio-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(3,5,10,.78);
  backdrop-filter:blur(6px);
}
.portfolio-modal{
  position:relative;
  width:min(1100px, calc(100vw - 32px));
  max-height:calc(100vh - 40px);
  overflow:auto;
  margin:20px auto;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(13,15,22,.98), rgba(9,10,16,.98));
  box-shadow:0 30px 80px rgba(0,0,0,.46);
  padding:24px;
}
.portfolio-modal-head h3{
  margin:6px 0 6px;
}
.portfolio-modal-head p{
  margin:0 0 18px;
  color:var(--muted);
}
.portfolio-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}
.portfolio-modal-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.portfolio-modal-item{
  margin:0;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
}
.portfolio-modal-item img{
  width:100%;
  display:block;
  object-fit:cover;
}
body.portfolio-modal-open{
  overflow:hidden;
}
@media (max-width: 760px){
  .portfolio-modal-grid{
    grid-template-columns:1fr;
  }
  .portfolio-modal{
    width:min(100vw - 16px, 1100px);
    margin:8px auto;
    max-height:calc(100vh - 16px);
    padding:18px;
  }
}


/* Portfolio hybrid live preview v13.7 */
.portfolio-modal-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:0 0 18px;
}
.portfolio-tab{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  cursor:pointer;
}
.portfolio-tab.is-active{
  background:rgba(255,106,0,.12);
  border-color:rgba(255,106,0,.28);
}
.portfolio-visit-site{
  margin-left:auto;
}
.portfolio-tab-panel{
  display:none;
}
.portfolio-tab-panel.is-active{
  display:block;
}
.portfolio-browser-shell{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
}
.portfolio-browser-bar{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  background:rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.portfolio-browser-dots{
  display:inline-flex;
  width:42px;
  height:10px;
  position:relative;
}
.portfolio-browser-dots::before,
.portfolio-browser-dots::after{
  content:"";
  position:absolute;
  top:0;
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.28);
}
.portfolio-browser-dots::before{ left:0; box-shadow:16px 0 0 rgba(255,255,255,.28), 32px 0 0 rgba(255,255,255,.28); }
.portfolio-browser-url{
  color:var(--muted);
  font-size:13px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.portfolio-live-preview{
  position:relative;
  min-height:640px;
  background:#0b0c12;
}
.portfolio-live-preview iframe{
  width:100%;
  min-height:640px;
  border:0;
  display:block;
  background:#fff;
}
.portfolio-live-fallback{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  gap:16px;
  padding:24px;
  background:linear-gradient(180deg, rgba(13,15,22,.98), rgba(9,10,16,.98));
}
.portfolio-live-fallback[hidden]{
  display:none !important;
}
.portfolio-live-fallback.is-static{
  position:relative;
}
.portfolio-live-fallback img{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}
.portfolio-live-fallback-copy{
  text-align:center;
}
.portfolio-live-fallback-copy p{
  color:var(--muted);
  margin:8px 0 14px;
}
@media (max-width:760px){
  .portfolio-visit-site{
    margin-left:0;
  }
  .portfolio-live-preview,
  .portfolio-live-preview iframe{
    min-height:520px;
  }
}
