
:root{
  --bg:#070707;
  --bg2:#121218;
  --panel:#111218;
  --panel2:#181a23;
  --text:#f5f6fb;
  --muted:#bdbfcb;
  --orange:#9d00ff;
  --orange2:#d8d8e2;
  --purple:#6f00b8;
  --purple2:#c45cff;
  --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(157,0,255,.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),#b52cff,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),#c13cff);
  color:#fff;box-shadow:0 10px 30px rgba(157,0,255,.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(157,0,255,.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(157,0,255,.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(157,0,255,.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),#c13cff)}

.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,#170024,#9d00ff)}
.grad-green{background:linear-gradient(135deg,#0b1f0c,#61f246)}
.grad-magenta{background:linear-gradient(135deg,#19002b,#ff3eb5)}
.grad-red{background:linear-gradient(135deg,#160020,#ff4d27)}
.grad-gold{background:linear-gradient(135deg,#1b1024,#c7c7d1)}
.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(157,0,255,.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(157,0,255,.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:#d8d8e2;
  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:#d8d8e2;
  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(157,0,255,.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,#9d00ff,#c7c7d1);
  box-shadow:0 0 12px rgba(157,0,255,.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(157,0,255,.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:#d8d8e2;
  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,#9d00ff,#c7c7d1);
  box-shadow:0 0 12px rgba(157,0,255,.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(157,0,255,.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:#d8d8e2 !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,#9d00ff,#c7c7d1) !important;
  box-shadow:0 0 12px rgba(157,0,255,.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,#9d00ff,#c7c7d1) !important;
  box-shadow:0 0 12px rgba(157,0,255,.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,#9d00ff,#c7c7d1);
  box-shadow:0 0 12px rgba(157,0,255,.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,#9d00ff,#c7c7d1) !important;
  box-shadow:0 0 12px rgba(157,0,255,.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,#9d00ff,#c7c7d1) !important;
  box-shadow:0 0 12px rgba(157,0,255,.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(157,0,255,.35);
  box-shadow:0 0 0 1px rgba(157,0,255,.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(157,0,255,.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,#9d00ff,#c7c7d1);
  box-shadow:0 0 12px rgba(157,0,255,.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,#9d00ff,#c7c7d1);
  box-shadow:0 0 12px rgba(157,0,255,.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,#9d00ff,#c7c7d1);
  box-shadow:0 0 12px rgba(157,0,255,.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(157,0,255,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:999999;
}
.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(157,0,255,.55);
  box-shadow:0 0 0 3px rgba(157,0,255,.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(157,0,255,.55);
  box-shadow:0 0 0 3px rgba(157,0,255,.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(157,0,255,.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(157,0,255,.18), rgba(123,44,255,.18));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 0 0 1px rgba(157,0,255,.10), 0 0 18px rgba(157,0,255,.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, #9d00ff, #c7c7d1);
  color:#fff;
  font-size:11px;
  box-shadow:0 0 12px rgba(157,0,255,.35);
}
@keyframes verifiedGlow{
  0%,100%{box-shadow:0 0 0 1px rgba(157,0,255,.10), 0 0 18px rgba(157,0,255,.16)}
  50%{box-shadow:0 0 0 1px rgba(157,0,255,.18), 0 0 26px rgba(157,0,255,.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,#9d00ff,#c7c7d1);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 0 18px rgba(157,0,255,.30);
  margin-bottom:10px;
}
.tier-card-pro{
  border-color:rgba(157,0,255,.35) !important;
  box-shadow:0 0 0 1px rgba(157,0,255,.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(216,216,226,.12); color:#e6e6ee;}
.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,#9d00ff,#c7c7d1);
  display:inline-block;
  margin-right:10px;
  box-shadow:0 0 12px rgba(157,0,255,.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(157,0,255,.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(157,0,255,.10) !important;
  border:1px solid rgba(157,0,255,.28) !important;
}
.verified-badge-orange .verified-badge-dot{
  background:linear-gradient(135deg,#9d00ff,#c7c7d1) !important;
  box-shadow:none !important;
}
.verified-badge-orange:hover{
  box-shadow:0 0 8px rgba(157,0,255,.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,#d8d8e2,#f2f2f5) !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:#a600ff !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: #a600ff !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(157,0,255,.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(157,0,255,.4);
  box-shadow:0 0 30px rgba(157,0,255,.15);
}

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

/* better CTA emphasis */
.btn-primary{
  box-shadow:0 10px 30px rgba(157,0,255,.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(157,0,255,.4) !important;
  box-shadow:0 0 30px rgba(157,0,255,.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(157,0,255,.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(157,0,255,.25);
  background:rgba(157,0,255,.10);
}
.upsell-option{
  position:relative;
}
.upsell-option-featured{
  border-color:rgba(157,0,255,.28) !important;
  background:rgba(157,0,255,.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,#9d00ff,#c7c7d1);
  color:#fff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  box-shadow:0 8px 20px rgba(157,0,255,.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,#9d00ff,#c7c7d1);
  box-shadow:0 0 10px rgba(157,0,255,.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,#9d00ff,#c7c7d1);
  box-shadow:0 0 12px rgba(157,0,255,.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(157,0,255,.12);
  border-color:rgba(157,0,255,.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;
  }
}

/* contact modal v14.0 */
.contact-modal{
  max-width:640px;
}
.open-contact-modal{
  cursor:pointer;
}


/* Contact/order modal hard fix v14.1 */
.order-modal-overlay{
  position:fixed !important;
  inset:0 !important;
  z-index:999999 !important;
  overflow-y:auto !important;
  padding:24px 0 !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:center !important;
}
.order-modal-overlay[hidden]{
  display:none !important;
}
.order-modal{
  margin:40px auto !important;
  max-height:calc(100vh - 80px) !important;
  overflow-y:auto !important;
}
.site-header{
  z-index:1000;
}

/* Final modal positioning fix v14.2 - keep popup centred and above the header */
body.modal-open{ overflow:hidden !important; }
.order-modal-overlay{
  position:fixed !important;
  top:0 !important;
  right:0 !important;
  bottom:0 !important;
  left:0 !important;
  width:100vw !important;
  height:100vh !important;
  z-index:2147483000 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:24px !important;
  overflow:auto !important;
  box-sizing:border-box !important;
}
.order-modal-overlay[hidden]{ display:none !important; }
.order-modal-backdrop{
  position:fixed !important;
  inset:0 !important;
  z-index:0 !important;
}
.order-modal{
  position:relative !important;
  z-index:1 !important;
  margin:auto !important;
  width:min(720px, calc(100vw - 32px)) !important;
  max-height:calc(100vh - 48px) !important;
  overflow-y:auto !important;
  box-sizing:border-box !important;
  transform:none !important;
}
.contact-modal{ max-width:720px !important; }
.site-header{ z-index:1000 !important; }
@media (max-width:760px){
  .order-modal-overlay{ align-items:flex-start !important; padding:14px !important; }
  .order-modal{ width:calc(100vw - 28px) !important; max-height:calc(100vh - 28px) !important; margin:0 auto !important; }
}

/* Precious Pixels quote/contact top-button hard fix v14.3 */
html.modal-open, body.modal-open{ overflow:hidden !important; }
body > #contact-modal.order-modal-overlay,
#contact-modal.order-modal-overlay.is-open{
  position:fixed !important;
  inset:0 !important;
  width:100vw !important;
  height:100vh !important;
  min-height:100vh !important;
  z-index:2147483647 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:24px !important;
  margin:0 !important;
  overflow:auto !important;
  background:rgba(0,0,0,.72) !important;
  backdrop-filter:blur(12px) !important;
  box-sizing:border-box !important;
  transform:none !important;
}
body > #contact-modal.order-modal-overlay[hidden]{ display:none !important; }
#contact-modal .order-modal-backdrop{
  position:fixed !important;
  inset:0 !important;
  width:100vw !important;
  height:100vh !important;
}
#contact-modal .order-modal.contact-modal{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  margin:auto !important;
  width:min(760px, calc(100vw - 32px)) !important;
  max-width:760px !important;
  max-height:calc(100vh - 48px) !important;
  overflow-y:auto !important;
  transform:none !important;
  z-index:2 !important;
}
@media(max-width:760px){
  body > #contact-modal.order-modal-overlay,
  #contact-modal.order-modal-overlay.is-open{ align-items:flex-start !important; padding:14px !important; }
  #contact-modal .order-modal.contact-modal{ width:calc(100vw - 28px) !important; max-height:calc(100vh - 28px) !important; }
}


/* Precious Pixels v17.1 - Royal Neon homepage hero */
.pp-royal-hero{
  position:relative;
  overflow:hidden;
  min-height:720px;
  padding:76px 0 34px!important;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 72% 32%,rgba(181,0,255,.18),transparent 31%),
    radial-gradient(circle at 18% 40%,rgba(115,40,160,.14),transparent 34%),
    linear-gradient(180deg,#08070c 0%,#0b0811 48%,#09090e 100%);
}
.pp-royal-hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.7),transparent 85%);
  pointer-events:none;
}
.pp-royal-hero::after{
  content:"";
  position:absolute;left:50%;bottom:-120px;
  width:min(1100px,90vw);height:240px;
  transform:translateX(-50%);
  background:radial-gradient(ellipse,rgba(180,0,255,.22),transparent 68%);
  filter:blur(24px);pointer-events:none;
}
.pp-hero-noise{
  position:absolute;inset:0;opacity:.13;pointer-events:none;
  background-image:
    radial-gradient(circle at 20% 30%,rgba(255,255,255,.12) 0 1px,transparent 1px),
    radial-gradient(circle at 70% 70%,rgba(203,183,220,.12) 0 1px,transparent 1px);
  background-size:33px 33px,47px 47px;
}
.pp-hero-orb{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none}
.pp-hero-orb-one{width:340px;height:340px;right:7%;top:12%;background:rgba(180,0,255,.26)}
.pp-hero-orb-two{width:260px;height:260px;left:-80px;bottom:18%;background:rgba(183,183,201,.09)}
.pp-hero-spark{
  position:absolute;color:rgba(235,221,247,.75);font-size:28px;line-height:1;
  filter:drop-shadow(0 0 10px rgba(184,0,255,.55));
  animation:ppHeroFloat 4.5s ease-in-out infinite;
  pointer-events:none
}
.pp-spark-one{right:9%;top:18%}
.pp-spark-two{right:45%;top:24%;font-size:17px;animation-delay:-1.1s}
.pp-spark-three{right:37%;bottom:27%;font-size:21px;animation-delay:-2.4s}
@keyframes ppHeroFloat{0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-9px) rotate(5deg)}}

.pp-hero-inner{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,.95fr);
  align-items:center;
  gap:46px;
}
.pp-hero-copy{padding:18px 0 30px}
.pp-hero-kicker{
  display:inline-flex;align-items:center;gap:10px;
  padding:9px 13px;border-radius:999px;
  border:1px solid rgba(217,190,238,.18);
  background:linear-gradient(135deg,rgba(180,0,255,.12),rgba(255,255,255,.035));
  color:#ddd8e4;font-size:11px;font-weight:900;letter-spacing:.11em;text-transform:uppercase
}
.pp-kicker-dot{
  width:7px;height:7px;border-radius:50%;background:#cc4cff;
  box-shadow:0 0 0 4px rgba(204,76,255,.12),0 0 18px rgba(204,76,255,.9)
}
.pp-hero-copy h1{
  margin:18px 0 18px;
  max-width:860px;
  font-size:clamp(48px,6.4vw,92px);
  line-height:.91;
  letter-spacing:-.045em;
  text-transform:uppercase;
  color:#f9f8fb;
  text-shadow:0 10px 40px rgba(0,0,0,.36)
}
.pp-hero-copy h1 span{
  display:inline-block;
  color:transparent;
  background:linear-gradient(90deg,#fff 0%,#d9d9e3 22%,#ca5cff 54%,#a800ef 100%);
  -webkit-background-clip:text;background-clip:text;
  filter:drop-shadow(0 0 18px rgba(179,0,255,.12))
}
.pp-hero-lead{
  margin:0;
  max-width:690px;
  color:#bdb9c7;
  font-size:17px;
  line-height:1.72
}
.pp-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0 21px}
.pp-hero-primary{
  min-width:166px;
  box-shadow:0 15px 38px rgba(173,0,242,.25),0 0 0 1px rgba(255,255,255,.08) inset
}
.pp-hero-secondary{min-width:184px;background:rgba(255,255,255,.035)!important;backdrop-filter:blur(9px)}
.pp-hero-mini-proof{display:flex;gap:18px;flex-wrap:wrap;color:#8f8a99;font-size:12px;font-weight:750}
.pp-hero-mini-proof span{display:inline-flex;align-items:center;gap:6px}
.pp-hero-mini-proof b{color:#d279ff;font-size:14px}

.pp-hero-art{
  position:relative;min-height:490px;
  display:flex;align-items:center;justify-content:center
}
.pp-logo-stage{
  position:relative;
  width:min(600px,100%);
  min-height:440px;
  display:grid;place-items:center
}
.pp-logo-stage::before{
  content:"";
  position:absolute;inset:8% 5%;
  border-radius:50%;
  border:1px solid rgba(224,205,238,.12);
  transform:rotate(-9deg);
  box-shadow:
    0 0 60px rgba(182,0,255,.11),
    inset 0 0 60px rgba(255,255,255,.018)
}
.pp-logo-stage::after{
  content:"";
  position:absolute;inset:16% 12%;
  border-radius:50%;
  border:1px dashed rgba(191,164,211,.11);
  transform:rotate(11deg)
}
.pp-logo-halo{
  position:absolute;
  width:72%;aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(191,28,255,.26),rgba(112,0,158,.08) 48%,transparent 70%);
  filter:blur(20px)
}
.pp-logo-stage img{
  position:relative;z-index:3;
  width:min(570px,100%);
  max-height:455px;
  object-fit:contain;
  filter:
    drop-shadow(0 24px 28px rgba(0,0,0,.5))
    drop-shadow(0 0 24px rgba(176,0,255,.25));
  animation:ppLogoBreathe 5.5s ease-in-out infinite
}
@keyframes ppLogoBreathe{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-5px) scale(1.012)}}
.pp-art-caption{
  position:absolute;z-index:4;left:50%;bottom:12px;transform:translateX(-50%);
  display:flex;align-items:center;gap:9px;
  white-space:nowrap;
  color:#918b9a;font-size:9px;font-weight:900;letter-spacing:.18em
}
.pp-art-caption i{font-style:normal;color:#d5c6df;font-weight:500;letter-spacing:.08em}
.pp-hero-crown-line{
  position:absolute;left:11%;right:11%;top:17%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(213,188,230,.22),transparent)
}

.pp-hero-bottom{
  position:relative;z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:12px
}
.pp-hero-status-card{
  min-height:74px;
  display:flex;align-items:center;gap:12px;
  padding:14px 15px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:16px;
  background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  backdrop-filter:blur(12px)
}
.pp-status-icon{
  flex:0 0 37px;width:37px;height:37px;border-radius:50%;
  display:grid;place-items:center;
  color:#e0b6f2;background:rgba(180,0,255,.10);
  border:1px solid rgba(210,142,243,.16);
  box-shadow:inset 0 0 20px rgba(180,0,255,.05)
}
.pp-hero-status-card strong,.pp-hero-status-card small{display:block}
.pp-hero-status-card strong{font-size:12px;color:#f5f3f7;margin-bottom:3px}
.pp-hero-status-card small{font-size:10px;color:#77727f;line-height:1.35}
.pp-scroll-cue{
  position:relative;z-index:3;
  width:max-content;
  display:flex;align-items:center;gap:9px;
  margin:24px auto 0;
  color:#77717d;text-decoration:none;
  font-size:9px;font-weight:900;letter-spacing:.18em
}
.pp-scroll-cue i{
  display:grid;place-items:center;width:23px;height:23px;border-radius:50%;
  border:1px solid rgba(255,255,255,.09);font-style:normal;color:#cf72f4;
  animation:ppScrollCue 1.7s ease-in-out infinite
}
@keyframes ppScrollCue{50%{transform:translateY(4px)}}

#work{position:relative;padding-top:78px!important}
#work::before{
  content:"";position:absolute;top:0;left:50%;width:min(780px,80vw);height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(193,91,236,.48),transparent)
}

@media(max-width:1050px){
  .pp-royal-hero{min-height:auto;padding-top:54px!important}
  .pp-hero-inner{grid-template-columns:1fr;gap:5px;text-align:center}
  .pp-hero-copy{display:flex;flex-direction:column;align-items:center;padding-bottom:0}
  .pp-hero-copy h1{max-width:840px}
  .pp-hero-lead{max-width:680px}
  .pp-hero-art{min-height:390px;margin-top:-12px}
  .pp-logo-stage{min-height:390px;max-width:620px}
  .pp-logo-stage img{max-height:390px}
  .pp-hero-bottom{grid-template-columns:1fr 1fr;margin-top:5px}
}
@media(max-width:650px){
  .pp-royal-hero{padding:42px 0 26px!important}
  .pp-hero-inner{gap:0}
  .pp-hero-kicker{font-size:9px;letter-spacing:.08em;padding:8px 10px}
  .pp-hero-copy h1{font-size:clamp(42px,13vw,62px);line-height:.92;margin-top:16px}
  .pp-hero-lead{font-size:15px;line-height:1.62}
  .pp-hero-actions{width:100%;flex-direction:column;margin:23px 0 17px}
  .pp-hero-actions .btn{width:100%}
  .pp-hero-mini-proof{justify-content:center;gap:10px;font-size:10px}
  .pp-hero-art{min-height:315px;margin-top:4px}
  .pp-logo-stage{min-height:305px}
  .pp-logo-stage img{max-height:305px}
  .pp-art-caption{bottom:0;font-size:7px}
  .pp-hero-bottom{grid-template-columns:1fr;gap:7px;margin-top:10px}
  .pp-hero-status-card{min-height:58px;padding:10px 12px}
  .pp-status-icon{width:33px;height:33px;flex-basis:33px}
  .pp-scroll-cue{margin-top:17px}
  .pp-spark-two{display:none}
}
@media(prefers-reduced-motion:reduce){
  .pp-logo-stage img,.pp-hero-spark,.pp-scroll-cue i{animation:none!important}
}

/* v17.1.1 remove floating social-proof order popups */
.floating-activity-feed,.floating-activity-card{display:none!important}


/* Precious Pixels v17.2 — approved showcase homepage */
body.home .site-header,
body.front-page .site-header{
  background:rgba(4,4,8,.96)!important;
  border-bottom:1px solid rgba(151,64,198,.12)!important;
  backdrop-filter:blur(18px)
}
body.home .header-inner,
body.front-page .header-inner{
  min-height:86px!important;
  padding-top:8px!important;
  padding-bottom:8px!important
}
body.home .brand img,
body.front-page .brand img{
  width:auto!important;
  height:74px!important;
  max-width:190px!important;
  object-fit:contain!important;
  filter:drop-shadow(0 0 12px rgba(188,41,255,.22))
}
body.home .site-nav .nav-links,
body.front-page .site-nav .nav-links{gap:34px!important}
body.home .site-nav a,
body.front-page .site-nav a{
  position:relative;
  color:#f4f1f7!important;
  font-size:13px!important;
  letter-spacing:.015em
}
body.home .site-nav a:hover,
body.front-page .site-nav a:hover{color:#d360ff!important}
body.home .site-nav li:first-child a,
body.front-page .site-nav li:first-child a{color:#ce47ff!important}
body.home .site-nav li:first-child a::after,
body.front-page .site-nav li:first-child a::after{
  content:"";position:absolute;left:0;right:0;bottom:-13px;height:2px;
  background:#ca32ff;box-shadow:0 0 8px rgba(202,50,255,.55)
}
body.home .header-cta,
body.front-page .header-cta{
  border:1px solid rgba(223,103,255,.75)!important;
  background:linear-gradient(180deg,#6e0798,#4a046b)!important;
  color:#fff!important;
  border-radius:8px!important;
  box-shadow:0 0 18px rgba(185,40,255,.25)!important;
  text-transform:uppercase!important;
  letter-spacing:.02em!important
}

.pp-showcase-hero{
  position:relative;
  overflow:hidden;
  min-height:690px;
  padding:76px 0 0;
  background:#050509;
  border-bottom:1px solid rgba(210,69,255,.25)
}
.pp-showcase-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 76% 44%,rgba(176,0,255,.28) 0%,rgba(102,0,148,.11) 30%,transparent 58%),
    radial-gradient(ellipse at 77% 62%,rgba(132,0,198,.22),transparent 50%),
    radial-gradient(circle at 8% 100%,rgba(104,0,151,.18),transparent 33%),
    linear-gradient(115deg,#06060b 0%,#07060d 43%,#09050f 62%,#050509 100%);
}
.pp-showcase-bg::before{
  content:"";position:absolute;inset:0;
  opacity:.25;
  background:
    linear-gradient(135deg,transparent 28%,rgba(187,76,235,.08) 28.3%,transparent 28.7%),
    linear-gradient(45deg,transparent 63%,rgba(255,255,255,.025) 63.2%,transparent 63.5%);
  background-size:360px 360px,250px 250px
}
.pp-showcase-bg::after{
  content:"";position:absolute;right:-9%;bottom:-26%;
  width:67%;height:83%;
  border-radius:50%;
  border:1px solid rgba(190,54,255,.17);
  box-shadow:
    0 0 0 48px rgba(187,52,255,.025),
    0 0 0 102px rgba(187,52,255,.018),
    0 0 95px rgba(156,0,222,.18)
}
.pp-showcase-stars{
  position:absolute;inset:0;pointer-events:none;opacity:.9;
  background-image:
    radial-gradient(circle at 48% 22%,#fff 0 1px,transparent 2px),
    radial-gradient(circle at 57% 15%,#d975ff 0 1.2px,transparent 2.4px),
    radial-gradient(circle at 69% 31%,#fff 0 1px,transparent 2px),
    radial-gradient(circle at 82% 20%,#e2a0ff 0 1px,transparent 2px),
    radial-gradient(circle at 91% 42%,#fff 0 1px,transparent 2px),
    radial-gradient(circle at 61% 54%,#dc65ff 0 1px,transparent 2px),
    radial-gradient(circle at 43% 44%,#fff 0 1px,transparent 2px),
    radial-gradient(circle at 88% 71%,#d66bff 0 1px,transparent 2px);
}
.pp-showcase-main{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:minmax(400px,.86fr) minmax(540px,1.14fr);
  gap:24px;
  align-items:center
}
.pp-showcase-copy{padding:32px 0 48px}
.pp-showcase-welcome{
  color:#f3edf7;
  font-size:12px;
  font-weight:850;
  letter-spacing:.24em;
  margin-bottom:18px
}
.pp-showcase-welcome strong{color:#c847ff}
.pp-showcase-heart{
  display:flex;align-items:center;gap:14px;
  color:#e269ff;font-size:31px;line-height:1;margin-bottom:18px
}
.pp-showcase-heart span{
  display:block;width:158px;height:1px;
  background:linear-gradient(90deg,#d84bff,transparent)
}
.pp-showcase-copy h1{
  margin:0;
  display:flex;flex-direction:column;align-items:flex-start;
  line-height:.98;
  text-transform:uppercase
}
.pp-white-line{
  color:#fff;
  font-size:clamp(48px,4.4vw,71px);
  font-weight:950;
  letter-spacing:-.035em;
  text-shadow:0 8px 28px rgba(0,0,0,.45)
}
.pp-purple-line{
  margin-top:8px;
  color:transparent;
  font-size:clamp(48px,4.4vw,71px);
  font-weight:950;
  letter-spacing:-.035em;
  background:linear-gradient(180deg,#dd69ff 0%,#a916dc 48%,#7102a5 100%);
  -webkit-background-clip:text;background-clip:text;
  filter:drop-shadow(0 0 15px rgba(191,36,255,.2))
}
.pp-brush-line{
  margin-top:10px;
  color:#e1dfe5;
  font-size:clamp(35px,3.6vw,56px);
  font-weight:950;
  font-style:italic;
  letter-spacing:-.045em;
  transform:skew(-8deg);
  text-shadow:3px 4px 0 #3b3940,0 0 20px rgba(255,255,255,.06)
}
.pp-brush-line::after{
  content:"";
  display:block;
  width:98%;height:3px;margin-top:8px;
  background:linear-gradient(90deg,transparent,#e8e6ec 18%,#ab29dd 72%,transparent);
  transform:skew(8deg);
  box-shadow:0 0 10px rgba(205,69,255,.25)
}
.pp-showcase-copy>p{
  max-width:560px;
  margin:30px 0 0;
  color:#d0cbd4;
  font-size:17px;
  line-height:1.7
}
.pp-showcase-actions{display:flex;gap:18px;flex-wrap:wrap;margin-top:28px}
.pp-showcase-actions .btn{
  min-width:232px;height:58px;
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  border-radius:8px!important;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.01em
}
.pp-crown-btn{
  background:linear-gradient(135deg,#9c13d8,#5e0587)!important;
  border:1px solid #c64cff!important;
  box-shadow:0 0 25px rgba(187,38,255,.25)!important
}
.pp-heart-btn{
  background:rgba(8,8,13,.78)!important;
  border:1px solid rgba(225,103,255,.68)!important
}
.pp-showcase-actions span{font-size:22px}

.pp-showcase-logo{
  position:relative;
  min-height:490px;
  display:grid;place-items:center
}
.pp-logo-portal{
  position:absolute;width:84%;aspect-ratio:1;border-radius:50%;
  border:1px solid rgba(210,65,255,.28);
  box-shadow:
    0 0 0 26px rgba(189,36,255,.035),
    0 0 0 54px rgba(189,36,255,.025),
    0 0 68px rgba(185,0,255,.35),
    inset 0 0 55px rgba(184,0,255,.12)
}
.pp-logo-portal::before,.pp-logo-portal::after{
  content:"";position:absolute;inset:8%;border-radius:50%;
  border:1px dashed rgba(220,120,255,.19)
}
.pp-logo-portal::after{inset:19%;border-style:solid;opacity:.45}
.pp-logo-rays{
  position:absolute;inset:7% 3%;
  background:
    conic-gradient(from 10deg,transparent 0 8%,rgba(200,63,255,.09) 8.5%,transparent 9.5% 28%,rgba(200,63,255,.08) 28.5%,transparent 30% 57%,rgba(200,63,255,.07) 58%,transparent 59%);
  filter:blur(1px)
}
.pp-showcase-logo img{
  position:relative;z-index:3;
  width:min(760px,108%);
  max-height:535px;
  object-fit:contain;
  filter:
    drop-shadow(0 22px 25px rgba(0,0,0,.65))
    drop-shadow(0 0 13px rgba(207,49,255,.35))
    drop-shadow(0 0 32px rgba(125,0,177,.25));
  transform:scale(1.08)
}

.pp-showcase-benefits{
  position:relative;z-index:4;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:-8px;
  transform:translateY(12px)
}
.pp-showcase-benefits article{
  min-height:92px;
  display:flex;align-items:center;gap:19px;
  padding:17px 22px;
  border-radius:9px;
  background:linear-gradient(180deg,rgba(18,11,25,.94),rgba(6,6,11,.96));
  border:1px solid rgba(224,91,255,.8);
  box-shadow:
    0 0 0 1px rgba(152,0,203,.28) inset,
    0 0 18px rgba(206,47,255,.36),
    0 15px 30px rgba(0,0,0,.35)
}
.pp-benefit-icon{
  flex:0 0 55px;
  color:#e879ff;
  font-size:42px;
  line-height:1;
  text-align:center;
  text-shadow:0 0 15px rgba(224,91,255,.65)
}
.pp-showcase-benefits strong,.pp-showcase-benefits small{display:block}
.pp-showcase-benefits strong{color:#fff;font-size:14px;margin-bottom:6px}
.pp-showcase-benefits small{color:#b9b2be;font-size:12px;line-height:1.45}

#work{
  background:linear-gradient(180deg,#06060b,#09070e)!important;
  padding-top:76px!important;
  border-top:1px solid rgba(215,65,255,.26)
}
#work::before{
  width:100%!important;top:0!important;height:2px!important;
  background:linear-gradient(90deg,transparent,#d34cff 8%,#7a00ad 50%,#d34cff 92%,transparent)!important;
  box-shadow:0 0 18px rgba(207,55,255,.55)
}
.pp-featured-head{
  align-items:center!important;
  text-align:center!important;
  gap:7px!important;
  margin-bottom:22px!important
}
.pp-latest-work{
  color:#d95cff;
  font-size:11px;font-weight:900;letter-spacing:.28em
}
.pp-featured-head h2{
  font-size:clamp(30px,3vw,44px)!important;
  letter-spacing:.13em!important;
  color:#f3eff6!important
}
#work .filters{
  justify-content:center;
  opacity:.82
}
#work .portfolio-grid{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:24px!important
}
#work .work-card{
  border-radius:8px!important;
  overflow:hidden;
  border:1px solid rgba(218,93,255,.7)!important;
  background:#0a0810!important;
  box-shadow:0 0 18px rgba(164,28,213,.15)!important
}
#work .work-thumb{
  min-height:205px!important;
  border-radius:0!important
}
#work .work-body{
  border-top:1px solid rgba(194,77,233,.18)
}

@media(max-width:1150px){
  .pp-showcase-main{grid-template-columns:1fr 1fr}
  .pp-showcase-benefits{grid-template-columns:1fr 1fr}
  #work .portfolio-grid{grid-template-columns:repeat(2,1fr)!important}
  body.home .site-nav .nav-links,body.front-page .site-nav .nav-links{gap:19px!important}
}
@media(max-width:900px){
  .pp-showcase-hero{padding-top:38px}
  .pp-showcase-main{grid-template-columns:1fr;text-align:center}
  .pp-showcase-copy{display:flex;flex-direction:column;align-items:center;padding-bottom:0}
  .pp-showcase-copy h1{align-items:center}
  .pp-showcase-heart{justify-content:center}
  .pp-showcase-heart span{width:100px}
  .pp-showcase-copy>p{max-width:620px}
  .pp-showcase-logo{min-height:390px;margin-top:-18px}
  .pp-showcase-logo img{max-height:400px;transform:scale(1)}
  body.home .brand img,body.front-page .brand img{height:62px!important}
}
@media(max-width:650px){
  .pp-showcase-hero{padding-top:28px}
  .pp-showcase-welcome{font-size:9px;letter-spacing:.18em}
  .pp-white-line,.pp-purple-line{font-size:clamp(39px,12vw,56px)}
  .pp-brush-line{font-size:clamp(31px,9vw,44px)}
  .pp-showcase-copy>p{font-size:15px}
  .pp-showcase-actions{width:100%;gap:10px}
  .pp-showcase-actions .btn{width:100%;min-width:0}
  .pp-showcase-logo{min-height:300px}
  .pp-showcase-logo img{max-height:315px}
  .pp-showcase-benefits{grid-template-columns:1fr;gap:10px;margin-top:6px}
  .pp-showcase-benefits article{min-height:72px}
  #work .portfolio-grid{grid-template-columns:1fr!important}
  .pp-featured-head h2{font-size:28px!important;letter-spacing:.08em!important}
}


/* v17.2.1 — hero typography closer to approved design */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Permanent+Marker&display=swap');

.pp-showcase-copy h1{
  gap:0!important;
}
.pp-white-line,
.pp-purple-line{
  font-family:'Anton','Arial Black',Impact,sans-serif!important;
  font-weight:400!important;
  font-stretch:condensed;
  letter-spacing:.005em!important;
  line-height:.98!important;
}
.pp-white-line{
  font-size:clamp(52px,4.9vw,78px)!important;
}
.pp-purple-line{
  font-size:clamp(52px,4.9vw,78px)!important;
  margin-top:5px!important;
}
.pp-brush-line{
  position:relative;
  display:inline-block;
  margin-top:13px!important;
  font-family:'Permanent Marker','Brush Script MT','Segoe Print',cursive!important;
  font-size:clamp(37px,3.65vw,58px)!important;
  font-weight:400!important;
  font-style:normal!important;
  line-height:1.03!important;
  letter-spacing:-.035em!important;
  color:#e9e7eb!important;
  transform:rotate(-1.2deg) skew(-4deg)!important;
  text-shadow:
    2px 3px 0 rgba(70,66,75,.95),
    0 0 16px rgba(255,255,255,.06)!important;
}
.pp-brush-line::after{
  width:102%!important;
  height:4px!important;
  margin-top:5px!important;
  transform:rotate(-1deg) skew(4deg)!important;
  background:linear-gradient(90deg,transparent 0%,#f1eef3 12%,#d8d3dc 46%,#b92ce9 80%,transparent 100%)!important;
}
@media(max-width:650px){
  .pp-white-line,.pp-purple-line{font-size:clamp(42px,12.4vw,59px)!important}
  .pp-brush-line{font-size:clamp(31px,9.5vw,45px)!important}
}


/* v17.2.2 — hero typography matched to approved mockup */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bangers&display=swap');

.pp-showcase-main{grid-template-columns:minmax(520px,.88fr) minmax(500px,1.12fr)!important}
.pp-showcase-copy{min-width:0!important}
.pp-showcase-copy h1{width:100%!important;overflow:visible!important}
.pp-white-line,.pp-purple-line{
  display:block!important;
  width:max-content!important;
  max-width:none!important;
  white-space:nowrap!important;
  font-family:'Anton',Impact,'Arial Narrow',sans-serif!important;
  font-weight:400!important;
  font-style:normal!important;
  font-size:clamp(50px,4.15vw,68px)!important;
  line-height:.98!important;
  letter-spacing:.005em!important;
  transform:none!important;
}
.pp-purple-line{margin-top:8px!important}
.pp-brush-line{
  display:block!important;
  width:max-content!important;
  max-width:none!important;
  white-space:nowrap!important;
  margin-top:12px!important;
  font-family:'Bangers',Impact,sans-serif!important;
  font-weight:400!important;
  font-style:normal!important;
  font-size:clamp(38px,3.35vw,54px)!important;
  line-height:1!important;
  letter-spacing:.025em!important;
  color:#eeeaf0!important;
  transform:skew(-7deg) rotate(-1deg)!important;
  text-shadow:2px 3px 0 #55505b,0 0 13px rgba(255,255,255,.08)!important;
}
.pp-brush-line::after{
  content:''!important;display:block!important;width:103%!important;height:3px!important;
  margin:8px 0 0 -1%!important;
  background:linear-gradient(90deg,transparent,#f1edf3 9%,#d9d4dd 54%,#c42ef3 84%,transparent)!important;
  transform:skew(7deg) rotate(-1deg)!important;
}
@media(max-width:1150px) and (min-width:901px){
 .pp-showcase-main{grid-template-columns:minmax(455px,.92fr) minmax(420px,1.08fr)!important}
 .pp-white-line,.pp-purple-line{font-size:clamp(45px,4.35vw,58px)!important}
 .pp-brush-line{font-size:clamp(34px,3.5vw,46px)!important}
}
@media(max-width:900px){
 .pp-showcase-main{grid-template-columns:1fr!important}
 .pp-white-line,.pp-purple-line{width:auto!important;white-space:normal!important;text-align:center!important}
 .pp-brush-line{width:auto!important;white-space:normal!important;text-align:center!important}
}
@media(max-width:650px){
 .pp-white-line,.pp-purple-line{font-size:clamp(39px,11.4vw,54px)!important}
 .pp-brush-line{font-size:clamp(31px,8.9vw,42px)!important}
}


/* Precious Pixels v17.3 — full homepage visual polish */

/* Global section rhythm */
body.home .section, body.front-page .section{position:relative}
body.home .section:not(#work):not(.pp-bottom-cta)::before,
body.front-page .section:not(#work):not(.pp-bottom-cta)::before{
  content:"";position:absolute;left:50%;top:0;width:min(760px,76vw);height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(202,69,255,.18),transparent)
}
body.home .section-head .eyebrow,
body.front-page .section-head .eyebrow{
  color:#e5c7f0!important;
  border-color:rgba(197,77,243,.22)!important;
  background:linear-gradient(135deg,rgba(180,0,255,.11),rgba(255,255,255,.025))!important
}

/* Featured work */
#work .work-card{
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease!important
}
#work .work-card:hover{
  transform:translateY(-8px) scale(1.012)!important;
  border-color:rgba(231,112,255,.95)!important;
  box-shadow:0 0 0 1px rgba(200,49,255,.12),0 0 28px rgba(181,30,237,.28),0 24px 44px rgba(0,0,0,.35)!important
}
#work .work-thumb{position:relative;overflow:hidden}
#work .work-thumb::after{
  content:"";position:absolute;inset:-60% -30%;
  background:linear-gradient(115deg,transparent 36%,rgba(255,255,255,.14) 49%,transparent 61%);
  transform:translateX(-70%) rotate(4deg);
  transition:transform .65s ease
}
#work .work-card:hover .work-thumb::after{transform:translateX(72%) rotate(4deg)}

/* Brand statement */
.pp-statement-section{
  position:relative;overflow:hidden;
  padding:88px 0 94px;
  background:
    radial-gradient(circle at 50% 45%,rgba(164,0,228,.18),transparent 34%),
    linear-gradient(180deg,#08070d,#050509);
  border-top:1px solid rgba(190,58,245,.13);
  border-bottom:1px solid rgba(190,58,245,.13)
}
.pp-statement-section::before{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(115deg,transparent 18%,rgba(199,73,255,.04) 18.2%,transparent 18.6%),
    linear-gradient(65deg,transparent 72%,rgba(255,255,255,.025) 72.2%,transparent 72.5%);
  background-size:300px 300px,230px 230px
}
.pp-statement-crown{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-52%);
  font-size:310px;color:rgba(190,65,240,.035);line-height:1;pointer-events:none
}
.pp-statement-inner{position:relative;z-index:2;text-align:center}
.pp-statement-inner>span{
  display:inline-block;margin-bottom:15px;color:#d456ff;font-size:10px;font-weight:900;letter-spacing:.27em
}
.pp-statement-inner h2{
  margin:0;color:#f7f4f8;font-size:clamp(43px,6vw,82px);line-height:.92;letter-spacing:-.04em;text-transform:uppercase
}
.pp-statement-inner h2 strong{
  color:transparent;background:linear-gradient(180deg,#df72ff,#9100c9);
  -webkit-background-clip:text;background-clip:text
}
.pp-statement-inner p{font-size:19px;color:#aaa3b0;margin:18px 0 26px}
.pp-statement-inner .btn{min-width:210px;box-shadow:0 0 28px rgba(194,47,255,.24)}

/* Services */
.pp-services-section{
  background:
    radial-gradient(circle at 20% 10%,rgba(128,0,181,.07),transparent 28%),
    linear-gradient(180deg,#08080d,#0b0910)
}
.pp-services-section .service-grid{gap:18px}
.pp-services-section .service-card{
  position:relative;overflow:hidden;min-height:245px;
  padding:30px 25px!important;
  border:1px solid rgba(255,255,255,.07)!important;
  background:linear-gradient(160deg,rgba(255,255,255,.04),rgba(9,8,14,.9))!important;
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease
}
.pp-services-section .service-card::after{
  content:"";position:absolute;right:-65px;bottom:-70px;width:150px;height:150px;border-radius:50%;
  background:radial-gradient(circle,rgba(187,40,244,.16),transparent 68%)
}
.pp-services-section .service-card:hover{
  transform:translateY(-7px);
  border-color:rgba(208,77,255,.38)!important;
  box-shadow:0 18px 42px rgba(0,0,0,.32),0 0 24px rgba(171,30,221,.12)!important
}
.pp-service-icon{
  display:grid;place-items:center;width:58px;height:58px;margin-bottom:23px;border-radius:15px;
  color:#e57aff;font-size:29px;
  border:1px solid rgba(219,92,255,.27);
  background:linear-gradient(145deg,rgba(198,53,255,.11),rgba(255,255,255,.025));
  box-shadow:inset 0 0 25px rgba(186,34,240,.05),0 0 16px rgba(186,34,240,.07)
}
.pp-services-section .service-card h3{font-size:20px;margin:0 0 12px}
.pp-services-section .service-card p{color:#9993a2;line-height:1.65;margin:0}

/* Process illuminated timeline */
.pp-process-section{
  overflow:hidden;background:linear-gradient(180deg,#09080e,#06060a)
}
.pp-process-section .process-grid{position:relative;grid-template-columns:repeat(4,1fr);gap:22px}
.pp-process-section .process-grid::before{
  content:"";position:absolute;left:8%;right:8%;top:42px;height:2px;
  background:linear-gradient(90deg,rgba(197,55,248,.12),#b824ed,#df79ff,#b824ed,rgba(197,55,248,.12));
  box-shadow:0 0 13px rgba(199,55,249,.38)
}
.pp-process-section .process-card{
  position:relative;z-index:1;padding:88px 24px 27px!important;text-align:center;
  background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.012))!important;
  border-color:rgba(255,255,255,.065)!important
}
.pp-process-section .process-card>span{
  position:absolute;top:21px;left:50%;transform:translateX(-50%);
  width:43px;height:43px;display:grid;place-items:center;border-radius:50%;
  color:#fff!important;font-size:12px!important;font-weight:900;
  background:#0c0910;border:2px solid #c441f4;
  box-shadow:0 0 0 7px #09080e,0 0 21px rgba(199,61,244,.43)
}
.pp-process-section .process-card h3{font-size:18px;margin:0 0 10px}
.pp-process-section .process-card p{margin:0;color:#908b98;line-height:1.58}

/* Reviews and pricing */
.pp-reviews-pricing{
  background:
    radial-gradient(circle at 75% 38%,rgba(150,0,210,.09),transparent 29%),
    linear-gradient(180deg,#07070b,#0a080e)
}
.pp-reviews-pricing .review-layout{gap:26px}
.pp-reviews-pricing .review-card{
  position:relative;overflow:hidden;padding:34px!important;
  border-color:rgba(255,255,255,.07)!important;
  background:linear-gradient(150deg,rgba(255,255,255,.04),rgba(11,9,15,.92))!important
}
.pp-reviews-pricing .review-card::before{
  content:"“";position:absolute;right:22px;top:-27px;
  font-family:Georgia,serif;font-size:155px;line-height:1;color:rgba(198,61,242,.065);pointer-events:none
}
.pp-reviews-pricing .stars{color:#d75bff!important;filter:drop-shadow(0 0 8px rgba(210,75,255,.28))}
.pp-reviews-pricing .review-card p{position:relative;z-index:1;font-size:18px;line-height:1.7;color:#e1dce5}
.pp-reviews-pricing .review-user{border-top:1px solid rgba(255,255,255,.06);padding-top:14px}
.pp-reviews-pricing .review-user cite{color:#b8aebe}
.pp-reviews-pricing .pricing-card{
  position:relative;overflow:hidden;
  border:1px solid rgba(209,75,255,.18)!important;
  background:linear-gradient(155deg,rgba(92,16,116,.12),rgba(11,9,15,.96))!important;
  box-shadow:0 25px 65px rgba(0,0,0,.3)!important
}
.pp-reviews-pricing .pricing-card::before{
  content:"♕";position:absolute;right:-8px;top:-25px;font-size:140px;color:rgba(210,74,255,.035)
}
.pp-reviews-pricing .tier-card-pro{
  border:1px solid rgba(218,83,255,.5)!important;
  background:linear-gradient(180deg,rgba(184,33,236,.1),rgba(255,255,255,.02))!important;
  box-shadow:0 0 28px rgba(179,37,232,.15)!important
}
.pp-reviews-pricing .most-popular-badge{
  background:linear-gradient(135deg,#a900e8,#dc73ff)!important;
  box-shadow:0 0 20px rgba(199,64,247,.26)!important
}

/* Guarantee / builder / FAQ */
.pp-guarantee-section .guarantee-card,
.pp-faq-section .faq-item{
  transition:border-color .25s ease,transform .25s ease,box-shadow .25s ease
}
.pp-guarantee-section .guarantee-card:hover,
.pp-faq-section .faq-item:hover{
  transform:translateY(-3px);
  border-color:rgba(202,65,247,.28)!important;
  box-shadow:0 14px 30px rgba(0,0,0,.22),0 0 18px rgba(176,35,225,.08)
}
.pp-builder-section{
  background:radial-gradient(circle at 50% 50%,rgba(149,0,211,.07),transparent 42%)
}

/* Bottom CTA */
.pp-bottom-cta{padding-top:48px!important;padding-bottom:58px!important;background:#06060a}
.pp-bottom-cta .cta-bar{
  position:relative;overflow:hidden;
  border:1px solid rgba(214,73,255,.26)!important;
  background:
    radial-gradient(circle at 80% 50%,rgba(174,24,225,.16),transparent 30%),
    linear-gradient(135deg,#100b15,#08080d)!important;
  box-shadow:0 24px 65px rgba(0,0,0,.34),0 0 35px rgba(174,28,223,.09)!important
}
.pp-bottom-cta .cta-bar::before{
  content:"♡";position:absolute;right:27%;top:-60px;font-size:210px;color:rgba(215,91,255,.03)
}
.pp-bottom-cta .cta-bar h2{position:relative;z-index:1;max-width:820px}

/* Premium footer */
.pp-premium-footer{
  position:relative;overflow:hidden;
  padding-top:85px!important;
  background:
    radial-gradient(circle at 18% 20%,rgba(148,0,206,.11),transparent 28%),
    linear-gradient(180deg,#07060b,#030305)!important;
  border-top:1px solid rgba(208,71,255,.22)!important
}
.pp-footer-watermark{
  position:absolute;left:50%;top:6px;transform:translateX(-50%);
  width:100%;text-align:center;
  font-size:clamp(64px,11vw,180px);font-weight:950;line-height:1;
  color:rgba(255,255,255,.018);letter-spacing:-.055em;white-space:nowrap;pointer-events:none
}
.pp-premium-footer .footer-grid{position:relative;z-index:1}
.pp-premium-footer .footer-logo{max-width:210px!important;filter:drop-shadow(0 0 16px rgba(190,42,246,.18))}
.pp-premium-footer h3{color:#fff;font-size:15px;text-transform:uppercase;letter-spacing:.04em}
.pp-premium-footer p,.pp-premium-footer li,.pp-premium-footer a{color:#938e9a}
.pp-premium-footer a:hover{color:#dd72ff}
.pp-premium-footer .footer-bottom{border-top-color:rgba(255,255,255,.06)!important}

/* Desktop pointer glow */
.pp-cursor-glow{
  position:fixed;left:0;top:0;width:340px;height:340px;border-radius:50%;
  pointer-events:none;z-index:0;opacity:0;
  background:radial-gradient(circle,rgba(190,49,246,.075),rgba(107,0,151,.025) 40%,transparent 70%);
  transform:translate(-50%,-50%);transition:opacity .2s ease;
  mix-blend-mode:screen
}
body.home:hover .pp-cursor-glow,body.front-page:hover .pp-cursor-glow{opacity:1}

/* More intentional mobile composition */
@media(max-width:900px){
  .pp-process-section .process-grid{grid-template-columns:1fr 1fr}
  .pp-process-section .process-grid::before{display:none}
  .pp-process-section .process-card{padding-top:72px!important}
}
@media(max-width:650px){
  .pp-statement-section{padding:65px 0 70px}
  .pp-statement-crown{font-size:210px}
  .pp-statement-inner h2{font-size:clamp(38px,11.5vw,54px)}
  .pp-services-section .service-grid,.pp-process-section .process-grid{grid-template-columns:1fr!important}
  .pp-services-section .service-card{min-height:auto}
  .pp-process-section .process-card{text-align:left;padding:24px 20px 24px 75px!important}
  .pp-process-section .process-card>span{left:22px;top:22px;transform:none}
  .pp-reviews-pricing .review-card{padding:24px!important}
  .pp-bottom-cta .cta-bar{padding:25px!important}
  .pp-premium-footer{padding-top:65px!important}
  .pp-footer-watermark{font-size:64px}
}
@media(pointer:coarse),(prefers-reduced-motion:reduce){
  .pp-cursor-glow{display:none!important}
  #work .work-card:hover,.pp-services-section .service-card:hover,.pp-guarantee-section .guarantee-card:hover,.pp-faq-section .faq-item:hover{transform:none!important}
}
