/* =====================================================================
   ScholarsHost — Design System CSS
   Paste this WHOLE file into: Appearance → Customize → Additional CSS
   (or your child theme's style.css)

   All rules are scoped under .sh-scope so they can't collide with your
   theme's styles — the HTML file wraps every section in
   <div class="sh-scope">...</div> so this only applies inside that div.

   Needs Poppins (headings) + Inter (body) from Google Fonts — see the
   functions.php snippet for how to load them.
===================================================================== */

/* ============================= */
/* TOKENS                        */
/* ============================= */
:root {

  --navy:#0B2D6B;
  --navy-deep:#071f4d;
  --royal:#1E5EFF;
  --royal-dim:#4a7aff;
  --gold:#FFD54A;
  --gold-deep:#e8b800;
  --white:#FFFFFF;
  --bg-alt:#F5F9FF;
  --ink:#333333;
  --ink-soft:#5b6472;
  --success:#2E8B57;
  --line:#E3EAF6;

  --font-head:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --shadow-sm:0 2px 10px rgba(11,45,107,0.06);
  --shadow-md:0 12px 32px rgba(11,45,107,0.10);
  --shadow-lg:0 24px 60px rgba(11,45,107,0.16);
  --ease:cubic-bezier(.22,.75,.32,1);
  --container:1240px;

}
.sh-scope *, .sh-scope *::before, .sh-scope *::after  {
  box-sizing:border-box;
}
.sh-scope {
  scroll-behavior:smooth;
}

@media (prefers-reduced-motion: reduce) {
  .sh-scope {
  scroll-behavior:auto;
}
.sh-scope *  {
  animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;
}

}
.sh-scope {

  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;

}
.sh-scope h1, .sh-scope h2, .sh-scope h3, .sh-scope h4  {

  font-family:var(--font-head);
  color:var(--navy);
  margin:0 0 .5em;
  line-height:1.18;
  letter-spacing:-0.01em;

}
.sh-scope p  {
  margin:0 0 1em; color:var(--ink-soft);
}
.sh-scope a  {
  color:inherit; text-decoration:none;
}
.sh-scope img, .sh-scope svg  {
  max-width:100%; display:block;
}
.sh-scope ul  {
  margin:0; padding:0; list-style:none;
}
.sh-scope button  {
  font-family:inherit; cursor:pointer;
}
.sh-scope :focus-visible  {
  outline:3px solid var(--gold); outline-offset:2px; border-radius:4px;
}
.sh-scope .container  {
  max-width:var(--container); margin:0 auto; padding:0 24px;
}
.sh-scope .eyebrow  {

  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-weight:600; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--royal);
  background:rgba(30,94,255,0.08); padding:7px 16px; border-radius:100px;
  margin-bottom:18px;

}
.sh-scope .eyebrow::before  {
  content:""; width:6px; height:6px; border-radius:50%; background:var(--gold);
}
.sh-scope .section  {
  padding:96px 0;
}
.sh-scope .section-alt  {
  background:var(--bg-alt);
}
.sh-scope .section-head  {
  max-width:680px; margin:0 auto 56px; text-align:center;
}
.sh-scope .section-head p  {
  font-size:1.08rem;
}
.sh-scope .section-head.left  {
  margin-left:0; text-align:left;
}
.sh-scope h2  {
  font-size:clamp(1.9rem,3.2vw,2.6rem); font-weight:700;
}
.sh-scope h3  {
  font-size:1.28rem; font-weight:600;
}
.sh-scope .btn  {

  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-head); font-weight:600; font-size:.98rem;
  padding:15px 30px; border-radius:100px; border:2px solid transparent;
  cursor:pointer; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space:nowrap;

}
.sh-scope .btn-primary  {
  background:var(--royal); color:#fff; box-shadow:0 10px 24px rgba(30,94,255,.28);
}
.sh-scope .btn-primary:hover  {
  transform:translateY(-3px); box-shadow:0 16px 32px rgba(30,94,255,.36);
}
.sh-scope .btn-gold  {
  background:var(--gold); color:var(--navy-deep); box-shadow:0 10px 24px rgba(255,213,74,.35);
}
.sh-scope .btn-gold:hover  {
  transform:translateY(-3px); box-shadow:0 16px 32px rgba(255,213,74,.45);
}
.sh-scope .btn-outline  {
  background:transparent; border-color:rgba(11,45,107,.18); color:var(--navy);
}
.sh-scope .btn-outline:hover  {
  border-color:var(--royal); color:var(--royal); transform:translateY(-3px);
}
.sh-scope .btn-outline-light  {
  background:transparent; border-color:rgba(255,255,255,.35); color:#fff;
}
.sh-scope .btn-outline-light:hover  {
  border-color:#fff; background:rgba(255,255,255,.08); transform:translateY(-3px);
}
.sh-scope .btn-sm  {
  padding:10px 20px; font-size:.86rem;
}
.sh-scope .btn svg  {
  width:18px; height:18px;
}
.sh-scope .site-header  {

  position:sticky; top:0; z-index:1000; background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s var(--ease), border-color .3s var(--ease);

}
.sh-scope .site-header.scrolled  {
  box-shadow:0 4px 24px rgba(11,45,107,.08); border-color:var(--line);
}
.sh-scope .nav-wrap  {
  display:flex; align-items:center; justify-content:space-between; padding:16px 24px; gap:24px;
}
.sh-scope .logo  {
  display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:700; font-size:1.25rem; color:var(--navy);
}
.sh-scope .logo .mark  {
  width:38px; height:38px; flex-shrink:0;
}
.sh-scope .logo .accent  {
  color:var(--royal);
}
.sh-scope .main-nav  {
  display:flex; align-items:center; gap:4px;
}
.sh-scope .main-nav>ul  {
  display:flex; align-items:center; gap:2px;
}
.sh-scope .nav-item  {
  position:relative;
}
.sh-scope .nav-link  {

  display:flex; align-items:center; gap:6px; padding:12px 16px; font-weight:600; font-size:.95rem;
  color:var(--navy); border-radius:8px; transition:color .2s; background:none; border:none;

}
.sh-scope .nav-link:hover, .sh-scope .nav-item.open .nav-link  {
  color:var(--royal);
}
.sh-scope .nav-link svg  {
  width:14px; height:14px; transition:transform .25s var(--ease);
}
.sh-scope .nav-item.open .nav-link svg  {
  transform:rotate(180deg);
}
.sh-scope .mega  {

  position:absolute; top:calc(100% + 18px); left:50%; transform:translate(-50%,6px);
  width:620px; background:#fff; border-radius:16px; box-shadow:0 20px 48px rgba(11,45,107,.16);
  padding:26px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .2s var(--ease), transform .2s var(--ease); z-index:50;

}
.sh-scope .mega::before  {
  content:""; position:absolute; top:-7px; left:50%; transform:translateX(-50%) rotate(45deg);
  width:14px; height:14px; background:#fff; border-radius:3px;
  box-shadow:-2px -2px 4px rgba(11,45,107,.05);
}
.sh-scope .nav-item.open .mega  {
  opacity:1; visibility:visible; pointer-events:auto; transform:translate(-50%,0);
}
.sh-scope .mega-grid  {
  display:grid; grid-template-columns:1fr 1fr; gap:6px 28px;
}
.sh-scope .mega-col-title  {
  font-family:var(--font-head); font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--royal); margin-bottom:8px;
}
.sh-scope .mega a.mega-link  {
  display:flex; align-items:flex-start; gap:12px; padding:9px 8px; border-radius:10px; transition:background .2s;
}
.sh-scope .mega a.mega-link:hover  {
  background:var(--bg-alt);
}
.sh-scope .mega a.mega-link .ic  {
  width:32px; height:32px; flex-shrink:0; color:var(--royal);
}
.sh-scope .mega a.mega-link strong  {
  display:block; font-size:.9rem; color:var(--navy); font-family:var(--font-head); font-weight:600;
}
.sh-scope .mega a.mega-link span  {
  font-size:.78rem; color:var(--ink-soft);
}
.sh-scope .header-cta  {
  display:flex; align-items:center; gap:10px;
}
.sh-scope .hamburger  {
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px;
}
.sh-scope .hamburger span  {
  width:24px; height:2px; background:var(--navy); border-radius:2px; transition:all .3s var(--ease);
}
.sh-scope .mobile-nav  {

  position:fixed; inset:0; background:#fff; z-index:1100; transform:translateX(100%);
  transition:transform .35s var(--ease); overflow-y:auto; padding:20px;

}
.sh-scope .mobile-nav.open  {
  transform:translateX(0);
}
.sh-scope .mobile-nav-top  {
  display:flex; justify-content:space-between; align-items:center; margin-bottom:24px;
}
.sh-scope .mobile-nav details  {
  border-bottom:1px solid var(--line); padding:14px 4px;
}
.sh-scope .mobile-nav summary  {
  font-family:var(--font-head); font-weight:600; font-size:1.05rem; color:var(--navy); cursor:pointer; list-style:none; display:flex; justify-content:space-between;
}
.sh-scope .mobile-nav summary::-webkit-details-marker  {
  display:none;
}
.sh-scope .mobile-nav ul li a  {
  display:block; padding:10px 0; color:var(--ink-soft); font-size:.95rem;
}
.sh-scope .mobile-nav .btn  {
  width:100%; margin-top:18px;
}
.sh-scope .close-mobile  {
  background:none;border:none;padding:8px;
}
.sh-scope .hero  {
  position:relative; padding:80px 0 60px; overflow:hidden; background:
  radial-gradient(900px 500px at 85% -10%, rgba(30,94,255,.08), transparent 60%),
  radial-gradient(700px 400px at -10% 90%, rgba(255,213,74,.10), transparent 60%);

}
.sh-scope .hero-grid  {
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.sh-scope .hero h1  {
  font-size:clamp(2.3rem,4.4vw,3.5rem); font-weight:800;
}
.sh-scope .hero h1 .hl  {
  color:var(--royal);
}
.sh-scope .hero p.lead  {
  font-size:1.14rem; max-width:520px; margin-bottom:30px;
}
.sh-scope .hero-ctas  {
  display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px;
}
.sh-scope .hero-trust  {
  display:flex; align-items:center; gap:14px; font-size:.85rem; color:var(--ink-soft);
}
.sh-scope .hero-trust .avatars  {
  display:flex;
}
.sh-scope .hero-trust .avatars span  {

  width:30px; height:30px; border-radius:50%; border:2px solid #fff; margin-left:-8px;
  background:linear-gradient(135deg,var(--royal),var(--navy)); display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.7rem; font-weight:700;

}
.sh-scope .hero-visual  {
  position:relative;
}
.sh-scope .hero-visual svg  {
  width:100%; height:auto;
}
.sh-scope .float-card  {

  position:absolute; background:#fff; border-radius:14px; box-shadow:var(--shadow-md);
  padding:12px 16px; display:flex; align-items:center; gap:10px; font-family:var(--font-head);
  font-weight:600; font-size:.82rem; color:var(--navy); animation:floaty 5s ease-in-out infinite;

}
.sh-scope .float-card svg  {
  width:20px;height:20px;color:var(--success);
}
.sh-scope .float-card.c1  {
  top:6%; left:-4%; animation-delay:0s;
}
.sh-scope .float-card.c2  {
  bottom:10%; right:-6%; animation-delay:1.2s;
}

@keyframes floaty {
  0%,100% {
  transform:translateY(0);
}
 50% {
  transform:translateY(-10px);
}

}
.sh-scope .trust-strip  {
  padding:34px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.sh-scope .trust-strip .container  {
  display:flex; align-items:center; gap:40px; flex-wrap:wrap; justify-content:space-between;
}
.sh-scope .trust-strip .label  {
  font-size:.78rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); flex-shrink:0;
}
.sh-scope .trust-logos  {
  display:flex; gap:38px; flex-wrap:wrap; align-items:center; opacity:.6;
}
.sh-scope .trust-logos span  {
  font-family:var(--font-head); font-weight:700; font-size:1.02rem; color:var(--navy);
}
.sh-scope .stats  {
  background:var(--navy); position:relative; overflow:hidden;
}
.sh-scope .stats::before  {
  content:""; position:absolute; inset:0; background:
  radial-gradient(600px 300px at 10% 0%, rgba(30,94,255,.35), transparent 60%),
  radial-gradient(600px 300px at 90% 100%, rgba(255,213,74,.15), transparent 60%);
}
.sh-scope .stats-grid  {
  position:relative; display:grid; grid-template-columns:repeat(6,1fr); gap:24px; padding:64px 0;
}
.sh-scope .stat  {
  text-align:center; color:#fff;
}
.sh-scope .stat .num  {
  font-family:var(--font-head); font-weight:800; font-size:clamp(1.6rem,2.6vw,2.3rem); color:var(--gold);
}
.sh-scope .stat .lbl  {
  font-size:.82rem; color:rgba(255,255,255,.72); margin-top:6px; font-weight:500;
}
.sh-scope .grid-6  {
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.sh-scope .grid-4  {
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.sh-scope .svc-card  {

  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:30px 26px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position:relative; overflow:hidden;

}
.sh-scope .svc-card::after  {
  content:""; position:absolute; left:0; bottom:0; height:3px; width:0; background:linear-gradient(90deg,var(--royal),var(--gold)); transition:width .35s var(--ease);
}
.sh-scope .svc-card:hover  {
  transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent;
}
.sh-scope .svc-card:hover::after  {
  width:100%;
}
.sh-scope .svc-icon  {

  width:52px; height:52px; border-radius:14px; background:var(--bg-alt); color:var(--royal);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;

}
.sh-scope .svc-icon svg  {
  width:26px; height:26px;
}
.sh-scope .svc-card h3  {
  margin-bottom:8px;
}
.sh-scope .svc-card p  {
  font-size:.92rem; margin-bottom:16px;
}
.sh-scope .svc-link  {
  display:inline-flex; align-items:center; gap:6px; font-family:var(--font-head); font-weight:600; font-size:.86rem; color:var(--royal);
}
.sh-scope .svc-link svg  {
  width:15px; height:15px; transition:transform .25s var(--ease);
}
.sh-scope .svc-card:hover .svc-link svg  {
  transform:translateX(4px);
}
.sh-scope .acad-card  {

  background:var(--bg-alt); border-radius:var(--radius-md); padding:26px 22px; text-align:left;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);

}
.sh-scope .acad-card:hover  {
  transform:translateY(-5px); box-shadow:var(--shadow-md); background:#fff;
}
.sh-scope .acad-card .svc-icon  {
  background:#fff; box-shadow:var(--shadow-sm);
}
.sh-scope .acad-card h3  {
  font-size:1.06rem;
}
.sh-scope .acad-card p  {
  font-size:.86rem; margin-bottom:0;
}
.sh-scope .why-grid  {
  display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center;
}
.sh-scope .why-illustration  {
  background:linear-gradient(160deg,var(--navy),var(--navy-deep)); border-radius:var(--radius-lg); padding:36px; position:relative; overflow:hidden;
}
.sh-scope .feature-list  {
  display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.sh-scope .feature-item  {
  display:flex; gap:14px; align-items:flex-start;
}
.sh-scope .feature-item .fi-icon  {

  width:44px; height:44px; border-radius:12px; background:var(--bg-alt); color:var(--success);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;

}
.sh-scope .feature-item .fi-icon svg  {
  width:22px; height:22px;
}
.sh-scope .feature-item h4  {
  font-family:var(--font-head); font-weight:600; font-size:1rem; margin:0 0 4px; color:var(--navy);
}
.sh-scope .feature-item p  {
  font-size:.85rem; margin:0;
}
.sh-scope .pricing-grid  {
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px; align-items:stretch;
}
.sh-scope .price-card  {

  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:36px 30px;
  display:flex; flex-direction:column; transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  position:relative;

}
.sh-scope .price-card:hover  {
  transform:translateY(-6px); box-shadow:var(--shadow-md);
}
.sh-scope .price-card.featured  {

  background:linear-gradient(165deg,var(--navy),var(--navy-deep)); color:#fff; transform:scale(1.04);
  box-shadow:var(--shadow-lg); border-color:transparent;

}
.sh-scope .price-card.featured:hover  {
  transform:scale(1.04) translateY(-6px);
}
.sh-scope .price-card.featured h3, .sh-scope .price-card.featured .price-desc  {
  color:#fff;
}
.sh-scope .badge-pop  {

  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--navy-deep); font-family:var(--font-head); font-weight:700;
  font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; padding:7px 16px; border-radius:100px;
  box-shadow:0 8px 18px rgba(255,213,74,.4);

}
.sh-scope .price-desc  {
  font-size:.86rem; margin-bottom:18px;
}
.sh-scope .price-amount  {
  display:flex; align-items:baseline; gap:6px; margin-bottom:6px;
}
.sh-scope .price-amount .cur  {
  font-family:var(--font-head); font-weight:700; font-size:1.2rem;
}
.sh-scope .price-amount .num  {
  font-family:var(--font-head); font-weight:800; font-size:2.6rem;
}
.sh-scope .price-amount .per  {
  font-size:.85rem; opacity:.7;
}
.sh-scope .price-card .old-price  {
  font-size:.82rem; text-decoration:line-through; opacity:.55; margin-bottom:20px;
}
.sh-scope .price-feats  {
  margin:8px 0 28px; flex-grow:1;
}
.sh-scope .price-feats li  {
  display:flex; gap:10px; align-items:flex-start; padding:8px 0; font-size:.9rem;
}
.sh-scope .price-feats li svg  {
  width:18px; height:18px; color:var(--success); flex-shrink:0; margin-top:2px;
}
.sh-scope .price-card.featured .price-feats li svg  {
  color:var(--gold);
}
.sh-scope .price-card .btn  {
  width:100%;
}
.sh-scope .compare-toggle  {
  text-align:center; margin-top:40px;
}
.sh-scope .compare-table-wrap  {
  overflow-x:auto; margin-top:36px; border-radius:var(--radius-md); border:1px solid var(--line);
}
.sh-scope table.compare  {
  width:100%; border-collapse:collapse; min-width:640px; background:#fff;
}
.sh-scope table.compare th, .sh-scope table.compare td  {
  padding:16px 20px; text-align:center; border-bottom:1px solid var(--line); font-size:.9rem;
}
.sh-scope table.compare th  {
  font-family:var(--font-head); font-weight:600; color:var(--navy); background:var(--bg-alt);
}
.sh-scope table.compare td:first-child, .sh-scope table.compare th:first-child  {
  text-align:left; font-weight:600; color:var(--navy);
}
.sh-scope table.compare svg  {
  width:18px; height:18px; color:var(--success);
}
.sh-scope .ojs-section  {
  background:var(--navy); position:relative; overflow:hidden; color:#fff;
}
.sh-scope .ojs-section::before  {
  content:""; position:absolute; inset:0; background:radial-gradient(700px 400px at 90% 10%, rgba(255,213,74,.14), transparent 60%);
}
.sh-scope .ojs-grid  {
  position:relative; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.sh-scope .ojs-section h2  {
  color:#fff;
}
.sh-scope .ojs-section p  {
  color:rgba(255,255,255,.75);
}
.sh-scope .ojs-list  {
  margin:26px 0 32px;
}
.sh-scope .ojs-list li  {
  display:flex; gap:12px; padding:9px 0; font-size:.96rem; color:#fff;
}
.sh-scope .ojs-list li svg  {
  width:20px; height:20px; color:var(--gold); flex-shrink:0;
}
.sh-scope .testi-wrap  {
  position:relative; max-width:760px; margin:0 auto;
}
.sh-scope .testi-track  {
  overflow:hidden; border-radius:var(--radius-lg);
}
.sh-scope .testi-slides  {
  display:flex; transition:transform .5s var(--ease);
}
.sh-scope .testi-slide  {
  min-width:100%; background:var(--bg-alt); padding:48px 44px; text-align:center; border-radius:var(--radius-lg);
}
.sh-scope .testi-quote  {
  width:38px; height:38px; color:var(--gold); margin:0 auto 18px;
}
.sh-scope .testi-text  {
  font-size:1.12rem; color:var(--navy); font-weight:500; margin-bottom:22px; line-height:1.6;
}
.sh-scope .testi-person  {
  display:flex; flex-direction:column; align-items:center; gap:4px;
}
.sh-scope .testi-avatar  {
  width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,var(--royal),var(--navy)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; margin-bottom:8px;
}
.sh-scope .testi-name  {
  font-family:var(--font-head); font-weight:600; color:var(--navy); font-size:.95rem;
}
.sh-scope .testi-role  {
  font-size:.8rem; color:var(--ink-soft);
}
.sh-scope .testi-nav  {
  display:flex; justify-content:center; gap:10px; margin-top:26px;
}
.sh-scope .testi-dot  {
  width:9px; height:9px; border-radius:50%; background:var(--line); border:none; transition:background .3s, width .3s;
}
.sh-scope .testi-dot.active  {
  background:var(--royal); width:26px; border-radius:6px;
}
.sh-scope .testi-arrow  {

  position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px; border-radius:50%;
  background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); display:flex; align-items:center; justify-content:center;
  color:var(--navy); transition:background .2s, color .2s;

}
.sh-scope .testi-arrow:hover  {
  background:var(--royal); color:#fff;
}
.sh-scope .testi-arrow.prev  {
  left:-64px;
}
.sh-scope .testi-arrow.next  {
  right:-64px;
}
.sh-scope .testi-arrow svg  {
  width:20px; height:20px;
}

@media(max-width:900px) {
  .sh-scope .testi-arrow  {
  display:none;
}

}
.sh-scope .blog-grid  {
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.sh-scope .blog-card  {
  border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--line); transition:transform .3s var(--ease), box-shadow .3s var(--ease); background:#fff;
}
.sh-scope .blog-card:hover  {
  transform:translateY(-6px); box-shadow:var(--shadow-md);
}
.sh-scope .blog-thumb  {
  height:170px; background:linear-gradient(135deg,var(--royal),var(--navy)); position:relative;
}
.sh-scope .blog-thumb svg  {
  position:absolute; inset:0; margin:auto; width:60px; height:60px; color:rgba(255,255,255,.5);
}
.sh-scope .blog-body  {
  padding:22px 22px 26px;
}
.sh-scope .blog-tag  {
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--royal); background:rgba(30,94,255,.08); padding:5px 12px; border-radius:100px; margin-bottom:12px;
}
.sh-scope .blog-body h3  {
  font-size:1.05rem; margin-bottom:8px;
}
.sh-scope .blog-body p  {
  font-size:.86rem; margin-bottom:14px;
}
.sh-scope .blog-meta  {
  font-size:.78rem; color:var(--ink-soft); display:flex; justify-content:space-between;
}
.sh-scope .faq-wrap  {
  max-width:800px; margin:0 auto;
}
.sh-scope .faq-item  {
  border-bottom:1px solid var(--line);
}
.sh-scope .faq-q  {

  width:100%; background:none; border:none; text-align:left; padding:22px 4px; display:flex; justify-content:space-between; align-items:center;
  font-family:var(--font-head); font-weight:600; font-size:1.02rem; color:var(--navy);

}
.sh-scope .faq-q .plus  {
  width:22px; height:22px; flex-shrink:0; position:relative;
}
.sh-scope .faq-q .plus::before, .sh-scope .faq-q .plus::after  {
  content:""; position:absolute; background:var(--royal); border-radius:2px; transition:transform .3s var(--ease);
}
.sh-scope .faq-q .plus::before  {
  width:14px; height:2px; top:10px; left:4px;
}
.sh-scope .faq-q .plus::after  {
  width:2px; height:14px; top:4px; left:10px;
}
.sh-scope .faq-item.open .plus::after  {
  transform:rotate(90deg); opacity:0;
}
.sh-scope .faq-a  {
  max-height:0; overflow:hidden; transition:max-height .35s var(--ease);
}
.sh-scope .faq-a p  {
  padding:0 4px 22px; font-size:.94rem;
}
.sh-scope .final-cta  {
  background:linear-gradient(135deg,var(--navy),var(--navy-deep)); position:relative; overflow:hidden; text-align:center; padding:100px 0;
}
.sh-scope .final-cta::before  {
  content:""; position:absolute; inset:0; background:radial-gradient(600px 300px at 20% 20%, rgba(30,94,255,.35), transparent 60%), radial-gradient(600px 300px at 80% 80%, rgba(255,213,74,.18), transparent 60%);
}
.sh-scope .final-cta-inner  {
  position:relative;
}
.sh-scope .final-cta h2  {
  color:#fff; max-width:640px; margin:0 auto 16px;
}
.sh-scope .final-cta p  {
  color:rgba(255,255,255,.72); max-width:520px; margin:0 auto 34px;
}
.sh-scope .final-cta .ctas  {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
}
.sh-scope .site-footer  {
  background:var(--navy-deep); color:rgba(255,255,255,.7); padding:76px 0 0;
}
.sh-scope .footer-top  {
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.1fr; gap:36px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1);
}
.sh-scope .footer-brand .logo  {
  color:#fff;
}
.sh-scope .footer-brand p  {
  font-size:.88rem; margin:16px 0 20px; max-width:280px;
}
.sh-scope .social-row  {
  display:flex; gap:10px;
}
.sh-scope .social-row a  {
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:background .25s;
}
.sh-scope .social-row a:hover  {
  background:var(--royal);
}
.sh-scope .social-row svg  {
  width:17px; height:17px; color:#fff;
}
.sh-scope .foot-col h4  {
  font-family:var(--font-head); color:#fff; font-size:.86rem; letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px;
}
.sh-scope .foot-col li  {
  margin-bottom:11px; font-size:.88rem;
}
.sh-scope .foot-col a:hover  {
  color:var(--gold);
}
.sh-scope .newsletter-box input  {

  width:100%; padding:12px 14px; border-radius:10px; border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06); color:#fff; font-size:.88rem; margin-bottom:10px;

}
.sh-scope .newsletter-box input::placeholder  {
  color:rgba(255,255,255,.45);
}
.sh-scope .newsletter-box .btn  {
  width:100%;
}
.sh-scope .footer-bottom  {
  display:flex; justify-content:space-between; align-items:center; padding:24px 0; font-size:.8rem; flex-wrap:wrap; gap:12px;
}
.sh-scope .footer-bottom a  {
  margin-left:18px;
}
.sh-scope .back-top  {

  position:fixed; bottom:28px; right:28px; width:48px; height:48px; border-radius:50%;
  background:var(--royal); color:#fff; display:flex; align-items:center; justify-content:center; border:none;
  box-shadow:var(--shadow-md); opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .3s var(--ease); z-index:900;

}
.sh-scope .back-top.show  {
  opacity:1; visibility:visible; transform:translateY(0);
}
.sh-scope .back-top:hover  {
  background:var(--navy);
}
.sh-scope .back-top svg  {
  width:20px; height:20px;
}
.sh-scope .reveal  {
  opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.sh-scope .reveal.in  {
  opacity:1; transform:translateY(0);
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media(max-width:1080px) {
  .sh-scope .main-nav  {
  display:none;
}
.sh-scope .hamburger  {
  display:flex;
}
.sh-scope .hero-grid  {
  grid-template-columns:1fr; text-align:center;
}
.sh-scope .hero p.lead  {
  margin-left:auto; margin-right:auto;
}
.sh-scope .hero-ctas  {
  justify-content:center;
}
.sh-scope .hero-trust  {
  justify-content:center;
}
.sh-scope .hero-visual  {
  max-width:520px; margin:0 auto;
}
.sh-scope .why-grid  {
  grid-template-columns:1fr;
}
.sh-scope .feature-list  {
  grid-template-columns:1fr 1fr;
}
.sh-scope .stats-grid  {
  grid-template-columns:repeat(3,1fr);
}
.sh-scope .grid-6  {
  grid-template-columns:repeat(2,1fr);
}
.sh-scope .grid-4  {
  grid-template-columns:repeat(2,1fr);
}
.sh-scope .pricing-grid  {
  grid-template-columns:1fr; max-width:440px; margin:0 auto;
}
.sh-scope .price-card.featured  {
  transform:none;
}
.sh-scope .price-card.featured:hover  {
  transform:translateY(-6px);
}
.sh-scope .ojs-grid  {
  grid-template-columns:1fr; text-align:center;
}
.sh-scope .ojs-list  {
  text-align:left;
}
.sh-scope .blog-grid  {
  grid-template-columns:1fr; max-width:440px; margin:0 auto;
}
.sh-scope .footer-top  {
  grid-template-columns:1fr 1fr; row-gap:40px;
}

}

@media(max-width:640px) {
  .sh-scope .section  {
  padding:64px 0;
}
.sh-scope .stats-grid  {
  grid-template-columns:repeat(2,1fr); padding:48px 0;
}
.sh-scope .feature-list  {
  grid-template-columns:1fr;
}
.sh-scope .footer-top  {
  grid-template-columns:1fr;
}
.sh-scope .testi-slide  {
  padding:34px 22px;
}
.sh-scope .trust-strip .container  {
  justify-content:center; text-align:center;
}

}

/* =====================================================================
   THEME COMPATIBILITY FIX — Twenty Twenty-Four Header Template Part
   -----------------------------------------------------------------
   Block themes (Twenty Twenty-Four, etc.) apply their own position/
   overflow/height rules to the <header class="wp-block-template-part">
   wrapper even after you empty out its inner blocks in the Site Editor.
   That leftover box can clip our mega-menu dropdown and/or force a
   scrollbar inside the header. This resets that specific wrapper so
   our own .sh-scope header takes over completely.
===================================================================== */
header.wp-block-template-part {
  position: static !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.sh-scope,
.sh-scope .site-header,
.sh-scope .nav-wrap,
.sh-scope .main-nav,
.sh-scope .main-nav > ul,
.sh-scope .nav-item {
  overflow: visible !important;
}
.sh-scope .mega {
  z-index: 99999 !important;
}